Version Description
- Changed the menu icon
- Added missing filters for the title
- Made it possible to change the email address that submitted question notifications get sent to
- Add an Italian translation (Thanks to Nimbaweb)
- Fixed an error where custom CSS wasn't being applied to the search shortcode
Download this release
Release Info
Developer | Rustaurius |
Plugin | Ultimate FAQ |
Version | 1.5.35 |
Comparing to | |
See all releases |
Code changes from version 1.5.34 to 1.5.35
- Functions/EWD_UFAQ_Submit_Question.php +2 -1
- Functions/Update_Admin_Databases.php +2 -1
- Main.php +2 -2
- Shortcodes/DisplayFAQs.php +2 -2
- Shortcodes/Display_FAQ_Search.php +10 -4
- html/OptionsPage.php +10 -0
- lang/ultimate-faqs-it_IT.mo +0 -0
- lang/ultimate-faqs-it_IT.po +620 -0
- readme.txt +32 -21
Functions/EWD_UFAQ_Submit_Question.php
CHANGED
@@ -25,7 +25,8 @@ function EWD_UFAQ_Submit_Question($success_message) {
|
|
25 |
}
|
26 |
|
27 |
function EWD_UFAQ_Send_Admin_Notification_Email($post_id, $Post_Title, $Post_Body) {
|
28 |
-
$Admin_Email = get_option(
|
|
|
29 |
|
30 |
$ReviewLink = site_url() . "/wp-admin/post.php?post=" . $post_id . "&action=edit";
|
31 |
|
25 |
}
|
26 |
|
27 |
function EWD_UFAQ_Send_Admin_Notification_Email($post_id, $Post_Title, $Post_Body) {
|
28 |
+
if (get_option("EWD_UFAQ_Admin_Notification_Email") != "") {$Admin_Email = get_option("EWD_UFAQ_Admin_Notification_Email");}
|
29 |
+
else {$Admin_Email = get_option( 'admin_email' );}
|
30 |
|
31 |
$ReviewLink = site_url() . "/wp-admin/post.php?post=" . $post_id . "&action=edit";
|
32 |
|
Functions/Update_Admin_Databases.php
CHANGED
@@ -19,7 +19,7 @@ function EWD_UFAQ_UpdateOptions() {
|
|
19 |
|
20 |
$Custom_CSS = stripslashes_deep($Custom_CSS);
|
21 |
|
22 |
-
if (isset($_POST['
|
23 |
if (isset($_POST['faq_toggle'])) {update_option('EWD_UFAQ_Toggle', $_POST['faq_toggle']);}
|
24 |
if (isset($_POST['faq_category_toggle'])) {update_option('EWD_UFAQ_Category_Toggle', $_POST['faq_category_toggle']);}
|
25 |
if (isset($_POST['expand_collapse_all'])) {update_option('EWD_UFAQ_Expand_Collapse_All', $_POST['expand_collapse_all']);}
|
@@ -46,6 +46,7 @@ function EWD_UFAQ_UpdateOptions() {
|
|
46 |
if (isset($_POST['pretty_permalinks']) and $UFAQ_Full_Version == "Yes") {update_option('EWD_UFAQ_Pretty_Permalinks', $_POST['pretty_permalinks']);}
|
47 |
if (isset($_POST['allow_proposed_answer']) and $UFAQ_Full_Version == "Yes") {update_option('EWD_UFAQ_Allow_Proposed_Answer', $_POST['allow_proposed_answer']);}
|
48 |
if (isset($_POST['admin_question_notification']) and $UFAQ_Full_Version == "Yes") {update_option('EWD_UFAQ_Admin_Question_Notification', $_POST['admin_question_notification']);}
|
|
|
49 |
if (isset($_POST['faq_auto_complete_titles']) and $UFAQ_Full_Version == "Yes") {update_option('EWD_UFAQ_Auto_Complete_Titles', $_POST['faq_auto_complete_titles']);}
|
50 |
if (isset($_POST['slug_base']) and $UFAQ_Full_Version == "Yes") {update_option('EWD_UFAQ_Slug_Base', $_POST['slug_base']);}
|
51 |
if (isset($_POST['Socialmedia']) and $UFAQ_Full_Version == "Yes") {update_option('EWD_UFAQ_Social_Media', $Social_Media);}
|
19 |
|
20 |
$Custom_CSS = stripslashes_deep($Custom_CSS);
|
21 |
|
22 |
+
if (isset($_POST['Options_Submit'])) {update_option('EWD_UFAQ_Custom_CSS', $Custom_CSS);}
|
23 |
if (isset($_POST['faq_toggle'])) {update_option('EWD_UFAQ_Toggle', $_POST['faq_toggle']);}
|
24 |
if (isset($_POST['faq_category_toggle'])) {update_option('EWD_UFAQ_Category_Toggle', $_POST['faq_category_toggle']);}
|
25 |
if (isset($_POST['expand_collapse_all'])) {update_option('EWD_UFAQ_Expand_Collapse_All', $_POST['expand_collapse_all']);}
|
46 |
if (isset($_POST['pretty_permalinks']) and $UFAQ_Full_Version == "Yes") {update_option('EWD_UFAQ_Pretty_Permalinks', $_POST['pretty_permalinks']);}
|
47 |
if (isset($_POST['allow_proposed_answer']) and $UFAQ_Full_Version == "Yes") {update_option('EWD_UFAQ_Allow_Proposed_Answer', $_POST['allow_proposed_answer']);}
|
48 |
if (isset($_POST['admin_question_notification']) and $UFAQ_Full_Version == "Yes") {update_option('EWD_UFAQ_Admin_Question_Notification', $_POST['admin_question_notification']);}
|
49 |
+
if (isset($_POST['Options_Submit']) and $UFAQ_Full_Version == "Yes") {update_option('EWD_UFAQ_Admin_Notification_Email', $_POST['admin_notification_email']);}
|
50 |
if (isset($_POST['faq_auto_complete_titles']) and $UFAQ_Full_Version == "Yes") {update_option('EWD_UFAQ_Auto_Complete_Titles', $_POST['faq_auto_complete_titles']);}
|
51 |
if (isset($_POST['slug_base']) and $UFAQ_Full_Version == "Yes") {update_option('EWD_UFAQ_Slug_Base', $_POST['slug_base']);}
|
52 |
if (isset($_POST['Socialmedia']) and $UFAQ_Full_Version == "Yes") {update_option('EWD_UFAQ_Social_Media', $Social_Media);}
|
Main.php
CHANGED
@@ -7,7 +7,7 @@ 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.
|
11 |
*/
|
12 |
|
13 |
global $ewd_ufaq_message;
|
@@ -41,7 +41,7 @@ function EWD_UFAQ_Enable_Sub_Menu() {
|
|
41 |
|
42 |
remove_menu_page('edit.php?post_type=ufaq');
|
43 |
|
44 |
-
add_menu_page( 'Ultimate FAQs', 'FAQs', 'edit_posts', 'EWD-UFAQ-Options', 'EWD_UFAQ_Output_Pages',
|
45 |
add_submenu_page('EWD-UFAQ-Options', 'FAQ Options', 'FAQ Settings', 'edit_posts', 'EWD-UFAQ-Options&DisplayPage=Options', 'EWD_UFAQ_Output_Pages');
|
46 |
if ($Admin_Approval == "Yes") {
|
47 |
$submenu['EWD-UFAQ-Options'][6] = $submenu['EWD-UFAQ-Options'][1];
|
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.35
|
11 |
*/
|
12 |
|
13 |
global $ewd_ufaq_message;
|
41 |
|
42 |
remove_menu_page('edit.php?post_type=ufaq');
|
43 |
|
44 |
+
add_menu_page( 'Ultimate FAQs', 'FAQs', 'edit_posts', 'EWD-UFAQ-Options', 'EWD_UFAQ_Output_Pages', 'dashicons-format-chat', '49.1' );
|
45 |
add_submenu_page('EWD-UFAQ-Options', 'FAQ Options', 'FAQ Settings', 'edit_posts', 'EWD-UFAQ-Options&DisplayPage=Options', 'EWD_UFAQ_Output_Pages');
|
46 |
if ($Admin_Approval == "Yes") {
|
47 |
$submenu['EWD-UFAQ-Options'][6] = $submenu['EWD-UFAQ-Options'][1];
|
Shortcodes/DisplayFAQs.php
CHANGED
@@ -283,7 +283,7 @@ function Display_FAQs($atts) {
|
|
283 |
}
|
284 |
|
285 |
$TitlesArray[] = json_encode($faq->post_title);
|
286 |
-
$HeaderString .= "<div class='ufaq-faq-header-title'><a href='' class='ufaq-faq-header-link' data-postid='" . $Unique_ID . "-" . $faq->ID . "-" . $Counter . "'>" . $faq->post_title . "</a></div>";
|
287 |
|
288 |
$ReturnString .= "<div class='ufaq-faq-div ufaq-faq-display-style-" . $Display_Style . "' id='ufaq-post-" . $Unique_ID . "-" . $faq->ID . "-" . $Counter . "' data-postid='" . $Unique_ID . "-" . $faq->ID . "-" . $Counter . "' itemscope itemtype='http://schema.org/Question'>";
|
289 |
|
@@ -293,7 +293,7 @@ function Display_FAQs($atts) {
|
|
293 |
$ReturnString .= "<a class='ewd-ufaq-post-margin' href='" . get_permalink($faq->ID) . "'><div class='ewd-ufaq-post-margin-symbol " . $Color_Block_Shape . "' id='ewd-ufaq-post-margin-symbol-" . $Unique_ID . "-" . $faq->ID . "-" . $Counter . "'><span id='ewd-ufaq-post-symbol-" . $Unique_ID . "-" . $faq->ID . "-" . $Counter;
|
294 |
if ($Display_All_Answers == "Yes") {$ReturnString .= "'>" . $Toggle_Symbol . "</span></div>";}
|
295 |
else {$ReturnString .= "'>" . strtolower($Toggle_Symbol) . "</span></div>";}
|
296 |
-
$ReturnString .= "<div class='ufaq-faq-title-text'><" . $UFAQ_Styling_FAQ_Heading_Type . " itemprop='name'>"
|
297 |
$ReturnString .= "</div>";
|
298 |
|
299 |
if (strlen($faq->post_excerpt) > 0) {$ReturnString .= "<div class='ufaq-faq-excerpt' id='ufaq-excerpt-" . $faq->ID . "'>" . apply_filters('the_content', html_entity_decode($faq->post_excerpt)) . "</div>";}
|
283 |
}
|
284 |
|
285 |
$TitlesArray[] = json_encode($faq->post_title);
|
286 |
+
$HeaderString .= "<div class='ufaq-faq-header-title'><a href='' class='ufaq-faq-header-link' data-postid='" . $Unique_ID . "-" . $faq->ID . "-" . $Counter . "'>" . apply_filters('the_title', $faq->post_title) . "</a></div>";
|
287 |
|
288 |
$ReturnString .= "<div class='ufaq-faq-div ufaq-faq-display-style-" . $Display_Style . "' id='ufaq-post-" . $Unique_ID . "-" . $faq->ID . "-" . $Counter . "' data-postid='" . $Unique_ID . "-" . $faq->ID . "-" . $Counter . "' itemscope itemtype='http://schema.org/Question'>";
|
289 |
|
293 |
$ReturnString .= "<a class='ewd-ufaq-post-margin' href='" . get_permalink($faq->ID) . "'><div class='ewd-ufaq-post-margin-symbol " . $Color_Block_Shape . "' id='ewd-ufaq-post-margin-symbol-" . $Unique_ID . "-" . $faq->ID . "-" . $Counter . "'><span id='ewd-ufaq-post-symbol-" . $Unique_ID . "-" . $faq->ID . "-" . $Counter;
|
294 |
if ($Display_All_Answers == "Yes") {$ReturnString .= "'>" . $Toggle_Symbol . "</span></div>";}
|
295 |
else {$ReturnString .= "'>" . strtolower($Toggle_Symbol) . "</span></div>";}
|
296 |
+
$ReturnString .= "<div class='ufaq-faq-title-text'><" . $UFAQ_Styling_FAQ_Heading_Type . " itemprop='name'>" . apply_filters('the_title', $faq->post_title) . "</" . $UFAQ_Styling_FAQ_Heading_Type . "></div><div class='ewd-ufaq-clear'></div></a>";
|
297 |
$ReturnString .= "</div>";
|
298 |
|
299 |
if (strlen($faq->post_excerpt) > 0) {$ReturnString .= "<div class='ufaq-faq-excerpt' id='ufaq-excerpt-" . $faq->ID . "'>" . apply_filters('the_content', html_entity_decode($faq->post_excerpt)) . "</div>";}
|
Shortcodes/Display_FAQ_Search.php
CHANGED
@@ -2,7 +2,15 @@
|
|
2 |
|
3 |
function UFAQ_AJAX_Search($atts) {
|
4 |
global $wp;
|
|
|
|
|
5 |
$Auto_Complete_Titles = get_option("EWD_UFAQ_Auto_Complete_Titles");
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
$current_url = $_SERVER['REQUEST_URI'];
|
7 |
$ReturnString = "";
|
8 |
|
@@ -17,16 +25,14 @@ function UFAQ_AJAX_Search($atts) {
|
|
17 |
$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', '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;}";
|
27 |
$ReturnString .= $Custom_CSS;
|
28 |
$ReturnString .= "</style>";
|
29 |
|
|
|
|
|
30 |
if ($Auto_Complete_Titles == "Yes") {
|
31 |
$ReturnString .= "<script>";
|
32 |
$ReturnString .= "var autocompleteQuestion = 'Yes';\n";
|
2 |
|
3 |
function UFAQ_AJAX_Search($atts) {
|
4 |
global $wp;
|
5 |
+
|
6 |
+
$Custom_CSS = get_option("EWD_UFAQ_Custom_CSS");
|
7 |
$Auto_Complete_Titles = get_option("EWD_UFAQ_Auto_Complete_Titles");
|
8 |
+
|
9 |
+
$Enter_Question_Label = get_option("EWD_UFAQ_Enter_Question_Label");
|
10 |
+
if ($Enter_Question_Label == "") {$Enter_Question_Label = __('Enter your question', 'ultimate-faqs');}
|
11 |
+
$Search_Label = get_option("EWD_UFAQ_Search_Label");
|
12 |
+
if ($Search_Label == "") {$Search_Label = __("Search", 'ultimate-faqs');}
|
13 |
+
|
14 |
$current_url = $_SERVER['REQUEST_URI'];
|
15 |
$ReturnString = "";
|
16 |
|
25 |
$atts
|
26 |
)
|
27 |
);
|
|
|
|
|
|
|
|
|
28 |
|
29 |
$ReturnString .= "<style type='text/css'>";
|
30 |
$ReturnString .= ".ui-autocomplete {background:#FFF; border: #000 solid 1px; max-width:400px; max-height:200px; overflow:auto;}";
|
31 |
$ReturnString .= $Custom_CSS;
|
32 |
$ReturnString .= "</style>";
|
33 |
|
34 |
+
$ReturnString .= EWD_UFAQ_Add_Modified_Styles();
|
35 |
+
|
36 |
if ($Auto_Complete_Titles == "Yes") {
|
37 |
$ReturnString .= "<script>";
|
38 |
$ReturnString .= "var autocompleteQuestion = 'Yes';\n";
|
html/OptionsPage.php
CHANGED
@@ -25,6 +25,7 @@
|
|
25 |
$Pretty_Permalinks = get_option("EWD_UFAQ_Pretty_Permalinks");
|
26 |
$Allow_Proposed_Answer = get_option("EWD_UFAQ_Allow_Proposed_Answer");
|
27 |
$Admin_Question_Notification = get_option("EWD_UFAQ_Admin_Question_Notification");
|
|
|
28 |
$FAQ_Auto_Complete_Titles = get_option("EWD_UFAQ_Auto_Complete_Titles");
|
29 |
$Slug_Base = get_option("EWD_UFAQ_Slug_Base");
|
30 |
$Socialmedia_String = get_option("EWD_UFAQ_Social_Media");
|
@@ -475,6 +476,15 @@
|
|
475 |
</fieldset>
|
476 |
</td>
|
477 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
478 |
</table>
|
479 |
</div>
|
480 |
|
25 |
$Pretty_Permalinks = get_option("EWD_UFAQ_Pretty_Permalinks");
|
26 |
$Allow_Proposed_Answer = get_option("EWD_UFAQ_Allow_Proposed_Answer");
|
27 |
$Admin_Question_Notification = get_option("EWD_UFAQ_Admin_Question_Notification");
|
28 |
+
$Admin_Notification_Email = get_option("EWD_UFAQ_Admin_Notification_Email");
|
29 |
$FAQ_Auto_Complete_Titles = get_option("EWD_UFAQ_Auto_Complete_Titles");
|
30 |
$Slug_Base = get_option("EWD_UFAQ_Slug_Base");
|
31 |
$Socialmedia_String = get_option("EWD_UFAQ_Social_Media");
|
476 |
</fieldset>
|
477 |
</td>
|
478 |
</tr>
|
479 |
+
<tr>
|
480 |
+
<th scope="row">Admin Notification Email</th>
|
481 |
+
<td>
|
482 |
+
<fieldset><legend class="screen-reader-text"><span>Admin Notification Email</span></legend>
|
483 |
+
<input type='text' name='admin_notification_email' value='<?php echo $Admin_Notification_Email; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> size='60'/>
|
484 |
+
<p>What email address should notificatiions be sent to if "Admin Question Notifications" are set to "Yes" above? If blank, the default WordPress admin email will be used.</p>
|
485 |
+
</fieldset>
|
486 |
+
</td>
|
487 |
+
</tr>
|
488 |
</table>
|
489 |
</div>
|
490 |
|
lang/ultimate-faqs-it_IT.mo
ADDED
Binary file
|
lang/ultimate-faqs-it_IT.po
ADDED
@@ -0,0 +1,620 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2017 FAQ
|
2 |
+
# This file is distributed under the same license as the FAQ package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: FAQ 1.5.13\n"
|
6 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ultimate-faqs\n"
|
7 |
+
"POT-Creation-Date: 2017-05-16 11:51+0200\n"
|
8 |
+
"PO-Revision-Date: 2017-05-19 11:16+0200\n"
|
9 |
+
"Last-Translator: \n"
|
10 |
+
"Language-Team: \n"
|
11 |
+
"Language: it_IT\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Poedit 2.0.2\n"
|
16 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
+
|
18 |
+
#: Functions/EWD_UFAQ_Add_Social_Media_Buttons.php:4
|
19 |
+
msgid "Check out this helpful FAQ"
|
20 |
+
msgstr "Scopri questa utile FAQ"
|
21 |
+
|
22 |
+
#: Functions/EWD_UFAQ_Add_Views_Column.php:4
|
23 |
+
msgid "# of Views"
|
24 |
+
msgstr "# di Visualizzazioni"
|
25 |
+
|
26 |
+
#: Functions/EWD_UFAQ_Add_Views_Column.php:5 Main.php:85
|
27 |
+
#: html/DashboardPage.php:182 html/OptionsPage.php:524 html/OptionsPage.php:557
|
28 |
+
#: html/OptionsPage.php:655
|
29 |
+
msgid "Categories"
|
30 |
+
msgstr "Categorie"
|
31 |
+
|
32 |
+
#: Functions/EWD_UFAQ_Add_Views_Column.php:6
|
33 |
+
msgid "Post ID"
|
34 |
+
msgstr "ID del Post"
|
35 |
+
|
36 |
+
#: Functions/EWD_UFAQ_Import.php:113
|
37 |
+
msgid "FAQs added successfully."
|
38 |
+
msgstr "FAQs aggiunte correttamente."
|
39 |
+
|
40 |
+
#: Functions/EWD_UFAQ_Import.php:125
|
41 |
+
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
|
42 |
+
msgstr ""
|
43 |
+
"Il file caricato risulta più grande della dimensione massima specificata nel "
|
44 |
+
"php.ini"
|
45 |
+
|
46 |
+
#: Functions/EWD_UFAQ_Import.php:128
|
47 |
+
msgid ""
|
48 |
+
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
49 |
+
"the HTML form"
|
50 |
+
msgstr ""
|
51 |
+
"Il file caricato risulta più grande della dimensione massima specificata nel "
|
52 |
+
"form HTML"
|
53 |
+
|
54 |
+
#: Functions/EWD_UFAQ_Import.php:131
|
55 |
+
msgid "The uploaded file was only partially uploaded"
|
56 |
+
msgstr "Il file è stato caricato solo parzialmente"
|
57 |
+
|
58 |
+
#: Functions/EWD_UFAQ_Import.php:134 Functions/EWD_UFAQ_Meta_Boxes.php:257
|
59 |
+
msgid "No file was uploaded."
|
60 |
+
msgstr "Nessun file caricato."
|
61 |
+
|
62 |
+
#: Functions/EWD_UFAQ_Import.php:138
|
63 |
+
msgid "Missing a temporary folder"
|
64 |
+
msgstr "Manca la cartella temporanea"
|
65 |
+
|
66 |
+
#: Functions/EWD_UFAQ_Import.php:141
|
67 |
+
msgid "Failed to write file to disk"
|
68 |
+
msgstr "Impossibile scrivere il file sul disco"
|
69 |
+
|
70 |
+
#: Functions/EWD_UFAQ_Import.php:144
|
71 |
+
msgid "File upload stopped by extension"
|
72 |
+
msgstr "L'estensione del file non risulta corretta"
|
73 |
+
|
74 |
+
#: Functions/EWD_UFAQ_Import.php:148
|
75 |
+
msgid "No error code avaiable"
|
76 |
+
msgstr "Nessun codice d'errore disponibile"
|
77 |
+
|
78 |
+
#: Functions/EWD_UFAQ_Import.php:153
|
79 |
+
msgid "No file was uploaded here.."
|
80 |
+
msgstr "Nessun file è stato caricato qui.."
|
81 |
+
|
82 |
+
#: Functions/EWD_UFAQ_Import.php:158
|
83 |
+
msgid "File must be .csv, .xls or .xlsx"
|
84 |
+
msgstr "Il file deve essere .csv, .xls o .xlsx"
|
85 |
+
|
86 |
+
#: Functions/EWD_UFAQ_Meta_Boxes.php:7
|
87 |
+
msgid "Use the following shortcode to add this FAQ to a page:"
|
88 |
+
msgstr "Utilizza il seguente shotcode per aggiungere questa FAQ ad una pagina:"
|
89 |
+
|
90 |
+
#: Functions/EWD_UFAQ_Meta_Boxes.php:17
|
91 |
+
msgid "FAQ shortcode for this category"
|
92 |
+
msgstr "FAQ shortcode per questa categoria"
|
93 |
+
|
94 |
+
#: Functions/EWD_UFAQ_Meta_Boxes.php:22
|
95 |
+
msgid "FAQ Details"
|
96 |
+
msgstr "Dettagli FAQ"
|
97 |
+
|
98 |
+
#: Functions/EWD_UFAQ_Meta_Boxes.php:51
|
99 |
+
msgid "Author Display Name:"
|
100 |
+
msgstr "Nome Visualizzato dell'Autore:"
|
101 |
+
|
102 |
+
#: Functions/EWD_UFAQ_Meta_Boxes.php:62
|
103 |
+
msgid "Up Votes:"
|
104 |
+
msgstr "Voti positivi:"
|
105 |
+
|
106 |
+
#: Functions/EWD_UFAQ_Meta_Boxes.php:68
|
107 |
+
msgid "Down Votes:"
|
108 |
+
msgstr "Voti negativi:"
|
109 |
+
|
110 |
+
#: Functions/EWD_UFAQ_Meta_Boxes.php:207
|
111 |
+
msgid " One or more custom field values were incorrect."
|
112 |
+
msgstr " Uno o più valori del campo custom erano errari."
|
113 |
+
|
114 |
+
#: Functions/EWD_UFAQ_Submit_Question.php:16
|
115 |
+
msgid "FAQ was not created succesfully."
|
116 |
+
msgstr "FAQ non è stata creata correttamente."
|
117 |
+
|
118 |
+
#: Functions/EWD_UFAQ_Submit_Question.php:32
|
119 |
+
msgid "New Question Received"
|
120 |
+
msgstr "Nuova domanda ricevuta"
|
121 |
+
|
122 |
+
#: Functions/EWD_UFAQ_Submit_Question.php:34
|
123 |
+
msgid "Hello Admin,"
|
124 |
+
msgstr "Ciao Admin,"
|
125 |
+
|
126 |
+
#: Functions/EWD_UFAQ_Submit_Question.php:35
|
127 |
+
msgid "You've received a new question titled"
|
128 |
+
msgstr "Hai ricevuto una nuova domanda intitolata"
|
129 |
+
|
130 |
+
#: Functions/EWD_UFAQ_Submit_Question.php:37
|
131 |
+
msgid "The answer reads:<br>"
|
132 |
+
msgstr "La risposta è stata letta:<br>"
|
133 |
+
|
134 |
+
#: Functions/EWD_UFAQ_Submit_Question.php:40
|
135 |
+
msgid ""
|
136 |
+
"You can view the question in the admin area by going to the following link:"
|
137 |
+
"<br>"
|
138 |
+
msgstr ""
|
139 |
+
"Puoi visualizzare la domanda nel pannello di amministrazione passando al "
|
140 |
+
"seguente link:<br>"
|
141 |
+
|
142 |
+
#: Functions/EWD_UFAQ_Submit_Question.php:41
|
143 |
+
msgid "See the review"
|
144 |
+
msgstr "Vedi la recensione"
|
145 |
+
|
146 |
+
#: Functions/EWD_UFAQ_Submit_Question.php:42
|
147 |
+
msgid "Have a great day,"
|
148 |
+
msgstr "Buona giornata,"
|
149 |
+
|
150 |
+
#: Functions/EWD_UFAQ_Submit_Question.php:43
|
151 |
+
msgid "Ultimate FAQs Team"
|
152 |
+
msgstr "Team di Ultimate FAQs"
|
153 |
+
|
154 |
+
#: Functions/EWD_UFAQ_Upgrade_Box.php:7 html/DashboardPage.php:30
|
155 |
+
msgid "Full Version"
|
156 |
+
msgstr "Versione Completa"
|
157 |
+
|
158 |
+
#: Functions/EWD_UFAQ_Upgrade_Box.php:9 html/DashboardPage.php:32
|
159 |
+
msgid "Upgrade to the full version "
|
160 |
+
msgstr "Aggiorna alla versione completa "
|
161 |
+
|
162 |
+
#: Functions/EWD_UFAQ_Upgrade_Box.php:9
|
163 |
+
msgid ""
|
164 |
+
"to take advantage of all the available features of the Ultimate FAQs for "
|
165 |
+
"Wordpress!"
|
166 |
+
msgstr ""
|
167 |
+
"per approfittare di tutte le funzionalità disponibili di Ultimate FAQs per "
|
168 |
+
"Wordpress!"
|
169 |
+
|
170 |
+
#: Functions/EWD_UFAQ_Upgrade_Box.php:10 html/DashboardPage.php:36
|
171 |
+
msgid "What you get by upgrading:"
|
172 |
+
msgstr "Cosa ricevi effettuando l'aggiornamento:"
|
173 |
+
|
174 |
+
#: Functions/EWD_UFAQ_Upgrade_Box.php:20 html/DashboardPage.php:46
|
175 |
+
msgid "Product Key"
|
176 |
+
msgstr "Chiave del Prodotto"
|
177 |
+
|
178 |
+
#: Functions/EWD_UFAQ_Upgrade_Box.php:23 html/DashboardPage.php:49
|
179 |
+
msgid "Upgrade"
|
180 |
+
msgstr "Aggiornamento"
|
181 |
+
|
182 |
+
#: Functions/EWD_UFAQ_Upgrade_Box.php:37
|
183 |
+
msgid "Upgrade Complete!"
|
184 |
+
msgstr "Aggiornamento Completato!"
|
185 |
+
|
186 |
+
#: Functions/EWD_UFAQ_Widgets.php:10
|
187 |
+
msgid "UFAQ FAQ ID List"
|
188 |
+
msgstr "Lista ID delle FAQ di UFAQ"
|
189 |
+
|
190 |
+
#: Functions/EWD_UFAQ_Widgets.php:11
|
191 |
+
msgid "Insert FAQ posts using a comma-separated list of post IDs"
|
192 |
+
msgstr ""
|
193 |
+
"Inserisci le FAQ utilizzando un elenco di ID (delle FAQ) separato da virgole"
|
194 |
+
|
195 |
+
#: Functions/EWD_UFAQ_Widgets.php:33
|
196 |
+
msgid "FAQ ID List"
|
197 |
+
msgstr "Lista ID delle FAQ"
|
198 |
+
|
199 |
+
#: Functions/EWD_UFAQ_Widgets.php:36
|
200 |
+
msgid "FAQ ID List:"
|
201 |
+
msgstr "Lista ID delle FAQ:"
|
202 |
+
|
203 |
+
#: Functions/EWD_UFAQ_Widgets.php:65
|
204 |
+
msgid "Recent FAQs"
|
205 |
+
msgstr "FAQs Recenti"
|
206 |
+
|
207 |
+
#: Functions/EWD_UFAQ_Widgets.php:66
|
208 |
+
msgid "Insert a number of the most recent FAQs"
|
209 |
+
msgstr "Inserisci un numero di FAQ più recenti"
|
210 |
+
|
211 |
+
#: Functions/EWD_UFAQ_Widgets.php:88 Functions/EWD_UFAQ_Widgets.php:143
|
212 |
+
msgid "Number of FAQs"
|
213 |
+
msgstr "Numero di FAQ"
|
214 |
+
|
215 |
+
#: Functions/EWD_UFAQ_Widgets.php:91 Functions/EWD_UFAQ_Widgets.php:146
|
216 |
+
msgid "Number of FAQs:"
|
217 |
+
msgstr "Numero di FAQ:"
|
218 |
+
|
219 |
+
#: Functions/EWD_UFAQ_Widgets.php:120
|
220 |
+
msgid "Popular FAQs"
|
221 |
+
msgstr "FAQs Popolari"
|
222 |
+
|
223 |
+
#: Functions/EWD_UFAQ_Widgets.php:121
|
224 |
+
msgid "Insert a number of the most popular FAQs"
|
225 |
+
msgstr "Inserisci un numero di FAQ più popolari"
|
226 |
+
|
227 |
+
#: Functions/EWD_UFAQ_Widgets.php:175
|
228 |
+
msgid "UFAQ FAQ Category List"
|
229 |
+
msgstr "Elenco categorie FAQ di UFAQ"
|
230 |
+
|
231 |
+
#: Functions/EWD_UFAQ_Widgets.php:176
|
232 |
+
msgid "Insert FAQ posts using a comma-separated list of categories"
|
233 |
+
msgstr ""
|
234 |
+
"Inserisci i post delle FAQ utilizzando un elenco di categorie separate da "
|
235 |
+
"virgole"
|
236 |
+
|
237 |
+
#: Functions/EWD_UFAQ_Widgets.php:198
|
238 |
+
msgid "FAQ Category List"
|
239 |
+
msgstr "Elenco categorie FAQ"
|
240 |
+
|
241 |
+
#: Functions/EWD_UFAQ_Widgets.php:201
|
242 |
+
msgid "FAQ Category List:"
|
243 |
+
msgstr "Elenco categorie FAQ:"
|
244 |
+
|
245 |
+
#: Functions/EWD_UFAQ_WooCommerce_Tab.php:26
|
246 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:7
|
247 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:9 Main.php:82
|
248 |
+
msgid "FAQs"
|
249 |
+
msgstr "FAQs"
|
250 |
+
|
251 |
+
#: Functions/Full_Upgrade.php:8
|
252 |
+
msgid "Trial successfully started!"
|
253 |
+
msgstr "Periodo di prova iniziato!"
|
254 |
+
|
255 |
+
#. Plugin Name of the plugin/theme
|
256 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:8
|
257 |
+
msgid "FAQ"
|
258 |
+
msgstr "FAQ"
|
259 |
+
|
260 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:10 Main.php:84
|
261 |
+
msgid "Add New"
|
262 |
+
msgstr "Aggiungi FAQ"
|
263 |
+
|
264 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:11
|
265 |
+
msgid "Add New FAQ"
|
266 |
+
msgstr "Aggiungi Nuova FAQ"
|
267 |
+
|
268 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:12
|
269 |
+
msgid "Edit FAQ"
|
270 |
+
msgstr "Modifica FAQ"
|
271 |
+
|
272 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:13
|
273 |
+
msgid "New FAQ"
|
274 |
+
msgstr "Nuova FAQ"
|
275 |
+
|
276 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:14
|
277 |
+
msgid "View FAQ"
|
278 |
+
msgstr "Visualizza FAQ"
|
279 |
+
|
280 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:15
|
281 |
+
msgid "Search FAQs"
|
282 |
+
msgstr "Cerca FAQs"
|
283 |
+
|
284 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:16
|
285 |
+
msgid "Nothing found"
|
286 |
+
msgstr "Nessun risultato"
|
287 |
+
|
288 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:17
|
289 |
+
msgid "Nothing found in Trash"
|
290 |
+
msgstr "Nessun risultato nel Cestino"
|
291 |
+
|
292 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:46
|
293 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:56
|
294 |
+
msgid "FAQ Categories"
|
295 |
+
msgstr "Categorie FAQ"
|
296 |
+
|
297 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:47
|
298 |
+
msgid "FAQ Category"
|
299 |
+
msgstr "Categoria FAQ"
|
300 |
+
|
301 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:48
|
302 |
+
msgid "Search FAQ Categories"
|
303 |
+
msgstr "Cerca le Categorie FAQ"
|
304 |
+
|
305 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:49
|
306 |
+
msgid "All FAQ Categories"
|
307 |
+
msgstr "Tutte le Categorie FAQ"
|
308 |
+
|
309 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:50
|
310 |
+
msgid "Parent FAQ Category"
|
311 |
+
msgstr "Categoria FAQ Genitore"
|
312 |
+
|
313 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:51
|
314 |
+
msgid "Parent FAQ Category:"
|
315 |
+
msgstr "Categoria FAQ Genitore:"
|
316 |
+
|
317 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:52
|
318 |
+
msgid "Edit FAQ Category"
|
319 |
+
msgstr "Modifica Categoria FAQ"
|
320 |
+
|
321 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:53
|
322 |
+
msgid "Update FAQ Category"
|
323 |
+
msgstr "Aggiorna Categoria FAQ"
|
324 |
+
|
325 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:54
|
326 |
+
msgid "Add New FAQ Category"
|
327 |
+
msgstr "Aggiungi Nuova Categoria FAQ"
|
328 |
+
|
329 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:55
|
330 |
+
msgid "New FAQ Category Name"
|
331 |
+
msgstr "Nuovo Nome Categoria FAQ"
|
332 |
+
|
333 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:66
|
334 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:76
|
335 |
+
msgid "FAQ Tags"
|
336 |
+
msgstr "Tags FAQ"
|
337 |
+
|
338 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:67
|
339 |
+
msgid "FAQ Tag"
|
340 |
+
msgstr "Tag FAQ"
|
341 |
+
|
342 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:68
|
343 |
+
msgid "Search FAQ Tags"
|
344 |
+
msgstr "Cerca i Tags FAQ"
|
345 |
+
|
346 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:69
|
347 |
+
msgid "All FAQ Tags"
|
348 |
+
msgstr "Tutti i Tags FAQ"
|
349 |
+
|
350 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:70
|
351 |
+
msgid "Parent FAQ Tag"
|
352 |
+
msgstr "Tag FAQ Genitore"
|
353 |
+
|
354 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:71
|
355 |
+
msgid "Parent FAQ Tag:"
|
356 |
+
msgstr "Tag FAQ Genitore:"
|
357 |
+
|
358 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:72
|
359 |
+
msgid "Edit FAQ Tag"
|
360 |
+
msgstr "Modifica Tag FAQ"
|
361 |
+
|
362 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:73
|
363 |
+
msgid "Update FAQ Tag"
|
364 |
+
msgstr "Aggiorna Tag FAQ"
|
365 |
+
|
366 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:74
|
367 |
+
msgid "Add New FAQ Tag"
|
368 |
+
msgstr "Aggiungi Nuovo Tag FAQ"
|
369 |
+
|
370 |
+
#: Functions/Register_EWD_UFAQ_Posts_Taxonomies.php:75
|
371 |
+
msgid "New FAQ Tag Name"
|
372 |
+
msgstr "Nuovo Nome Tag FAQ"
|
373 |
+
|
374 |
+
#: Functions/Update_EWD_UFAQ_Content.php:27
|
375 |
+
msgid "The form has not worked correctly. Please contact the plugin developer."
|
376 |
+
msgstr ""
|
377 |
+
"Il form non funziona correttamente. Si prega di contattare lo sviluppatore "
|
378 |
+
"del plugin."
|
379 |
+
|
380 |
+
#: Main.php:77 html/MainScreen.php:3
|
381 |
+
msgid "Dashboard"
|
382 |
+
msgstr "Pannello di Controllo"
|
383 |
+
|
384 |
+
#: Main.php:79
|
385 |
+
msgid "Approved FAQs"
|
386 |
+
msgstr "FAQs Approvate"
|
387 |
+
|
388 |
+
#: Main.php:80
|
389 |
+
msgid "Awaiting Approval"
|
390 |
+
msgstr "In attesa di approvazione"
|
391 |
+
|
392 |
+
#: Main.php:86 html/OptionsPage.php:525 html/OptionsPage.php:558
|
393 |
+
#: html/OptionsPage.php:661
|
394 |
+
msgid "Tags"
|
395 |
+
msgstr "Tags"
|
396 |
+
|
397 |
+
#: Main.php:87
|
398 |
+
msgid "Settings"
|
399 |
+
msgstr "Impostazioni"
|
400 |
+
|
401 |
+
#: Main.php:88
|
402 |
+
msgid "Export"
|
403 |
+
msgstr "Esporta"
|
404 |
+
|
405 |
+
#: Main.php:89
|
406 |
+
msgid "Import"
|
407 |
+
msgstr "Importa"
|
408 |
+
|
409 |
+
#: Main.php:134 html/OptionsPage.php:749
|
410 |
+
msgid "Retrieving Results"
|
411 |
+
msgstr "Recupero dei risultati"
|
412 |
+
|
413 |
+
#: Main.php:289
|
414 |
+
msgid "Next"
|
415 |
+
msgstr "Successivo"
|
416 |
+
|
417 |
+
#: Main.php:290
|
418 |
+
msgid "Close"
|
419 |
+
msgstr "Chiudi"
|
420 |
+
|
421 |
+
#: Shortcodes/DisplayFAQs.php:46
|
422 |
+
msgid "Posted "
|
423 |
+
msgstr "Inserito "
|
424 |
+
|
425 |
+
#: Shortcodes/DisplayFAQs.php:48
|
426 |
+
msgid "by "
|
427 |
+
msgstr "da "
|
428 |
+
|
429 |
+
#: Shortcodes/DisplayFAQs.php:50
|
430 |
+
msgid "on "
|
431 |
+
msgstr "su "
|
432 |
+
|
433 |
+
#: Shortcodes/DisplayFAQs.php:54
|
434 |
+
msgid "Back to Top"
|
435 |
+
msgstr "Torna su"
|
436 |
+
|
437 |
+
#: Shortcodes/DisplayFAQs.php:56 html/OptionsPage.php:679
|
438 |
+
msgid "Permalink"
|
439 |
+
msgstr "Permalink"
|
440 |
+
|
441 |
+
#: Shortcodes/DisplayFAQs.php:58
|
442 |
+
msgid "No result FAQ's contained the term '%s'"
|
443 |
+
msgstr "Nessun risultato nelle FAQ contiene il termine '%s'"
|
444 |
+
|
445 |
+
#: Shortcodes/DisplayFAQs.php:197
|
446 |
+
msgid "Expand All"
|
447 |
+
msgstr "Espandi Tutto"
|
448 |
+
|
449 |
+
#: Shortcodes/DisplayFAQs.php:198
|
450 |
+
msgid "Collapse All"
|
451 |
+
msgstr "Riduci Tutto"
|
452 |
+
|
453 |
+
#: Shortcodes/DisplayFAQs.php:361
|
454 |
+
msgid "Did you find this FAQ helpful?"
|
455 |
+
msgstr "Hai trovato questa FAQ utile?"
|
456 |
+
|
457 |
+
#: Shortcodes/Display_FAQ_Search.php:21 html/OptionsPage.php:667
|
458 |
+
msgid "Enter your question"
|
459 |
+
msgstr "Inserisci la tua domanda"
|
460 |
+
|
461 |
+
#: Shortcodes/Display_FAQ_Search.php:23 html/OptionsPage.php:673
|
462 |
+
msgid "Search"
|
463 |
+
msgstr "Cerca"
|
464 |
+
|
465 |
+
#: Shortcodes/SubmitFAQ.php:15
|
466 |
+
msgid "Thank you for submitting an FAQ."
|
467 |
+
msgstr "Grazie per aver inviato una FAQ."
|
468 |
+
|
469 |
+
#: Shortcodes/SubmitFAQ.php:16 html/OptionsPage.php:701
|
470 |
+
msgid "Submit a Question"
|
471 |
+
msgstr "Invia una Domanda"
|
472 |
+
|
473 |
+
#: Shortcodes/SubmitFAQ.php:17 html/OptionsPage.php:707
|
474 |
+
msgid "Please fill out the form below to submit a question."
|
475 |
+
msgstr "Compila il modulo sottostante per inviare una domanda."
|
476 |
+
|
477 |
+
#: Shortcodes/SubmitFAQ.php:18 html/OptionsPage.php:713
|
478 |
+
msgid "Send Question"
|
479 |
+
msgstr "Invia Domanda"
|
480 |
+
|
481 |
+
#: Shortcodes/SubmitFAQ.php:27 html/OptionsPage.php:719
|
482 |
+
msgid "Question Title"
|
483 |
+
msgstr "Titolo della Domanda"
|
484 |
+
|
485 |
+
#: Shortcodes/SubmitFAQ.php:29 html/OptionsPage.php:725
|
486 |
+
msgid "What question is being answered?"
|
487 |
+
msgstr "Quale domanda ha ottenuto una risposta?"
|
488 |
+
|
489 |
+
#: Shortcodes/SubmitFAQ.php:31 html/OptionsPage.php:731
|
490 |
+
msgid "Proposed Answer"
|
491 |
+
msgstr "Risposta Proposta"
|
492 |
+
|
493 |
+
#: Shortcodes/SubmitFAQ.php:33
|
494 |
+
msgid "FAQ Author"
|
495 |
+
msgstr "Autore della FAQ"
|
496 |
+
|
497 |
+
#: Shortcodes/SubmitFAQ.php:35
|
498 |
+
msgid "What name should be displayed with your FAQ?"
|
499 |
+
msgstr "Quale nome dovrebbe essere visualizzato per la tua FAQ?"
|
500 |
+
|
501 |
+
#: html/AdminHeader.php:2
|
502 |
+
msgid "Ultimate FAQ Settings"
|
503 |
+
msgstr "Impostazioni Ultimate FAQ"
|
504 |
+
|
505 |
+
#: html/DashboardPage.php:32
|
506 |
+
msgid ""
|
507 |
+
"to take advantage of all the available features of Ultimate FAQs for "
|
508 |
+
"Wordpress!"
|
509 |
+
msgstr ""
|
510 |
+
"per approfittare di tutte le funzioni disponibili di Ultimate FAQs per "
|
511 |
+
"Wordpress!"
|
512 |
+
|
513 |
+
#: html/DashboardPage.php:180
|
514 |
+
msgid "Title"
|
515 |
+
msgstr "Titolo"
|
516 |
+
|
517 |
+
#: html/DashboardPage.php:181 html/OptionsPage.php:523 html/OptionsPage.php:556
|
518 |
+
msgid "Views"
|
519 |
+
msgstr "Visualizzazioni"
|
520 |
+
|
521 |
+
#: html/DashboardPage.php:196
|
522 |
+
msgid ""
|
523 |
+
"No FAQs to display yet. Create an FAQ and then view it for it to be "
|
524 |
+
"displayed here."
|
525 |
+
msgstr ""
|
526 |
+
"Nessuna domanda da visualizzare finora. Crea una FAQ e visualizzala per "
|
527 |
+
"essere riportata qui."
|
528 |
+
|
529 |
+
#: html/DashboardPage.php:238
|
530 |
+
msgid "Recent Changes"
|
531 |
+
msgstr "Modifiche Recenti"
|
532 |
+
|
533 |
+
#: html/DashboardPage.php:248
|
534 |
+
msgid "Goes great with:"
|
535 |
+
msgstr "Vai alla grande con:"
|
536 |
+
|
537 |
+
#: html/ImportPage.php:23
|
538 |
+
msgid "Spreadhsheet Containing FAQs"
|
539 |
+
msgstr "Foglio di calcolo contenente FAQs"
|
540 |
+
|
541 |
+
#: html/MainScreen.php:4
|
542 |
+
msgid "Orders"
|
543 |
+
msgstr "Ordini"
|
544 |
+
|
545 |
+
#: html/MainScreen.php:5
|
546 |
+
msgid "Statuses"
|
547 |
+
msgstr "Stati"
|
548 |
+
|
549 |
+
#: html/MainScreen.php:6
|
550 |
+
msgid "Emails"
|
551 |
+
msgstr "Emails"
|
552 |
+
|
553 |
+
#: html/MainScreen.php:7
|
554 |
+
msgid "Options"
|
555 |
+
msgstr "Opzioni"
|
556 |
+
|
557 |
+
#: html/OptionsPage.php:506
|
558 |
+
msgid "Order Table"
|
559 |
+
msgstr "Tabella degli Ordini"
|
560 |
+
|
561 |
+
#: html/OptionsPage.php:507
|
562 |
+
msgid ""
|
563 |
+
"Drag and drop the posts below to reorder them, if you have 'Selected Order' "
|
564 |
+
"set for the 'FAQ Ordering' option"
|
565 |
+
msgstr ""
|
566 |
+
"Trascinare e rilasciare i post qui di seguito per riordinarli, se hai "
|
567 |
+
"impostato l'opzione 'Ordine Impostato' per l'opzione 'Ordinamento FAQ'"
|
568 |
+
|
569 |
+
#: html/OptionsPage.php:522 html/OptionsPage.php:555
|
570 |
+
msgid "Question"
|
571 |
+
msgstr "Domanda"
|
572 |
+
|
573 |
+
#: html/OptionsPage.php:637
|
574 |
+
msgid "Posted"
|
575 |
+
msgstr "Inserito"
|
576 |
+
|
577 |
+
#: html/OptionsPage.php:643
|
578 |
+
msgid "By"
|
579 |
+
msgstr "Da"
|
580 |
+
|
581 |
+
#: html/OptionsPage.php:649
|
582 |
+
msgid "On"
|
583 |
+
msgstr "Su"
|
584 |
+
|
585 |
+
#: html/OptionsPage.php:685
|
586 |
+
msgid "Back To Top"
|
587 |
+
msgstr "Torna su"
|
588 |
+
|
589 |
+
#: html/OptionsPage.php:695
|
590 |
+
msgid "Thank you for submitting an FAQ"
|
591 |
+
msgstr "Grazie per aver inviato una FAQ"
|
592 |
+
|
593 |
+
#: html/OptionsPage.php:737
|
594 |
+
msgid "Question Author"
|
595 |
+
msgstr "Autore della Domanda"
|
596 |
+
|
597 |
+
#: html/OptionsPage.php:743
|
598 |
+
msgid "What name should be displayed with your question?"
|
599 |
+
msgstr "Quale nome dovrebbe essere visualizzato per la tua domanda?"
|
600 |
+
|
601 |
+
#: html/OptionsPage.php:755
|
602 |
+
msgid "No results FAQ's contained the term '%s'"
|
603 |
+
msgstr "Nessun risultato nelle FAQ contiene il termine '%s'"
|
604 |
+
|
605 |
+
#. Plugin URI of the plugin/theme
|
606 |
+
#. Author URI of the plugin/theme
|
607 |
+
msgid "http://www.EtoileWebDesign.com/wordpress-plugins/"
|
608 |
+
msgstr "http://www.EtoileWebDesign.com/wordpress-plugins/"
|
609 |
+
|
610 |
+
#. Description of the plugin/theme
|
611 |
+
msgid ""
|
612 |
+
"A plugin that lets you create FAQs (frequently asked questions), organize "
|
613 |
+
"them, publicize them, etc."
|
614 |
+
msgstr ""
|
615 |
+
"Un plugin che consente di creare FAQ (domande frequenti), organizzarle, "
|
616 |
+
"pubblicizzarle, ecc."
|
617 |
+
|
618 |
+
#. Author of the plugin/theme
|
619 |
+
msgid "Etoile Web Design"
|
620 |
+
msgstr "Etoile Web Design"
|
readme.txt
CHANGED
@@ -2,8 +2,7 @@
|
|
2 |
Contributors: Rustaurius, EtoileWebDesign
|
3 |
Tags: faq, faqs, woocommerce faq, frequently asked questions, faq widget
|
4 |
Requires at least: 3.9.0
|
5 |
-
Tested up to: 4.7
|
6 |
-
Stable tag: 1.5.31
|
7 |
License: GPLv3
|
8 |
License URI:http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
@@ -13,21 +12,11 @@ FAQ plugin that lets you easily create, order and publicize FAQs, insert 3 style
|
|
13 |
|
14 |
<a href='http://www.etoilewebdesign.com/ultimate-faq-demo/'>FAQ Demo</a>
|
15 |
|
16 |
-
FAQ plugin that lets you create FAQ, organize FAQs and publicize your FAQ in no time through your Wordpress admin panel.
|
17 |
-
|
18 |
-
= Key FAQ Features =
|
19 |
-
* Unlimited FAQ, unlimited FAQ tag and unlimited FAQ category support
|
20 |
-
* Create FAQ categories
|
21 |
-
* Create FAQ posts and assign categories to them
|
22 |
-
* An AJAX FAQ search form
|
23 |
-
* Export all FAQs to a PDF to create a user manual
|
24 |
-
* Insert custom CSS to style your FAQ posts
|
25 |
-
|
26 |
-
[youtube https://www.youtube.com/watch?v=xeGVZnVrZ6I]
|
27 |
|
28 |
<strong>With WooCommerce Integration!</strong> See the "Add FAQ to WooCommerce" section below for full details and features.
|
29 |
|
30 |
-
|
31 |
|
32 |
`
|
33 |
[ultimate-faqs]
|
@@ -35,10 +24,24 @@ Select from multiple FAQ styles and FAQ layouts. You can use either the toggle F
|
|
35 |
|
36 |
Simply insert the shortcode above into any page to display your FAQs.
|
37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
FAQ features include FAQ statistics that show how many times FAQs have been viewed, FAQ styling options, FAQ categories and FAQ tags, FAQ display and FAQ ordering options, among many other FAQ options. Includes an FAQ shortcode helper, that lets you create FAQ shortcodes with FAQ attributes without having to manually enter FAQs.
|
39 |
|
40 |
Ultimate FAQ also works great for any content that works similarly to FAQ and that needs to be hidden until it is clicked, like job postings, recipes, etc.!
|
41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
= Add FAQ to WooCommerce! =
|
43 |
|
44 |
Using WooCommerce to sell your products? Easily add an FAQ tab to each product page, so your customers can see answers to common FAQ questions about the products they're browsing. It's the most comprehensive FAQ solution for WooCommerce!
|
@@ -47,10 +50,6 @@ For more information about WooCommerce integration, please see the following vid
|
|
47 |
|
48 |
[youtube https://www.youtube.com/watch?v=cH3p0fW4c5o]
|
49 |
|
50 |
-
Want to decide exactly what order your FAQs are displayed in? Use our simple FAQ drag-and-drop reordering feature! Create SEO-friendly FAQ links to individual FAQ posts to simply direct customers to exactly the right FAQ answer, right away. Easily add links to your FAQ to popular social media, such as Facebook, Twitter and Pinterest so that your customers can help you spread the word about your FAQ!
|
51 |
-
|
52 |
-
With the smart [submit-question] FAQ shortcode (premium), you can let your customers add to your custom FAQ list by submitting an FAQ question and even proposing an FAQ answer for it!
|
53 |
-
|
54 |
= Additional Features =
|
55 |
* Select FAQ animation options for displaying FAQ posts
|
56 |
* Toggle FAQ accordion (close open FAQ when a new one is opened) behaviour on/off
|
@@ -78,8 +77,6 @@ Ultimate FAQ uses the WordPress custom post type functionality to create an FAQ
|
|
78 |
* Advanced FAQ styling options
|
79 |
* Drag and drop precise re-ordering of FAQs
|
80 |
* Change the FAQ permalink slug base
|
81 |
-
|
82 |
-
<strong>** We are pleased to offer a free 7-day trial of the premium version, which users can use to test out all the features before buying the premium version! **</strong>
|
83 |
|
84 |
= FAQ Shortcodes =
|
85 |
* [ultimate-faqs]: display all FAQs, or only specific FAQ categories using include_category and exclude_category attributes (both take a comma-separated list of category slugs)
|
@@ -91,10 +88,14 @@ Ultimate FAQ uses the WordPress custom post type functionality to create an FAQ
|
|
91 |
|
92 |
For further information and purchasing options, please visit our <strong><a href="http://www.etoilewebdesign.com/plugins/ultimate-faq/">WordPress FAQ plugin</a></strong> homepage.
|
93 |
|
|
|
|
|
|
|
94 |
For help and support, please see:
|
95 |
|
96 |
* Our FAQ page, here: https://wordpress.org/plugins/ultimate-faqs/faq/
|
97 |
-
* Our installation
|
|
|
98 |
* Our documentation, here: http://www.etoilewebdesign.com/plugins/ultimate-faq/documentation-ultimate-faq/
|
99 |
* Our tutorial videos, here: https://www.youtube.com/playlist?list=PLEndQUuhlvSrNdfu5FKa1uGHsaKZxgdWt
|
100 |
* The Ultimate FAQ support forum, here: https://wordpress.org/support/plugin/ultimate-faqs
|
@@ -249,6 +250,13 @@ Video 3 - FAQs Ordering
|
|
249 |
13. View of FAQ custom fields in the admin
|
250 |
|
251 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
252 |
= 1.5.34 =
|
253 |
- Added an option to display the number of FAQs in a category, when FAQs are grouped by category
|
254 |
|
@@ -542,3 +550,6 @@ Video 3 - FAQs Ordering
|
|
542 |
|
543 |
= 1.0.0 =
|
544 |
- Premium version release, check out our website for all of the details <http://www.etoilewebdesign.com/ultimate-faq/>
|
|
|
|
|
|
2 |
Contributors: Rustaurius, EtoileWebDesign
|
3 |
Tags: faq, faqs, woocommerce faq, frequently asked questions, faq widget
|
4 |
Requires at least: 3.9.0
|
5 |
+
Tested up to: 4.7
|
|
|
6 |
License: GPLv3
|
7 |
License URI:http://www.gnu.org/licenses/gpl-3.0.html
|
8 |
|
12 |
|
13 |
<a href='http://www.etoilewebdesign.com/ultimate-faq-demo/'>FAQ Demo</a>
|
14 |
|
15 |
+
FAQ plugin that lets you create FAQ, organize FAQs and publicize your FAQ in no time through your Wordpress admin panel. Select from multiple FAQ styles and FAQ layouts. You can use either the toggle FAQ and/or accordion FAQ style, to display one expanded FAQ answer on click, or choose to display all FAQs on page load, with the optional list FAQ style that offers a more traditional FAQ layout.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
<strong>With WooCommerce Integration!</strong> See the "Add FAQ to WooCommerce" section below for full details and features.
|
18 |
|
19 |
+
** We are also pleased to announce the introduction of a free new premium 7-day trial feature, which users can choose to test out before buying the premium version! **
|
20 |
|
21 |
`
|
22 |
[ultimate-faqs]
|
24 |
|
25 |
Simply insert the shortcode above into any page to display your FAQs.
|
26 |
|
27 |
+
= Key FAQ Features =
|
28 |
+
* Unlimited FAQ, unlimited FAQ tag and unlimited FAQ category support
|
29 |
+
* Create FAQ categories
|
30 |
+
* Create FAQ posts and assign categories to them
|
31 |
+
* An AJAX FAQ search form
|
32 |
+
* Export all FAQs to a PDF to create a user manual
|
33 |
+
* Insert custom CSS to style your FAQ posts
|
34 |
+
|
35 |
FAQ features include FAQ statistics that show how many times FAQs have been viewed, FAQ styling options, FAQ categories and FAQ tags, FAQ display and FAQ ordering options, among many other FAQ options. Includes an FAQ shortcode helper, that lets you create FAQ shortcodes with FAQ attributes without having to manually enter FAQs.
|
36 |
|
37 |
Ultimate FAQ also works great for any content that works similarly to FAQ and that needs to be hidden until it is clicked, like job postings, recipes, etc.!
|
38 |
|
39 |
+
[youtube https://www.youtube.com/watch?v=xeGVZnVrZ6I]
|
40 |
+
|
41 |
+
Want to decide exactly what order your FAQs are displayed in? Use our simple FAQ drag-and-drop reordering feature! Create SEO-friendly FAQ links to individual FAQ posts to simply direct customers to exactly the right FAQ answer, right away. Easily add links to your FAQ to popular social media, such as Facebook, Twitter and Pinterest so that your customers can help you spread the word about your FAQ!
|
42 |
+
|
43 |
+
With the smart [submit-question] FAQ shortcode (premium), you can let your customers add to your custom FAQ list by submitting an FAQ question and even proposing an FAQ answer for it!
|
44 |
+
|
45 |
= Add FAQ to WooCommerce! =
|
46 |
|
47 |
Using WooCommerce to sell your products? Easily add an FAQ tab to each product page, so your customers can see answers to common FAQ questions about the products they're browsing. It's the most comprehensive FAQ solution for WooCommerce!
|
50 |
|
51 |
[youtube https://www.youtube.com/watch?v=cH3p0fW4c5o]
|
52 |
|
|
|
|
|
|
|
|
|
53 |
= Additional Features =
|
54 |
* Select FAQ animation options for displaying FAQ posts
|
55 |
* Toggle FAQ accordion (close open FAQ when a new one is opened) behaviour on/off
|
77 |
* Advanced FAQ styling options
|
78 |
* Drag and drop precise re-ordering of FAQs
|
79 |
* Change the FAQ permalink slug base
|
|
|
|
|
80 |
|
81 |
= FAQ Shortcodes =
|
82 |
* [ultimate-faqs]: display all FAQs, or only specific FAQ categories using include_category and exclude_category attributes (both take a comma-separated list of category slugs)
|
88 |
|
89 |
For further information and purchasing options, please visit our <strong><a href="http://www.etoilewebdesign.com/plugins/ultimate-faq/">WordPress FAQ plugin</a></strong> homepage.
|
90 |
|
91 |
+
= Translations =
|
92 |
+
- Italian (Thanks to <a href='http://www.nimdaweb.it/'>Nimdaweb</a>)
|
93 |
+
|
94 |
For help and support, please see:
|
95 |
|
96 |
* Our FAQ page, here: https://wordpress.org/plugins/ultimate-faqs/faq/
|
97 |
+
* Our installation page, here: https://wordpress.org/plugins/ultimate-faqs/installation/
|
98 |
+
* Our getting-started guide, here: http://www.etoilewebdesign.com/wp-content/uploads/getting-started-guides/FAQ_Getting_Started_Guide.pdf
|
99 |
* Our documentation, here: http://www.etoilewebdesign.com/plugins/ultimate-faq/documentation-ultimate-faq/
|
100 |
* Our tutorial videos, here: https://www.youtube.com/playlist?list=PLEndQUuhlvSrNdfu5FKa1uGHsaKZxgdWt
|
101 |
* The Ultimate FAQ support forum, here: https://wordpress.org/support/plugin/ultimate-faqs
|
250 |
13. View of FAQ custom fields in the admin
|
251 |
|
252 |
== Changelog ==
|
253 |
+
= 1.5.35 =
|
254 |
+
- Changed the menu icon
|
255 |
+
- Added missing filters for the title
|
256 |
+
- Made it possible to change the email address that submitted question notifications get sent to
|
257 |
+
- Add an Italian translation (Thanks to Nimbaweb)
|
258 |
+
- Fixed an error where custom CSS wasn't being applied to the search shortcode
|
259 |
+
|
260 |
= 1.5.34 =
|
261 |
- Added an option to display the number of FAQs in a category, when FAQs are grouped by category
|
262 |
|
550 |
|
551 |
= 1.0.0 =
|
552 |
- Premium version release, check out our website for all of the details <http://www.etoilewebdesign.com/ultimate-faq/>
|
553 |
+
|
554 |
+
|
555 |
+
|