Ultimate FAQ - Version 1.6.0

Version Description

  • Added in a new FAQ style, contemporary
  • Fixed an apply_filters issue with the_title
  • Internationalized a few strings
Download this release

Release Info

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

Code changes from version 1.5.40 to 1.6.0

Functions/EWD_UFAQ_Styling.php CHANGED
@@ -4,8 +4,7 @@ function EWD_UFAQ_Add_Modified_Styles() {
4
  $StylesString .=".ewd-ufaq-post-margin-symbol { ";
5
  if (get_option("EWD_UFAQ_Styling_Default_Bg_Color") != "") {$StylesString .= "background-color:" . get_option("EWD_UFAQ_Styling_Default_Bg_Color") . " !important;";}
6
  if (get_option("EWD_UFAQ_Styling_Default_Font_Color") != "") {$StylesString .="color:" . get_option("EWD_UFAQ_Styling_Default_Font_Color") . " !important;";}
7
- $StylesString .= "border-style: solid;";
8
- if (get_option("EWD_UFAQ_Styling_Default_Border_Size") != "") {$StylesString .= "border-width:" . get_option("EWD_UFAQ_Styling_Default_Border_Size") . " !important;";}
9
  if (get_option("EWD_UFAQ_Styling_Default_Border_Color") != "") {$StylesString .= "border-color:" . get_option("EWD_UFAQ_Styling_Default_Border_Color") . " !important;";}
10
  if (get_option("EWD_UFAQ_Styling_Default_Border_Radius") != "") {$StylesString .= "border-radius:" . get_option("EWD_UFAQ_Styling_Default_Border_Radius") . " !important;";}
11
  if (get_option("EWD_UFAQ_Styling_Toggle_Symbol_Size") != "") {$StylesString .= "font-size:" . get_option("EWD_UFAQ_Styling_Toggle_Symbol_Size") . " !important;";}
4
  $StylesString .=".ewd-ufaq-post-margin-symbol { ";
5
  if (get_option("EWD_UFAQ_Styling_Default_Bg_Color") != "") {$StylesString .= "background-color:" . get_option("EWD_UFAQ_Styling_Default_Bg_Color") . " !important;";}
6
  if (get_option("EWD_UFAQ_Styling_Default_Font_Color") != "") {$StylesString .="color:" . get_option("EWD_UFAQ_Styling_Default_Font_Color") . " !important;";}
7
+ if (get_option("EWD_UFAQ_Styling_Default_Border_Size") != "") {$StylesString .= "border-width:" . get_option("EWD_UFAQ_Styling_Default_Border_Size") . " !important; border-style: solid;";}
 
8
  if (get_option("EWD_UFAQ_Styling_Default_Border_Color") != "") {$StylesString .= "border-color:" . get_option("EWD_UFAQ_Styling_Default_Border_Color") . " !important;";}
9
  if (get_option("EWD_UFAQ_Styling_Default_Border_Radius") != "") {$StylesString .= "border-radius:" . get_option("EWD_UFAQ_Styling_Default_Border_Radius") . " !important;";}
10
  if (get_option("EWD_UFAQ_Styling_Toggle_Symbol_Size") != "") {$StylesString .= "font-size:" . get_option("EWD_UFAQ_Styling_Toggle_Symbol_Size") . " !important;";}
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.40
11
  */
12
 
13
  global $ewd_ufaq_message;
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.6.0
11
  */
12
 
13
  global $ewd_ufaq_message;
Shortcodes/DisplayFAQs.php CHANGED
@@ -286,7 +286,7 @@ function Display_FAQs($atts) {
286
  }
287
 
288
  $TitlesArray[] = json_encode($faq->post_title);
289
- $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>";
290
 
291
  $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'>";
292
 
@@ -296,7 +296,7 @@ function Display_FAQs($atts) {
296
  $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;
297
  if ($Display_All_Answers == "Yes") {$ReturnString .= "'>" . $Toggle_Symbol . "</span></div>";}
298
  else {$ReturnString .= "'>" . strtolower($Toggle_Symbol) . "</span></div>";}
299
- $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>";
300
  $ReturnString .= "</div>";
301
 
302
  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>";}
@@ -337,8 +337,8 @@ function Display_FAQs($atts) {
337
  if ($Hide_Categories == "No" and sizeOf($Category_Terms) > 0) {
338
  $ReturnString .= "<div class='ufaq-faq-categories' id='ufaq-categories-" . $faq->ID . "'>";
339
  if ($Category_Label == ""){
340
- if (sizeOf($Category_Terms) > 1) {$ReturnString .= "Categories: ";}
341
- else {$ReturnString .= "Category: ";}}
342
  else {$ReturnString .= $Category_Label . ": ";}
343
  foreach ($Category_Terms as $Category_Term) {
344
  if ($Pretty_Permalinks == "Yes") {$Category_URL = $current_url . "faq-category/" . $Category_Term->slug . "/";}
286
  }
287
 
288
  $TitlesArray[] = json_encode($faq->post_title);
289
+ $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, $faq->ID) . "</a></div>";
290
 
291
  $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'>";
292
 
296
  $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;
297
  if ($Display_All_Answers == "Yes") {$ReturnString .= "'>" . $Toggle_Symbol . "</span></div>";}
298
  else {$ReturnString .= "'>" . strtolower($Toggle_Symbol) . "</span></div>";}
299
+ $ReturnString .= "<div class='ufaq-faq-title-text'><" . $UFAQ_Styling_FAQ_Heading_Type . " itemprop='name'>" . apply_filters('the_title', $faq->post_title, $faq->ID) . "</" . $UFAQ_Styling_FAQ_Heading_Type . "></div><div class='ewd-ufaq-clear'></div></a>";
300
  $ReturnString .= "</div>";
301
 
302
  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>";}
337
  if ($Hide_Categories == "No" and sizeOf($Category_Terms) > 0) {
338
  $ReturnString .= "<div class='ufaq-faq-categories' id='ufaq-categories-" . $faq->ID . "'>";
339
  if ($Category_Label == ""){
340
+ if (sizeOf($Category_Terms) > 1) {$ReturnString .= __("Categories: ", 'ultimate-faqs');}
341
+ else {$ReturnString .= __("Category: ", 'ultimate-faqs');}}
342
  else {$ReturnString .= $Category_Label . ": ";}
343
  foreach ($Category_Terms as $Category_Term) {
344
  if ($Pretty_Permalinks == "Yes") {$Category_URL = $current_url . "faq-category/" . $Category_Term->slug . "/";}
css/ewd-ufaq-styles.css CHANGED
@@ -58,6 +58,10 @@
58
  margin-bottom: 20px;
59
  }
60
 
 
 
 
 
61
  .ufaq-faq-body {
62
  padding:10px 25px;
63
  padding-left: 55px;
@@ -368,6 +372,47 @@ margin-left: 100px;
368
 
369
 
370
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
371
 
372
 
373
  /***********************
58
  margin-bottom: 20px;
59
  }
60
 
61
+ .ufaq-faq-category-inner {
62
+ margin-bottom: 48px;
63
+ }
64
+
65
  .ufaq-faq-body {
66
  padding:10px 25px;
67
  padding-left: 55px;
372
 
373
 
374
 
375
+ /***********************
376
+ Contemporary Style
377
+ ***********************/
378
+ .ufaq-faq-display-style-Contemporary {
379
+ border-bottom: 1px solid #ccc;
380
+ padding: 0;
381
+ margin: 0;
382
+ }
383
+ .ufaq-faq-display-style-Contemporary:first-of-type {
384
+ border-top: 1px solid #ccc;
385
+ }
386
+ .ufaq-faq-display-style-Contemporary .ufaq-faq-title {
387
+ background: #f7f7f7;
388
+ padding: 8px 0 8px 4px;
389
+ }
390
+ .ufaq-faq-display-style-Contemporary .ewd-ufaq-post-margin-symbol {
391
+ float: right;
392
+ height: auto;
393
+ }
394
+ .ufaq-faq-display-style-Contemporary .ufaq-faq-body {
395
+ padding: 20px 25px 10px;
396
+ padding-left: 40px;
397
+ }
398
+ .ufaq-faq-display-style-Contemporary .ufaq-faq-tags, .ufaq-faq-display-style-Contemporary .ufaq-social-links {
399
+ margin-top: 4px;
400
+ }
401
+ .ufaq-faq-display-style-Contemporary .ufaq-social-links ul {
402
+ float: left;
403
+ margin-bottom: 14px;
404
+ }
405
+ .ufaq-faq-display-style-Contemporary .ufaq-permalink {
406
+ margin-left: 0;
407
+ margin-bottom: 10px;
408
+ }
409
+ .ufaq-faq-display-style-Contemporary .ufaq-back-to-top {
410
+ margin-bottom: 14px;
411
+ }
412
+
413
+
414
+
415
+
416
 
417
 
418
  /***********************
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", 'ultimate-faqs') ?></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("Spreadsheet Containing FAQs", 'ultimate-faqs') ?></label><br />
24
  <input name="FAQs_Spreadsheet" id="FAQs_Spreadsheet" type="file" value=""/>
25
  </div>
26
 
html/OptionsPage.php CHANGED
@@ -322,6 +322,7 @@
322
  <label title='Color Block Style'><input type='radio' name='display_style' value='Color_Block' <?php if($Display_Style == "Color_Block") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/> <span>Color Block</span></label><br />
323
  <label title='Block Style'><input type='radio' name='display_style' value='Block' <?php if($Display_Style == "Block") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/> <span>Block</span></label><br />
324
  <label title='Border Block Style'><input type='radio' name='display_style' value='Border_Block' <?php if($Display_Style == "Border_Block") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/> <span>Border Block</span></label><br />
 
325
  <label title='List Style'><input type='radio' name='display_style' value='List' <?php if($Display_Style == "List") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/> <span>List</span></label><br />
326
  <label title='Minimalist Style'><input type='radio' name='display_style' value='Minimalist' <?php if($Display_Style == "Minimalist") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/> <span>Minimalist</span></label><br />
327
  <p>Which theme should be used to display the FAQ's?</p>
322
  <label title='Color Block Style'><input type='radio' name='display_style' value='Color_Block' <?php if($Display_Style == "Color_Block") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/> <span>Color Block</span></label><br />
323
  <label title='Block Style'><input type='radio' name='display_style' value='Block' <?php if($Display_Style == "Block") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/> <span>Block</span></label><br />
324
  <label title='Border Block Style'><input type='radio' name='display_style' value='Border_Block' <?php if($Display_Style == "Border_Block") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/> <span>Border Block</span></label><br />
325
+ <label title='Contemporary Style'><input type='radio' name='display_style' value='Contemporary' <?php if($Display_Style == "Contemporary") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/> <span>Contemporary</span></label><br />
326
  <label title='List Style'><input type='radio' name='display_style' value='List' <?php if($Display_Style == "List") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/> <span>List</span></label><br />
327
  <label title='Minimalist Style'><input type='radio' name='display_style' value='Minimalist' <?php if($Display_Style == "Minimalist") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/> <span>Minimalist</span></label><br />
328
  <p>Which theme should be used to display the FAQ's?</p>
lang/ultimate-faqs-it_IT.po CHANGED
@@ -1,620 +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"
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
@@ -268,6 +268,11 @@ Video 3 - FAQs Ordering
268
 
269
 
270
  == Changelog ==
 
 
 
 
 
271
  = 1.5.40 =
272
  - Fixed a number of minor styling issues
273
 
268
 
269
 
270
  == Changelog ==
271
+ = 1.6.0 =
272
+ - Added in a new FAQ style, contemporary
273
+ - Fixed an apply_filters issue with the_title
274
+ - Internationalized a few strings
275
+
276
  = 1.5.40 =
277
  - Fixed a number of minor styling issues
278