Quiz And Survey Master (Formerly Quiz Master Next) - Version 4.2.0

Version Description

(March 7, 2015) = * Added Fill In The Blank Questions (GitHub Issue #132) * Created New Template Variables For Social Sharing (GitHub Issue #121) * Added Ability To Redirect To Other Page Upon Completion (GitHub Issue #35) * Added Several Translations: da_DK, es_ES, nl_NL, pt_BR, and th * Bug Fix: Duplicate Quizzes Not Having URL (GitHub Issue #144) * Bug Fix: Message Sent Text (GitHub Issue #142) * Bug Fix: Missing Footer Column (GitHub Issue #145)

Download this release

Release Info

Developer fpcorso
Plugin Icon 128x128 Quiz And Survey Master (Formerly Quiz Master Next)
Version 4.2.0
Comparing to
See all releases

Code changes from version 4.1.0 to 4.2.0

Files changed (54) hide show
  1. assets/index.php +4 -0
  2. includes/certificates/index.php +1 -1
  3. includes/css/index.php +4 -0
  4. includes/fpdf/index.php +4 -0
  5. includes/images/index.php +4 -0
  6. includes/index.php +4 -0
  7. includes/js/index.php +4 -0
  8. includes/qmn_addons.php +5 -0
  9. includes/qmn_adverts.php +3 -3
  10. includes/qmn_alerts.php +1 -0
  11. includes/qmn_credits.php +33 -43
  12. includes/qmn_dashboard.php +1 -0
  13. includes/qmn_dashboard_widgets.php +1 -0
  14. includes/qmn_global_settings.php +1 -0
  15. includes/qmn_help.php +1 -0
  16. includes/qmn_helper.php +1 -0
  17. includes/qmn_leaderboard.php +6 -5
  18. includes/qmn_options_certificate_tab.php +1 -0
  19. includes/qmn_options_email_tab.php +1 -0
  20. includes/qmn_options_leaderboard_tab.php +1 -0
  21. includes/qmn_options_option_tab.php +2 -1
  22. includes/qmn_options_preview_tab.php +1 -0
  23. includes/qmn_options_questions_tab.php +6 -3
  24. includes/qmn_options_results_page_tab.php +19 -4
  25. includes/qmn_options_style_tab.php +1 -0
  26. includes/qmn_options_text_tab.php +1 -0
  27. includes/qmn_options_tools_tab.php +1 -0
  28. includes/qmn_question_types.php +59 -1
  29. includes/qmn_quiz.php +119 -1
  30. includes/qmn_quiz_admin.php +6 -0
  31. includes/qmn_quiz_creator.php +14 -2
  32. includes/qmn_quiz_install.php +1 -0
  33. includes/qmn_quiz_options.php +5 -0
  34. includes/qmn_results.php +5 -1
  35. includes/qmn_results_details.php +5 -0
  36. includes/qmn_template_variables.php +74 -5
  37. includes/qmn_tools.php +5 -0
  38. includes/qmn_update.php +5 -0
  39. includes/qmn_usage_tracking.php +1 -3
  40. includes/qmn_widgets.php +1 -0
  41. index.php +4 -0
  42. languages/index.php +1 -2
  43. languages/quiz-master-next-da_DK.mo +0 -0
  44. languages/quiz-master-next-da_DK.po +1508 -0
  45. languages/quiz-master-next-es_ES.mo +0 -0
  46. languages/quiz-master-next-es_ES.po +1575 -0
  47. languages/quiz-master-next-nl_NL.mo +0 -0
  48. languages/quiz-master-next-pt_BR.mo +0 -0
  49. languages/quiz-master-next-pt_BR.po +3306 -0
  50. languages/quiz-master-next-th.mo +0 -0
  51. languages/quiz-master-next-th.po +1440 -0
  52. languages/quiz-master-next.pot +464 -433
  53. mlw_quizmaster2.php +4 -4
  54. readme.txt +25 -5
assets/index.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+
3
+ die("Error: Unauthorized Access");
4
+ ?>
includes/certificates/index.php CHANGED
@@ -1,4 +1,4 @@
1
  <?php
2
 
3
-
4
  ?>
1
  <?php
2
 
3
+ die("Error: Unauthorized Access");
4
  ?>
includes/css/index.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+
3
+ die("Error: Unauthorized Access");
4
+ ?>
includes/fpdf/index.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+
3
+ die("Error: Unauthorized Access");
4
+ ?>
includes/images/index.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+
3
+ die("Error: Unauthorized Access");
4
+ ?>
includes/index.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+
3
+ die("Error: Unauthorized Access");
4
+ ?>
includes/js/index.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+
3
+ die("Error: Unauthorized Access");
4
+ ?>
includes/qmn_addons.php CHANGED
@@ -1,6 +1,11 @@
1
  <?php
 
2
  function qmn_addons_page()
3
  {
 
 
 
 
4
  global $mlwQuizMasterNext;
5
  $active_tab = isset( $_GET[ 'tab' ] ) ? $_GET[ 'tab' ] : 'featured-addons';
6
  $tab_array = $mlwQuizMasterNext->pluginHelper->get_addon_tabs();
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  function qmn_addons_page()
4
  {
5
+ if ( !current_user_can('moderate_comments') )
6
+ {
7
+ return;
8
+ }
9
  global $mlwQuizMasterNext;
10
  $active_tab = isset( $_GET[ 'tab' ] ) ? $_GET[ 'tab' ] : 'featured-addons';
11
  $tab_array = $mlwQuizMasterNext->pluginHelper->get_addon_tabs();
includes/qmn_adverts.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
-
3
  function mlw_qmn_show_adverts()
4
  {
5
  $mlw_advert = "";
@@ -55,13 +55,13 @@ function mlw_qmn_show_adverts()
55
  div.help_decide a
56
  {
57
  color: yellow;
58
- }
59
  </style>";
60
  $mlw_advert .= "
61
  <div class=\"help_decide\">
62
  <p>$mlw_advert_text</p>
63
  </div>";
64
  }
65
- return $mlw_advert;
66
  }
67
  ?>
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  function mlw_qmn_show_adverts()
4
  {
5
  $mlw_advert = "";
55
  div.help_decide a
56
  {
57
  color: yellow;
58
+ }
59
  </style>";
60
  $mlw_advert .= "
61
  <div class=\"help_decide\">
62
  <p>$mlw_advert_text</p>
63
  </div>";
64
  }
65
+ return $mlw_advert;
66
  }
67
  ?>
includes/qmn_alerts.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  class MlwQmnAlertManager {
3
 
4
  public $alerts = array();
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  class MlwQmnAlertManager {
4
 
5
  public $alerts = array();
includes/qmn_credits.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /*
3
  This page shows the about page
4
  */
@@ -94,51 +95,41 @@ function mlw_generate_about_page()
94
  <?php _e('Requested Features', 'quiz-master-next'); ?></a>
95
  </h2>
96
  <div id="mlw_quiz_what_new">
97
- <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">Admin Result Pages Redesigned</h2>
98
- <p style="text-align: center;">This version redesigned the admin result pages. You can now multi-delete results. You can now go to the previous/next results when viewing results.</p>
99
- <br />
100
- <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">Restore Deleted Quizzes</h2>
101
- <p style="text-align: center;">You can now restore quizzes that you have deleted! To do so, visit the Tools page.</p>
102
- <br />
103
- <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">New Quizzes Have Direct URLs</h2>
104
- <p style="text-align: center;">We have started to incorporate the custom post type system. As such, newer quizzes will have direct urls. Users can search for quizzes and view an archive of your quizzes. To disable these features, navigate to our new Settings page in the Quizzes menu.</p>
105
- <br />
106
- <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">Ability To Use Own Facebook App ID</h2>
107
- <p style="text-align: center;">Many users have been asking to use their own app ID instead. You can now use your own app by changing the app id on the new Settings page.</p>
108
- <br />
109
- <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">Please Take Our Survey To Better Improve This Plugin</h2>
110
- <p style="text-align: center;">When you have a moment, please take our survey for this plugin. By filling out the survey, you are helping us improve this plugin. Users who take the survey between now and March 31st, 2015 will be emailed a 25% off coupon for our WordPress Store. When you are ready, please <a href='http://mylocalwebstop.com/quiz-master-next-survey/'>take our survey</a>.</p>
111
- <br />
112
- <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">This Plugin Is Now Translation Ready!</h2>
113
- <p style="text-align: center;">For those who wish to assist in translating, you can find the POT in the languages folder. If you do not know what that is, feel free to contact me and I will assist you with it.</p>
114
- <br />
115
- <hr />
116
- <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">For Developers:</h2>
117
- <br />
118
- <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">New Hook For The Template Variable List</h2>
119
- <p style="text-align: center;">You can now display your custom variables using the new qmn_template_variable_list hook.</p>
120
- <br />
121
- <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">We Are On GitHub Now</h2>
122
- <p style="text-align: center;">We have had several users ask for this so we thought we would try it out. We now love github! Be sure to <a href="https://github.com/fpcorso/quiz_master_next/">make suggestions or contribute</a>.</p>
123
- <br />
124
  </div>
125
  <div id="mlw_quiz_changelog" style="display: none;">
126
- <h3><?php echo $mlw_quiz_version; ?> (February 11, 2015)</h3>
127
  <ul>
128
- <li>* Added Ability To Restore Deleted Quizzes <a href="https://github.com/fpcorso/quiz_master_next/issues/107" target="_blank">GitHub Issue #107</a></li>
129
- <li>* Added Ability To Multi-Delete Results <a href="https://github.com/fpcorso/quiz_master_next/issues/4" target="_blank">GitHub Issue #4</a></li>
130
- <li>* Redesigned Admin Results Pages <a href="https://github.com/fpcorso/quiz_master_next/issues/106" target="_blank">GitHub Issue #106</a></li>
131
- <li>* Added Ability To Go To Next/Previous Results <a href="https://github.com/fpcorso/quiz_master_next/issues/71" target="_blank">GitHub Issue #71</a></li>
132
- <li>* Quizzes Now Have Direct URL And Archive <a href="https://github.com/fpcorso/quiz_master_next/issues/104" target="_blank">GitHub Issue #104</a></li>
133
- <li>* Added Ability To Use Own Facebook App ID <a href="https://github.com/fpcorso/quiz_master_next/issues/137" target="_blank">GitHub Issue #137</a></li>
134
- <li>* In Code: New Hook For Template Variable List</li>
135
- <li>* In Code: Certificate On Admin Results Now Hooked Into New Template Variable System</li>
136
- <li>* In Code: Converted Support Widget To Remote Post <a href="https://github.com/fpcorso/quiz_master_next/issues/114" target="_blank">GitHub Issue #114</a></li>
137
- <li>* In Code: Added Uninstall File Direct Access Check</li>
138
- <li>* Bug Fix: Fixed Dashboard Widget No Quiz Bug <a href="https://github.com/fpcorso/quiz_master_next/issues/119" target="_blank">GitHub Issue #119</a></li>
139
- <li>* Bug Fix: Fixed Shortcode No Quiz Bug <a href="https://github.com/fpcorso/quiz_master_next/issues/120" target="_blank">GitHub Issue #120</a></li>
140
- <li>* Bug Fix: Fixed Required Contact User Bug <a href="https://github.com/fpcorso/quiz_master_next/issues/123" target="_blank">GitHub Issue #123</a></li>
141
- <li>* Bug Fix: Fixed Text Template Bug <a href="https://github.com/fpcorso/quiz_master_next/issues/117" target="_blank">GitHub Issue #117</a></li>
142
  </ul>
143
  </div>
144
  <div id="mlw_quiz_requested" style="display: none;">
@@ -154,7 +145,6 @@ function mlw_generate_about_page()
154
  <li>Show Question Amount On Pagination</li>
155
  <li>Allow Quiz To Not Show Start Page</li>
156
  <li>Progress Bar For Timer</li>
157
- <li>Ability To Redirect User Instead Of Showing Results Page</li>
158
  <li>Graphical Click Aware Questions</li>
159
  <li>Results Bar Graph For Users Taking Polls</li>
160
  <li>Head To Head Comparison Questions</li>
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  /*
4
  This page shows the about page
5
  */
95
  <?php _e('Requested Features', 'quiz-master-next'); ?></a>
96
  </h2>
97
  <div id="mlw_quiz_what_new">
98
+ <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">Fill In The Blank Questions</h2>
99
+ <p style="text-align: center;">You can now use the new fill in the blank question type. By placing the variable %BLANK% in your question, you will be able to designate where to show the text box so users can fill in their answer.</p>
100
+ <br />
101
+ <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">Social Media Template Variables</h2>
102
+ <p style="text-align: center;">Using the new social media template variables, you can choose where on your results page to display the social media buttons.</p>
103
+ <br />
104
+ <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">Redirect User Upon Completion</h2>
105
+ <p style="text-align: center;">If you decide to do so, you can have the user be redirected to a new page instead of being shown the results.</p>
106
+ <br />
107
+ <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">5 New Translations</h2>
108
+ <p style="text-align: center;">Thanks to the generosity of some of our users, we now have translations for Portuguese, Spanish, Thai, Danish, and Dutch.</p>
109
+ <br />
110
+ <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">Please Take Our Survey To Better Improve This Plugin</h2>
111
+ <p style="text-align: center;">When you have a moment, please take our survey for this plugin. By filling out the survey, you are helping us improve this plugin. Users who take the survey between now and March 31st, 2015 will be emailed a 25% off coupon for our WordPress Store. When you are ready, please <a href='http://mylocalwebstop.com/quiz-master-next-survey/'>take our survey</a>.</p>
112
+ <br />
113
+ <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">This Plugin Is Now Translation Ready!</h2>
114
+ <p style="text-align: center;">For those who wish to assist in translating, you can find the POT in the languages folder. If you do not know what that is, feel free to contact me and I will assist you with it.</p>
115
+ <br />
116
+ <hr />
117
+ <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">For Developers:</h2>
118
+ <br />
119
+ <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">We Are On GitHub Now</h2>
120
+ <p style="text-align: center;">We have had several users ask for this so we thought we would try it out. We now love github! Be sure to <a href="https://github.com/fpcorso/quiz_master_next/">make suggestions or contribute</a>.</p>
121
+ <br />
 
 
 
122
  </div>
123
  <div id="mlw_quiz_changelog" style="display: none;">
124
+ <h3><?php echo $mlw_quiz_version; ?> (March 7, 2015)</h3>
125
  <ul>
126
+ <li>* Added Fill In The Blank Questions <a href="https://github.com/fpcorso/quiz_master_next/issues/132" target="_blank">GitHub Issue #132</a></li>
127
+ <li>* Created New Template Variables For Social Sharing <a href="https://github.com/fpcorso/quiz_master_next/issues/121" target="_blank">GitHub Issue #121</a></li>
128
+ <li>* Added Ability To Redirect To Other Page Upon Completion <a href="https://github.com/fpcorso/quiz_master_next/issues/35" target="_blank">GitHub Issue #35</a></li>
129
+ <li>* Added Several Translations: da_DK, es_ES, nl_NL, pt_BR, and th</li>
130
+ <li>* Bug Fix: Duplicate Quizzes Not Having URL <a href="https://github.com/fpcorso/quiz_master_next/issues/144" target="_blank">GitHub Issue #144</a></li>
131
+ <li>* Bug Fix: Message Sent Text <a href="https://github.com/fpcorso/quiz_master_next/issues/142" target="_blank">GitHub Issue #142</a></li>
132
+ <li>* Bug Fix: Missing Footer Column <a href="https://github.com/fpcorso/quiz_master_next/issues/145" target="_blank">GitHub Issue #145</a></li>
 
 
 
 
 
 
 
133
  </ul>
134
  </div>
135
  <div id="mlw_quiz_requested" style="display: none;">
145
  <li>Show Question Amount On Pagination</li>
146
  <li>Allow Quiz To Not Show Start Page</li>
147
  <li>Progress Bar For Timer</li>
 
148
  <li>Graphical Click Aware Questions</li>
149
  <li>Results Bar Graph For Users Taking Polls</li>
150
  <li>Head To Head Comparison Questions</li>
includes/qmn_dashboard.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /*
3
  This page creates the main dashboard for the Quiz Master Next plugin
4
  */
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  /*
4
  This page creates the main dashboard for the Quiz Master Next plugin
5
  */
includes/qmn_dashboard_widgets.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  function qmn_add_dashboard_widget()
3
  {
4
  if ( current_user_can( 'publish_posts' ) )
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  function qmn_add_dashboard_widget()
4
  {
5
  if ( current_user_can( 'publish_posts' ) )
includes/qmn_global_settings.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /**
3
  * Generates The Settings Page For The Plugin
4
  *
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  /**
4
  * Generates The Settings Page For The Plugin
5
  *
includes/qmn_help.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /*
3
  This page shows the user how-to's for using the plugin
4
  */
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  /*
4
  This page shows the user how-to's for using the plugin
5
  */
includes/qmn_helper.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /**
3
  * This class is a helper class to be used for extending the plugin
4
  *
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  /**
4
  * This class is a helper class to be used for extending the plugin
5
  *
includes/qmn_leaderboard.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /*
3
  This function creates the leaderboard from the shortcode.
4
  */
@@ -9,8 +10,8 @@ function mlw_quiz_leaderboard_shortcode($atts)
9
  ), $atts));
10
  $mlw_quiz_id = $mlw_quiz;
11
  $mlw_quiz_leaderboard_display = "";
12
-
13
-
14
  global $wpdb;
15
  $sql = "SELECT * FROM " . $wpdb->prefix . "mlw_quizzes" . " WHERE quiz_id=".$mlw_quiz_id." AND deleted='0'";
16
  $mlw_quiz_options = $wpdb->get_results($sql);
@@ -29,10 +30,10 @@ function mlw_quiz_leaderboard_shortcode($atts)
29
  }
30
  $sql .= " LIMIT 10";
31
  $mlw_result_data = $wpdb->get_results($sql);
32
-
33
  $mlw_quiz_leaderboard_display = $mlw_quiz_options->leaderboard_template;
34
  $mlw_quiz_leaderboard_display = str_replace( "%QUIZ_NAME%" , $mlw_quiz_options->quiz_name, $mlw_quiz_leaderboard_display);
35
-
36
  $leader_count = 0;
37
  foreach($mlw_result_data as $mlw_eaches) {
38
  $leader_count++;
@@ -69,7 +70,7 @@ function mlw_quiz_leaderboard_shortcode($atts)
69
  $mlw_quiz_leaderboard_display = str_replace( "%THIRD_PLACE_SCORE%" , " ", $mlw_quiz_leaderboard_display);
70
  $mlw_quiz_leaderboard_display = str_replace( "%FOURTH_PLACE_SCORE%" , " ", $mlw_quiz_leaderboard_display);
71
  $mlw_quiz_leaderboard_display = str_replace( "%FIFTH_PLACE_SCORE%" , " ", $mlw_quiz_leaderboard_display);
72
-
73
  return $mlw_quiz_leaderboard_display;
74
  }
75
  ?>
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  /*
4
  This function creates the leaderboard from the shortcode.
5
  */
10
  ), $atts));
11
  $mlw_quiz_id = $mlw_quiz;
12
  $mlw_quiz_leaderboard_display = "";
13
+
14
+
15
  global $wpdb;
16
  $sql = "SELECT * FROM " . $wpdb->prefix . "mlw_quizzes" . " WHERE quiz_id=".$mlw_quiz_id." AND deleted='0'";
17
  $mlw_quiz_options = $wpdb->get_results($sql);
30
  }
31
  $sql .= " LIMIT 10";
32
  $mlw_result_data = $wpdb->get_results($sql);
33
+
34
  $mlw_quiz_leaderboard_display = $mlw_quiz_options->leaderboard_template;
35
  $mlw_quiz_leaderboard_display = str_replace( "%QUIZ_NAME%" , $mlw_quiz_options->quiz_name, $mlw_quiz_leaderboard_display);
36
+
37
  $leader_count = 0;
38
  foreach($mlw_result_data as $mlw_eaches) {
39
  $leader_count++;
70
  $mlw_quiz_leaderboard_display = str_replace( "%THIRD_PLACE_SCORE%" , " ", $mlw_quiz_leaderboard_display);
71
  $mlw_quiz_leaderboard_display = str_replace( "%FOURTH_PLACE_SCORE%" , " ", $mlw_quiz_leaderboard_display);
72
  $mlw_quiz_leaderboard_display = str_replace( "%FIFTH_PLACE_SCORE%" , " ", $mlw_quiz_leaderboard_display);
73
+
74
  return $mlw_quiz_leaderboard_display;
75
  }
76
  ?>
includes/qmn_options_certificate_tab.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  function qmn_settings_certificate_tab()
3
  {
4
  global $mlwQuizMasterNext;
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  function qmn_settings_certificate_tab()
4
  {
5
  global $mlwQuizMasterNext;
includes/qmn_options_email_tab.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  function qmn_settings_email_tab()
3
  {
4
  global $mlwQuizMasterNext;
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  function qmn_settings_email_tab()
4
  {
5
  global $mlwQuizMasterNext;
includes/qmn_options_leaderboard_tab.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  function qmn_settings_leaderboard_tab()
3
  {
4
  global $mlwQuizMasterNext;
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  function qmn_settings_leaderboard_tab()
4
  {
5
  global $mlwQuizMasterNext;
includes/qmn_options_option_tab.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  function qmn_settings_options_tab()
3
  {
4
  global $mlwQuizMasterNext;
@@ -210,7 +211,7 @@ function mlw_options_option_tab_content()
210
  </div></td>
211
  </tr>
212
  <tr valign="top">
213
- <th scope="row"><label for="social_media"><?php _e('Show social media sharing buttons? (Twitter & Facebook)', 'quiz-master-next'); ?></label></th>
214
  <td><div id="social_media">
215
  <input type="radio" id="social_media_radio2" name="social_media" <?php if ($mlw_quiz_options->social_media == 1) {echo 'checked="checked"';} ?> value='1' /><label for="social_media_radio2"><?php _e('Yes', 'quiz-master-next'); ?></label>
216
  <input type="radio" id="social_media_radio" name="social_media" <?php if ($mlw_quiz_options->social_media == 0) {echo 'checked="checked"';} ?> value='0' /><label for="social_media_radio"><?php _e('No', 'quiz-master-next'); ?></label>
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  function qmn_settings_options_tab()
4
  {
5
  global $mlwQuizMasterNext;
211
  </div></td>
212
  </tr>
213
  <tr valign="top">
214
+ <th scope="row"><label for="social_media"><?php _e('Show social media sharing buttons? (Twitter & Facebook)', 'quiz-master-next'); _e('This option is for here only for users of older versions. Please use the new template variables %FACEBOOK_SHARE% %TWITTER_SHARE% on your results pages instead of using this option!', 'quiz-master-next'); ?></label></th>
215
  <td><div id="social_media">
216
  <input type="radio" id="social_media_radio2" name="social_media" <?php if ($mlw_quiz_options->social_media == 1) {echo 'checked="checked"';} ?> value='1' /><label for="social_media_radio2"><?php _e('Yes', 'quiz-master-next'); ?></label>
217
  <input type="radio" id="social_media_radio" name="social_media" <?php if ($mlw_quiz_options->social_media == 0) {echo 'checked="checked"';} ?> value='0' /><label for="social_media_radio"><?php _e('No', 'quiz-master-next'); ?></label>
includes/qmn_options_preview_tab.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  function qmn_settings_preview_tab()
3
  {
4
  global $mlwQuizMasterNext;
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  function qmn_settings_preview_tab()
4
  {
5
  global $mlwQuizMasterNext;
includes/qmn_options_questions_tab.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  function qmn_settings_questions_tab()
3
  {
4
  global $mlwQuizMasterNext;
@@ -93,7 +94,7 @@ function mlw_options_questions_tab_content()
93
  '%d',
94
  '%s',
95
  '%d',
96
- '%d',
97
  '%s',
98
  '%s'
99
  ),
@@ -203,7 +204,7 @@ function mlw_options_questions_tab_content()
203
  '%d',
204
  '%s',
205
  '%d',
206
- '%d',
207
  '%s',
208
  '%s',
209
  '%d'
@@ -297,7 +298,7 @@ function mlw_options_questions_tab_content()
297
  '%d',
298
  '%s',
299
  '%d',
300
- '%d',
301
  '%s',
302
  '%s',
303
  '%d'
@@ -564,6 +565,7 @@ function mlw_options_questions_tab_content()
564
  <input type='hidden' name='edit_question' value='confirmation' />
565
  <input type='hidden' id='edit_question_id' name='edit_question_id' value='<?php echo $mlw_question_info->question_id; ?>' />
566
  <input type='hidden' name='quiz_id' value='<?php echo $quiz_id; ?>' />
 
567
  <table class="wide" style="text-align: left; white-space: nowrap;" id="question_<?php echo $mlw_question_info->question_id; ?>_answers" name="question_<?php echo $mlw_question_info->question_id; ?>_answers">
568
  <tr>
569
  <td><span style='font-weight:bold;'><?php _e('Question', 'quiz-master-next'); ?></span></td>
@@ -732,6 +734,7 @@ function mlw_options_questions_tab_content()
732
  echo "<input type='hidden' name='create_question' value='confirmation' />";
733
  echo "<input type='hidden' name='quiz_id' value='".$quiz_id."' />";
734
  ?>
 
735
  <table class="wide" style="text-align: left; white-space: nowrap;" id="new_question_answers" name="new_question_answers">
736
  <tr>
737
  <td><span style='font-weight:bold;'><?php _e('Question', 'quiz-master-next'); ?></span></td>
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  function qmn_settings_questions_tab()
4
  {
5
  global $mlwQuizMasterNext;
94
  '%d',
95
  '%s',
96
  '%d',
97
+ '%s',
98
  '%s',
99
  '%s'
100
  ),
204
  '%d',
205
  '%s',
206
  '%d',
207
+ '%s',
208
  '%s',
209
  '%s',
210
  '%d'
298
  '%d',
299
  '%s',
300
  '%d',
301
+ '%s',
302
  '%s',
303
  '%s',
304
  '%d'
565
  <input type='hidden' name='edit_question' value='confirmation' />
566
  <input type='hidden' id='edit_question_id' name='edit_question_id' value='<?php echo $mlw_question_info->question_id; ?>' />
567
  <input type='hidden' name='quiz_id' value='<?php echo $quiz_id; ?>' />
568
+ <p><?php _e('For fill in the blank types, use %BLANK% to represent where to put the text box in your text.', 'quiz-master-next'); ?></p>
569
  <table class="wide" style="text-align: left; white-space: nowrap;" id="question_<?php echo $mlw_question_info->question_id; ?>_answers" name="question_<?php echo $mlw_question_info->question_id; ?>_answers">
570
  <tr>
571
  <td><span style='font-weight:bold;'><?php _e('Question', 'quiz-master-next'); ?></span></td>
734
  echo "<input type='hidden' name='create_question' value='confirmation' />";
735
  echo "<input type='hidden' name='quiz_id' value='".$quiz_id."' />";
736
  ?>
737
+ <p><?php _e('For fill in the blank types, use %BLANK% to represent where to put the text box in your text.', 'quiz-master-next'); ?></p>
738
  <table class="wide" style="text-align: left; white-space: nowrap;" id="new_question_answers" name="new_question_answers">
739
  <tr>
740
  <td><span style='font-weight:bold;'><?php _e('Question', 'quiz-master-next'); ?></span></td>
includes/qmn_options_results_page_tab.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  function qmn_settings_results_tab()
3
  {
4
  global $mlwQuizMasterNext;
@@ -20,7 +21,7 @@ function mlw_options_results_tab_content()
20
  if (is_serialized($mlw_qmn_message_after) && is_array(@unserialize($mlw_qmn_message_after)))
21
  {
22
  $mlw_qmn_landing_array = @unserialize($mlw_qmn_message_after);
23
- $mlw_new_landing_array = array(0, 100, 'Enter Your Text Here');
24
  array_unshift($mlw_qmn_landing_array , $mlw_new_landing_array);
25
  $mlw_qmn_landing_array = serialize($mlw_qmn_landing_array);
26
 
@@ -28,7 +29,7 @@ function mlw_options_results_tab_content()
28
  else
29
  {
30
  $mlw_qmn_landing_array = array(array(0, 0, $mlw_qmn_message_after));
31
- $mlw_new_landing_array = array(0, 100, 'Enter Your Text Here');
32
  array_unshift($mlw_qmn_landing_array , $mlw_new_landing_array);
33
  $mlw_qmn_landing_array = serialize($mlw_qmn_landing_array);
34
  }
@@ -68,7 +69,7 @@ function mlw_options_results_tab_content()
68
  {
69
  if ($_POST["message_after_".$i] != "Delete")
70
  {
71
- $mlw_qmn_landing_each = array(intval($_POST["message_after_begin_".$i]), intval($_POST["message_after_end_".$i]), htmlspecialchars(stripslashes($_POST["message_after_".$i]), ENT_QUOTES));
72
  $mlw_qmn_new_landing_array[] = $mlw_qmn_landing_each;
73
  }
74
  $i++;
@@ -107,7 +108,7 @@ function mlw_options_results_tab_content()
107
  }
108
  else
109
  {
110
- $mlw_message_after_array = array(array(0, 0, $mlw_quiz_options->message_after));
111
  }
112
  wp_enqueue_style( 'qmn_admin_style', plugins_url( 'css/qmn_admin.css' , __FILE__ ) );
113
  ?>
@@ -186,6 +187,12 @@ function mlw_options_results_tab_content()
186
  <div class="template_variable">
187
  <span class="template_name">%CATEGORY_AVERAGE_SCORE%</span> - <?php _e('The average score from all categories.', 'quiz-master-next'); ?>
188
  </div>
 
 
 
 
 
 
189
  <?php do_action('qmn_template_variable_list'); ?>
190
  </div>
191
  <div style="clear:both;"></div>
@@ -199,6 +206,7 @@ function mlw_options_results_tab_content()
199
  <th><?php _e('Score Greater Than Or Equal To', 'quiz-master-next'); ?></th>
200
  <th><?php _e('Score Less Than Or Equal To', 'quiz-master-next'); ?></th>
201
  <th><?php _e('Results Page Shown', 'quiz-master-next'); ?></th>
 
202
  </tr>
203
  </thead>
204
  <tbody>
@@ -226,6 +234,9 @@ function mlw_options_results_tab_content()
226
  wp_editor( htmlspecialchars_decode($mlw_each[2], ENT_QUOTES), "message_after_".$mlw_each_count );
227
  //echo "<textarea cols='80' rows='15' id='message_after_".$mlw_each_count."' name='message_after_".$mlw_each_count."'>".$mlw_each[2]."</textarea>";
228
  echo "</td>";
 
 
 
229
  echo "</tr>";
230
  break;
231
  }
@@ -245,6 +256,9 @@ function mlw_options_results_tab_content()
245
  wp_editor( htmlspecialchars_decode($mlw_each[2], ENT_QUOTES), "message_after_".$mlw_each_count );
246
  //echo "<textarea cols='80' rows='15' id='message_after_".$mlw_each_count."' title='What text will the user see when reaching this page' name='message_after_".$mlw_each_count."'>".$mlw_each[2]."</textarea>";
247
  echo "</td>";
 
 
 
248
  echo "</tr>";
249
  }
250
  }
@@ -256,6 +270,7 @@ function mlw_options_results_tab_content()
256
  <th><?php _e('Score Greater Than Or Equal To', 'quiz-master-next'); ?></th>
257
  <th><?php _e('Score Less Than Or Equal To', 'quiz-master-next'); ?></th>
258
  <th><?php _e('Results Page Shown', 'quiz-master-next'); ?></th>
 
259
  </tr>
260
  </tfoot>
261
  </table>
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  function qmn_settings_results_tab()
4
  {
5
  global $mlwQuizMasterNext;
21
  if (is_serialized($mlw_qmn_message_after) && is_array(@unserialize($mlw_qmn_message_after)))
22
  {
23
  $mlw_qmn_landing_array = @unserialize($mlw_qmn_message_after);
24
+ $mlw_new_landing_array = array(0, 100, 'Enter Your Text Here', "redirect_url" => '');
25
  array_unshift($mlw_qmn_landing_array , $mlw_new_landing_array);
26
  $mlw_qmn_landing_array = serialize($mlw_qmn_landing_array);
27
 
29
  else
30
  {
31
  $mlw_qmn_landing_array = array(array(0, 0, $mlw_qmn_message_after));
32
+ $mlw_new_landing_array = array(0, 100, 'Enter Your Text Here', "redirect_url" => '');
33
  array_unshift($mlw_qmn_landing_array , $mlw_new_landing_array);
34
  $mlw_qmn_landing_array = serialize($mlw_qmn_landing_array);
35
  }
69
  {
70
  if ($_POST["message_after_".$i] != "Delete")
71
  {
72
+ $mlw_qmn_landing_each = array(intval($_POST["message_after_begin_".$i]), intval($_POST["message_after_end_".$i]), htmlspecialchars(stripslashes($_POST["message_after_".$i]), ENT_QUOTES), "redirect_url" => esc_url_raw($_POST["redirect_".$i]));
73
  $mlw_qmn_new_landing_array[] = $mlw_qmn_landing_each;
74
  }
75
  $i++;
108
  }
109
  else
110
  {
111
+ $mlw_message_after_array = array(array(0, 0, $mlw_quiz_options->message_after, "redirect_url" => ''));
112
  }
113
  wp_enqueue_style( 'qmn_admin_style', plugins_url( 'css/qmn_admin.css' , __FILE__ ) );
114
  ?>
187
  <div class="template_variable">
188
  <span class="template_name">%CATEGORY_AVERAGE_SCORE%</span> - <?php _e('The average score from all categories.', 'quiz-master-next'); ?>
189
  </div>
190
+ <div class="template_variable">
191
+ <span class="template_name">%FACEBOOK_SHARE%</span> - <?php _e('Displays button to share on Facebook.', 'quiz-master-next'); ?>
192
+ </div>
193
+ <div class="template_variable">
194
+ <span class="template_name">%TWITTER_SHARE%</span> - <?php _e('Displays button to share on Twitter.', 'quiz-master-next'); ?>
195
+ </div>
196
  <?php do_action('qmn_template_variable_list'); ?>
197
  </div>
198
  <div style="clear:both;"></div>
206
  <th><?php _e('Score Greater Than Or Equal To', 'quiz-master-next'); ?></th>
207
  <th><?php _e('Score Less Than Or Equal To', 'quiz-master-next'); ?></th>
208
  <th><?php _e('Results Page Shown', 'quiz-master-next'); ?></th>
209
+ <th><?php _e('Redirect URL', 'quiz-master-next'); ?></th>
210
  </tr>
211
  </thead>
212
  <tbody>
234
  wp_editor( htmlspecialchars_decode($mlw_each[2], ENT_QUOTES), "message_after_".$mlw_each_count );
235
  //echo "<textarea cols='80' rows='15' id='message_after_".$mlw_each_count."' name='message_after_".$mlw_each_count."'>".$mlw_each[2]."</textarea>";
236
  echo "</td>";
237
+ echo "<td>";
238
+ echo "<input type='text' id='redirect_".$mlw_each_count."' name='redirect_".$mlw_each_count."' value='".esc_url($mlw_each["redirect_url"])."'/>";
239
+ echo "</td>";
240
  echo "</tr>";
241
  break;
242
  }
256
  wp_editor( htmlspecialchars_decode($mlw_each[2], ENT_QUOTES), "message_after_".$mlw_each_count );
257
  //echo "<textarea cols='80' rows='15' id='message_after_".$mlw_each_count."' title='What text will the user see when reaching this page' name='message_after_".$mlw_each_count."'>".$mlw_each[2]."</textarea>";
258
  echo "</td>";
259
+ echo "<td>";
260
+ echo "<input type='text' id='redirect_".$mlw_each_count."' name='redirect_".$mlw_each_count."' value='".esc_url($mlw_each["redirect_url"])."'/>";
261
+ echo "</td>";
262
  echo "</tr>";
263
  }
264
  }
270
  <th><?php _e('Score Greater Than Or Equal To', 'quiz-master-next'); ?></th>
271
  <th><?php _e('Score Less Than Or Equal To', 'quiz-master-next'); ?></th>
272
  <th><?php _e('Results Page Shown', 'quiz-master-next'); ?></th>
273
+ <th><?php _e('Redirect URL', 'quiz-master-next'); ?></th>
274
  </tr>
275
  </tfoot>
276
  </table>
includes/qmn_options_style_tab.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  function qmn_settings_style_tab()
3
  {
4
  global $mlwQuizMasterNext;
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  function qmn_settings_style_tab()
4
  {
5
  global $mlwQuizMasterNext;
includes/qmn_options_text_tab.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  function qmn_settings_text_tab()
3
  {
4
  global $mlwQuizMasterNext;
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  function qmn_settings_text_tab()
4
  {
5
  global $mlwQuizMasterNext;
includes/qmn_options_tools_tab.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  function qmn_settings_tools_tab()
3
  {
4
  global $mlwQuizMasterNext;
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  function qmn_settings_tools_tab()
4
  {
5
  global $mlwQuizMasterNext;
includes/qmn_question_types.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
-
3
  add_action("plugins_loaded", 'qmn_question_type_multiple_choice');
4
  function qmn_question_type_multiple_choice()
5
  {
@@ -571,4 +571,62 @@ function qmn_horizontal_multiple_response_review($id, $question, $answers)
571
  }
572
  return $return_array;
573
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
574
  ?>
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  add_action("plugins_loaded", 'qmn_question_type_multiple_choice');
4
  function qmn_question_type_multiple_choice()
5
  {
571
  }
572
  return $return_array;
573
  }
574
+
575
+ add_action("plugins_loaded", 'qmn_question_type_fill_blank');
576
+ function qmn_question_type_fill_blank()
577
+ {
578
+ global $mlwQuizMasterNext;
579
+ $mlwQuizMasterNext->pluginHelper->register_question_type(__("Fill In The Blank", 'quiz-master-next'), 'qmn_fill_blank_display', true, 'qmn_fill_blank_review');
580
+ }
581
+
582
+ function qmn_fill_blank_display($id, $question, $answers)
583
+ {
584
+ $question_display = '';
585
+ global $mlwQuizMasterNext;
586
+ $required = $mlwQuizMasterNext->pluginHelper->get_question_setting($id, 'required');
587
+ if ($required == 0) {$mlw_requireClass = "mlwRequiredText";} else {$mlw_requireClass = "";}
588
+ $input_text = "<input type='text' class='qmn_fill_blank $mlw_requireClass' name='question".$id."' />";
589
+ if (strpos($question, '%BLANK%') !== false)
590
+ {
591
+ $question = str_replace( "%BLANK%", $input_text, htmlspecialchars_decode($question, ENT_QUOTES));
592
+ }
593
+ $question_display = "<span class='mlw_qmn_question'>$question</span><br />";
594
+
595
+ $question_display .= "<br />";
596
+ return $question_display;
597
+ }
598
+
599
+ function qmn_fill_blank_review($id, $question, $answers)
600
+ {
601
+ $return_array = array(
602
+ 'points' => 0,
603
+ 'correct' => 'incorrect',
604
+ 'user_text' => '',
605
+ 'correct_text' => ''
606
+ );
607
+ if (strpos($question, '%BLANK%') !== false)
608
+ {
609
+ $return_array['question_text'] = str_replace( "%BLANK%", "__________", htmlspecialchars_decode($question, ENT_QUOTES));
610
+ }
611
+ if (isset($_POST["question".$id]))
612
+ {
613
+ $mlw_user_answer = $_POST["question".$id];
614
+ }
615
+ else
616
+ {
617
+ $mlw_user_answer = " ";
618
+ }
619
+ $return_array['user_text'] = strval(stripslashes(htmlspecialchars_decode($mlw_user_answer, ENT_QUOTES)));
620
+ foreach($answers as $answer)
621
+ {
622
+ $return_array['correct_text'] = strval(htmlspecialchars_decode($answer[0], ENT_QUOTES));
623
+ if (strtoupper($return_array['user_text']) == strtoupper($return_array['correct_text']))
624
+ {
625
+ $return_array['correct'] = "correct";
626
+ $return_array['points'] = $answer[1];
627
+ break;
628
+ }
629
+ }
630
+ return $return_array;
631
+ }
632
  ?>
includes/qmn_quiz.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /**
3
  * This class generates the contents of the quiz shortcode
4
  *
@@ -31,6 +32,117 @@ class QMNQuizManager
31
  public function add_hooks()
32
  {
33
  add_shortcode('mlw_quizmaster', array($this, 'display_shortcode'));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  }
35
 
36
  /**
@@ -248,6 +360,7 @@ class QMNQuizManager
248
  $quiz_display .= $this->display_end_section($qmn_quiz_options, $qmn_array_for_variables);
249
  $quiz_display .= "<input type='hidden' name='total_questions' id='total_questions' value='".$qmn_total_questions."'/>";
250
  $quiz_display .= "<input type='hidden' name='timer' id='timer' value='0'/>";
 
251
  $quiz_display .= "<input type='hidden' name='complete_quiz' value='confirmation' />";
252
  $quiz_display = apply_filters('qmn_end_quiz_form', $quiz_display, $qmn_quiz_options, $qmn_array_for_variables);
253
  $quiz_display .= "</form>";
@@ -599,7 +712,12 @@ class QMNQuizManager
599
  {
600
  $mlw_qm_question_comment = "";
601
  }
602
- $mlw_qmn_answer_array[] = apply_filters('qmn_answer_array', array($mlw_question->question_name, htmlspecialchars($mlw_user_text, ENT_QUOTES), htmlspecialchars($mlw_correct_text, ENT_QUOTES), htmlspecialchars(stripslashes($mlw_qm_question_comment), ENT_QUOTES), "correct" => $qmn_correct, "id" => $mlw_question->question_id, "points" => $qmn_answer_points, "category" => $mlw_question->category), $qmn_quiz_options, $qmn_array_for_variables);
 
 
 
 
 
603
  }
604
  break;
605
  }
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  /**
4
  * This class generates the contents of the quiz shortcode
5
  *
32
  public function add_hooks()
33
  {
34
  add_shortcode('mlw_quizmaster', array($this, 'display_shortcode'));
35
+ add_action('init', array($this, 'redirect_init'));
36
+ }
37
+
38
+ /**
39
+ * Redirects To Other Page
40
+ *
41
+ * Redirects users to admin defined pages if admin has entered pages
42
+ *
43
+ * @since 4.2.0
44
+ * @return void
45
+ * @uses QMNQuizManager::load_quiz_options
46
+ * @uses QMNQuizManager::load_questions
47
+ */
48
+ public function redirect_init()
49
+ {
50
+ if (isset($_POST["complete_quiz"]) && $_POST["complete_quiz"] == "confirmation")
51
+ {
52
+ $quiz_id = intval($_POST["qmn_quiz_id"]);
53
+ $qmn_options = $this->load_quiz_options($quiz_id);
54
+ $qmn_quiz_questions = $this->load_questions($quiz_id, $qmn_options, false);
55
+ if (is_serialized($qmn_options->message_after) && is_array(@unserialize($qmn_options->message_after)))
56
+ {
57
+ $mlw_message_after_array = @unserialize($qmn_options->message_after);
58
+
59
+ $mlw_points = 0;
60
+ $mlw_correct = 0;
61
+ $mlw_total_score = 0;
62
+ $mlw_question_answers = "";
63
+ global $mlwQuizMasterNext;
64
+ isset($_POST["total_questions"]) ? $mlw_total_questions = intval($_POST["total_questions"]) : $mlw_total_questions = 0;
65
+ isset($_POST["qmn_question_list"]) ? $question_list = explode('Q',$_POST["qmn_question_list"]) : $question_list = array();
66
+ $qmn_answer_points = 0;
67
+ $mlw_qmn_answer_array = array();
68
+ foreach($qmn_quiz_questions as $mlw_question)
69
+ {
70
+ foreach($question_list as $question_id)
71
+ {
72
+ if ($mlw_question->question_id == $question_id)
73
+ {
74
+ $mlw_user_text = "";
75
+ $mlw_correct_text = "";
76
+ $qmn_correct = "incorrect";
77
+ $qmn_answer_points = 0;
78
+
79
+ $results_array = $mlwQuizMasterNext->pluginHelper->display_review($mlw_question->question_type_new, $mlw_question->question_id);
80
+ if (!isset($results_array["null_review"]))
81
+ {
82
+ $mlw_points += $results_array["points"];
83
+ $qmn_answer_points += $results_array["points"];
84
+ if ($results_array["correct"] == "correct")
85
+ {
86
+ $mlw_correct += 1;
87
+ $qmn_correct = "correct";
88
+ }
89
+ }
90
+ break;
91
+ }
92
+ }
93
+ }
94
+
95
+ //Calculate Total Percent Score And Average Points Only If Total Questions Doesn't Equal Zero To Avoid Division By Zero Error
96
+ if ($mlw_total_questions != 0)
97
+ {
98
+ $mlw_total_score = round((($mlw_correct/$mlw_total_questions)*100), 2);
99
+ $mlw_average_points = round(($mlw_points/$mlw_total_questions), 2);
100
+ }
101
+ else
102
+ {
103
+ $mlw_total_score = 0;
104
+ $mlw_average_points = 0;
105
+ }
106
+
107
+ //Cycle through landing pages
108
+ foreach($mlw_message_after_array as $mlw_each)
109
+ {
110
+ //Check to see if not default
111
+ if ($mlw_each[0] != 0 || $mlw_each[1] != 0)
112
+ {
113
+ //Check to see if points fall in correct range
114
+ if ($qmn_options->system == 1 && $mlw_points >= $mlw_each[0] && $mlw_points <= $mlw_each[1])
115
+ {
116
+ if (esc_url($mlw_each["redirect_url"]) != '')
117
+ {
118
+ wp_redirect( esc_url($mlw_each["redirect_url"]) );
119
+ exit;
120
+ }
121
+ break;
122
+ }
123
+ //Check to see if score fall in correct range
124
+ if ($qmn_options->system == 0 && $mlw_total_score >= $mlw_each[0] && $mlw_total_score <= $mlw_each[1])
125
+ {
126
+ if (esc_url($mlw_each["redirect_url"]) != '')
127
+ {
128
+ wp_redirect( esc_url($mlw_each["redirect_url"]) );
129
+ exit;
130
+ }
131
+ break;
132
+ }
133
+ }
134
+ else
135
+ {
136
+ if (esc_url($mlw_each["redirect_url"]) != '')
137
+ {
138
+ wp_redirect( esc_url($mlw_each["redirect_url"]) );
139
+ exit;
140
+ }
141
+ break;
142
+ }
143
+ }
144
+ }
145
+ }
146
  }
147
 
148
  /**
360
  $quiz_display .= $this->display_end_section($qmn_quiz_options, $qmn_array_for_variables);
361
  $quiz_display .= "<input type='hidden' name='total_questions' id='total_questions' value='".$qmn_total_questions."'/>";
362
  $quiz_display .= "<input type='hidden' name='timer' id='timer' value='0'/>";
363
+ $quiz_display .= "<input type='hidden' name='qmn_quiz_id' id='qmn_quiz_id' value='".$qmn_array_for_variables["quiz_id"]."'/>";
364
  $quiz_display .= "<input type='hidden' name='complete_quiz' value='confirmation' />";
365
  $quiz_display = apply_filters('qmn_end_quiz_form', $quiz_display, $qmn_quiz_options, $qmn_array_for_variables);
366
  $quiz_display .= "</form>";
712
  {
713
  $mlw_qm_question_comment = "";
714
  }
715
+ $question_text = $mlw_question->question_name;
716
+ if (isset($results_array["question_text"]))
717
+ {
718
+ $question_text = $results_array["question_text"];
719
+ }
720
+ $mlw_qmn_answer_array[] = apply_filters('qmn_answer_array', array($question_text, htmlspecialchars($mlw_user_text, ENT_QUOTES), htmlspecialchars($mlw_correct_text, ENT_QUOTES), htmlspecialchars(stripslashes($mlw_qm_question_comment), ENT_QUOTES), "correct" => $qmn_correct, "id" => $mlw_question->question_id, "points" => $qmn_answer_points, "category" => $mlw_question->category), $qmn_quiz_options, $qmn_array_for_variables);
721
  }
722
  break;
723
  }
includes/qmn_quiz_admin.php CHANGED
@@ -1,6 +1,11 @@
1
  <?php
 
2
  function mlw_generate_quiz_admin()
3
  {
 
 
 
 
4
  global $wpdb;
5
  global $mlwQuizMasterNext;
6
  $table_name = $wpdb->prefix . "mlw_quizzes";
@@ -288,6 +293,7 @@ function mlw_generate_quiz_admin()
288
  <tr>
289
  <th>Quiz ID</th>
290
  <th><?php _e('Quiz Name', 'quiz-master-next'); ?></th>
 
291
  <th><?php _e('Quiz Shortcode', 'quiz-master-next'); ?></th>
292
  <th><?php _e('Leaderboard Shortcode', 'quiz-master-next'); ?></th>
293
  <th><?php _e('Quiz Views', 'quiz-master-next'); ?></th>
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  function mlw_generate_quiz_admin()
4
  {
5
+ if ( !current_user_can('moderate_comments') )
6
+ {
7
+ return;
8
+ }
9
  global $wpdb;
10
  global $mlwQuizMasterNext;
11
  $table_name = $wpdb->prefix . "mlw_quizzes";
293
  <tr>
294
  <th>Quiz ID</th>
295
  <th><?php _e('Quiz Name', 'quiz-master-next'); ?></th>
296
+ <th><?php _e('URL', 'quiz-master-next'); ?></th>
297
  <th><?php _e('Quiz Shortcode', 'quiz-master-next'); ?></th>
298
  <th><?php _e('Leaderboard Shortcode', 'quiz-master-next'); ?></th>
299
  <th><?php _e('Quiz Views', 'quiz-master-next'); ?></th>
includes/qmn_quiz_creator.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /**
3
  * QMN Quiz Creator Class
4
  *
@@ -619,6 +620,17 @@ class QMNQuizCreator
619
  $mlw_new_id = $wpdb->insert_id;
620
  if ($results != false)
621
  {
 
 
 
 
 
 
 
 
 
 
 
622
  $mlwQuizMasterNext->alertManager->newAlert(__('Your quiz has been duplicated successfully.', 'quiz-master-next'), 'success');
623
 
624
  //Insert Action Into Audit Trail
@@ -629,6 +641,7 @@ class QMNQuizCreator
629
  "(trail_id, action_user, action, time) " .
630
  "VALUES (NULL , '" . $current_user->display_name . "' , 'New Quiz Has Been Created: ".$quiz_name."' , '" . date("h:i:s A m/d/Y") . "')";
631
  $results = $wpdb->query( $insert );
 
632
  }
633
  else
634
  {
@@ -689,7 +702,7 @@ class QMNQuizCreator
689
  '%d',
690
  '%s',
691
  '%d',
692
- '%d',
693
  '%s',
694
  '%s',
695
  '%d'
@@ -701,7 +714,6 @@ class QMNQuizCreator
701
  }
702
  }
703
  }
704
- do_action('qmn_quiz_duplicated', $quiz_id, $mlw_new_id);
705
  }
706
  }
707
  ?>
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  /**
4
  * QMN Quiz Creator Class
5
  *
620
  $mlw_new_id = $wpdb->insert_id;
621
  if ($results != false)
622
  {
623
+ global $current_user;
624
+ get_currentuserinfo();
625
+ $quiz_post = array(
626
+ 'post_title' => $quiz_name,
627
+ 'post_content' => "[mlw_quizmaster quiz=$mlw_new_id]",
628
+ 'post_status' => 'publish',
629
+ 'post_author' => $current_user->ID,
630
+ 'post_type' => 'quiz'
631
+ );
632
+ $quiz_post_id = wp_insert_post( $quiz_post );
633
+ add_post_meta( $quiz_post_id, 'quiz_id', $mlw_new_id );
634
  $mlwQuizMasterNext->alertManager->newAlert(__('Your quiz has been duplicated successfully.', 'quiz-master-next'), 'success');
635
 
636
  //Insert Action Into Audit Trail
641
  "(trail_id, action_user, action, time) " .
642
  "VALUES (NULL , '" . $current_user->display_name . "' , 'New Quiz Has Been Created: ".$quiz_name."' , '" . date("h:i:s A m/d/Y") . "')";
643
  $results = $wpdb->query( $insert );
644
+ do_action('qmn_quiz_duplicated', $quiz_id, $mlw_new_id);
645
  }
646
  else
647
  {
702
  '%d',
703
  '%s',
704
  '%d',
705
+ '%s',
706
  '%s',
707
  '%s',
708
  '%d'
714
  }
715
  }
716
  }
 
717
  }
718
  }
719
  ?>
includes/qmn_quiz_install.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /*
3
  These functions are used for installing and uninstalling all necessary databases, options, page, etc.. for the plugin to work properly.
4
  */
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  /*
4
  These functions are used for installing and uninstalling all necessary databases, options, page, etc.. for the plugin to work properly.
5
  */
includes/qmn_quiz_options.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /*
3
  This page allows for the editing of quizzes selected from the quiz admin page.
4
  */
@@ -8,6 +9,10 @@ Copyright 2014, My Local Webstop (email : fpcorso@mylocalwebstop.com)
8
 
9
  function mlw_generate_quiz_options()
10
  {
 
 
 
 
11
  global $wpdb;
12
  global $mlwQuizMasterNext;
13
  $tab_array = $mlwQuizMasterNext->pluginHelper->get_settings_tabs();
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  /*
4
  This page allows for the editing of quizzes selected from the quiz admin page.
5
  */
9
 
10
  function mlw_generate_quiz_options()
11
  {
12
+ if ( !current_user_can('moderate_comments') )
13
+ {
14
+ return;
15
+ }
16
  global $wpdb;
17
  global $mlwQuizMasterNext;
18
  $tab_array = $mlwQuizMasterNext->pluginHelper->get_settings_tabs();
includes/qmn_results.php CHANGED
@@ -1,7 +1,11 @@
1
  <?php
2
-
3
  function mlw_generate_quiz_results()
4
  {
 
 
 
 
5
  global $wpdb;
6
  global $mlwQuizMasterNext;
7
 
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  function mlw_generate_quiz_results()
4
  {
5
+ if ( !current_user_can('moderate_comments') )
6
+ {
7
+ return;
8
+ }
9
  global $wpdb;
10
  global $mlwQuizMasterNext;
11
 
includes/qmn_results_details.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /*
3
  This page allows for the viewing of the quiz results.
4
  */
@@ -8,6 +9,10 @@ Copyright 2013, My Local Webstop (email : fpcorso@mylocalwebstop.com)
8
 
9
  function mlw_generate_result_details()
10
  {
 
 
 
 
11
  global $mlwQuizMasterNext;
12
  $active_tab = isset( $_GET[ 'tab' ] ) ? $_GET[ 'tab' ] : 'results';
13
  $tab_array = $mlwQuizMasterNext->pluginHelper->get_results_tabs();
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  /*
4
  This page allows for the viewing of the quiz results.
5
  */
9
 
10
  function mlw_generate_result_details()
11
  {
12
+ if ( !current_user_can('moderate_comments') )
13
+ {
14
+ return;
15
+ }
16
  global $mlwQuizMasterNext;
17
  $active_tab = isset( $_GET[ 'tab' ] ) ? $_GET[ 'tab' ] : 'results';
18
  $tab_array = $mlwQuizMasterNext->pluginHelper->get_results_tabs();
includes/qmn_template_variables.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /*
3
 
4
  Results Array For Reference:
@@ -43,10 +44,78 @@ add_filter('mlw_qmn_template_variable_results_page', 'mlw_qmn_variable_comments'
43
  add_filter('mlw_qmn_template_variable_results_page', 'mlw_qmn_variable_timer',10,2);
44
  add_filter('mlw_qmn_template_variable_results_page', 'mlw_qmn_variable_date',10,2);
45
  add_filter('mlw_qmn_template_variable_results_page', 'mlw_qmn_variable_certificate_link',10,2);
 
 
46
 
47
  add_filter('mlw_qmn_template_variable_quiz_page', 'mlw_qmn_variable_quiz_name',10,2);
48
  add_filter('mlw_qmn_template_variable_quiz_page', 'mlw_qmn_variable_date',10,2);
49
  add_filter('mlw_qmn_template_variable_quiz_page', 'mlw_qmn_variable_current_user',10,2);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  function mlw_qmn_variable_point_score($content, $mlw_quiz_array)
51
  {
52
  $content = str_replace( "%POINT_SCORE%" , $mlw_quiz_array["total_points"], $content);
@@ -113,7 +182,7 @@ function mlw_qmn_variable_user_email($content, $mlw_quiz_array)
113
  }
114
  function mlw_qmn_variable_question_answers($content, $mlw_quiz_array)
115
  {
116
- while (strpos($content, '%QUESTIONS_ANSWERS%') != false)
117
  {
118
  global $wpdb;
119
  $display = '';
@@ -176,7 +245,7 @@ function mlw_qmn_variable_certificate_link($content, $mlw_quiz_array)
176
  function qmn_variable_category_points($content, $mlw_quiz_array)
177
  {
178
  $return_points = 0;
179
- while (strpos($content, '%CATEGORY_POINTS%') != false)
180
  {
181
  $return_points = 0;
182
  preg_match("~%CATEGORY_POINTS%(.*?)%/CATEGORY_POINTS%~i",$content,$answer_text);
@@ -207,7 +276,7 @@ function qmn_variable_category_score($content, $mlw_quiz_array)
207
  $return_score = 0;
208
  $total_questions = 0;
209
  $amount_correct = 0;
210
- while (strpos($content, '%CATEGORY_SCORE%') != false)
211
  {
212
  $return_score = 0;
213
  $total_questions = 0;
@@ -254,7 +323,7 @@ function qmn_variable_category_average_score($content, $mlw_quiz_array)
254
  $total_categories = 0;
255
  $total_score = 0;
256
  $category_scores = array();
257
- while (strpos($content, '%CATEGORY_AVERAGE_SCORE%') != false)
258
  {
259
  foreach ($mlw_quiz_array['question_answers_array'] as $answer)
260
  {
@@ -306,7 +375,7 @@ function qmn_variable_category_average_points($content, $mlw_quiz_array)
306
  $total_categories = 0;
307
  $total_points = 0;
308
  $category_scores = array();
309
- while (strpos($content, '%CATEGORY_AVERAGE_POINTS%') != false)
310
  {
311
  foreach ($mlw_quiz_array['question_answers_array'] as $answer)
312
  {
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  /*
4
 
5
  Results Array For Reference:
44
  add_filter('mlw_qmn_template_variable_results_page', 'mlw_qmn_variable_timer',10,2);
45
  add_filter('mlw_qmn_template_variable_results_page', 'mlw_qmn_variable_date',10,2);
46
  add_filter('mlw_qmn_template_variable_results_page', 'mlw_qmn_variable_certificate_link',10,2);
47
+ add_filter('mlw_qmn_template_variable_results_page', 'qmn_variable_facebook_share',10,2);
48
+ add_filter('mlw_qmn_template_variable_results_page', 'qmn_variable_twitter_share',10,2);
49
 
50
  add_filter('mlw_qmn_template_variable_quiz_page', 'mlw_qmn_variable_quiz_name',10,2);
51
  add_filter('mlw_qmn_template_variable_quiz_page', 'mlw_qmn_variable_date',10,2);
52
  add_filter('mlw_qmn_template_variable_quiz_page', 'mlw_qmn_variable_current_user',10,2);
53
+
54
+ function qmn_variable_facebook_share($content, $mlw_quiz_array)
55
+ {
56
+ while (strpos($content, '%FACEBOOK_SHARE%') !== false)
57
+ {
58
+ wp_enqueue_script( 'qmn_quiz_social_share', plugins_url( 'js/qmn_social_share.js' , __FILE__ ) );
59
+ $settings = (array) get_option( 'qmn-settings' );
60
+ $facebook_app_id = '483815031724529';
61
+ if (isset($settings['facebook_app_id']))
62
+ {
63
+ $facebook_app_id = esc_js( $settings['facebook_app_id'] );
64
+ }
65
+
66
+ global $wpdb;
67
+ $qmn_quiz_options = $wpdb->get_row($wpdb->prepare('SELECT social_media_text FROM '.$wpdb->prefix.'mlw_quizzes WHERE quiz_id=%d AND deleted=0', $mlw_quiz_array['quiz_id']));
68
+
69
+ //Load Social Media Text
70
+ $qmn_social_media_text = "";
71
+ if (is_serialized($qmn_quiz_options->social_media_text) && is_array(@unserialize($qmn_quiz_options->social_media_text)))
72
+ {
73
+ $qmn_social_media_text = @unserialize($qmn_quiz_options->social_media_text);
74
+ }
75
+ else
76
+ {
77
+ $qmn_social_media_text = array(
78
+ 'twitter' => $qmn_quiz_options->social_media_text,
79
+ 'facebook' => $qmn_quiz_options->social_media_text
80
+ );
81
+ }
82
+
83
+ $qmn_social_media_text["facebook"] = apply_filters( 'mlw_qmn_template_variable_results_page', $qmn_social_media_text["facebook"], $mlw_quiz_array);
84
+ $social_display = "<a class=\"mlw_qmn_quiz_link\" onclick=\"mlw_qmn_share('facebook', '".esc_js($qmn_social_media_text["facebook"])."', '".esc_js($mlw_quiz_array["quiz_name"])."', '$facebook_app_id');\">Facebook</a>";
85
+ $content = str_replace( "%FACEBOOK_SHARE%" , $social_display, $content);
86
+ }
87
+ return $content;
88
+ }
89
+
90
+ function qmn_variable_twitter_share($content, $mlw_quiz_array)
91
+ {
92
+ while (strpos($content, '%TWITTER_SHARE%') !== false)
93
+ {
94
+ wp_enqueue_script( 'qmn_quiz_social_share', plugins_url( 'js/qmn_social_share.js' , __FILE__ ) );
95
+
96
+ global $wpdb;
97
+ $qmn_quiz_options = $wpdb->get_row($wpdb->prepare('SELECT social_media_text FROM '.$wpdb->prefix.'mlw_quizzes WHERE quiz_id=%d AND deleted=0', $mlw_quiz_array['quiz_id']));
98
+
99
+ //Load Social Media Text
100
+ $qmn_social_media_text = "";
101
+ if (is_serialized($qmn_quiz_options->social_media_text) && is_array(@unserialize($qmn_quiz_options->social_media_text)))
102
+ {
103
+ $qmn_social_media_text = @unserialize($qmn_quiz_options->social_media_text);
104
+ }
105
+ else
106
+ {
107
+ $qmn_social_media_text = array(
108
+ 'twitter' => $qmn_quiz_options->social_media_text,
109
+ 'facebook' => $qmn_quiz_options->social_media_text
110
+ );
111
+ }
112
+
113
+ $qmn_social_media_text["twitter"] = apply_filters( 'mlw_qmn_template_variable_results_page', $qmn_social_media_text["twitter"], $mlw_quiz_array);
114
+ $social_display = "<a class=\"mlw_qmn_quiz_link\" onclick=\"mlw_qmn_share('twitter', '".esc_js($qmn_social_media_text["twitter"])."', '".esc_js($mlw_quiz_array["quiz_name"])."');\">Twitter</a>";
115
+ $content = str_replace( "%TWITTER_SHARE%" , $social_display, $content);
116
+ }
117
+ return $content;
118
+ }
119
  function mlw_qmn_variable_point_score($content, $mlw_quiz_array)
120
  {
121
  $content = str_replace( "%POINT_SCORE%" , $mlw_quiz_array["total_points"], $content);
182
  }
183
  function mlw_qmn_variable_question_answers($content, $mlw_quiz_array)
184
  {
185
+ while (strpos($content, '%QUESTIONS_ANSWERS%') !== false)
186
  {
187
  global $wpdb;
188
  $display = '';
245
  function qmn_variable_category_points($content, $mlw_quiz_array)
246
  {
247
  $return_points = 0;
248
+ while (strpos($content, '%CATEGORY_POINTS%') !== false)
249
  {
250
  $return_points = 0;
251
  preg_match("~%CATEGORY_POINTS%(.*?)%/CATEGORY_POINTS%~i",$content,$answer_text);
276
  $return_score = 0;
277
  $total_questions = 0;
278
  $amount_correct = 0;
279
+ while (strpos($content, '%CATEGORY_SCORE%') !== false)
280
  {
281
  $return_score = 0;
282
  $total_questions = 0;
323
  $total_categories = 0;
324
  $total_score = 0;
325
  $category_scores = array();
326
+ while (strpos($content, '%CATEGORY_AVERAGE_SCORE%') !== false)
327
  {
328
  foreach ($mlw_quiz_array['question_answers_array'] as $answer)
329
  {
375
  $total_categories = 0;
376
  $total_points = 0;
377
  $category_scores = array();
378
+ while (strpos($content, '%CATEGORY_AVERAGE_POINTS%') !== false)
379
  {
380
  foreach ($mlw_quiz_array['question_answers_array'] as $answer)
381
  {
includes/qmn_tools.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /*
3
  This page creates the main dashboard for the Quiz Master Next plugin
4
  */
@@ -8,6 +9,10 @@ Copyright 2013, My Local Webstop (email : fpcorso@mylocalwebstop.com)
8
 
9
  function mlw_generate_quiz_tools()
10
  {
 
 
 
 
11
  add_meta_box("qmn_restore_box", 'Restore Quiz', "qmn_restore_function", "quiz_wpss");
12
  add_meta_box("qmn_audit_box", 'Audit Trail', "mlw_tools_box", "quiz_wpss");
13
  ?>
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  /*
4
  This page creates the main dashboard for the Quiz Master Next plugin
5
  */
9
 
10
  function mlw_generate_quiz_tools()
11
  {
12
+ if ( !current_user_can('moderate_comments') )
13
+ {
14
+ return;
15
+ }
16
  add_meta_box("qmn_restore_box", 'Restore Quiz', "qmn_restore_function", "quiz_wpss");
17
  add_meta_box("qmn_audit_box", 'Audit Trail', "mlw_tools_box", "quiz_wpss");
18
  ?>
includes/qmn_update.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /*
3
  This is the update function for the plugin. When the plugin gets updated, the database changes are done here. This function is placed in the init of wordpress.
4
  */
@@ -6,6 +7,10 @@ function mlw_quiz_update()
6
  {
7
  global $mlwQuizMasterNext;
8
  $data = $mlwQuizMasterNext->version;
 
 
 
 
9
  if ( ! get_option('mlw_quiz_master_version'))
10
  {
11
  add_option('mlw_quiz_master_version' , $data);
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  /*
4
  This is the update function for the plugin. When the plugin gets updated, the database changes are done here. This function is placed in the init of wordpress.
5
  */
7
  {
8
  global $mlwQuizMasterNext;
9
  $data = $mlwQuizMasterNext->version;
10
+ if ( ! get_option('qmn_original_version'))
11
+ {
12
+ add_option('qmn_original_version' , $data);
13
+ }
14
  if ( ! get_option('mlw_quiz_master_version'))
15
  {
16
  add_option('mlw_quiz_master_version' , $data);
includes/qmn_usage_tracking.php CHANGED
@@ -105,9 +105,7 @@ class QMNTracking
105
  ) );
106
  if ( is_wp_error( $response ) ) {
107
  $error_message = $response->get_error_message();
108
- echo "Something went wrong: $error_message";
109
- } else {
110
- echo "**Message Sent**";
111
  }
112
  }
113
 
105
  ) );
106
  if ( is_wp_error( $response ) ) {
107
  $error_message = $response->get_error_message();
108
+ echo "Something went wrong with QMN Usage Tracker: $error_message";
 
 
109
  }
110
  }
111
 
includes/qmn_widgets.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /*
3
  This is the file that contains all the widgets for the plugin
4
  */
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
  /*
4
  This is the file that contains all the widgets for the plugin
5
  */
index.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+
3
+ die("Error: Unauthorized Access");
4
+ ?>
languages/index.php CHANGED
@@ -1,5 +1,4 @@
1
  <?php
2
 
3
-
4
-
5
  ?>
1
  <?php
2
 
3
+ die("Error: Unauthorized Access");
 
4
  ?>
languages/quiz-master-next-da_DK.mo ADDED
Binary file
languages/quiz-master-next-da_DK.po ADDED
@@ -0,0 +1,1508 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Quiz Master Next
2
+ # Copyright (C) 2015 ...
3
+ # This file is distributed under the GNU General Public License v2 or later.
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: Quiz Master Next\n"
7
+ "Report-Msgid-Bugs-To: Frank Corso <fpcorso@mylocalwebstop.com>\n"
8
+ "POT-Creation-Date: 2015-03-06 14:04-0500\n"
9
+ "PO-Revision-Date: \n"
10
+ "Last-Translator: Your Name <you@example.com>\n"
11
+ "Language-Team: My Local Webstop <fpcorso@mylocalwebstop.com>\n"
12
+ "Language: da_DK\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
18
+ "X-Poedit-SourceCharset: UTF-8\n"
19
+ "X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;esc_attr_e;"
20
+ "esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2;"
21
+ "_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
22
+ "X-Poedit-Basepath: ../\n"
23
+ "X-Generator: Poedit 1.7.3\n"
24
+ "X-Poedit-SearchPath-0: .\n"
25
+
26
+ #: includes/qmn_addons.php:48
27
+ msgid "These addons extend the functionality of Quiz Master Next"
28
+ msgstr "Disse addons udvide funktionaliteten i Quiz Master Next"
29
+
30
+ #: includes/qmn_addons.php:71
31
+ msgid "Browse All Addons"
32
+ msgstr "Gennemse alle Addons"
33
+
34
+ #: includes/qmn_addons.php:78
35
+ msgid "Featured Addons"
36
+ msgstr "Udvalgte Addons"
37
+
38
+ #: includes/qmn_alerts.php:19
39
+ msgid "Success!"
40
+ msgstr "Succes"
41
+
42
+ #: includes/qmn_alerts.php:23 includes/qmn_quiz_options.php:96
43
+ msgid "Error!"
44
+ msgstr "Fejl!"
45
+
46
+ #: includes/qmn_credits.php:86
47
+ msgid "Welcome To Quiz Master Next"
48
+ msgstr "Velkommen til Quiz Master Next"
49
+
50
+ #: includes/qmn_credits.php:87
51
+ msgid "Thank you for updating!"
52
+ msgstr "Tak for opdatering!"
53
+
54
+ #: includes/qmn_credits.php:91
55
+ msgid "What's New!"
56
+ msgstr "Nyheder!"
57
+
58
+ #: includes/qmn_credits.php:93
59
+ msgid "Changelog"
60
+ msgstr "Ændringslog"
61
+
62
+ #: includes/qmn_credits.php:95
63
+ msgid "Requested Features"
64
+ msgstr "Efterspurgte funktioner"
65
+
66
+ #: includes/qmn_dashboard.php:16
67
+ msgid "Quiz Daily Stats - Times Taken"
68
+ msgstr "Daglig statistik - tid"
69
+
70
+ #: includes/qmn_dashboard.php:17
71
+ msgid "Quiz Total Stats"
72
+ msgstr "Total statistik"
73
+
74
+ #: includes/qmn_dashboard.php:18
75
+ msgid "Quiz Weekly Stats - Times Taken"
76
+ msgstr "Ugentlige statistikker - tid"
77
+
78
+ #: includes/qmn_dashboard.php:19
79
+ msgid "Quiz Monthly Stats - Times Taken"
80
+ msgstr "Månedlig statistik tid"
81
+
82
+ #: includes/qmn_dashboard.php:20
83
+ msgid "Quiz Quarterly Stats - Times Taken"
84
+ msgstr "Kvartalsvis statistik - tid"
85
+
86
+ #: includes/qmn_dashboard.php:25
87
+ msgid "Quizzes Taken Today"
88
+ msgstr "Antal i dag"
89
+
90
+ #: includes/qmn_dashboard.php:26
91
+ msgid "Quizzes Taken Last 7 Days"
92
+ msgstr "Antal sidste 7 dage"
93
+
94
+ #: includes/qmn_dashboard.php:27
95
+ msgid "Quizzes Taken Last 30 Days"
96
+ msgstr "Antal sidste 30 dage"
97
+
98
+ #: includes/qmn_dashboard.php:28
99
+ msgid "Quizzes Taken Last 120 Days"
100
+ msgstr "Antal sidste 120 dage"
101
+
102
+ #: includes/qmn_dashboard.php:54
103
+ msgid "Quiz Statistics"
104
+ msgstr "Quiz statistik"
105
+
106
+ #: includes/qmn_dashboard.php:228
107
+ msgid "Total Created Quizzes"
108
+ msgstr "Total oprettede undesøgelser"
109
+
110
+ #: includes/qmn_dashboard.php:232
111
+ msgid "Total Deleted Quizzes"
112
+ msgstr "Total slettede undersøgelser"
113
+
114
+ #: includes/qmn_dashboard.php:236
115
+ msgid "Total Active Quizzes"
116
+ msgstr "Total aktive statistikker"
117
+
118
+ #: includes/qmn_dashboard.php:240
119
+ msgid "Total Created Questions"
120
+ msgstr "Total oprettede spørgsmål"
121
+
122
+ #: includes/qmn_dashboard.php:244
123
+ msgid "Total Times All Active Quizzes Have Been Viewed"
124
+ msgstr "Tid alle aktive spørgeskemaer er vist"
125
+
126
+ #: includes/qmn_dashboard.php:248
127
+ msgid "Total Times All Active Quizzes Have Been Taken"
128
+ msgstr "Total tid alle aktive spørgeskemaer har taget"
129
+
130
+ #: includes/qmn_dashboard.php:252
131
+ msgid "Average Amount Each Active Quiz Has Been Viewed"
132
+ msgstr "Gennemsnitlig tid for den enkelte spørgeskema undersøgelse"
133
+
134
+ #: includes/qmn_dashboard.php:256
135
+ msgid "Average Amount Each Active Quiz Has Been Taken"
136
+ msgstr "Gennemsnitlig tid for den enkelte spørgeskema undersøgelse"
137
+
138
+ #: includes/qmn_dashboard.php:260
139
+ msgid "Quiz That Has Been Viewed The Most"
140
+ msgstr "Mest sete unersøgelse"
141
+
142
+ #: includes/qmn_dashboard.php:264
143
+ msgid "Quiz That Has Been Taken The Most"
144
+ msgstr "Mest udfyldte undersøgelse"
145
+
146
+ #: includes/qmn_dashboard_widgets.php:9
147
+ msgid "Quiz Master Next Snapshot"
148
+ msgstr "Quiz Master Next skærmdump"
149
+
150
+ #: includes/qmn_dashboard_widgets.php:128
151
+ msgid "quizzes taken today"
152
+ msgstr "Spørgeskemaer udfyldt i dag"
153
+
154
+ #: includes/qmn_dashboard_widgets.php:147
155
+ msgid "quizzes taken last 7 days"
156
+ msgstr "Spørgeskemaer udfyldt de sidste 7 dage"
157
+
158
+ #: includes/qmn_dashboard_widgets.php:166
159
+ msgid "total active quizzes"
160
+ msgstr "Antal aktive spørgeskemaundersøgelser"
161
+
162
+ #: includes/qmn_dashboard_widgets.php:172
163
+ msgid "total active questions"
164
+ msgstr "Antal aktive spørgsmål"
165
+
166
+ #: includes/qmn_dashboard_widgets.php:178
167
+ msgid "most popular quiz"
168
+ msgstr "mest populære spørgeskemaundersøgelse"
169
+
170
+ #: includes/qmn_dashboard_widgets.php:184
171
+ msgid "least popular quiz"
172
+ msgstr "mindst populære undersøgelse"
173
+
174
+ #: includes/qmn_help.php:13
175
+ msgid "Need Help?"
176
+ msgstr "Brug for hjælp?"
177
+
178
+ #: includes/qmn_help.php:14
179
+ msgid "Support"
180
+ msgstr "Support"
181
+
182
+ #: includes/qmn_help.php:15
183
+ msgid "System Info"
184
+ msgstr "System Info"
185
+
186
+ #: includes/qmn_help.php:18
187
+ msgid "Help Page"
188
+ msgstr "Hjælp"
189
+
190
+ #: includes/qmn_help.php:41
191
+ msgid "Need help with the plugin? Try any of the following:"
192
+ msgstr "Har du brug for hjælp med dette plugin? Forsøg​følgende:"
193
+
194
+ #: includes/qmn_options_certificate_tab.php:6
195
+ msgid "Certificate (Beta)"
196
+ msgstr "Certifikat"
197
+
198
+ #: includes/qmn_options_certificate_tab.php:32
199
+ msgid "The certificate has been updated successfully."
200
+ msgstr "Certifikatet er blevet opdateret."
201
+
202
+ #: includes/qmn_options_certificate_tab.php:45
203
+ #: includes/qmn_options_email_tab.php:55 includes/qmn_options_email_tab.php:114
204
+ #: includes/qmn_options_email_tab.php:178
205
+ #: includes/qmn_options_leaderboard_tab.php:38
206
+ #: includes/qmn_options_option_tab.php:56
207
+ #: includes/qmn_options_questions_tab.php:118
208
+ #: includes/qmn_options_questions_tab.php:145
209
+ #: includes/qmn_options_questions_tab.php:229
210
+ #: includes/qmn_options_questions_tab.php:322
211
+ #: includes/qmn_options_results_page_tab.php:54
212
+ #: includes/qmn_options_results_page_tab.php:94
213
+ #: includes/qmn_options_style_tab.php:39 includes/qmn_options_text_tab.php:55
214
+ #: includes/qmn_options_tools_tab.php:36 includes/qmn_quiz_creator.php:382
215
+ #: includes/qmn_quiz_creator.php:448 includes/qmn_quiz_creator.php:490
216
+ #: includes/qmn_quiz_creator.php:648 includes/qmn_quiz_creator.php:713
217
+ #: includes/qmn_results.php:36
218
+ #, php-format
219
+ msgid ""
220
+ "There has been an error in this action. Please share this with the developer. "
221
+ "Error Code: %s"
222
+ msgstr "Der har været en fejl. Venligst del dette med udvikleren . Fejlkode:% s"
223
+
224
+ #: includes/qmn_options_certificate_tab.php:61
225
+ msgid "Enter title here"
226
+ msgstr "Indtast titel her"
227
+
228
+ #: includes/qmn_options_certificate_tab.php:61
229
+ #: includes/qmn_options_email_tab.php:73 includes/qmn_options_email_tab.php:91
230
+ msgid "Enter text here"
231
+ msgstr "Indtast tekst her"
232
+
233
+ #: includes/qmn_options_certificate_tab.php:70
234
+ msgid "Quiz Certificate (Beta)"
235
+ msgstr "Quiz Certificate (Beta)"
236
+
237
+ #: includes/qmn_options_certificate_tab.php:71
238
+ msgid ""
239
+ "Enter in your text here to fill in the certificate for this quiz. Be sure to "
240
+ "enter in the link variable into the templates on the Quiz Text tab so the "
241
+ "user can access the certificate."
242
+ msgstr ""
243
+ "Indtast din tekst her for at udfylde attesten for denne quiz. Sørg for at "
244
+ "indtaste i linket variabel i skabelonerne under fanen Quiz tekst, så brugeren "
245
+ "kan få adgang til certifikatet."
246
+
247
+ #: includes/qmn_options_certificate_tab.php:72
248
+ msgid "These fields cannot contain HTML."
249
+ msgstr "Disse felter kan ikke indeholde HTML."
250
+
251
+ #: includes/qmn_options_certificate_tab.php:73
252
+ #: includes/qmn_options_certificate_tab.php:129
253
+ msgid "Save Certificate Options"
254
+ msgstr "Gem Certificate indstillinger"
255
+
256
+ #: includes/qmn_options_certificate_tab.php:81
257
+ msgid "Enable Certificates For This Quiz?"
258
+ msgstr "Aktiver certifikater for denne quiz?"
259
+
260
+ #: includes/qmn_options_certificate_tab.php:83
261
+ #: includes/qmn_options_email_tab.php:325
262
+ #: includes/qmn_options_email_tab.php:332
263
+ #: includes/qmn_options_option_tab.php:102
264
+ #: includes/qmn_options_option_tab.php:163
265
+ #: includes/qmn_options_option_tab.php:170
266
+ #: includes/qmn_options_option_tab.php:178
267
+ #: includes/qmn_options_option_tab.php:186
268
+ #: includes/qmn_options_option_tab.php:194
269
+ #: includes/qmn_options_option_tab.php:202
270
+ #: includes/qmn_options_option_tab.php:209
271
+ #: includes/qmn_options_option_tab.php:216
272
+ #: includes/qmn_options_questions_tab.php:674
273
+ #: includes/qmn_options_questions_tab.php:830
274
+ #: includes/qmn_options_results_page_tab.php:247
275
+ msgid "Yes"
276
+ msgstr "Ja"
277
+
278
+ #: includes/qmn_options_certificate_tab.php:84
279
+ #: includes/qmn_options_email_tab.php:326
280
+ #: includes/qmn_options_email_tab.php:333
281
+ #: includes/qmn_options_option_tab.php:103
282
+ #: includes/qmn_options_option_tab.php:150
283
+ #: includes/qmn_options_option_tab.php:164
284
+ #: includes/qmn_options_option_tab.php:172
285
+ #: includes/qmn_options_option_tab.php:180
286
+ #: includes/qmn_options_option_tab.php:188
287
+ #: includes/qmn_options_option_tab.php:196
288
+ #: includes/qmn_options_option_tab.php:203
289
+ #: includes/qmn_options_option_tab.php:210
290
+ #: includes/qmn_options_option_tab.php:217
291
+ #: includes/qmn_options_questions_tab.php:675
292
+ #: includes/qmn_options_questions_tab.php:831
293
+ #: includes/qmn_options_results_page_tab.php:247
294
+ msgid "No"
295
+ msgstr "Nej"
296
+
297
+ #: includes/qmn_options_certificate_tab.php:89
298
+ msgid "Certificate Title"
299
+ msgstr "Certifikat Titel"
300
+
301
+ #: includes/qmn_options_certificate_tab.php:96
302
+ msgid "Message Displayed On Certificate"
303
+ msgstr "Meddelelse på Certifikat"
304
+
305
+ #: includes/qmn_options_certificate_tab.php:98
306
+ #: includes/qmn_options_leaderboard_tab.php:91
307
+ #: includes/qmn_options_text_tab.php:181 includes/qmn_options_text_tab.php:191
308
+ #: includes/qmn_options_text_tab.php:201 includes/qmn_options_text_tab.php:211
309
+ #: includes/qmn_options_text_tab.php:221 includes/qmn_options_text_tab.php:231
310
+ #: includes/qmn_options_text_tab.php:241 includes/qmn_options_text_tab.php:251
311
+ #: includes/qmn_options_text_tab.php:264 includes/qmn_options_text_tab.php:281
312
+ msgid "Allowed Variables:"
313
+ msgstr "Tilladte variable"
314
+
315
+ #: includes/qmn_options_certificate_tab.php:116
316
+ msgid "URL To Logo (Must be JPG, JPEG, PNG or GIF)"
317
+ msgstr "URL til Logo (Skal være JPG, JPEG, PNG eller GIF)"
318
+
319
+ #: includes/qmn_options_certificate_tab.php:123
320
+ msgid "URL To Background Img (Must be JPG, JPEG, PNG or GIF)"
321
+ msgstr "URL til Baggrund Img (Skal være JPG, JPEG, PNG eller GIF)"
322
+
323
+ #: includes/qmn_options_email_tab.php:6
324
+ msgid "Emails"
325
+ msgstr "E-mails"
326
+
327
+ #: includes/qmn_options_email_tab.php:42 includes/qmn_options_email_tab.php:101
328
+ msgid "The email has been added successfully."
329
+ msgstr "E-mail er blevet tilføjet."
330
+
331
+ #: includes/qmn_options_email_tab.php:165
332
+ msgid "The email has been updated successfully."
333
+ msgstr "E-mail er blevet opdateret."
334
+
335
+ #: includes/qmn_options_email_tab.php:232
336
+ #: includes/qmn_options_leaderboard_tab.php:49
337
+ #: includes/qmn_options_results_page_tab.php:134
338
+ #: includes/qmn_options_text_tab.php:92
339
+ msgid "Template Variables"
340
+ msgstr "Skabelon variable"
341
+
342
+ #: includes/qmn_options_email_tab.php:235
343
+ #: includes/qmn_options_results_page_tab.php:137
344
+ #: includes/qmn_options_text_tab.php:95
345
+ msgid "Score for the quiz when using points"
346
+ msgstr "Score for quizzen, når du bruger point"
347
+
348
+ #: includes/qmn_options_email_tab.php:238
349
+ #: includes/qmn_options_results_page_tab.php:140
350
+ #: includes/qmn_options_text_tab.php:98
351
+ msgid "The average amount of points user had per question"
352
+ msgstr "Det gennemsnitlige antal point bruger havde pr spørgsmål"
353
+
354
+ #: includes/qmn_options_email_tab.php:241
355
+ #: includes/qmn_options_results_page_tab.php:143
356
+ #: includes/qmn_options_text_tab.php:101
357
+ msgid "The number of correct answers the user had"
358
+ msgstr "Antallet af korrekte svar brugeren havde"
359
+
360
+ #: includes/qmn_options_email_tab.php:244
361
+ #: includes/qmn_options_results_page_tab.php:146
362
+ #: includes/qmn_options_text_tab.php:104
363
+ msgid "The total number of questions in the quiz"
364
+ msgstr "Det samlede antal spørgsmål i quizzen"
365
+
366
+ #: includes/qmn_options_email_tab.php:247
367
+ #: includes/qmn_options_results_page_tab.php:149
368
+ #: includes/qmn_options_text_tab.php:107
369
+ msgid "Score for the quiz when using correct answers"
370
+ msgstr "Score for quizzen, når du bruger korrekte svar"
371
+
372
+ #: includes/qmn_options_email_tab.php:250
373
+ #: includes/qmn_options_results_page_tab.php:152
374
+ #: includes/qmn_options_text_tab.php:110
375
+ msgid "The name the user entered before the quiz"
376
+ msgstr "Navnet brugeren indtastes, før quizzen"
377
+
378
+ #: includes/qmn_options_email_tab.php:253
379
+ #: includes/qmn_options_results_page_tab.php:155
380
+ #: includes/qmn_options_text_tab.php:113
381
+ msgid "The business the user entered before the quiz"
382
+ msgstr "Forretningen brugeren indtastes, før quizzen"
383
+
384
+ #: includes/qmn_options_email_tab.php:256
385
+ #: includes/qmn_options_results_page_tab.php:158
386
+ #: includes/qmn_options_text_tab.php:116
387
+ msgid "The phone number the user entered before the quiz"
388
+ msgstr "Telefonnummeret brugeren indtastede, før quizzen"
389
+
390
+ #: includes/qmn_options_email_tab.php:259
391
+ #: includes/qmn_options_results_page_tab.php:161
392
+ #: includes/qmn_options_text_tab.php:119
393
+ msgid "The email the user entered before the quiz"
394
+ msgstr "Den e-mail brugeren indtastes, før quizzen"
395
+
396
+ #: includes/qmn_options_email_tab.php:262
397
+ #: includes/qmn_options_leaderboard_tab.php:77
398
+ #: includes/qmn_options_results_page_tab.php:164
399
+ #: includes/qmn_options_text_tab.php:122
400
+ msgid "The name of the quiz"
401
+ msgstr "Navn på Quiz:"
402
+
403
+ #: includes/qmn_options_email_tab.php:265
404
+ #: includes/qmn_options_results_page_tab.php:167
405
+ #: includes/qmn_options_text_tab.php:125
406
+ msgid "Shows the question, the answer the user provided, and the correct answer"
407
+ msgstr "Viser brugers svar og det korrekte svar"
408
+
409
+ #: includes/qmn_options_email_tab.php:268
410
+ #: includes/qmn_options_results_page_tab.php:170
411
+ #: includes/qmn_options_text_tab.php:128
412
+ msgid "The comments the user entered into comment box if enabled"
413
+ msgstr "Kommenar som brugeren har indtastet"
414
+
415
+ #: includes/qmn_options_email_tab.php:271
416
+ #: includes/qmn_options_results_page_tab.php:173
417
+ #: includes/qmn_options_text_tab.php:131
418
+ msgid "The amount of time user spent of quiz"
419
+ msgstr "Tid brugeren brugte på undersøgelsen"
420
+
421
+ #: includes/qmn_options_email_tab.php:274
422
+ #: includes/qmn_options_results_page_tab.php:176
423
+ #: includes/qmn_options_text_tab.php:134
424
+ msgid "The link to the certificate after completing the quiz"
425
+ msgstr "Link til certifikat - efter endt test"
426
+
427
+ #: includes/qmn_options_email_tab.php:277
428
+ #: includes/qmn_options_results_page_tab.php:179
429
+ #: includes/qmn_options_text_tab.php:137
430
+ msgid "The amount of points a specific category earned."
431
+ msgstr "Antal point der er opnået i kategorien"
432
+
433
+ #: includes/qmn_options_email_tab.php:280
434
+ #: includes/qmn_options_results_page_tab.php:182
435
+ #: includes/qmn_options_text_tab.php:140
436
+ msgid "The score a specific category earned."
437
+ msgstr "Skore for specifik kategori"
438
+
439
+ #: includes/qmn_options_email_tab.php:283
440
+ #: includes/qmn_options_results_page_tab.php:185
441
+ #: includes/qmn_options_text_tab.php:143
442
+ msgid "The average points from all categories."
443
+ msgstr "Gennemsnit af point for alle kategorier"
444
+
445
+ #: includes/qmn_options_email_tab.php:286
446
+ #: includes/qmn_options_results_page_tab.php:188
447
+ #: includes/qmn_options_text_tab.php:146
448
+ msgid "The average score from all categories."
449
+ msgstr "Gennemsnit skore for alle kategorier"
450
+
451
+ #: includes/qmn_options_email_tab.php:289 includes/qmn_options_text_tab.php:149
452
+ msgid "The question that the user answered"
453
+ msgstr "Spørgsmål brugeren besvarede"
454
+
455
+ #: includes/qmn_options_email_tab.php:292 includes/qmn_options_text_tab.php:152
456
+ msgid "The answer the user gave for the question"
457
+ msgstr "Brugerens svar på sprøgesmål"
458
+
459
+ #: includes/qmn_options_email_tab.php:295 includes/qmn_options_text_tab.php:155
460
+ msgid "The correct answer for the question"
461
+ msgstr "Korrekt svar på spørgsmål"
462
+
463
+ #: includes/qmn_options_email_tab.php:298 includes/qmn_options_text_tab.php:158
464
+ msgid "The comments the user provided in the comment field for the question"
465
+ msgstr "Kommentar til spørgsmål"
466
+
467
+ #: includes/qmn_options_email_tab.php:301 includes/qmn_options_text_tab.php:161
468
+ msgid "Reason why the correct answer is the correct answer"
469
+ msgstr "Årsag til at dette er det korrekte svar"
470
+
471
+ #: includes/qmn_options_email_tab.php:304 includes/qmn_options_text_tab.php:164
472
+ msgid "The Current Date"
473
+ msgstr "Dags dato"
474
+
475
+ #: includes/qmn_options_email_tab.php:319
476
+ #: includes/qmn_options_email_tab.php:518
477
+ msgid "Save Email Templates And Settings"
478
+ msgstr "Gem e-mail skabelon og opsætning"
479
+
480
+ #: includes/qmn_options_email_tab.php:323
481
+ msgid "Send user email upon completion?"
482
+ msgstr "Send bruger mail ved afslutning"
483
+
484
+ #: includes/qmn_options_email_tab.php:330
485
+ msgid "Send admin email upon completion?"
486
+ msgstr "Send e-mail til administrator ved afslutning?"
487
+
488
+ #: includes/qmn_options_email_tab.php:337
489
+ msgid ""
490
+ "What emails should we send the admin email to? Separate emails with a comma."
491
+ msgstr "E-mail som administrator e-mails skal sendes til? adskil med komma."
492
+
493
+ #: includes/qmn_options_email_tab.php:341
494
+ msgid "What is the From Name for the email sent to users and admin?"
495
+ msgstr "Navn på afsender på e-mails til brugere og administrator?"
496
+
497
+ #: includes/qmn_options_email_tab.php:347
498
+ msgid "Email Sent To User"
499
+ msgstr "E-mail til bruger"
500
+
501
+ #: includes/qmn_options_email_tab.php:348
502
+ #: includes/qmn_options_email_tab.php:426
503
+ msgid "Add New User Email"
504
+ msgstr "Tilføj ny bruger e-mail"
505
+
506
+ #: includes/qmn_options_email_tab.php:353
507
+ #: includes/qmn_options_email_tab.php:419
508
+ #: includes/qmn_options_email_tab.php:440
509
+ #: includes/qmn_options_email_tab.php:506
510
+ #: includes/qmn_options_results_page_tab.php:206
511
+ #: includes/qmn_options_results_page_tab.php:270
512
+ msgid "Score Greater Than Or Equal To"
513
+ msgstr "Skore større eller lig med"
514
+
515
+ #: includes/qmn_options_email_tab.php:354
516
+ #: includes/qmn_options_email_tab.php:420
517
+ #: includes/qmn_options_email_tab.php:441
518
+ #: includes/qmn_options_email_tab.php:507
519
+ #: includes/qmn_options_results_page_tab.php:207
520
+ #: includes/qmn_options_results_page_tab.php:271
521
+ msgid "Score Less Than Or Equal To"
522
+ msgstr "Skore mindre end eller lige med"
523
+
524
+ #: includes/qmn_options_email_tab.php:355
525
+ #: includes/qmn_options_email_tab.php:421
526
+ #: includes/qmn_options_email_tab.php:442
527
+ #: includes/qmn_options_email_tab.php:508
528
+ msgid "Subject"
529
+ msgstr "Emne"
530
+
531
+ #: includes/qmn_options_email_tab.php:356
532
+ #: includes/qmn_options_email_tab.php:422
533
+ #: includes/qmn_options_email_tab.php:443
534
+ #: includes/qmn_options_email_tab.php:509
535
+ msgid "Email To Send"
536
+ msgstr "E-mail der sendes"
537
+
538
+ #: includes/qmn_options_email_tab.php:434
539
+ msgid "Email Sent To Admin"
540
+ msgstr "E-mail sendt til administrator"
541
+
542
+ #: includes/qmn_options_email_tab.php:435
543
+ #: includes/qmn_options_email_tab.php:513
544
+ msgid "Add New Admin Email"
545
+ msgstr "Tilføj ny administrator e-mail"
546
+
547
+ #: includes/qmn_options_leaderboard_tab.php:6
548
+ msgid "Leaderboard"
549
+ msgstr "Leaderboard"
550
+
551
+ #: includes/qmn_options_leaderboard_tab.php:25
552
+ msgid "The leaderboards has been updated successfully."
553
+ msgstr "Leaderboards er blevet opdateret"
554
+
555
+ #: includes/qmn_options_leaderboard_tab.php:52
556
+ msgid "The name of the user who is in first place"
557
+ msgstr "Navn på bruger der er nummer et"
558
+
559
+ #: includes/qmn_options_leaderboard_tab.php:53
560
+ msgid "The score from the first place's quiz"
561
+ msgstr "Skore på førstepladsen"
562
+
563
+ #: includes/qmn_options_leaderboard_tab.php:57
564
+ msgid "The name of the user who is in second place"
565
+ msgstr "Navn på bruger som er nummer 2"
566
+
567
+ #: includes/qmn_options_leaderboard_tab.php:58
568
+ msgid "The score from the second place's quiz"
569
+ msgstr "Andenpladsens skore"
570
+
571
+ #: includes/qmn_options_leaderboard_tab.php:62
572
+ msgid "The name of the user who is in third place"
573
+ msgstr "Navn på bruger på trediepladsen"
574
+
575
+ #: includes/qmn_options_leaderboard_tab.php:63
576
+ msgid "The score from the third place's quiz"
577
+ msgstr "Skore fra bruger på trediepladsen"
578
+
579
+ #: includes/qmn_options_leaderboard_tab.php:67
580
+ msgid "The name of the user who is in fourth place"
581
+ msgstr "Navn på bruger på fjerdepladsen"
582
+
583
+ #: includes/qmn_options_leaderboard_tab.php:68
584
+ msgid "The score from the fourth place's quiz"
585
+ msgstr "Skore fra bruger på fjerdepladsen"
586
+
587
+ #: includes/qmn_options_leaderboard_tab.php:72
588
+ msgid "The name of the user who is in fifth place"
589
+ msgstr "Navn på bruger på femte pladsen"
590
+
591
+ #: includes/qmn_options_leaderboard_tab.php:73
592
+ msgid "The score from the fifth place's quiz"
593
+ msgstr "Skore på 5 pladsens bruger"
594
+
595
+ #: includes/qmn_options_leaderboard_tab.php:80
596
+ #: includes/qmn_options_leaderboard_tab.php:108
597
+ msgid "Save Leaderboard Options"
598
+ msgstr "Gem leaderboard indstillinger"
599
+
600
+ #: includes/qmn_options_leaderboard_tab.php:89
601
+ msgid "Leaderboard Template"
602
+ msgstr "Leaderboard skabelon"
603
+
604
+ #: includes/qmn_options_option_tab.php:6
605
+ msgid "Options"
606
+ msgstr "Indstillinger"
607
+
608
+ #: includes/qmn_options_option_tab.php:43
609
+ msgid "The options has been updated successfully."
610
+ msgstr "Indstillinger er gemt"
611
+
612
+ #: includes/qmn_options_option_tab.php:84
613
+ #: includes/qmn_options_option_tab.php:221
614
+ msgid "Save Options"
615
+ msgstr "Gem indstillinger"
616
+
617
+ #: includes/qmn_options_option_tab.php:92
618
+ msgid "Which system is this quiz graded on?"
619
+ msgstr "Hvilket system er denne quiz sorteres på?"
620
+
621
+ #: includes/qmn_options_option_tab.php:94
622
+ msgid "Correct/Incorrect"
623
+ msgstr "Korrekt / Ukorrekt"
624
+
625
+ #: includes/qmn_options_option_tab.php:95
626
+ msgid "Points"
627
+ msgstr "Point"
628
+
629
+ #: includes/qmn_options_option_tab.php:96 includes/qmn_results.php:258
630
+ msgid "Not Graded"
631
+ msgstr "Ikke Graded"
632
+
633
+ #: includes/qmn_options_option_tab.php:100
634
+ msgid "Should the user be required to be logged in to take this quiz?"
635
+ msgstr "Skal brugeren være logget ind for at svare på denne test?"
636
+
637
+ #: includes/qmn_options_option_tab.php:107
638
+ msgid ""
639
+ "How many questions per page would you like? (Leave 0 for all questions on one "
640
+ "page)"
641
+ msgstr ""
642
+ "Hvor mange spørgsmål vil du have per side ? (0 for alle spørgsmål på samme "
643
+ "side)."
644
+
645
+ #: includes/qmn_options_option_tab.php:113
646
+ msgid ""
647
+ "How many minutes does the user have to finish the quiz? (Leave 0 for no time "
648
+ "limit)"
649
+ msgstr ""
650
+ "Hvor mange minutter har brugeren til at afslutte undersøgelsen? (0 for ingen "
651
+ "tidsfrist)"
652
+
653
+ #: includes/qmn_options_option_tab.php:119
654
+ msgid ""
655
+ "How many times can a user take this quiz? (Leave 0 for as many times as the "
656
+ "user wants to. Currently only works for registered users)"
657
+ msgstr ""
658
+ "Hvor mange gange kan en bruger tage denne quiz? (Lad 0 for så mange gange som "
659
+ "brugeren ønsker at. I øjeblikket virker kun for registrerede brugere)"
660
+
661
+ #: includes/qmn_options_option_tab.php:125
662
+ msgid ""
663
+ "How many total entries can this quiz have? (Leave 0 for unlimited entries"
664
+ msgstr ""
665
+ "Hvor mange samlede poster kan denne quiz have? (Lad 0 for ubegrænset poster"
666
+
667
+ #: includes/qmn_options_option_tab.php:131
668
+ msgid ""
669
+ "How many questions should be loaded for quiz? (Leave 0 to load all questions)"
670
+ msgstr ""
671
+ "Hvor mange spørgsmål skal indlæses til quiz? (Lad 0 at indlæse alle spørgsmål)"
672
+
673
+ #: includes/qmn_options_option_tab.php:137
674
+ msgid ""
675
+ "What time-frame should the user be able to access the quiz? (Leave blank if "
676
+ "the user can access anytime)"
677
+ msgstr ""
678
+ "Hvilken tidsperiode skal brugeren kunne få adgang quizzen? (Står tom, hvis "
679
+ "brugeren kan få adgang til når som helst)"
680
+
681
+ #: includes/qmn_options_option_tab.php:139
682
+ msgid "start date"
683
+ msgstr "Start dato"
684
+
685
+ #: includes/qmn_options_option_tab.php:142
686
+ msgid "end date"
687
+ msgstr "Slut dato"
688
+
689
+ #: includes/qmn_options_option_tab.php:146
690
+ msgid "Are the questions random? (Question Order will not apply if this is yes)"
691
+ msgstr ""
692
+ "Er spørgsmålene tilfældigt? (Spørgsmål Order gælder ikke, hvis det er ja)"
693
+
694
+ #: includes/qmn_options_option_tab.php:148
695
+ msgid "Random Questions"
696
+ msgstr "Tilfældige spørgsmål"
697
+
698
+ #: includes/qmn_options_option_tab.php:149
699
+ msgid "Random Questions And Answers"
700
+ msgstr "Tilfældige Spørgsmål og svar"
701
+
702
+ #: includes/qmn_options_option_tab.php:154
703
+ msgid ""
704
+ "Would you like to ask for the contact information at the beginning or at the "
705
+ "end of the quiz?"
706
+ msgstr ""
707
+ "Vil du bede om kontaktoplysninger i begyndelsen eller slutningen af ​​quizzen?"
708
+
709
+ #: includes/qmn_options_option_tab.php:156
710
+ msgid "Beginning"
711
+ msgstr "Begyndelse"
712
+
713
+ #: includes/qmn_options_option_tab.php:157
714
+ msgid "End"
715
+ msgstr "Slut"
716
+
717
+ #: includes/qmn_options_option_tab.php:161
718
+ msgid ""
719
+ "If a logged-in user takes the quiz, would you like them to be able to edit "
720
+ "contact information? If set to no, the fields will not show up for logged in "
721
+ "users; however, the users information will be saved for the fields."
722
+ msgstr ""
723
+ "Hvis en indloggede bruger tager quizzen, vil du have dem til at være i stand "
724
+ "til at redigere kontaktoplysninger? Hvis sat til nej, vil de områder ikke op "
725
+ "til logget ind brugere; dog vil brugerne oplysninger gemmes til felterne."
726
+
727
+ #: includes/qmn_options_option_tab.php:168
728
+ msgid "Should we ask for users name?"
729
+ msgstr "Skal vi bede for brugere navn?"
730
+
731
+ #: includes/qmn_options_option_tab.php:171
732
+ #: includes/qmn_options_option_tab.php:179
733
+ #: includes/qmn_options_option_tab.php:187
734
+ #: includes/qmn_options_option_tab.php:195
735
+ msgid "Require"
736
+ msgstr "Obligatorisk"
737
+
738
+ #: includes/qmn_options_option_tab.php:176
739
+ msgid "Should we ask for users business?"
740
+ msgstr "Skal vi bede for brugere virksomhed?"
741
+
742
+ #: includes/qmn_options_option_tab.php:184
743
+ msgid "Should we ask for users email?"
744
+ msgstr "Skal vi bede for brugere email?"
745
+
746
+ #: includes/qmn_options_option_tab.php:192
747
+ msgid "Should we ask for users phone number?"
748
+ msgstr "Skal vi bede for brugere telefonnummer?"
749
+
750
+ #: includes/qmn_options_option_tab.php:200
751
+ msgid "Would you like a place for the user to enter comments?"
752
+ msgstr "Kunne du tænke dig et sted for brugeren at indtaste kommentarer?"
753
+
754
+ #: includes/qmn_options_option_tab.php:207
755
+ msgid "Show question number on quiz?"
756
+ msgstr "Vis spørgsmål nummer på quiz?"
757
+
758
+ #: includes/qmn_options_option_tab.php:214
759
+ msgid "Show social media sharing buttons? (Twitter & Facebook)"
760
+ msgstr "Vis sociale medier knapper deling? (Twitter & Facebook)"
761
+
762
+ #: includes/qmn_options_option_tab.php:214
763
+ msgid ""
764
+ "This option is for here only for users of older versions. Please use the new "
765
+ "template variables %FACEBOOK_SHARE% %TWITTER_SHARE% on your results pages "
766
+ "instead of using this option!"
767
+ msgstr ""
768
+
769
+ #: includes/qmn_options_preview_tab.php:6
770
+ msgid "Preview"
771
+ msgstr "Preview"
772
+
773
+ #: includes/qmn_options_questions_tab.php:6
774
+ msgid "Questions"
775
+ msgstr "Spørgsmål"
776
+
777
+ #: includes/qmn_options_questions_tab.php:105
778
+ msgid "The question has been updated successfully."
779
+ msgstr "Spørgsmålet er blevet opdateret."
780
+
781
+ #: includes/qmn_options_questions_tab.php:132
782
+ msgid "The question has been deleted successfully."
783
+ msgstr "Dine resultater er blevet slettet."
784
+
785
+ #: includes/qmn_options_questions_tab.php:216
786
+ msgid "The question has been duplicated successfully."
787
+ msgstr "Din Spørgsmål er blevet dublikeret."
788
+
789
+ #: includes/qmn_options_questions_tab.php:309
790
+ msgid "The question has been created successfully."
791
+ msgstr "Spørgsmålet er blevet oprettet."
792
+
793
+ #: includes/qmn_options_questions_tab.php:454
794
+ #: includes/qmn_options_questions_tab.php:461
795
+ #: includes/qmn_options_questions_tab.php:593
796
+ #: includes/qmn_options_questions_tab.php:760
797
+ msgid "Answer"
798
+ msgstr "Svar:"
799
+
800
+ #: includes/qmn_options_questions_tab.php:481
801
+ #: includes/qmn_options_questions_tab.php:729
802
+ msgid "Add Question"
803
+ msgstr "Nyt spørgsmål"
804
+
805
+ #: includes/qmn_options_questions_tab.php:485
806
+ #, php-format
807
+ msgid "One question"
808
+ msgid_plural "%s questions"
809
+ msgstr[0] "Et spørgsmål"
810
+ msgstr[1] "%s spørgsmål"
811
+
812
+ #: includes/qmn_options_questions_tab.php:557 includes/qmn_quiz_admin.php:270
813
+ msgid "Edit"
814
+ msgstr "Ret"
815
+
816
+ #: includes/qmn_options_questions_tab.php:557 includes/qmn_quiz_admin.php:272
817
+ #: includes/qmn_quiz_admin.php:397
818
+ msgid "Duplicate"
819
+ msgstr "Kopier"
820
+
821
+ #: includes/qmn_options_questions_tab.php:557
822
+ #: includes/qmn_options_results_page_tab.php:247
823
+ #: includes/qmn_quiz_admin.php:273
824
+ msgid "Delete"
825
+ msgstr "Slet"
826
+
827
+ #: includes/qmn_options_questions_tab.php:568
828
+ #: includes/qmn_options_questions_tab.php:737
829
+ msgid ""
830
+ "For fill in the blank types, use %BLANK% to represent where to put the text "
831
+ "box in your text."
832
+ msgstr ""
833
+
834
+ #: includes/qmn_options_questions_tab.php:571
835
+ #: includes/qmn_options_questions_tab.php:714
836
+ #: includes/qmn_options_questions_tab.php:725
837
+ #: includes/qmn_options_questions_tab.php:740
838
+ msgid "Question"
839
+ msgstr "Spørgsmål"
840
+
841
+ #: includes/qmn_options_questions_tab.php:582
842
+ #: includes/qmn_options_questions_tab.php:751
843
+ msgid "Answers"
844
+ msgstr "Svar"
845
+
846
+ #: includes/qmn_options_questions_tab.php:583
847
+ #: includes/qmn_options_questions_tab.php:752
848
+ msgid "Points Worth"
849
+ msgstr "Værdi af point"
850
+
851
+ #: includes/qmn_options_questions_tab.php:584
852
+ #: includes/qmn_options_questions_tab.php:753
853
+ msgid "Correct Answer"
854
+ msgstr "Korrekt svar"
855
+
856
+ #: includes/qmn_options_questions_tab.php:611
857
+ #: includes/qmn_options_questions_tab.php:775
858
+ msgid "Add New Answer!"
859
+ msgstr "Tilføj nyt svar!"
860
+
861
+ #: includes/qmn_options_questions_tab.php:616
862
+ #: includes/qmn_options_questions_tab.php:780
863
+ msgid "Correct Answer Info"
864
+ msgstr "Info for korrekt svar"
865
+
866
+ #: includes/qmn_options_questions_tab.php:623
867
+ #: includes/qmn_options_questions_tab.php:787 includes/qmn_quiz.php:441
868
+ msgid "Hint"
869
+ msgstr "Hint"
870
+
871
+ #: includes/qmn_options_questions_tab.php:634
872
+ #: includes/qmn_options_questions_tab.php:712
873
+ #: includes/qmn_options_questions_tab.php:723
874
+ #: includes/qmn_options_questions_tab.php:798
875
+ msgid "Question Type"
876
+ msgstr "Spørgsmål type"
877
+
878
+ #: includes/qmn_options_questions_tab.php:652
879
+ #: includes/qmn_options_questions_tab.php:811
880
+ msgid "Comment Field"
881
+ msgstr "KOmmentar felt"
882
+
883
+ #: includes/qmn_options_questions_tab.php:655
884
+ #: includes/qmn_options_questions_tab.php:813
885
+ msgid "Small Text Field"
886
+ msgstr "Lille tekst felt"
887
+
888
+ #: includes/qmn_options_questions_tab.php:657
889
+ #: includes/qmn_options_questions_tab.php:814
890
+ msgid "Large Text Field"
891
+ msgstr "Stort tekst felt"
892
+
893
+ #: includes/qmn_options_questions_tab.php:659
894
+ #: includes/qmn_options_questions_tab.php:815
895
+ msgid "None"
896
+ msgstr "Ingen"
897
+
898
+ #: includes/qmn_options_questions_tab.php:663
899
+ #: includes/qmn_options_questions_tab.php:711
900
+ #: includes/qmn_options_questions_tab.php:722
901
+ #: includes/qmn_options_questions_tab.php:819
902
+ msgid "Question Order"
903
+ msgstr "Rækkefølge spørgsmål"
904
+
905
+ #: includes/qmn_options_questions_tab.php:671
906
+ #: includes/qmn_options_questions_tab.php:827
907
+ msgid "Required?"
908
+ msgstr "Obligatorisk"
909
+
910
+ #: includes/qmn_options_questions_tab.php:680
911
+ #: includes/qmn_options_questions_tab.php:713
912
+ #: includes/qmn_options_questions_tab.php:724
913
+ #: includes/qmn_options_questions_tab.php:836
914
+ msgid "Category"
915
+ msgstr "Kategori"
916
+
917
+ #: includes/qmn_options_questions_tab.php:699
918
+ #: includes/qmn_options_questions_tab.php:855
919
+ msgid ""
920
+ "Required currently only works on open answer, number, accept, and captcha "
921
+ "question types"
922
+ msgstr ""
923
+ "Obligatorisk virker på nuværende tidspunkt kun på åbne svar, antal, accept og "
924
+ "captcha spørgsmål"
925
+
926
+ #: includes/qmn_options_questions_tab.php:701
927
+ msgid "Edit Question"
928
+ msgstr "Ret spørgsmål"
929
+
930
+ #: includes/qmn_options_questions_tab.php:857
931
+ msgid "Create Question"
932
+ msgstr "Opret spørgsmål"
933
+
934
+ #: includes/qmn_options_questions_tab.php:862
935
+ msgid "Are you sure you want to delete this question?"
936
+ msgstr "Er du sikker på du vil slette dette spørgsmål"
937
+
938
+ #: includes/qmn_options_questions_tab.php:867
939
+ msgid "Delete Question"
940
+ msgstr "Slet spørgsmål"
941
+
942
+ #: includes/qmn_options_questions_tab.php:872
943
+ msgid "Are you sure you want to duplicate this question?"
944
+ msgstr "Er du sikker på du vil kopiere dette spørgsmål?"
945
+
946
+ #: includes/qmn_options_questions_tab.php:877
947
+ msgid "Duplicate Question"
948
+ msgstr "Kopieret spørgsmål"
949
+
950
+ #: includes/qmn_options_results_page_tab.php:6
951
+ msgid "Results Pages"
952
+ msgstr "Resultat sider"
953
+
954
+ #: includes/qmn_options_results_page_tab.php:41
955
+ msgid "The results page has been added successfully."
956
+ msgstr "Resultat siden er tilføjet"
957
+
958
+ #: includes/qmn_options_results_page_tab.php:81
959
+ msgid "The results page has been saved successfully."
960
+ msgstr "Resultatsiden er gemt"
961
+
962
+ #: includes/qmn_options_results_page_tab.php:191
963
+ msgid "Displays button to share on Facebook."
964
+ msgstr ""
965
+
966
+ #: includes/qmn_options_results_page_tab.php:194
967
+ msgid "Displays button to share on Twitter."
968
+ msgstr ""
969
+
970
+ #: includes/qmn_options_results_page_tab.php:199
971
+ #: includes/qmn_options_results_page_tab.php:280
972
+ msgid "Save Results Pages"
973
+ msgstr "Gem resultatsider"
974
+
975
+ #: includes/qmn_options_results_page_tab.php:200
976
+ #: includes/qmn_options_results_page_tab.php:285
977
+ msgid "Add New Results Page"
978
+ msgstr "Tilføj ny resultat side"
979
+
980
+ #: includes/qmn_options_results_page_tab.php:208
981
+ #: includes/qmn_options_results_page_tab.php:272
982
+ msgid "Results Page Shown"
983
+ msgstr "Resultat side vist"
984
+
985
+ #: includes/qmn_options_results_page_tab.php:209
986
+ #: includes/qmn_options_results_page_tab.php:273
987
+ msgid "Redirect URL"
988
+ msgstr ""
989
+
990
+ #: includes/qmn_options_results_page_tab.php:247
991
+ msgid "Are you sure?"
992
+ msgstr "Er du sikker?"
993
+
994
+ #: includes/qmn_options_style_tab.php:6
995
+ msgid "Style"
996
+ msgstr "Style"
997
+
998
+ #: includes/qmn_options_style_tab.php:26
999
+ msgid "The style has been saved successfully."
1000
+ msgstr "Denne style er gemt"
1001
+
1002
+ #: includes/qmn_options_style_tab.php:65
1003
+ msgid "Quiz Styles"
1004
+ msgstr "Quiz styles"
1005
+
1006
+ #: includes/qmn_options_style_tab.php:66
1007
+ msgid "Choose your style:"
1008
+ msgstr "Vælg din style"
1009
+
1010
+ #: includes/qmn_options_style_tab.php:88
1011
+ msgid "Custom"
1012
+ msgstr "Custom"
1013
+
1014
+ #: includes/qmn_options_style_tab.php:94 includes/qmn_options_style_tab.php:106
1015
+ msgid "Save Quiz Style"
1016
+ msgstr "Gem quiz style"
1017
+
1018
+ #: includes/qmn_options_style_tab.php:96
1019
+ msgid "Custom Style CSS"
1020
+ msgstr "Custom style CSS"
1021
+
1022
+ #: includes/qmn_options_style_tab.php:97
1023
+ msgid ""
1024
+ "For detailed help and guidance along with a list of different classes used in "
1025
+ "this plugin, please visit the following link:"
1026
+ msgstr ""
1027
+ "For detaljeret hjælp og instruktion sammen med en liste over de forskellige "
1028
+ "klasser benyttet i dette plugin, besøg følgende link:"
1029
+
1030
+ #: includes/qmn_options_text_tab.php:6
1031
+ msgid "Text"
1032
+ msgstr "Tekst"
1033
+
1034
+ #: includes/qmn_options_text_tab.php:42
1035
+ msgid "The templates has been updated successfully."
1036
+ msgstr "Skabelonerne er blevet opdateret"
1037
+
1038
+ #: includes/qmn_options_text_tab.php:73 includes/qmn_quiz.php:1230
1039
+ msgid "Previous"
1040
+ msgstr "Tidligere"
1041
+
1042
+ #: includes/qmn_options_text_tab.php:169 includes/qmn_options_text_tab.php:329
1043
+ msgid "Save Templates"
1044
+ msgstr "Gem skabeloner"
1045
+
1046
+ #: includes/qmn_options_text_tab.php:175
1047
+ msgid "Message Templates"
1048
+ msgstr "Besked skabeloner"
1049
+
1050
+ #: includes/qmn_options_text_tab.php:179
1051
+ msgid "Message Displayed Before Quiz"
1052
+ msgstr "Besked vist før Quiz"
1053
+
1054
+ #: includes/qmn_options_text_tab.php:189
1055
+ msgid "Message Displayed Before Comments Box If Enabled"
1056
+ msgstr "Besked vist før kommentar boksen hvis aktiv"
1057
+
1058
+ #: includes/qmn_options_text_tab.php:199
1059
+ msgid "Message Displayed At End Of Quiz (Leave Blank To Omit Text Section)"
1060
+ msgstr ""
1061
+ "Besked vist ved slutningen af Quizzen (Vis blank for at undlade tekst sektion)"
1062
+
1063
+ #: includes/qmn_options_text_tab.php:209
1064
+ msgid "Message Displayed If User Has Tried Quiz Too Many Times"
1065
+ msgstr "Besked vist hvis brugeren har deltaget for mange gange"
1066
+
1067
+ #: includes/qmn_options_text_tab.php:219
1068
+ msgid ""
1069
+ "Message Displayed If User Is Not Logged In And Quiz Requires Users To Be "
1070
+ "Logged In"
1071
+ msgstr ""
1072
+ "Besked vist, hvis brugeren skal være logget ind for at besvare denne Quiz"
1073
+
1074
+ #: includes/qmn_options_text_tab.php:229
1075
+ msgid "Message Displayed If Date Is Outside Scheduled Timeframe"
1076
+ msgstr "Besked hvis dato er udenfor planlagt Tidsramme"
1077
+
1078
+ #: includes/qmn_options_text_tab.php:239
1079
+ msgid "Message Displayed If The Limit Of Total Entries Has Been Reached"
1080
+ msgstr "Besked Hvis grænsen på indtastninger er nået"
1081
+
1082
+ #: includes/qmn_options_text_tab.php:249
1083
+ msgid "%QUESTIONS_ANSWERS% Text"
1084
+ msgstr "% QUESTIONS_ANSWERS% Tekst"
1085
+
1086
+ #: includes/qmn_options_text_tab.php:262
1087
+ msgid "Twitter Sharing Text"
1088
+ msgstr "Twitter Deling tekst"
1089
+
1090
+ #: includes/qmn_options_text_tab.php:279
1091
+ msgid "Facebook Sharing Text"
1092
+ msgstr "Facebook Deling tekst"
1093
+
1094
+ #: includes/qmn_options_text_tab.php:294
1095
+ msgid "Other Templates"
1096
+ msgstr "Andre skabeloner"
1097
+
1098
+ #: includes/qmn_options_text_tab.php:297
1099
+ msgid "Text for submit button"
1100
+ msgstr "Tekst for send-knappen"
1101
+
1102
+ #: includes/qmn_options_text_tab.php:301
1103
+ msgid "Text for name field"
1104
+ msgstr "Tekst til navnefeltet"
1105
+
1106
+ #: includes/qmn_options_text_tab.php:305
1107
+ msgid "Text for business field"
1108
+ msgstr "Tekst til firma felt"
1109
+
1110
+ #: includes/qmn_options_text_tab.php:309
1111
+ msgid "Text for email field"
1112
+ msgstr "Tekst til e-mail-feltet"
1113
+
1114
+ #: includes/qmn_options_text_tab.php:313
1115
+ msgid "Text for phone number field"
1116
+ msgstr "Tekst til telefon nummer felt"
1117
+
1118
+ #: includes/qmn_options_text_tab.php:317
1119
+ msgid "Text for comments field"
1120
+ msgstr "Tekst for kommentarer felt"
1121
+
1122
+ #: includes/qmn_options_text_tab.php:321
1123
+ msgid "Text for previous button"
1124
+ msgstr "Tekst til forrige knap"
1125
+
1126
+ #: includes/qmn_options_text_tab.php:325
1127
+ msgid "Text for next button"
1128
+ msgstr "Tekst til næste knap"
1129
+
1130
+ #: includes/qmn_options_tools_tab.php:6 includes/qmn_tools.php:58
1131
+ #: mlw_quizmaster2.php:222
1132
+ msgid "Tools"
1133
+ msgstr "Værktøjer"
1134
+
1135
+ #: includes/qmn_options_tools_tab.php:23
1136
+ msgid "The stats has been reset successfully."
1137
+ msgstr "De statistikker er blevet nulstillet korrekt."
1138
+
1139
+ #: includes/qmn_options_tools_tab.php:75
1140
+ msgid ""
1141
+ "Use this button to reset all the stats collected for this quiz (Quiz Views "
1142
+ "and Times Quiz Has Been Taken)."
1143
+ msgstr ""
1144
+ "Brug denne knap til at nulstille alle indsamlet til denne quiz statistik "
1145
+ "(Quiz Views og Times Quiz er taget)."
1146
+
1147
+ #: includes/qmn_options_tools_tab.php:76
1148
+ msgid "Reset Quiz Views And Taken Stats"
1149
+ msgstr "Nulstil Quiz Views og oprettede statistikker"
1150
+
1151
+ #: includes/qmn_options_tools_tab.php:87
1152
+ msgid ""
1153
+ "Are you sure you want to reset the stats to 0? All views and taken stats for "
1154
+ "this quiz will be reset. This is permanent and cannot be undone."
1155
+ msgstr ""
1156
+ "Er du sikker på du vil nulstille statistik til 0? Alle synspunkter og taget "
1157
+ "statistik for denne quiz vil blive nulstillet. Det er permanent og kan ikke "
1158
+ "fortrydes."
1159
+
1160
+ #: includes/qmn_options_tools_tab.php:91
1161
+ msgid "Reset All Stats For Quiz"
1162
+ msgstr "Nulstil alle Stats for Quiz"
1163
+
1164
+ #: includes/qmn_question_types.php:7
1165
+ msgid "Multiple Choice"
1166
+ msgstr "Flere valgmuligheder"
1167
+
1168
+ #: includes/qmn_question_types.php:75
1169
+ msgid "Horizontal Multiple Choice"
1170
+ msgstr "Vandret Multiple Choice"
1171
+
1172
+ #: includes/qmn_question_types.php:143
1173
+ msgid "Drop Down"
1174
+ msgstr "Drop Down"
1175
+
1176
+ #: includes/qmn_question_types.php:208
1177
+ msgid "Small Open Answer"
1178
+ msgstr "Kort tekst svar"
1179
+
1180
+ #: includes/qmn_question_types.php:257
1181
+ msgid "Multiple Response"
1182
+ msgstr "Multiple svar"
1183
+
1184
+ #: includes/qmn_question_types.php:332
1185
+ msgid "Large Open Answer"
1186
+ msgstr "Stor åbent svar"
1187
+
1188
+ #: includes/qmn_question_types.php:381
1189
+ msgid "Text Block"
1190
+ msgstr "tekstblok"
1191
+
1192
+ #: includes/qmn_question_types.php:396
1193
+ msgid "Number"
1194
+ msgstr "Tal"
1195
+
1196
+ #: includes/qmn_question_types.php:445
1197
+ msgid "Accept"
1198
+ msgstr "Accepter"
1199
+
1200
+ #: includes/qmn_question_types.php:464
1201
+ msgid "Captcha"
1202
+ msgstr "CAPTCHA"
1203
+
1204
+ #: includes/qmn_question_types.php:505
1205
+ msgid "Horizontal Multiple Response"
1206
+ msgstr "Vandret Multiple svar"
1207
+
1208
+ #: includes/qmn_question_types.php:579
1209
+ msgid "Fill In The Blank"
1210
+ msgstr ""
1211
+
1212
+ #: includes/qmn_quiz.php:326
1213
+ msgid "Not a valid e-mail address!"
1214
+ msgstr "Ikke en gyldig e-mail-adresse!"
1215
+
1216
+ #: includes/qmn_quiz.php:327
1217
+ msgid "This field must be a number!"
1218
+ msgstr "Dette felt skal være et tal!"
1219
+
1220
+ #: includes/qmn_quiz.php:328
1221
+ msgid "The entered text is not correct!"
1222
+ msgstr "Den indtastede tekst er ikke korrekt!"
1223
+
1224
+ #: includes/qmn_quiz.php:329
1225
+ msgid "Please complete all required fields!"
1226
+ msgstr "Venligst udfyld alle obligatoriske felter"
1227
+
1228
+ #: includes/qmn_quiz_admin.php:186 mlw_quizmaster2.php:217
1229
+ msgid "Quizzes"
1230
+ msgstr "Quizzer"
1231
+
1232
+ #: includes/qmn_quiz_admin.php:186
1233
+ msgid "Add New"
1234
+ msgstr "Tilføj ny"
1235
+
1236
+ #: includes/qmn_quiz_admin.php:204
1237
+ #, php-format
1238
+ msgid "One quiz"
1239
+ msgid_plural "%s quizzes"
1240
+ msgstr[0] "En quiz"
1241
+ msgstr[1] "%s quizzer"
1242
+
1243
+ #: includes/qmn_quiz_admin.php:249 includes/qmn_quiz_admin.php:295
1244
+ #: includes/qmn_quiz_admin.php:364 includes/qmn_results.php:209
1245
+ msgid "Quiz Name"
1246
+ msgstr "Quiz navn"
1247
+
1248
+ #: includes/qmn_quiz_admin.php:250 includes/qmn_quiz_admin.php:296
1249
+ msgid "URL"
1250
+ msgstr "URL"
1251
+
1252
+ #: includes/qmn_quiz_admin.php:251 includes/qmn_quiz_admin.php:297
1253
+ msgid "Quiz Shortcode"
1254
+ msgstr "Quiz Shortcode"
1255
+
1256
+ #: includes/qmn_quiz_admin.php:252 includes/qmn_quiz_admin.php:298
1257
+ msgid "Leaderboard Shortcode"
1258
+ msgstr "Lederboard Shortcode"
1259
+
1260
+ #: includes/qmn_quiz_admin.php:253 includes/qmn_quiz_admin.php:299
1261
+ msgid "Quiz Views"
1262
+ msgstr "Quiz set"
1263
+
1264
+ #: includes/qmn_quiz_admin.php:254 includes/qmn_quiz_admin.php:300
1265
+ msgid "Quiz Taken"
1266
+ msgstr "Quiz gennemført"
1267
+
1268
+ #: includes/qmn_quiz_admin.php:255 includes/qmn_quiz_admin.php:301
1269
+ msgid "Last Modified"
1270
+ msgstr "Sidst ændret"
1271
+
1272
+ #: includes/qmn_quiz_admin.php:268
1273
+ msgid "Edit Name"
1274
+ msgstr "Ret navn"
1275
+
1276
+ #: includes/qmn_quiz_admin.php:271 includes/qmn_results_details.php:121
1277
+ msgid "Results"
1278
+ msgstr "Resultater"
1279
+
1280
+ #: includes/qmn_quiz_admin.php:359
1281
+ msgid "Create New Quiz"
1282
+ msgstr "Opret ny quiz"
1283
+
1284
+ #: includes/qmn_quiz_admin.php:373
1285
+ msgid "Create Quiz"
1286
+ msgstr "Opret quiz"
1287
+
1288
+ #: includes/qmn_quiz_admin.php:379
1289
+ msgid "Quiz Name:"
1290
+ msgstr "Quiz navn:"
1291
+
1292
+ #: includes/qmn_quiz_admin.php:390
1293
+ msgid "Duplicate this quiz?"
1294
+ msgstr "Kopier quiz"
1295
+
1296
+ #: includes/qmn_quiz_admin.php:392
1297
+ msgid "Duplicate questions with quiz"
1298
+ msgstr "Kopier spørgsmål"
1299
+
1300
+ #: includes/qmn_quiz_admin.php:394
1301
+ msgid "Name Of New Quiz:"
1302
+ msgstr "Navn på ny Quiz:"
1303
+
1304
+ #: includes/qmn_quiz_admin.php:403
1305
+ msgid "Are you sure you want to delete this quiz?"
1306
+ msgstr "Er du sikker på at du vil slette denne quiz?"
1307
+
1308
+ #: includes/qmn_quiz_admin.php:408
1309
+ msgid "Delete Quiz"
1310
+ msgstr "Slet Quiz"
1311
+
1312
+ #: includes/qmn_quiz_creator.php:369
1313
+ msgid ""
1314
+ "Your new quiz has been created successfully. To begin editing your quiz, "
1315
+ "click the Edit link on the new quiz."
1316
+ msgstr ""
1317
+ "Din nye quiz er blevet oprettet. For at edigere din quiz, klik på linket "
1318
+ "Rediger ved den nye quiz"
1319
+
1320
+ #: includes/qmn_quiz_creator.php:435
1321
+ msgid "Your quiz has been deleted successfully."
1322
+ msgstr "Din Quiz er blevet slettet."
1323
+
1324
+ #: includes/qmn_quiz_creator.php:477
1325
+ msgid "Your quiz name has been updated successfully."
1326
+ msgstr "Dit quiz navn er blevet opdateret."
1327
+
1328
+ #: includes/qmn_quiz_creator.php:634
1329
+ msgid "Your quiz has been duplicated successfully."
1330
+ msgstr "Din Quiz er blevet dublikeret."
1331
+
1332
+ #. translators: The %s corresponds to the name of the quiz
1333
+ #: includes/qmn_quiz_options.php:56
1334
+ #, php-format
1335
+ msgid "Quiz Settings For %s"
1336
+ msgstr "Quiz indstillinger for %s"
1337
+
1338
+ #: includes/qmn_quiz_options.php:96
1339
+ msgid ""
1340
+ "Please go to the quizzes page and click on the Edit link from the quiz you "
1341
+ "wish to edit."
1342
+ msgstr ""
1343
+ "Go til quiz siden og klik på rediger linket på den quiz du ønsker at redigere"
1344
+
1345
+ #: includes/qmn_results.php:23
1346
+ msgid "Your results has been deleted successfully."
1347
+ msgstr "Dine resultater er blevet slettet."
1348
+
1349
+ #: includes/qmn_results.php:152 includes/qmn_results_details.php:21
1350
+ #: mlw_quizmaster2.php:219
1351
+ msgid "Quiz Results"
1352
+ msgstr "Quiz resultater"
1353
+
1354
+ #: includes/qmn_results.php:161
1355
+ #, php-format
1356
+ msgid "One result"
1357
+ msgid_plural "%s results"
1358
+ msgstr[0] "Et resultat"
1359
+ msgstr[1] "%s resultater"
1360
+
1361
+ #: includes/qmn_results.php:208
1362
+ msgid "Actions"
1363
+ msgstr "Handlinger"
1364
+
1365
+ #: includes/qmn_results.php:210
1366
+ msgid "Score"
1367
+ msgstr "Skore"
1368
+
1369
+ #: includes/qmn_results.php:211
1370
+ msgid "Time To Complete"
1371
+ msgstr "Tid til at færdiggøre"
1372
+
1373
+ #: includes/qmn_results.php:212
1374
+ msgid "Name"
1375
+ msgstr "Navn"
1376
+
1377
+ #: includes/qmn_results.php:213
1378
+ msgid "Business"
1379
+ msgstr "Forretning"
1380
+
1381
+ #: includes/qmn_results.php:214
1382
+ msgid "Email"
1383
+ msgstr "Email"
1384
+
1385
+ #: includes/qmn_results.php:215
1386
+ msgid "Phone"
1387
+ msgstr "Telefon"
1388
+
1389
+ #: includes/qmn_results.php:216
1390
+ msgid "Time Taken"
1391
+ msgstr "Forbrugt tid"
1392
+
1393
+ #: includes/qmn_results.php:276
1394
+ msgid "Are you sure you want to delete these results?"
1395
+ msgstr "Er du sikker på at du vil slette disse resultater ?"
1396
+
1397
+ #: includes/qmn_results.php:281
1398
+ msgid "Delete Results"
1399
+ msgstr "Slet resultater"
1400
+
1401
+ #: includes/qmn_results_details.php:200
1402
+ msgid "Create Certificate"
1403
+ msgstr "Opret certificat"
1404
+
1405
+ #: includes/qmn_results_details.php:205
1406
+ msgid "Download Certificate Here"
1407
+ msgstr "Download certificat her"
1408
+
1409
+ #: includes/qmn_results_details.php:212
1410
+ msgid "Certificate"
1411
+ msgstr "Certifikat"
1412
+
1413
+ #: includes/qmn_tools.php:93
1414
+ msgid "There has been an error! Please try again."
1415
+ msgstr "Der har været en fejl! Forsøg igen"
1416
+
1417
+ #: includes/qmn_tools.php:111
1418
+ msgid "Quiz Has Been Restored!"
1419
+ msgstr "Den pågældende quiz er gendannet"
1420
+
1421
+ #: includes/qmn_tools.php:116
1422
+ msgid ""
1423
+ "Choose a quiz in the drop down and then click the button to restore a deleted "
1424
+ "quiz."
1425
+ msgstr ""
1426
+ "Vælg en quiz i drop Down boksen og klik for at gendanne en slettet quiz."
1427
+
1428
+ #: includes/qmn_tools.php:126
1429
+ msgid "Restore Quiz"
1430
+ msgstr "Gendan Quiz"
1431
+
1432
+ #: includes/qmn_tools.php:155 includes/qmn_tools.php:171
1433
+ #, php-format
1434
+ msgid "Previous %s Audits"
1435
+ msgstr "Sidste %s Audits"
1436
+
1437
+ #: includes/qmn_tools.php:158 includes/qmn_tools.php:165
1438
+ #, php-format
1439
+ msgid "Next %s Audits"
1440
+ msgstr "Næste %s Audits"
1441
+
1442
+ #: includes/qmn_tools.php:178
1443
+ msgid "User"
1444
+ msgstr "Bruger"
1445
+
1446
+ #: includes/qmn_tools.php:179
1447
+ msgid "Action"
1448
+ msgstr "Aktion"
1449
+
1450
+ #: includes/qmn_tools.php:180
1451
+ msgid "Time"
1452
+ msgstr "Klokken"
1453
+
1454
+ #: includes/qmn_usage_tracking.php:193
1455
+ msgid ""
1456
+ "Allow Quiz Master Next to anonymously track this plugin's usage and help us "
1457
+ "make this plugin better? No sensitive data is tracked."
1458
+ msgstr ""
1459
+ "Tillad Quiz Master Next at følge brugen af dette plugin for at forbedre "
1460
+ "kvaliteten - ingen følsomme data overvåges."
1461
+
1462
+ #: includes/qmn_usage_tracking.php:194
1463
+ msgid "Allow"
1464
+ msgstr "Tillad"
1465
+
1466
+ #: includes/qmn_usage_tracking.php:195
1467
+ msgid "Do not allow"
1468
+ msgstr "Tillad ikke"
1469
+
1470
+ #: includes/qmn_widgets.php:11
1471
+ msgid "Quiz Master Next Leaderboard Widget"
1472
+ msgstr "Quiz Master Next Styrings Widget"
1473
+
1474
+ #: includes/qmn_widgets.php:26
1475
+ msgid "Widget Title"
1476
+ msgstr "Widget titel"
1477
+
1478
+ #: includes/qmn_widgets.php:30
1479
+ msgid "Quiz ID"
1480
+ msgstr "Quiz ID"
1481
+
1482
+ #: mlw_quizmaster2.php:218
1483
+ msgid "Quiz Settings"
1484
+ msgstr "Quiz indstillinger"
1485
+
1486
+ #: mlw_quizmaster2.php:220
1487
+ msgid "Quiz Result Details"
1488
+ msgstr "Quiz resultater detaljer"
1489
+
1490
+ #: mlw_quizmaster2.php:221
1491
+ msgid "Settings"
1492
+ msgstr "Indstillinger"
1493
+
1494
+ #: mlw_quizmaster2.php:223
1495
+ msgid "Stats"
1496
+ msgstr "Statistik"
1497
+
1498
+ #: mlw_quizmaster2.php:224
1499
+ msgid "Addon Settings"
1500
+ msgstr "Addon indstillinger"
1501
+
1502
+ #: mlw_quizmaster2.php:225
1503
+ msgid "Help"
1504
+ msgstr "Hjælp"
1505
+
1506
+ #: mlw_quizmaster2.php:228 mlw_quizmaster2.php:229
1507
+ msgid "QMN About"
1508
+ msgstr "QMN Om"
languages/quiz-master-next-es_ES.mo ADDED
Binary file
languages/quiz-master-next-es_ES.po ADDED
@@ -0,0 +1,1575 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Quiz Master Next\n"
4
+ "Report-Msgid-Bugs-To: Frank Corso <fpcorso@mylocalwebstop.com>\n"
5
+ "POT-Creation-Date: 2015-03-06 14:04-0500\n"
6
+ "PO-Revision-Date: 2015-03-06 14:04-0500\n"
7
+ "Last-Translator: jhernanz <jordi.hernanz@gmail.com>\n"
8
+ "Language-Team: My Local Webstop <fpcorso@mylocalwebstop.com>\n"
9
+ "Language: es_ES\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
16
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
+ "X-Poedit-Basepath: ../\n"
22
+ "X-Generator: Poedit 1.7.3\n"
23
+ "X-Loco-Target-Locale: es_ES\n"
24
+ "X-Poedit-SearchPath-0: .\n"
25
+
26
+ #: includes/qmn_addons.php:48
27
+ msgid "These addons extend the functionality of Quiz Master Next"
28
+ msgstr ""
29
+ "Estos complementos adicionales \n"
30
+ "(addons) \n"
31
+ "amplían las funciones de Quiz Master Next."
32
+
33
+ #: includes/qmn_addons.php:71
34
+ msgid "Browse All Addons"
35
+ msgstr "ver todos los complementos (addons)"
36
+
37
+ #: includes/qmn_addons.php:78
38
+ msgid "Featured Addons"
39
+ msgstr "Complementos (addons) destacados"
40
+
41
+ #: includes/qmn_alerts.php:19
42
+ msgid "Success!"
43
+ msgstr "Hecho!"
44
+
45
+ #: includes/qmn_alerts.php:23 includes/qmn_quiz_options.php:96
46
+ msgid "Error!"
47
+ msgstr "Error!"
48
+
49
+ #: includes/qmn_credits.php:86
50
+ msgid "Welcome To Quiz Master Next"
51
+ msgstr "Bienvenido a Quiz Master Next"
52
+
53
+ #: includes/qmn_credits.php:87
54
+ msgid "Thank you for updating!"
55
+ msgstr "Gracias por actualizar!"
56
+
57
+ #: includes/qmn_credits.php:91
58
+ msgid "What's New!"
59
+ msgstr "Novedades!"
60
+
61
+ #: includes/qmn_credits.php:93
62
+ msgid "Changelog"
63
+ msgstr "Historial de modificaciones"
64
+
65
+ #: includes/qmn_credits.php:95
66
+ msgid "Requested Features"
67
+ msgstr "Características solicitadas"
68
+
69
+ #: includes/qmn_dashboard.php:16
70
+ msgid "Quiz Daily Stats - Times Taken"
71
+ msgstr "Estadísticas diarias de la encuesta - Número de veces completada"
72
+
73
+ #: includes/qmn_dashboard.php:17
74
+ msgid "Quiz Total Stats"
75
+ msgstr "Estadísticas TOTALES de la Encuesta"
76
+
77
+ #: includes/qmn_dashboard.php:18
78
+ msgid "Quiz Weekly Stats - Times Taken"
79
+ msgstr ""
80
+ "Estadísticas SEMANALES de la encuenta - Número de veces \n"
81
+ "completada"
82
+
83
+ #: includes/qmn_dashboard.php:19
84
+ msgid "Quiz Monthly Stats - Times Taken"
85
+ msgstr ""
86
+ "Estadísticas MENSUALES de la encuenta - Número de veces \n"
87
+ "completada"
88
+
89
+ #: includes/qmn_dashboard.php:20
90
+ msgid "Quiz Quarterly Stats - Times Taken"
91
+ msgstr ""
92
+ "Estadísticas TRIMESTRALES de la encuenta - Número de veces \n"
93
+ "completada"
94
+
95
+ #: includes/qmn_dashboard.php:25
96
+ msgid "Quizzes Taken Today"
97
+ msgstr ""
98
+ "Encuestas \n"
99
+ "completada \n"
100
+ "HOY"
101
+
102
+ #: includes/qmn_dashboard.php:26
103
+ msgid "Quizzes Taken Last 7 Days"
104
+ msgstr ""
105
+ "Encuestas \n"
106
+ "completadas \n"
107
+ "los últimos 7 días"
108
+
109
+ #: includes/qmn_dashboard.php:27
110
+ msgid "Quizzes Taken Last 30 Days"
111
+ msgstr ""
112
+ "Encuestas \n"
113
+ "completadas \n"
114
+ "los últimos 30 días"
115
+
116
+ #: includes/qmn_dashboard.php:28
117
+ msgid "Quizzes Taken Last 120 Days"
118
+ msgstr ""
119
+ "Encuestas \n"
120
+ "completadas \n"
121
+ "los últimos 120 días"
122
+
123
+ #: includes/qmn_dashboard.php:54
124
+ msgid "Quiz Statistics"
125
+ msgstr "Estadísticas de la encuesta"
126
+
127
+ #: includes/qmn_dashboard.php:228
128
+ msgid "Total Created Quizzes"
129
+ msgstr "Encuestas totales creadas"
130
+
131
+ #: includes/qmn_dashboard.php:232
132
+ msgid "Total Deleted Quizzes"
133
+ msgstr "Encuestas totales eliminadas"
134
+
135
+ #: includes/qmn_dashboard.php:236
136
+ msgid "Total Active Quizzes"
137
+ msgstr "Encuestas totales activas"
138
+
139
+ #: includes/qmn_dashboard.php:240
140
+ msgid "Total Created Questions"
141
+ msgstr "Encuestas totales creadas"
142
+
143
+ #: includes/qmn_dashboard.php:244
144
+ msgid "Total Times All Active Quizzes Have Been Viewed"
145
+ msgstr "Número de veces total que han sido vistas todas las encuestas activas"
146
+
147
+ #: includes/qmn_dashboard.php:248
148
+ msgid "Total Times All Active Quizzes Have Been Taken"
149
+ msgstr ""
150
+ "Número de veces total que han sido \n"
151
+ "completada \n"
152
+ "todas las encuestas activas"
153
+
154
+ #: includes/qmn_dashboard.php:252
155
+ msgid "Average Amount Each Active Quiz Has Been Viewed"
156
+ msgstr "Media mensual que ha sido vista cada encuesta"
157
+
158
+ #: includes/qmn_dashboard.php:256
159
+ msgid "Average Amount Each Active Quiz Has Been Taken"
160
+ msgstr "Media mensual que cada encuesta ha sido completada"
161
+
162
+ #: includes/qmn_dashboard.php:260
163
+ msgid "Quiz That Has Been Viewed The Most"
164
+ msgstr "La encuesta más vista"
165
+
166
+ #: includes/qmn_dashboard.php:264
167
+ msgid "Quiz That Has Been Taken The Most"
168
+ msgstr ""
169
+ "La encuesta más \n"
170
+ "completada"
171
+
172
+ #: includes/qmn_dashboard_widgets.php:9
173
+ msgid "Quiz Master Next Snapshot"
174
+ msgstr "Quiz Master Next Snapshot"
175
+
176
+ #: includes/qmn_dashboard_widgets.php:128
177
+ msgid "quizzes taken today"
178
+ msgstr "encuestas completadas hoy"
179
+
180
+ #: includes/qmn_dashboard_widgets.php:147
181
+ msgid "quizzes taken last 7 days"
182
+ msgstr "encuestas completadas los últimos 7 días"
183
+
184
+ #: includes/qmn_dashboard_widgets.php:166
185
+ msgid "total active quizzes"
186
+ msgstr "total encuestas activas"
187
+
188
+ #: includes/qmn_dashboard_widgets.php:172
189
+ msgid "total active questions"
190
+ msgstr "total preguntas activas"
191
+
192
+ #: includes/qmn_dashboard_widgets.php:178
193
+ msgid "most popular quiz"
194
+ msgstr "encuesta más popular"
195
+
196
+ #: includes/qmn_dashboard_widgets.php:184
197
+ msgid "least popular quiz"
198
+ msgstr "encuesta menos popular"
199
+
200
+ #: includes/qmn_help.php:13
201
+ msgid "Need Help?"
202
+ msgstr "¿Necesita ayuda?"
203
+
204
+ #: includes/qmn_help.php:14
205
+ msgid "Support"
206
+ msgstr "Ayuda"
207
+
208
+ #: includes/qmn_help.php:15
209
+ msgid "System Info"
210
+ msgstr "Información de sistema"
211
+
212
+ #: includes/qmn_help.php:18
213
+ msgid "Help Page"
214
+ msgstr "Página de ayuda"
215
+
216
+ #: includes/qmn_help.php:41
217
+ msgid "Need help with the plugin? Try any of the following:"
218
+ msgstr "¿Necesita ayuda con el plugin? Pruebe algo de lo siguiente:"
219
+
220
+ #: includes/qmn_options_certificate_tab.php:6
221
+ msgid "Certificate (Beta)"
222
+ msgstr "Certificado (Beta)"
223
+
224
+ #: includes/qmn_options_certificate_tab.php:32
225
+ msgid "The certificate has been updated successfully."
226
+ msgstr "El certificado ha sido actualizado correctamente."
227
+
228
+ #: includes/qmn_options_certificate_tab.php:45
229
+ #: includes/qmn_options_email_tab.php:55
230
+ #: includes/qmn_options_email_tab.php:114
231
+ #: includes/qmn_options_email_tab.php:178
232
+ #: includes/qmn_options_leaderboard_tab.php:38
233
+ #: includes/qmn_options_option_tab.php:56
234
+ #: includes/qmn_options_questions_tab.php:118
235
+ #: includes/qmn_options_questions_tab.php:145
236
+ #: includes/qmn_options_questions_tab.php:229
237
+ #: includes/qmn_options_questions_tab.php:322
238
+ #: includes/qmn_options_results_page_tab.php:54
239
+ #: includes/qmn_options_results_page_tab.php:94
240
+ #: includes/qmn_options_style_tab.php:39 includes/qmn_options_text_tab.php:55
241
+ #: includes/qmn_options_tools_tab.php:36 includes/qmn_quiz_creator.php:382
242
+ #: includes/qmn_quiz_creator.php:448 includes/qmn_quiz_creator.php:490
243
+ #: includes/qmn_quiz_creator.php:648 includes/qmn_quiz_creator.php:713
244
+ #: includes/qmn_results.php:36
245
+ #, php-format
246
+ msgid ""
247
+ "There has been an error in this action. Please share this with the "
248
+ "developer. Error Code: %s"
249
+ msgstr ""
250
+ "Existe un error en esta acción. Por favor comparta esto con el "
251
+ "desarrollador. El código de error es: \n"
252
+ "%s"
253
+
254
+ #: includes/qmn_options_certificate_tab.php:61
255
+ msgid "Enter title here"
256
+ msgstr "Escriba el título aquí"
257
+
258
+ #: includes/qmn_options_certificate_tab.php:61
259
+ #: includes/qmn_options_email_tab.php:73 includes/qmn_options_email_tab.php:91
260
+ msgid "Enter text here"
261
+ msgstr "Escriba el texto aquí"
262
+
263
+ #: includes/qmn_options_certificate_tab.php:70
264
+ msgid "Quiz Certificate (Beta)"
265
+ msgstr "Certificado de encuesta (Beta)"
266
+
267
+ #: includes/qmn_options_certificate_tab.php:71
268
+ msgid ""
269
+ "Enter in your text here to fill in the certificate for this quiz. Be sure to "
270
+ "enter in the link variable into the templates on the Quiz Text tab so the "
271
+ "user can access the certificate."
272
+ msgstr ""
273
+ "Escriba aquí el texto que aparecerá como certificado de esta encuesta. "
274
+ "Asegúrese de introducir su enlace dentro de las plantillas en la pestaña "
275
+ "Quiz Text para que el usuario pueda acceder a su certificado."
276
+
277
+ #: includes/qmn_options_certificate_tab.php:72
278
+ msgid "These fields cannot contain HTML."
279
+ msgstr "Estos campos no pueden contener HTML."
280
+
281
+ #: includes/qmn_options_certificate_tab.php:73
282
+ #: includes/qmn_options_certificate_tab.php:129
283
+ msgid "Save Certificate Options"
284
+ msgstr "Guardas Opciones de Certificado"
285
+
286
+ #: includes/qmn_options_certificate_tab.php:81
287
+ msgid "Enable Certificates For This Quiz?"
288
+ msgstr "¿Permitir Certificados para esta Encuesta?"
289
+
290
+ #: includes/qmn_options_certificate_tab.php:83
291
+ #: includes/qmn_options_email_tab.php:325
292
+ #: includes/qmn_options_email_tab.php:332
293
+ #: includes/qmn_options_option_tab.php:102
294
+ #: includes/qmn_options_option_tab.php:163
295
+ #: includes/qmn_options_option_tab.php:170
296
+ #: includes/qmn_options_option_tab.php:178
297
+ #: includes/qmn_options_option_tab.php:186
298
+ #: includes/qmn_options_option_tab.php:194
299
+ #: includes/qmn_options_option_tab.php:202
300
+ #: includes/qmn_options_option_tab.php:209
301
+ #: includes/qmn_options_option_tab.php:216
302
+ #: includes/qmn_options_questions_tab.php:674
303
+ #: includes/qmn_options_questions_tab.php:830
304
+ #: includes/qmn_options_results_page_tab.php:247
305
+ msgid "Yes"
306
+ msgstr "sí"
307
+
308
+ #: includes/qmn_options_certificate_tab.php:84
309
+ #: includes/qmn_options_email_tab.php:326
310
+ #: includes/qmn_options_email_tab.php:333
311
+ #: includes/qmn_options_option_tab.php:103
312
+ #: includes/qmn_options_option_tab.php:150
313
+ #: includes/qmn_options_option_tab.php:164
314
+ #: includes/qmn_options_option_tab.php:172
315
+ #: includes/qmn_options_option_tab.php:180
316
+ #: includes/qmn_options_option_tab.php:188
317
+ #: includes/qmn_options_option_tab.php:196
318
+ #: includes/qmn_options_option_tab.php:203
319
+ #: includes/qmn_options_option_tab.php:210
320
+ #: includes/qmn_options_option_tab.php:217
321
+ #: includes/qmn_options_questions_tab.php:675
322
+ #: includes/qmn_options_questions_tab.php:831
323
+ #: includes/qmn_options_results_page_tab.php:247
324
+ msgid "No"
325
+ msgstr "No"
326
+
327
+ #: includes/qmn_options_certificate_tab.php:89
328
+ msgid "Certificate Title"
329
+ msgstr "Título del certificado"
330
+
331
+ #: includes/qmn_options_certificate_tab.php:96
332
+ msgid "Message Displayed On Certificate"
333
+ msgstr "Mensaje mostrado en el Certificado"
334
+
335
+ #: includes/qmn_options_certificate_tab.php:98
336
+ #: includes/qmn_options_leaderboard_tab.php:91
337
+ #: includes/qmn_options_text_tab.php:181 includes/qmn_options_text_tab.php:191
338
+ #: includes/qmn_options_text_tab.php:201 includes/qmn_options_text_tab.php:211
339
+ #: includes/qmn_options_text_tab.php:221 includes/qmn_options_text_tab.php:231
340
+ #: includes/qmn_options_text_tab.php:241 includes/qmn_options_text_tab.php:251
341
+ #: includes/qmn_options_text_tab.php:264 includes/qmn_options_text_tab.php:281
342
+ msgid "Allowed Variables:"
343
+ msgstr "Variables permitidas:"
344
+
345
+ #: includes/qmn_options_certificate_tab.php:116
346
+ msgid "URL To Logo (Must be JPG, JPEG, PNG or GIF)"
347
+ msgstr "URL del logo (debe estar en formato JPG, JPEG, PNG o GIF)"
348
+
349
+ #: includes/qmn_options_certificate_tab.php:123
350
+ msgid "URL To Background Img (Must be JPG, JPEG, PNG or GIF)"
351
+ msgstr "URL de la imagen de fondo (debe estar en formato JPG, JPEG, PNG o GIF)"
352
+
353
+ #: includes/qmn_options_email_tab.php:6
354
+ msgid "Emails"
355
+ msgstr "Emails"
356
+
357
+ #: includes/qmn_options_email_tab.php:42
358
+ #: includes/qmn_options_email_tab.php:101
359
+ msgid "The email has been added successfully."
360
+ msgstr "El email ha sido añadido correctamente"
361
+
362
+ #: includes/qmn_options_email_tab.php:165
363
+ msgid "The email has been updated successfully."
364
+ msgstr "El email ha sido actualizado correctamente"
365
+
366
+ #: includes/qmn_options_email_tab.php:232
367
+ #: includes/qmn_options_leaderboard_tab.php:49
368
+ #: includes/qmn_options_results_page_tab.php:134
369
+ #: includes/qmn_options_text_tab.php:92
370
+ msgid "Template Variables"
371
+ msgstr "Variables de la plantilla"
372
+
373
+ #: includes/qmn_options_email_tab.php:235
374
+ #: includes/qmn_options_results_page_tab.php:137
375
+ #: includes/qmn_options_text_tab.php:95
376
+ msgid "Score for the quiz when using points"
377
+ msgstr "Puntuación de la encuesta cuando se usan puntos"
378
+
379
+ #: includes/qmn_options_email_tab.php:238
380
+ #: includes/qmn_options_results_page_tab.php:140
381
+ #: includes/qmn_options_text_tab.php:98
382
+ msgid "The average amount of points user had per question"
383
+ msgstr "Media de puntos por usuario por pregunta"
384
+
385
+ #: includes/qmn_options_email_tab.php:241
386
+ #: includes/qmn_options_results_page_tab.php:143
387
+ #: includes/qmn_options_text_tab.php:101
388
+ msgid "The number of correct answers the user had"
389
+ msgstr "Número de respuestas correctas que obtuvo el usuario"
390
+
391
+ #: includes/qmn_options_email_tab.php:244
392
+ #: includes/qmn_options_results_page_tab.php:146
393
+ #: includes/qmn_options_text_tab.php:104
394
+ msgid "The total number of questions in the quiz"
395
+ msgstr "Número de preguntas totales en la encuesta"
396
+
397
+ #: includes/qmn_options_email_tab.php:247
398
+ #: includes/qmn_options_results_page_tab.php:149
399
+ #: includes/qmn_options_text_tab.php:107
400
+ msgid "Score for the quiz when using correct answers"
401
+ msgstr "Puntuación de la encuesta basada en las respuestas correctas"
402
+
403
+ #: includes/qmn_options_email_tab.php:250
404
+ #: includes/qmn_options_results_page_tab.php:152
405
+ #: includes/qmn_options_text_tab.php:110
406
+ msgid "The name the user entered before the quiz"
407
+ msgstr "Nombre que el usuario introdujo antes de la encuesta"
408
+
409
+ #: includes/qmn_options_email_tab.php:253
410
+ #: includes/qmn_options_results_page_tab.php:155
411
+ #: includes/qmn_options_text_tab.php:113
412
+ msgid "The business the user entered before the quiz"
413
+ msgstr "El asunto que el usuario introdujo antes de la encuesta."
414
+
415
+ #: includes/qmn_options_email_tab.php:256
416
+ #: includes/qmn_options_results_page_tab.php:158
417
+ #: includes/qmn_options_text_tab.php:116
418
+ msgid "The phone number the user entered before the quiz"
419
+ msgstr "El número de teléfono que el usuario introdujo antes de la encuesta"
420
+
421
+ #: includes/qmn_options_email_tab.php:259
422
+ #: includes/qmn_options_results_page_tab.php:161
423
+ #: includes/qmn_options_text_tab.php:119
424
+ msgid "The email the user entered before the quiz"
425
+ msgstr "El email que el usuario introdujo antes de la encuesta"
426
+
427
+ #: includes/qmn_options_email_tab.php:262
428
+ #: includes/qmn_options_leaderboard_tab.php:77
429
+ #: includes/qmn_options_results_page_tab.php:164
430
+ #: includes/qmn_options_text_tab.php:122
431
+ msgid "The name of the quiz"
432
+ msgstr "El nombre de la encuesta"
433
+
434
+ #: includes/qmn_options_email_tab.php:265
435
+ #: includes/qmn_options_results_page_tab.php:167
436
+ #: includes/qmn_options_text_tab.php:125
437
+ msgid ""
438
+ "Shows the question, the answer the user provided, and the correct answer"
439
+ msgstr "Muestra la pregunta, la respuesta del usuario y la respuesta correcta"
440
+
441
+ #: includes/qmn_options_email_tab.php:268
442
+ #: includes/qmn_options_results_page_tab.php:170
443
+ #: includes/qmn_options_text_tab.php:128
444
+ msgid "The comments the user entered into comment box if enabled"
445
+ msgstr ""
446
+ "Los comentarios que el usuario introdujo en la caja de comentarios si esta "
447
+ "está habilitada"
448
+
449
+ #: includes/qmn_options_email_tab.php:271
450
+ #: includes/qmn_options_results_page_tab.php:173
451
+ #: includes/qmn_options_text_tab.php:131
452
+ msgid "The amount of time user spent of quiz"
453
+ msgstr "Tiempo empleado por el usuario en responder el cuestionario"
454
+
455
+ #: includes/qmn_options_email_tab.php:274
456
+ #: includes/qmn_options_results_page_tab.php:176
457
+ #: includes/qmn_options_text_tab.php:134
458
+ msgid "The link to the certificate after completing the quiz"
459
+ msgstr "El enlace hacia el certificado después de completar la encuesta"
460
+
461
+ #: includes/qmn_options_email_tab.php:277
462
+ #: includes/qmn_options_results_page_tab.php:179
463
+ #: includes/qmn_options_text_tab.php:137
464
+ msgid "The amount of points a specific category earned."
465
+ msgstr "El total de puntos obtenidos en una categoría específica"
466
+
467
+ #: includes/qmn_options_email_tab.php:280
468
+ #: includes/qmn_options_results_page_tab.php:182
469
+ #: includes/qmn_options_text_tab.php:140
470
+ msgid "The score a specific category earned."
471
+ msgstr "La puntuación obtenida en una categoría específica."
472
+
473
+ #: includes/qmn_options_email_tab.php:283
474
+ #: includes/qmn_options_results_page_tab.php:185
475
+ #: includes/qmn_options_text_tab.php:143
476
+ msgid "The average points from all categories."
477
+ msgstr "La media de puntos contando todas las categorías."
478
+
479
+ #: includes/qmn_options_email_tab.php:286
480
+ #: includes/qmn_options_results_page_tab.php:188
481
+ #: includes/qmn_options_text_tab.php:146
482
+ msgid "The average score from all categories."
483
+ msgstr "La puntuación media contando todas las categorías."
484
+
485
+ #: includes/qmn_options_email_tab.php:289
486
+ #: includes/qmn_options_text_tab.php:149
487
+ msgid "The question that the user answered"
488
+ msgstr "La pregunta que el usuario respondió"
489
+
490
+ #: includes/qmn_options_email_tab.php:292
491
+ #: includes/qmn_options_text_tab.php:152
492
+ msgid "The answer the user gave for the question"
493
+ msgstr "La respuesta del usuario a la pregunta"
494
+
495
+ #: includes/qmn_options_email_tab.php:295
496
+ #: includes/qmn_options_text_tab.php:155
497
+ msgid "The correct answer for the question"
498
+ msgstr "La contestación correcta a la pregunta"
499
+
500
+ #: includes/qmn_options_email_tab.php:298
501
+ #: includes/qmn_options_text_tab.php:158
502
+ msgid "The comments the user provided in the comment field for the question"
503
+ msgstr ""
504
+ "Los comentarios que el usuario indicó en el campo de comentarios de la "
505
+ "pregunta."
506
+
507
+ #: includes/qmn_options_email_tab.php:301
508
+ #: includes/qmn_options_text_tab.php:161
509
+ msgid "Reason why the correct answer is the correct answer"
510
+ msgstr "La razón por qué la respuesta correcta es la respuesta correcta"
511
+
512
+ #: includes/qmn_options_email_tab.php:304
513
+ #: includes/qmn_options_text_tab.php:164
514
+ msgid "The Current Date"
515
+ msgstr "La fecha actual"
516
+
517
+ #: includes/qmn_options_email_tab.php:319
518
+ #: includes/qmn_options_email_tab.php:518
519
+ msgid "Save Email Templates And Settings"
520
+ msgstr "Guardar email, plantillas y preferencias"
521
+
522
+ #: includes/qmn_options_email_tab.php:323
523
+ msgid "Send user email upon completion?"
524
+ msgstr "¿Enviar un email al usuario al finalizar?"
525
+
526
+ #: includes/qmn_options_email_tab.php:330
527
+ msgid "Send admin email upon completion?"
528
+ msgstr "¿Enviar un email al administrador al finalizar?"
529
+
530
+ #: includes/qmn_options_email_tab.php:337
531
+ msgid ""
532
+ "What emails should we send the admin email to? Separate emails with a comma."
533
+ msgstr ""
534
+ "¿Qué emails deberíamos enviar al administrador?. Separar los emails con una "
535
+ "coma."
536
+
537
+ #: includes/qmn_options_email_tab.php:341
538
+ msgid "What is the From Name for the email sent to users and admin?"
539
+ msgstr ""
540
+ "¿Cual es el nombre desde el cual se enviarán el email a los usuarios y "
541
+ "administrador?"
542
+
543
+ #: includes/qmn_options_email_tab.php:347
544
+ msgid "Email Sent To User"
545
+ msgstr "Email enviado al usuario"
546
+
547
+ #: includes/qmn_options_email_tab.php:348
548
+ #: includes/qmn_options_email_tab.php:426
549
+ msgid "Add New User Email"
550
+ msgstr "Añadir un nuevo email de usuario "
551
+
552
+ #: includes/qmn_options_email_tab.php:353
553
+ #: includes/qmn_options_email_tab.php:419
554
+ #: includes/qmn_options_email_tab.php:440
555
+ #: includes/qmn_options_email_tab.php:506
556
+ #: includes/qmn_options_results_page_tab.php:206
557
+ #: includes/qmn_options_results_page_tab.php:270
558
+ msgid "Score Greater Than Or Equal To"
559
+ msgstr "Puntuación 'mayor que' o 'igual que'"
560
+
561
+ #: includes/qmn_options_email_tab.php:354
562
+ #: includes/qmn_options_email_tab.php:420
563
+ #: includes/qmn_options_email_tab.php:441
564
+ #: includes/qmn_options_email_tab.php:507
565
+ #: includes/qmn_options_results_page_tab.php:207
566
+ #: includes/qmn_options_results_page_tab.php:271
567
+ msgid "Score Less Than Or Equal To"
568
+ msgstr "Puntuación 'menor que' o 'igual que'"
569
+
570
+ #: includes/qmn_options_email_tab.php:355
571
+ #: includes/qmn_options_email_tab.php:421
572
+ #: includes/qmn_options_email_tab.php:442
573
+ #: includes/qmn_options_email_tab.php:508
574
+ msgid "Subject"
575
+ msgstr "Asunto"
576
+
577
+ #: includes/qmn_options_email_tab.php:356
578
+ #: includes/qmn_options_email_tab.php:422
579
+ #: includes/qmn_options_email_tab.php:443
580
+ #: includes/qmn_options_email_tab.php:509
581
+ msgid "Email To Send"
582
+ msgstr "Email a enviar"
583
+
584
+ #: includes/qmn_options_email_tab.php:434
585
+ msgid "Email Sent To Admin"
586
+ msgstr "Email enviado a administrador"
587
+
588
+ #: includes/qmn_options_email_tab.php:435
589
+ #: includes/qmn_options_email_tab.php:513
590
+ msgid "Add New Admin Email"
591
+ msgstr "Añadir nuevo email de administrador"
592
+
593
+ #: includes/qmn_options_leaderboard_tab.php:6
594
+ msgid "Leaderboard"
595
+ msgstr "Clasificación"
596
+
597
+ #: includes/qmn_options_leaderboard_tab.php:25
598
+ msgid "The leaderboards has been updated successfully."
599
+ msgstr "Las tablas de clasificación han sido actualizadas correctamente."
600
+
601
+ #: includes/qmn_options_leaderboard_tab.php:52
602
+ msgid "The name of the user who is in first place"
603
+ msgstr "El nombre del usuario que está en el primer puesto"
604
+
605
+ #: includes/qmn_options_leaderboard_tab.php:53
606
+ msgid "The score from the first place's quiz"
607
+ msgstr "La puntuación del usuario que está en el primer puesto"
608
+
609
+ #: includes/qmn_options_leaderboard_tab.php:57
610
+ msgid "The name of the user who is in second place"
611
+ msgstr "El nombre del usuario que está en segundo puesto"
612
+
613
+ #: includes/qmn_options_leaderboard_tab.php:58
614
+ msgid "The score from the second place's quiz"
615
+ msgstr "La puntuación del usuario que está en el segundo puesto"
616
+
617
+ #: includes/qmn_options_leaderboard_tab.php:62
618
+ msgid "The name of the user who is in third place"
619
+ msgstr "El nombre del usuario que está en el tercer puesto"
620
+
621
+ #: includes/qmn_options_leaderboard_tab.php:63
622
+ msgid "The score from the third place's quiz"
623
+ msgstr "La puntuación del usuario que está en el tercer puesto"
624
+
625
+ #: includes/qmn_options_leaderboard_tab.php:67
626
+ msgid "The name of the user who is in fourth place"
627
+ msgstr "El nombre del usuario que está en el cuarto puesto"
628
+
629
+ #: includes/qmn_options_leaderboard_tab.php:68
630
+ msgid "The score from the fourth place's quiz"
631
+ msgstr "La puntuación del usuario que está en el cuarto puesto"
632
+
633
+ #: includes/qmn_options_leaderboard_tab.php:72
634
+ msgid "The name of the user who is in fifth place"
635
+ msgstr "El nombre del usuario que está en el quinto puesto"
636
+
637
+ #: includes/qmn_options_leaderboard_tab.php:73
638
+ msgid "The score from the fifth place's quiz"
639
+ msgstr "La puntuación del usuario que está en el quinto puesto"
640
+
641
+ #: includes/qmn_options_leaderboard_tab.php:80
642
+ #: includes/qmn_options_leaderboard_tab.php:108
643
+ msgid "Save Leaderboard Options"
644
+ msgstr "Guardar las opciones de clasificación"
645
+
646
+ #: includes/qmn_options_leaderboard_tab.php:89
647
+ msgid "Leaderboard Template"
648
+ msgstr "Plantilla de clasificación"
649
+
650
+ #: includes/qmn_options_option_tab.php:6
651
+ msgid "Options"
652
+ msgstr "Opciones"
653
+
654
+ #: includes/qmn_options_option_tab.php:43
655
+ msgid "The options has been updated successfully."
656
+ msgstr "Las opciones han sido actualizadas correctamente."
657
+
658
+ #: includes/qmn_options_option_tab.php:84
659
+ #: includes/qmn_options_option_tab.php:221
660
+ msgid "Save Options"
661
+ msgstr "Guardar opciones"
662
+
663
+ #: includes/qmn_options_option_tab.php:92
664
+ msgid "Which system is this quiz graded on?"
665
+ msgstr "¿Cual es el sistema de clasificación?"
666
+
667
+ #: includes/qmn_options_option_tab.php:94
668
+ msgid "Correct/Incorrect"
669
+ msgstr "Correcto/Incorrecto"
670
+
671
+ #: includes/qmn_options_option_tab.php:95
672
+ msgid "Points"
673
+ msgstr "Puntos"
674
+
675
+ #: includes/qmn_options_option_tab.php:96 includes/qmn_results.php:258
676
+ msgid "Not Graded"
677
+ msgstr "No clasificada"
678
+
679
+ #: includes/qmn_options_option_tab.php:100
680
+ msgid "Should the user be required to be logged in to take this quiz?"
681
+ msgstr ""
682
+ "¿Es necesario que el usuario inicie sesión para rellenar este cuestionario?"
683
+
684
+ #: includes/qmn_options_option_tab.php:107
685
+ msgid ""
686
+ "How many questions per page would you like? (Leave 0 for all questions on "
687
+ "one page)"
688
+ msgstr ""
689
+ "¿Cuantas preguntas por página desea? (Deje 0 para que todas las preguntas "
690
+ "aparezcan en una misma página)"
691
+
692
+ #: includes/qmn_options_option_tab.php:113
693
+ msgid ""
694
+ "How many minutes does the user have to finish the quiz? (Leave 0 for no time "
695
+ "limit)"
696
+ msgstr ""
697
+ "¿Cuantos minutos tiene el usuario para realizar la encuesta? (Deje 0 sino "
698
+ "tiene límite de tiempo)"
699
+
700
+ #: includes/qmn_options_option_tab.php:119
701
+ msgid ""
702
+ "How many times can a user take this quiz? (Leave 0 for as many times as the "
703
+ "user wants to. Currently only works for registered users)"
704
+ msgstr ""
705
+ "¿Cuantas veces puede el usuario rellenar este cuestionario? (Deje 0 para "
706
+ "tantas veces como el usuario quiera. Actualmente sólo funciona para usuarios "
707
+ "registrados)"
708
+
709
+ #: includes/qmn_options_option_tab.php:125
710
+ msgid ""
711
+ "How many total entries can this quiz have? (Leave 0 for unlimited entries"
712
+ msgstr ""
713
+ "¿Cuantas veces en total puede ser rellenado este cuestionario? (Deje 0 para "
714
+ "entradas ilimitadas)"
715
+
716
+ #: includes/qmn_options_option_tab.php:131
717
+ msgid ""
718
+ "How many questions should be loaded for quiz? (Leave 0 to load all questions)"
719
+ msgstr ""
720
+ "¿Cuantas preguntas deben ser cargadas por cuestionario? (Deje 0 para cargar "
721
+ "todas las preguntas)"
722
+
723
+ #: includes/qmn_options_option_tab.php:137
724
+ msgid ""
725
+ "What time-frame should the user be able to access the quiz? (Leave blank if "
726
+ "the user can access anytime)"
727
+ msgstr ""
728
+ "¿En qué periodo de tiempo puede el usuario acceder a la encuesta? (Déjelo en "
729
+ "blanco si el usuario puede acceder en cualquier momento)"
730
+
731
+ #: includes/qmn_options_option_tab.php:139
732
+ msgid "start date"
733
+ msgstr "fecha de inicio"
734
+
735
+ #: includes/qmn_options_option_tab.php:142
736
+ msgid "end date"
737
+ msgstr "fecha de finalización"
738
+
739
+ #: includes/qmn_options_option_tab.php:146
740
+ msgid ""
741
+ "Are the questions random? (Question Order will not apply if this is yes)"
742
+ msgstr ""
743
+ "¿Son preguntas aleatorias? (El orden de las preguntas no se aplicará si "
744
+ "contesta que SÍ)"
745
+
746
+ #: includes/qmn_options_option_tab.php:148
747
+ msgid "Random Questions"
748
+ msgstr "Preguntas aleatorias"
749
+
750
+ #: includes/qmn_options_option_tab.php:149
751
+ msgid "Random Questions And Answers"
752
+ msgstr "Preguntas y respuestas aleatorias"
753
+
754
+ #: includes/qmn_options_option_tab.php:154
755
+ msgid ""
756
+ "Would you like to ask for the contact information at the beginning or at the "
757
+ "end of the quiz?"
758
+ msgstr ""
759
+ "¿Le gustaría pedir la información de contacto al principio o final de la "
760
+ "encuesta?"
761
+
762
+ #: includes/qmn_options_option_tab.php:156
763
+ msgid "Beginning"
764
+ msgstr "Principio"
765
+
766
+ #: includes/qmn_options_option_tab.php:157
767
+ msgid "End"
768
+ msgstr "Fin"
769
+
770
+ #: includes/qmn_options_option_tab.php:161
771
+ msgid ""
772
+ "If a logged-in user takes the quiz, would you like them to be able to edit "
773
+ "contact information? If set to no, the fields will not show up for logged in "
774
+ "users; however, the users information will be saved for the fields."
775
+ msgstr ""
776
+ "Si un usuario que ha iniciado sesión, ¿le gustaría que pudiera editar la "
777
+ "información de contacto? Si contesta que NO, los campos no se mostrarán a "
778
+ "los usuarios conectados, sin embargo, la información sobre el usuario sería "
779
+ "registrada en los campos."
780
+
781
+ #: includes/qmn_options_option_tab.php:168
782
+ msgid "Should we ask for users name?"
783
+ msgstr "¿Se debería pedir el nombre de los usuarios?"
784
+
785
+ #: includes/qmn_options_option_tab.php:171
786
+ #: includes/qmn_options_option_tab.php:179
787
+ #: includes/qmn_options_option_tab.php:187
788
+ #: includes/qmn_options_option_tab.php:195
789
+ msgid "Require"
790
+ msgstr "Obligatorio"
791
+
792
+ #: includes/qmn_options_option_tab.php:176
793
+ msgid "Should we ask for users business?"
794
+ msgstr "¿Se debería pedir el empleo del usuario?"
795
+
796
+ #: includes/qmn_options_option_tab.php:184
797
+ msgid "Should we ask for users email?"
798
+ msgstr "¿Se debería pedir el email al usuario?"
799
+
800
+ #: includes/qmn_options_option_tab.php:192
801
+ msgid "Should we ask for users phone number?"
802
+ msgstr "¿Se debería pedir al usuario el número de teléfono?"
803
+
804
+ #: includes/qmn_options_option_tab.php:200
805
+ msgid "Would you like a place for the user to enter comments?"
806
+ msgstr ""
807
+ "¿Le gustaría un espacio para que el usuario pudiera dejar sus comentarios?"
808
+
809
+ #: includes/qmn_options_option_tab.php:207
810
+ msgid "Show question number on quiz?"
811
+ msgstr "¿Mostrar el número de pregunta en la encuesta?"
812
+
813
+ #: includes/qmn_options_option_tab.php:214
814
+ msgid "Show social media sharing buttons? (Twitter & Facebook)"
815
+ msgstr ""
816
+ "¿Mostrar botones para compartir en medios sociales? (Twitter & Facebook)"
817
+
818
+ #: includes/qmn_options_option_tab.php:214
819
+ msgid ""
820
+ "This option is for here only for users of older versions. Please use the new "
821
+ "template variables %FACEBOOK_SHARE% %TWITTER_SHARE% on your results pages "
822
+ "instead of using this option!"
823
+ msgstr ""
824
+
825
+ #: includes/qmn_options_preview_tab.php:6
826
+ msgid "Preview"
827
+ msgstr "Presentación"
828
+
829
+ #: includes/qmn_options_questions_tab.php:6
830
+ msgid "Questions"
831
+ msgstr "Preguntas"
832
+
833
+ #: includes/qmn_options_questions_tab.php:105
834
+ msgid "The question has been updated successfully."
835
+ msgstr "La pregunta ha sido actualizada correctamente."
836
+
837
+ #: includes/qmn_options_questions_tab.php:132
838
+ msgid "The question has been deleted successfully."
839
+ msgstr "La pregunta ha sido eliminada correctamente."
840
+
841
+ #: includes/qmn_options_questions_tab.php:216
842
+ msgid "The question has been duplicated successfully."
843
+ msgstr "La pregunta ha sido duplicada correctamente."
844
+
845
+ #: includes/qmn_options_questions_tab.php:309
846
+ msgid "The question has been created successfully."
847
+ msgstr "La pregunta ha sido creada correctamente."
848
+
849
+ #: includes/qmn_options_questions_tab.php:454
850
+ #: includes/qmn_options_questions_tab.php:461
851
+ #: includes/qmn_options_questions_tab.php:593
852
+ #: includes/qmn_options_questions_tab.php:760
853
+ msgid "Answer"
854
+ msgstr "Respuesta"
855
+
856
+ #: includes/qmn_options_questions_tab.php:481
857
+ #: includes/qmn_options_questions_tab.php:729
858
+ msgid "Add Question"
859
+ msgstr "Añadir pregunta"
860
+
861
+ #: includes/qmn_options_questions_tab.php:485
862
+ #, php-format
863
+ msgid "One question"
864
+ msgid_plural "%s questions"
865
+ msgstr[0] "Una pregunta"
866
+ msgstr[1] "%s preguntas"
867
+
868
+ #: includes/qmn_options_questions_tab.php:557 includes/qmn_quiz_admin.php:270
869
+ msgid "Edit"
870
+ msgstr "Editar"
871
+
872
+ #: includes/qmn_options_questions_tab.php:557 includes/qmn_quiz_admin.php:272
873
+ #: includes/qmn_quiz_admin.php:397
874
+ msgid "Duplicate"
875
+ msgstr "Duplicar"
876
+
877
+ #: includes/qmn_options_questions_tab.php:557
878
+ #: includes/qmn_options_results_page_tab.php:247
879
+ #: includes/qmn_quiz_admin.php:273
880
+ msgid "Delete"
881
+ msgstr "Eliminar"
882
+
883
+ #: includes/qmn_options_questions_tab.php:568
884
+ #: includes/qmn_options_questions_tab.php:737
885
+ msgid ""
886
+ "For fill in the blank types, use %BLANK% to represent where to put the text "
887
+ "box in your text."
888
+ msgstr ""
889
+
890
+ #: includes/qmn_options_questions_tab.php:571
891
+ #: includes/qmn_options_questions_tab.php:714
892
+ #: includes/qmn_options_questions_tab.php:725
893
+ #: includes/qmn_options_questions_tab.php:740
894
+ msgid "Question"
895
+ msgstr "Pregunta"
896
+
897
+ #: includes/qmn_options_questions_tab.php:582
898
+ #: includes/qmn_options_questions_tab.php:751
899
+ msgid "Answers"
900
+ msgstr "Respuestas"
901
+
902
+ #: includes/qmn_options_questions_tab.php:583
903
+ #: includes/qmn_options_questions_tab.php:752
904
+ msgid "Points Worth"
905
+ msgstr "Puntuación"
906
+
907
+ #: includes/qmn_options_questions_tab.php:584
908
+ #: includes/qmn_options_questions_tab.php:753
909
+ msgid "Correct Answer"
910
+ msgstr "Respuesta correcta"
911
+
912
+ #: includes/qmn_options_questions_tab.php:611
913
+ #: includes/qmn_options_questions_tab.php:775
914
+ msgid "Add New Answer!"
915
+ msgstr "Añada nueva respuesta!"
916
+
917
+ #: includes/qmn_options_questions_tab.php:616
918
+ #: includes/qmn_options_questions_tab.php:780
919
+ msgid "Correct Answer Info"
920
+ msgstr "Información acerca de la respuesta correcta"
921
+
922
+ #: includes/qmn_options_questions_tab.php:623
923
+ #: includes/qmn_options_questions_tab.php:787 includes/qmn_quiz.php:441
924
+ msgid "Hint"
925
+ msgstr "Indicación"
926
+
927
+ #: includes/qmn_options_questions_tab.php:634
928
+ #: includes/qmn_options_questions_tab.php:712
929
+ #: includes/qmn_options_questions_tab.php:723
930
+ #: includes/qmn_options_questions_tab.php:798
931
+ msgid "Question Type"
932
+ msgstr "Tipo de pregunta"
933
+
934
+ #: includes/qmn_options_questions_tab.php:652
935
+ #: includes/qmn_options_questions_tab.php:811
936
+ msgid "Comment Field"
937
+ msgstr "Campo de Comentario"
938
+
939
+ #: includes/qmn_options_questions_tab.php:655
940
+ #: includes/qmn_options_questions_tab.php:813
941
+ msgid "Small Text Field"
942
+ msgstr "Campo de texto corto"
943
+
944
+ #: includes/qmn_options_questions_tab.php:657
945
+ #: includes/qmn_options_questions_tab.php:814
946
+ msgid "Large Text Field"
947
+ msgstr "Campo de texto largo"
948
+
949
+ #: includes/qmn_options_questions_tab.php:659
950
+ #: includes/qmn_options_questions_tab.php:815
951
+ msgid "None"
952
+ msgstr "Ninguna"
953
+
954
+ #: includes/qmn_options_questions_tab.php:663
955
+ #: includes/qmn_options_questions_tab.php:711
956
+ #: includes/qmn_options_questions_tab.php:722
957
+ #: includes/qmn_options_questions_tab.php:819
958
+ msgid "Question Order"
959
+ msgstr "Orden de preguntas"
960
+
961
+ #: includes/qmn_options_questions_tab.php:671
962
+ #: includes/qmn_options_questions_tab.php:827
963
+ msgid "Required?"
964
+ msgstr "¿Obligatorio?"
965
+
966
+ #: includes/qmn_options_questions_tab.php:680
967
+ #: includes/qmn_options_questions_tab.php:713
968
+ #: includes/qmn_options_questions_tab.php:724
969
+ #: includes/qmn_options_questions_tab.php:836
970
+ msgid "Category"
971
+ msgstr "Categoria"
972
+
973
+ #: includes/qmn_options_questions_tab.php:699
974
+ #: includes/qmn_options_questions_tab.php:855
975
+ msgid ""
976
+ "Required currently only works on open answer, number, accept, and captcha "
977
+ "question types"
978
+ msgstr ""
979
+ "Los campos obligatorios tan solo funcionan en respuestas abiertas, números, "
980
+ "aceptar y preguntas tipo captcha."
981
+
982
+ #: includes/qmn_options_questions_tab.php:701
983
+ msgid "Edit Question"
984
+ msgstr "Editar Pregunta"
985
+
986
+ #: includes/qmn_options_questions_tab.php:857
987
+ msgid "Create Question"
988
+ msgstr "Crear Pregunta"
989
+
990
+ #: includes/qmn_options_questions_tab.php:862
991
+ msgid "Are you sure you want to delete this question?"
992
+ msgstr "¿Está seguro que desea eliminar esta pregunta?"
993
+
994
+ #: includes/qmn_options_questions_tab.php:867
995
+ msgid "Delete Question"
996
+ msgstr "Eliminar pregunta"
997
+
998
+ #: includes/qmn_options_questions_tab.php:872
999
+ msgid "Are you sure you want to duplicate this question?"
1000
+ msgstr "¿Está seguro que desea duplicar esta pregunta?"
1001
+
1002
+ #: includes/qmn_options_questions_tab.php:877
1003
+ msgid "Duplicate Question"
1004
+ msgstr "Duplicar Pregunta"
1005
+
1006
+ #: includes/qmn_options_results_page_tab.php:6
1007
+ msgid "Results Pages"
1008
+ msgstr "Página de Resultados"
1009
+
1010
+ #: includes/qmn_options_results_page_tab.php:41
1011
+ msgid "The results page has been added successfully."
1012
+ msgstr "Los resultados han sido añadidos correctamente."
1013
+
1014
+ #: includes/qmn_options_results_page_tab.php:81
1015
+ msgid "The results page has been saved successfully."
1016
+ msgstr "La página de resultados ha sido guardada correctamente."
1017
+
1018
+ #: includes/qmn_options_results_page_tab.php:191
1019
+ msgid "Displays button to share on Facebook."
1020
+ msgstr ""
1021
+
1022
+ #: includes/qmn_options_results_page_tab.php:194
1023
+ msgid "Displays button to share on Twitter."
1024
+ msgstr ""
1025
+
1026
+ #: includes/qmn_options_results_page_tab.php:199
1027
+ #: includes/qmn_options_results_page_tab.php:280
1028
+ msgid "Save Results Pages"
1029
+ msgstr "Guardar Página de Resultados"
1030
+
1031
+ #: includes/qmn_options_results_page_tab.php:200
1032
+ #: includes/qmn_options_results_page_tab.php:285
1033
+ msgid "Add New Results Page"
1034
+ msgstr "Añadir Nueva Página de Resultados"
1035
+
1036
+ #: includes/qmn_options_results_page_tab.php:208
1037
+ #: includes/qmn_options_results_page_tab.php:272
1038
+ msgid "Results Page Shown"
1039
+ msgstr "Mostrar Página de Resultados"
1040
+
1041
+ #: includes/qmn_options_results_page_tab.php:209
1042
+ #: includes/qmn_options_results_page_tab.php:273
1043
+ msgid "Redirect URL"
1044
+ msgstr ""
1045
+
1046
+ #: includes/qmn_options_results_page_tab.php:247
1047
+ msgid "Are you sure?"
1048
+ msgstr "¿Está seguro?"
1049
+
1050
+ #: includes/qmn_options_style_tab.php:6
1051
+ msgid "Style"
1052
+ msgstr "Estilo"
1053
+
1054
+ #: includes/qmn_options_style_tab.php:26
1055
+ msgid "The style has been saved successfully."
1056
+ msgstr "El estilo ha sido guardado correctamente."
1057
+
1058
+ #: includes/qmn_options_style_tab.php:65
1059
+ msgid "Quiz Styles"
1060
+ msgstr "Estilos de Cuestionario."
1061
+
1062
+ #: includes/qmn_options_style_tab.php:66
1063
+ msgid "Choose your style:"
1064
+ msgstr "Elija su estilo:"
1065
+
1066
+ #: includes/qmn_options_style_tab.php:88
1067
+ msgid "Custom"
1068
+ msgstr "Personalizado"
1069
+
1070
+ #: includes/qmn_options_style_tab.php:94
1071
+ #: includes/qmn_options_style_tab.php:106
1072
+ msgid "Save Quiz Style"
1073
+ msgstr "Guardar Estilo de Cuestionario"
1074
+
1075
+ #: includes/qmn_options_style_tab.php:96
1076
+ msgid "Custom Style CSS"
1077
+ msgstr "Personalizar Estilo CSS"
1078
+
1079
+ #: includes/qmn_options_style_tab.php:97
1080
+ msgid ""
1081
+ "For detailed help and guidance along with a list of different classes used "
1082
+ "in this plugin, please visit the following link:"
1083
+ msgstr ""
1084
+ "Para una ayuda detallada y guía acerca de las diferentes classes usadas en "
1085
+ "este plugin, por favor visite el siguiente enlace:"
1086
+
1087
+ #: includes/qmn_options_text_tab.php:6
1088
+ msgid "Text"
1089
+ msgstr "Texto"
1090
+
1091
+ #: includes/qmn_options_text_tab.php:42
1092
+ msgid "The templates has been updated successfully."
1093
+ msgstr "La plantilla ha sido actualizada correctamente."
1094
+
1095
+ #: includes/qmn_options_text_tab.php:73 includes/qmn_quiz.php:1230
1096
+ msgid "Previous"
1097
+ msgstr "Anterior"
1098
+
1099
+ #: includes/qmn_options_text_tab.php:169 includes/qmn_options_text_tab.php:329
1100
+ msgid "Save Templates"
1101
+ msgstr "Guardar Plantillas"
1102
+
1103
+ #: includes/qmn_options_text_tab.php:175
1104
+ msgid "Message Templates"
1105
+ msgstr "Plantillas de Mensaje"
1106
+
1107
+ #: includes/qmn_options_text_tab.php:179
1108
+ msgid "Message Displayed Before Quiz"
1109
+ msgstr "Mensaje Mostrado Antes del Cuestionario"
1110
+
1111
+ #: includes/qmn_options_text_tab.php:189
1112
+ msgid "Message Displayed Before Comments Box If Enabled"
1113
+ msgstr "Mensaje Mostrado Antes del campo de Comentarios si está activado."
1114
+
1115
+ #: includes/qmn_options_text_tab.php:199
1116
+ msgid "Message Displayed At End Of Quiz (Leave Blank To Omit Text Section)"
1117
+ msgstr ""
1118
+ "Mensaje Mostrado al final de la encuesta (Dejar en blanco para omitir "
1119
+ "sección de texto)"
1120
+
1121
+ #: includes/qmn_options_text_tab.php:209
1122
+ msgid "Message Displayed If User Has Tried Quiz Too Many Times"
1123
+ msgstr "Mensaje Mostrado si el usuario ha intentando entrar demasiadas veces."
1124
+
1125
+ #: includes/qmn_options_text_tab.php:219
1126
+ msgid ""
1127
+ "Message Displayed If User Is Not Logged In And Quiz Requires Users To Be "
1128
+ "Logged In"
1129
+ msgstr ""
1130
+ "Mensaje Mostrado si el usuario no ha iniciado sesión en un cuestionario que "
1131
+ "requería iniciar sesión."
1132
+
1133
+ #: includes/qmn_options_text_tab.php:229
1134
+ msgid "Message Displayed If Date Is Outside Scheduled Timeframe"
1135
+ msgstr "Mensaje Mostrado si la fecha está fuera del calendario."
1136
+
1137
+ #: includes/qmn_options_text_tab.php:239
1138
+ msgid "Message Displayed If The Limit Of Total Entries Has Been Reached"
1139
+ msgstr "Mensaje mostrado si el límite total de entradas ha sido superado."
1140
+
1141
+ #: includes/qmn_options_text_tab.php:249
1142
+ msgid "%QUESTIONS_ANSWERS% Text"
1143
+ msgstr "%QUESTIONS_ANSWERS% Texto"
1144
+
1145
+ #: includes/qmn_options_text_tab.php:262
1146
+ msgid "Twitter Sharing Text"
1147
+ msgstr "Texto para compartir en Twitter"
1148
+
1149
+ #: includes/qmn_options_text_tab.php:279
1150
+ msgid "Facebook Sharing Text"
1151
+ msgstr "Texto para compartir en Facebook"
1152
+
1153
+ #: includes/qmn_options_text_tab.php:294
1154
+ msgid "Other Templates"
1155
+ msgstr "Otras plantillas"
1156
+
1157
+ #: includes/qmn_options_text_tab.php:297
1158
+ msgid "Text for submit button"
1159
+ msgstr "Texto para el botón de envío."
1160
+
1161
+ #: includes/qmn_options_text_tab.php:301
1162
+ msgid "Text for name field"
1163
+ msgstr "Texto para el nombre del campo"
1164
+
1165
+ #: includes/qmn_options_text_tab.php:305
1166
+ msgid "Text for business field"
1167
+ msgstr "Texto para el campo asunto."
1168
+
1169
+ #: includes/qmn_options_text_tab.php:309
1170
+ msgid "Text for email field"
1171
+ msgstr "Texto para el campo email"
1172
+
1173
+ #: includes/qmn_options_text_tab.php:313
1174
+ msgid "Text for phone number field"
1175
+ msgstr "Texto para el campo número de teléfono"
1176
+
1177
+ #: includes/qmn_options_text_tab.php:317
1178
+ msgid "Text for comments field"
1179
+ msgstr "Texto para el campo Comentarios"
1180
+
1181
+ #: includes/qmn_options_text_tab.php:321
1182
+ msgid "Text for previous button"
1183
+ msgstr "Texto para el botón Anterior"
1184
+
1185
+ #: includes/qmn_options_text_tab.php:325
1186
+ msgid "Text for next button"
1187
+ msgstr "Texto para el botón Siguiente"
1188
+
1189
+ #: includes/qmn_options_tools_tab.php:6 includes/qmn_tools.php:58
1190
+ #: mlw_quizmaster2.php:222
1191
+ msgid "Tools"
1192
+ msgstr "Herramientas"
1193
+
1194
+ #: includes/qmn_options_tools_tab.php:23
1195
+ msgid "The stats has been reset successfully."
1196
+ msgstr "Las estadísticas han sido reseteadas correctamente."
1197
+
1198
+ #: includes/qmn_options_tools_tab.php:75
1199
+ msgid ""
1200
+ "Use this button to reset all the stats collected for this quiz (Quiz Views "
1201
+ "and Times Quiz Has Been Taken)."
1202
+ msgstr "Las estadísticas han sido reseteadas correctamente."
1203
+
1204
+ #: includes/qmn_options_tools_tab.php:76
1205
+ msgid "Reset Quiz Views And Taken Stats"
1206
+ msgstr "Resetear Encuesta y Estadísticas Guardadas"
1207
+
1208
+ #: includes/qmn_options_tools_tab.php:87
1209
+ msgid ""
1210
+ "Are you sure you want to reset the stats to 0? All views and taken stats for "
1211
+ "this quiz will be reset. This is permanent and cannot be undone."
1212
+ msgstr ""
1213
+ "¿Está seguro que desea resetear las estadísticas a 0? Todas las vistas y "
1214
+ "estadísticas guardadas para este cuestionario serán eliminadas. Esto es "
1215
+ "permanente y no se puede deshacer."
1216
+
1217
+ #: includes/qmn_options_tools_tab.php:91
1218
+ msgid "Reset All Stats For Quiz"
1219
+ msgstr "Resetear todas las estadísticas para de un Cuestionario"
1220
+
1221
+ #: includes/qmn_question_types.php:7
1222
+ msgid "Multiple Choice"
1223
+ msgstr "Opción Múltiple"
1224
+
1225
+ #: includes/qmn_question_types.php:75
1226
+ msgid "Horizontal Multiple Choice"
1227
+ msgstr "Opción múltiple horizontal."
1228
+
1229
+ #: includes/qmn_question_types.php:143
1230
+ msgid "Drop Down"
1231
+ msgstr "Desplegable"
1232
+
1233
+ #: includes/qmn_question_types.php:208
1234
+ msgid "Small Open Answer"
1235
+ msgstr "Abrir Respuesta Corta"
1236
+
1237
+ #: includes/qmn_question_types.php:257
1238
+ msgid "Multiple Response"
1239
+ msgstr "Respuesta Múltiple"
1240
+
1241
+ #: includes/qmn_question_types.php:332
1242
+ msgid "Large Open Answer"
1243
+ msgstr "Abrir Respuesta Larga"
1244
+
1245
+ #: includes/qmn_question_types.php:381
1246
+ msgid "Text Block"
1247
+ msgstr "Bloque de Texto"
1248
+
1249
+ #: includes/qmn_question_types.php:396
1250
+ msgid "Number"
1251
+ msgstr "Número"
1252
+
1253
+ #: includes/qmn_question_types.php:445
1254
+ msgid "Accept"
1255
+ msgstr "Aceptar"
1256
+
1257
+ #: includes/qmn_question_types.php:464
1258
+ msgid "Captcha"
1259
+ msgstr ""
1260
+ "Source text:\n"
1261
+ "Captcha"
1262
+
1263
+ #: includes/qmn_question_types.php:505
1264
+ msgid "Horizontal Multiple Response"
1265
+ msgstr "Múltiples Respuestas Horizontal"
1266
+
1267
+ #: includes/qmn_question_types.php:579
1268
+ msgid "Fill In The Blank"
1269
+ msgstr ""
1270
+
1271
+ #: includes/qmn_quiz.php:326
1272
+ msgid "Not a valid e-mail address!"
1273
+ msgstr "E-mail no válido!!"
1274
+
1275
+ #: includes/qmn_quiz.php:327
1276
+ msgid "This field must be a number!"
1277
+ msgstr "Este campo debe ser númerico!"
1278
+
1279
+ #: includes/qmn_quiz.php:328
1280
+ msgid "The entered text is not correct!"
1281
+ msgstr "El texto introducido no es correcto!"
1282
+
1283
+ #: includes/qmn_quiz.php:329
1284
+ msgid "Please complete all required fields!"
1285
+ msgstr "Por favor, complete todas los campos obligatorios!"
1286
+
1287
+ #: includes/qmn_quiz_admin.php:186 mlw_quizmaster2.php:217
1288
+ msgid "Quizzes"
1289
+ msgstr "Cuestionarios"
1290
+
1291
+ #: includes/qmn_quiz_admin.php:186
1292
+ msgid "Add New"
1293
+ msgstr "Añadir Nuevo"
1294
+
1295
+ #: includes/qmn_quiz_admin.php:204
1296
+ #, php-format
1297
+ msgid "One quiz"
1298
+ msgid_plural "%s quizzes"
1299
+ msgstr[0] "Un cuestionarios"
1300
+ msgstr[1] "%s cuestionarios"
1301
+
1302
+ #: includes/qmn_quiz_admin.php:249 includes/qmn_quiz_admin.php:295
1303
+ #: includes/qmn_quiz_admin.php:364 includes/qmn_results.php:209
1304
+ msgid "Quiz Name"
1305
+ msgstr "Nombre del Cuestionario"
1306
+
1307
+ #: includes/qmn_quiz_admin.php:250 includes/qmn_quiz_admin.php:296
1308
+ msgid "URL"
1309
+ msgstr "URL"
1310
+
1311
+ #: includes/qmn_quiz_admin.php:251 includes/qmn_quiz_admin.php:297
1312
+ msgid "Quiz Shortcode"
1313
+ msgstr "Código Corto de la Encuesta"
1314
+
1315
+ #: includes/qmn_quiz_admin.php:252 includes/qmn_quiz_admin.php:298
1316
+ msgid "Leaderboard Shortcode"
1317
+ msgstr "Código Corto del Panel de Puntuaciones"
1318
+
1319
+ #: includes/qmn_quiz_admin.php:253 includes/qmn_quiz_admin.php:299
1320
+ msgid "Quiz Views"
1321
+ msgstr "Vistas del Cuestionario"
1322
+
1323
+ #: includes/qmn_quiz_admin.php:254 includes/qmn_quiz_admin.php:300
1324
+ msgid "Quiz Taken"
1325
+ msgstr "Cuestionario Completado"
1326
+
1327
+ #: includes/qmn_quiz_admin.php:255 includes/qmn_quiz_admin.php:301
1328
+ msgid "Last Modified"
1329
+ msgstr "Última Modificación"
1330
+
1331
+ #: includes/qmn_quiz_admin.php:268
1332
+ msgid "Edit Name"
1333
+ msgstr "Editar Nombre"
1334
+
1335
+ #: includes/qmn_quiz_admin.php:271 includes/qmn_results_details.php:121
1336
+ msgid "Results"
1337
+ msgstr "Resultados"
1338
+
1339
+ #: includes/qmn_quiz_admin.php:359
1340
+ msgid "Create New Quiz"
1341
+ msgstr "Crear un Nuevo Cuestionario"
1342
+
1343
+ #: includes/qmn_quiz_admin.php:373
1344
+ msgid "Create Quiz"
1345
+ msgstr "Crear Cuestionario"
1346
+
1347
+ #: includes/qmn_quiz_admin.php:379
1348
+ msgid "Quiz Name:"
1349
+ msgstr "Nombre del Cuestionario:"
1350
+
1351
+ #: includes/qmn_quiz_admin.php:390
1352
+ msgid "Duplicate this quiz?"
1353
+ msgstr "¿Duplicar este cuestionario?"
1354
+
1355
+ #: includes/qmn_quiz_admin.php:392
1356
+ msgid "Duplicate questions with quiz"
1357
+ msgstr "Duplicar preguntar con Cuestinario"
1358
+
1359
+ #: includes/qmn_quiz_admin.php:394
1360
+ msgid "Name Of New Quiz:"
1361
+ msgstr "Nombre del Nuevo Cuestionario:"
1362
+
1363
+ #: includes/qmn_quiz_admin.php:403
1364
+ msgid "Are you sure you want to delete this quiz?"
1365
+ msgstr "¿Está seguro que desea eliminar este cuestionario?"
1366
+
1367
+ #: includes/qmn_quiz_admin.php:408
1368
+ msgid "Delete Quiz"
1369
+ msgstr "Eliminar Cuestionario"
1370
+
1371
+ #: includes/qmn_quiz_creator.php:369
1372
+ msgid ""
1373
+ "Your new quiz has been created successfully. To begin editing your quiz, "
1374
+ "click the Edit link on the new quiz."
1375
+ msgstr ""
1376
+ "Su cuestionario ha sido creado correctamente. Para empezar a editar su "
1377
+ "cuestionario haga click en Edit en el nuevo cuestionario."
1378
+
1379
+ #: includes/qmn_quiz_creator.php:435
1380
+ msgid "Your quiz has been deleted successfully."
1381
+ msgstr "Su cuestionario ha sido eliminado correctamente."
1382
+
1383
+ #: includes/qmn_quiz_creator.php:477
1384
+ msgid "Your quiz name has been updated successfully."
1385
+ msgstr "Su cuestionario ha sido actualizado correctamente."
1386
+
1387
+ #: includes/qmn_quiz_creator.php:634
1388
+ msgid "Your quiz has been duplicated successfully."
1389
+ msgstr "Su cuestionario ha sido duplicado correctamente."
1390
+
1391
+ #. translators: The %s corresponds to the name of the quiz
1392
+ #: includes/qmn_quiz_options.php:56
1393
+ #, php-format
1394
+ msgid "Quiz Settings For %s"
1395
+ msgstr "Configuración para el cuestionario %s"
1396
+
1397
+ #: includes/qmn_quiz_options.php:96
1398
+ msgid ""
1399
+ "Please go to the quizzes page and click on the Edit link from the quiz you "
1400
+ "wish to edit."
1401
+ msgstr ""
1402
+ "Por favor vaya a la página de cuestionarios y haga click sobre el botón "
1403
+ "Editar en el cuestionario que desee editar."
1404
+
1405
+ #: includes/qmn_results.php:23
1406
+ msgid "Your results has been deleted successfully."
1407
+ msgstr "Sus resultados han sido eliminados correctamente."
1408
+
1409
+ #: includes/qmn_results.php:152 includes/qmn_results_details.php:21
1410
+ #: mlw_quizmaster2.php:219
1411
+ msgid "Quiz Results"
1412
+ msgstr "Resultados de la encuesta."
1413
+
1414
+ #: includes/qmn_results.php:161
1415
+ #, php-format
1416
+ msgid "One result"
1417
+ msgid_plural "%s results"
1418
+ msgstr[0] "Un resultado"
1419
+ msgstr[1] "%s resultados"
1420
+
1421
+ #: includes/qmn_results.php:208
1422
+ msgid "Actions"
1423
+ msgstr "Acciones"
1424
+
1425
+ #: includes/qmn_results.php:210
1426
+ msgid "Score"
1427
+ msgstr "Puntuación"
1428
+
1429
+ #: includes/qmn_results.php:211
1430
+ msgid "Time To Complete"
1431
+ msgstr "Tiempo para completar"
1432
+
1433
+ #: includes/qmn_results.php:212
1434
+ msgid "Name"
1435
+ msgstr "Nombre"
1436
+
1437
+ #: includes/qmn_results.php:213
1438
+ msgid "Business"
1439
+ msgstr "Asunto"
1440
+
1441
+ #: includes/qmn_results.php:214
1442
+ msgid "Email"
1443
+ msgstr "Email"
1444
+
1445
+ #: includes/qmn_results.php:215
1446
+ msgid "Phone"
1447
+ msgstr "Teléfono"
1448
+
1449
+ #: includes/qmn_results.php:216
1450
+ msgid "Time Taken"
1451
+ msgstr "Tiempo empleado"
1452
+
1453
+ #: includes/qmn_results.php:276
1454
+ msgid "Are you sure you want to delete these results?"
1455
+ msgstr "¿Está seguro de que desea eliminar estos resultados?"
1456
+
1457
+ #: includes/qmn_results.php:281
1458
+ msgid "Delete Results"
1459
+ msgstr "Eliminar resultados"
1460
+
1461
+ #: includes/qmn_results_details.php:200
1462
+ msgid "Create Certificate"
1463
+ msgstr "Crear Certificado"
1464
+
1465
+ #: includes/qmn_results_details.php:205
1466
+ msgid "Download Certificate Here"
1467
+ msgstr "Descargar Certificado Aquí"
1468
+
1469
+ #: includes/qmn_results_details.php:212
1470
+ msgid "Certificate"
1471
+ msgstr "Cerificado"
1472
+
1473
+ #: includes/qmn_tools.php:93
1474
+ msgid "There has been an error! Please try again."
1475
+ msgstr "Ha habido un error! Por favor, inténtelo de nuevo."
1476
+
1477
+ #: includes/qmn_tools.php:111
1478
+ msgid "Quiz Has Been Restored!"
1479
+ msgstr "El cuestionario ha sido restaurado!"
1480
+
1481
+ #: includes/qmn_tools.php:116
1482
+ msgid ""
1483
+ "Choose a quiz in the drop down and then click the button to restore a "
1484
+ "deleted quiz."
1485
+ msgstr ""
1486
+ "Escoja un cuestionario en la lista desplegable y después haga click en el "
1487
+ "botón para restaurar una encuesta eliminada."
1488
+
1489
+ #: includes/qmn_tools.php:126
1490
+ msgid "Restore Quiz"
1491
+ msgstr "Restaurar la encuesta"
1492
+
1493
+ #: includes/qmn_tools.php:155 includes/qmn_tools.php:171
1494
+ #, php-format
1495
+ msgid "Previous %s Audits"
1496
+ msgstr ""
1497
+ "Auditoria \n"
1498
+ "%s Anterior"
1499
+
1500
+ #: includes/qmn_tools.php:158 includes/qmn_tools.php:165
1501
+ #, php-format
1502
+ msgid "Next %s Audits"
1503
+ msgstr "Próxima %s Auditoria"
1504
+
1505
+ #: includes/qmn_tools.php:178
1506
+ msgid "User"
1507
+ msgstr "Usuario"
1508
+
1509
+ #: includes/qmn_tools.php:179
1510
+ msgid "Action"
1511
+ msgstr "Acción"
1512
+
1513
+ #: includes/qmn_tools.php:180
1514
+ msgid "Time"
1515
+ msgstr "Tiempo"
1516
+
1517
+ #: includes/qmn_usage_tracking.php:193
1518
+ msgid ""
1519
+ "Allow Quiz Master Next to anonymously track this plugin's usage and help us "
1520
+ "make this plugin better? No sensitive data is tracked."
1521
+ msgstr ""
1522
+ "¿Permite a \n"
1523
+ "Quiz Master Next el envío de información acerca del uso de este plugin con "
1524
+ "el fín de ayudarnos a mejorar este plugin? No se hará seguimiento sobre "
1525
+ "información privada."
1526
+
1527
+ #: includes/qmn_usage_tracking.php:194
1528
+ msgid "Allow"
1529
+ msgstr "Permitir"
1530
+
1531
+ #: includes/qmn_usage_tracking.php:195
1532
+ msgid "Do not allow"
1533
+ msgstr "No permitir"
1534
+
1535
+ #: includes/qmn_widgets.php:11
1536
+ msgid "Quiz Master Next Leaderboard Widget"
1537
+ msgstr ""
1538
+ "Widget de Puntuaciones de \n"
1539
+ "Quiz Master Next"
1540
+
1541
+ #: includes/qmn_widgets.php:26
1542
+ msgid "Widget Title"
1543
+ msgstr "Título del Widget"
1544
+
1545
+ #: includes/qmn_widgets.php:30
1546
+ msgid "Quiz ID"
1547
+ msgstr "ID del cuestionario"
1548
+
1549
+ #: mlw_quizmaster2.php:218
1550
+ msgid "Quiz Settings"
1551
+ msgstr "Configuración de la encuesta"
1552
+
1553
+ #: mlw_quizmaster2.php:220
1554
+ msgid "Quiz Result Details"
1555
+ msgstr "Detalle de resultados del cuestionario"
1556
+
1557
+ #: mlw_quizmaster2.php:221
1558
+ msgid "Settings"
1559
+ msgstr "Configuración"
1560
+
1561
+ #: mlw_quizmaster2.php:223
1562
+ msgid "Stats"
1563
+ msgstr "Estadísticas"
1564
+
1565
+ #: mlw_quizmaster2.php:224
1566
+ msgid "Addon Settings"
1567
+ msgstr "Configuración de Addon"
1568
+
1569
+ #: mlw_quizmaster2.php:225
1570
+ msgid "Help"
1571
+ msgstr "Ayuda"
1572
+
1573
+ #: mlw_quizmaster2.php:228 mlw_quizmaster2.php:229
1574
+ msgid "QMN About"
1575
+ msgstr "Sobre QMN"
languages/quiz-master-next-nl_NL.mo ADDED
Binary file
languages/quiz-master-next-pt_BR.mo ADDED
Binary file
languages/quiz-master-next-pt_BR.po ADDED
@@ -0,0 +1,3306 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Quiz Master Next
2
+ # Copyright (C) 2015 ...
3
+ # This file is distributed under the GNU General Public License v2 or later.
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: Quiz Master Next\n"
7
+ "Report-Msgid-Bugs-To: Frank Corso <fpcorso@mylocalwebstop.com>\n"
8
+ "POT-Creation-Date: 2015-03-06 14:05-0500\n"
9
+ "PO-Revision-Date: \n"
10
+ "Last-Translator: Fran Ildefonso <francisco@3dmaker.com.br>\n"
11
+ "Language-Team: \n"
12
+ "Language: pt_BR\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
+ "X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
18
+ "X-Poedit-SourceCharset: UTF-8\n"
19
+ "X-Poedit-KeywordsList: _;_e;__;esc_html_e;esc_html_x:1,2c;esc_html__;"
20
+ "esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
21
+ "_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
22
+ "X-Poedit-Basepath: ../\n"
23
+ "X-Generator: Poedit 1.7.3\n"
24
+ "X-Poedit-SearchPath-0: ..\n"
25
+ "X-Poedit-SearchPath-1: .\n"
26
+
27
+ #: ../4.1.0/includes/qmn_addons.php:43
28
+ #: ../quiz_master_next/includes/qmn_addons.php:48
29
+ #: ../trunk/includes/qmn_addons.php:43 includes/qmn_addons.php:48
30
+ msgid "These addons extend the functionality of Quiz Master Next"
31
+ msgstr "Estes complementos estendem a funcionalidade do Questionário "
32
+
33
+ #: ../4.1.0/includes/qmn_addons.php:66
34
+ #: ../quiz_master_next/includes/qmn_addons.php:71
35
+ #: ../trunk/includes/qmn_addons.php:66 includes/qmn_addons.php:71
36
+ msgid "Browse All Addons"
37
+ msgstr "Consultar todos os Complementos"
38
+
39
+ #: ../4.1.0/includes/qmn_addons.php:73
40
+ #: ../quiz_master_next/includes/qmn_addons.php:78
41
+ #: ../trunk/includes/qmn_addons.php:73 includes/qmn_addons.php:78
42
+ msgid "Featured Addons"
43
+ msgstr "Complementos em destaque"
44
+
45
+ #: ../4.1.0/includes/qmn_alerts.php:18
46
+ #: ../quiz_master_next/includes/qmn_alerts.php:19
47
+ #: ../trunk/includes/qmn_alerts.php:18 includes/qmn_alerts.php:19
48
+ msgid "Success!"
49
+ msgstr "Sucesso!"
50
+
51
+ #: ../4.1.0/includes/qmn_alerts.php:22
52
+ #: ../4.1.0/includes/qmn_quiz_options.php:91
53
+ #: ../quiz_master_next/includes/qmn_alerts.php:23
54
+ #: ../quiz_master_next/includes/qmn_quiz_options.php:96
55
+ #: ../trunk/includes/qmn_alerts.php:22
56
+ #: ../trunk/includes/qmn_quiz_options.php:91 includes/qmn_alerts.php:23
57
+ #: includes/qmn_quiz_options.php:96
58
+ msgid "Error!"
59
+ msgstr "Erro!"
60
+
61
+ #: ../4.1.0/includes/qmn_credits.php:85
62
+ #: ../quiz_master_next/includes/qmn_credits.php:86
63
+ #: ../trunk/includes/qmn_credits.php:85 includes/qmn_credits.php:86
64
+ msgid "Welcome To Quiz Master Next"
65
+ msgstr "Bemvindo!"
66
+
67
+ #: ../4.1.0/includes/qmn_credits.php:86
68
+ #: ../quiz_master_next/includes/qmn_credits.php:87
69
+ #: ../trunk/includes/qmn_credits.php:86 includes/qmn_credits.php:87
70
+ msgid "Thank you for updating!"
71
+ msgstr "Obrigado pela atualização!"
72
+
73
+ #: ../4.1.0/includes/qmn_credits.php:90
74
+ #: ../quiz_master_next/includes/qmn_credits.php:91
75
+ #: ../trunk/includes/qmn_credits.php:90 includes/qmn_credits.php:91
76
+ msgid "What's New!"
77
+ msgstr "O que há de novo."
78
+
79
+ #: ../4.1.0/includes/qmn_credits.php:92
80
+ #: ../quiz_master_next/includes/qmn_credits.php:93
81
+ #: ../trunk/includes/qmn_credits.php:92 includes/qmn_credits.php:93
82
+ msgid "Changelog"
83
+ msgstr "Alterações"
84
+
85
+ #: ../4.1.0/includes/qmn_credits.php:94
86
+ #: ../quiz_master_next/includes/qmn_credits.php:95
87
+ #: ../trunk/includes/qmn_credits.php:94 includes/qmn_credits.php:95
88
+ msgid "Requested Features"
89
+ msgstr "Recursos solicitados"
90
+
91
+ #: ../4.1.0/includes/qmn_dashboard.php:15
92
+ #: ../quiz_master_next/includes/qmn_dashboard.php:16
93
+ #: ../trunk/includes/qmn_dashboard.php:15 includes/qmn_dashboard.php:16
94
+ msgid "Quiz Daily Stats - Times Taken"
95
+ msgstr "Questionário Diário Estatísticas - Tempo Tomado"
96
+
97
+ #: ../4.1.0/includes/qmn_dashboard.php:16
98
+ #: ../quiz_master_next/includes/qmn_dashboard.php:17
99
+ #: ../trunk/includes/qmn_dashboard.php:16 includes/qmn_dashboard.php:17
100
+ msgid "Quiz Total Stats"
101
+ msgstr "Questionário Total de Estatísticas"
102
+
103
+ #: ../4.1.0/includes/qmn_dashboard.php:17
104
+ #: ../quiz_master_next/includes/qmn_dashboard.php:18
105
+ #: ../trunk/includes/qmn_dashboard.php:17 includes/qmn_dashboard.php:18
106
+ msgid "Quiz Weekly Stats - Times Taken"
107
+ msgstr "Questionário semanal Estatísticas - tempo tomado"
108
+
109
+ #: ../4.1.0/includes/qmn_dashboard.php:18
110
+ #: ../quiz_master_next/includes/qmn_dashboard.php:19
111
+ #: ../trunk/includes/qmn_dashboard.php:18 includes/qmn_dashboard.php:19
112
+ msgid "Quiz Monthly Stats - Times Taken"
113
+ msgstr "Questionário mensal Estatísticas - tempo tomado"
114
+
115
+ #: ../4.1.0/includes/qmn_dashboard.php:19
116
+ #: ../quiz_master_next/includes/qmn_dashboard.php:20
117
+ #: ../trunk/includes/qmn_dashboard.php:19 includes/qmn_dashboard.php:20
118
+ msgid "Quiz Quarterly Stats - Times Taken"
119
+ msgstr "Questionário Quadrimestral Estatísticas - tempo tomado"
120
+
121
+ #: ../4.1.0/includes/qmn_dashboard.php:24
122
+ #: ../quiz_master_next/includes/qmn_dashboard.php:25
123
+ #: ../trunk/includes/qmn_dashboard.php:24 includes/qmn_dashboard.php:25
124
+ msgid "Quizzes Taken Today"
125
+ msgstr "Avaliações feitas hoje"
126
+
127
+ #: ../4.1.0/includes/qmn_dashboard.php:25
128
+ #: ../quiz_master_next/includes/qmn_dashboard.php:26
129
+ #: ../trunk/includes/qmn_dashboard.php:25 includes/qmn_dashboard.php:26
130
+ msgid "Quizzes Taken Last 7 Days"
131
+ msgstr "Avaliações feitas nos ultimos 7 dias"
132
+
133
+ #: ../4.1.0/includes/qmn_dashboard.php:26
134
+ #: ../quiz_master_next/includes/qmn_dashboard.php:27
135
+ #: ../trunk/includes/qmn_dashboard.php:26 includes/qmn_dashboard.php:27
136
+ msgid "Quizzes Taken Last 30 Days"
137
+ msgstr "Avaliações feitas nos ultimos 30 dias"
138
+
139
+ #: ../4.1.0/includes/qmn_dashboard.php:27
140
+ #: ../quiz_master_next/includes/qmn_dashboard.php:28
141
+ #: ../trunk/includes/qmn_dashboard.php:27 includes/qmn_dashboard.php:28
142
+ msgid "Quizzes Taken Last 120 Days"
143
+ msgstr "Avaliações feitas nos ultimos 120 dias"
144
+
145
+ #: ../4.1.0/includes/qmn_dashboard.php:53
146
+ #: ../quiz_master_next/includes/qmn_dashboard.php:54
147
+ #: ../trunk/includes/qmn_dashboard.php:53 includes/qmn_dashboard.php:54
148
+ msgid "Quiz Statistics"
149
+ msgstr "Estatísticas"
150
+
151
+ #: ../4.1.0/includes/qmn_dashboard.php:227
152
+ #: ../quiz_master_next/includes/qmn_dashboard.php:228
153
+ #: ../trunk/includes/qmn_dashboard.php:227 includes/qmn_dashboard.php:228
154
+ msgid "Total Created Quizzes"
155
+ msgstr "Total de Avaliações"
156
+
157
+ #: ../4.1.0/includes/qmn_dashboard.php:231
158
+ #: ../quiz_master_next/includes/qmn_dashboard.php:232
159
+ #: ../trunk/includes/qmn_dashboard.php:231 includes/qmn_dashboard.php:232
160
+ msgid "Total Deleted Quizzes"
161
+ msgstr "Total de Avaliações deletadas"
162
+
163
+ #: ../4.1.0/includes/qmn_dashboard.php:235
164
+ #: ../quiz_master_next/includes/qmn_dashboard.php:236
165
+ #: ../trunk/includes/qmn_dashboard.php:235 includes/qmn_dashboard.php:236
166
+ msgid "Total Active Quizzes"
167
+ msgstr "Total de Avaliações ativas"
168
+
169
+ #: ../4.1.0/includes/qmn_dashboard.php:239
170
+ #: ../quiz_master_next/includes/qmn_dashboard.php:240
171
+ #: ../trunk/includes/qmn_dashboard.php:239 includes/qmn_dashboard.php:240
172
+ msgid "Total Created Questions"
173
+ msgstr "Total de questões criadas"
174
+
175
+ #: ../4.1.0/includes/qmn_dashboard.php:243
176
+ #: ../quiz_master_next/includes/qmn_dashboard.php:244
177
+ #: ../trunk/includes/qmn_dashboard.php:243 includes/qmn_dashboard.php:244
178
+ msgid "Total Times All Active Quizzes Have Been Viewed"
179
+ msgstr "Total de vezes que todos Testes ativos foram exibidos"
180
+
181
+ #: ../4.1.0/includes/qmn_dashboard.php:247
182
+ #: ../quiz_master_next/includes/qmn_dashboard.php:248
183
+ #: ../trunk/includes/qmn_dashboard.php:247 includes/qmn_dashboard.php:248
184
+ msgid "Total Times All Active Quizzes Have Been Taken"
185
+ msgstr "Total de vezes que todos Testes ativos foram feitos"
186
+
187
+ #: ../4.1.0/includes/qmn_dashboard.php:251
188
+ #: ../quiz_master_next/includes/qmn_dashboard.php:252
189
+ #: ../trunk/includes/qmn_dashboard.php:251 includes/qmn_dashboard.php:252
190
+ msgid "Average Amount Each Active Quiz Has Been Viewed"
191
+ msgstr "Média de avaliações ativas vistas"
192
+
193
+ #: ../4.1.0/includes/qmn_dashboard.php:255
194
+ #: ../quiz_master_next/includes/qmn_dashboard.php:256
195
+ #: ../trunk/includes/qmn_dashboard.php:255 includes/qmn_dashboard.php:256
196
+ msgid "Average Amount Each Active Quiz Has Been Taken"
197
+ msgstr "Média de avaliações ativas feitas"
198
+
199
+ #: ../4.1.0/includes/qmn_dashboard.php:259
200
+ #: ../quiz_master_next/includes/qmn_dashboard.php:260
201
+ #: ../trunk/includes/qmn_dashboard.php:259 includes/qmn_dashboard.php:260
202
+ msgid "Quiz That Has Been Viewed The Most"
203
+ msgstr "Máximo de avaliações vistas"
204
+
205
+ #: ../4.1.0/includes/qmn_dashboard.php:263
206
+ #: ../quiz_master_next/includes/qmn_dashboard.php:264
207
+ #: ../trunk/includes/qmn_dashboard.php:263 includes/qmn_dashboard.php:264
208
+ msgid "Quiz That Has Been Taken The Most"
209
+ msgstr "Máximo de avaliações feitas"
210
+
211
+ #: ../4.1.0/includes/qmn_dashboard_widgets.php:8
212
+ #: ../quiz_master_next/includes/qmn_dashboard_widgets.php:9
213
+ #: ../trunk/includes/qmn_dashboard_widgets.php:8
214
+ #: includes/qmn_dashboard_widgets.php:9
215
+ msgid "Quiz Master Next Snapshot"
216
+ msgstr "próxima imagem capturada"
217
+
218
+ #: ../4.1.0/includes/qmn_dashboard_widgets.php:127
219
+ #: ../quiz_master_next/includes/qmn_dashboard_widgets.php:128
220
+ #: ../trunk/includes/qmn_dashboard_widgets.php:127
221
+ #: includes/qmn_dashboard_widgets.php:128
222
+ msgid "quizzes taken today"
223
+ msgstr "avaliações feitas hoje"
224
+
225
+ #: ../4.1.0/includes/qmn_dashboard_widgets.php:146
226
+ #: ../quiz_master_next/includes/qmn_dashboard_widgets.php:147
227
+ #: ../trunk/includes/qmn_dashboard_widgets.php:146
228
+ #: includes/qmn_dashboard_widgets.php:147
229
+ msgid "quizzes taken last 7 days"
230
+ msgstr "avaliações feitas nos ultimos 7 dias"
231
+
232
+ #: ../4.1.0/includes/qmn_dashboard_widgets.php:165
233
+ #: ../quiz_master_next/includes/qmn_dashboard_widgets.php:166
234
+ #: ../trunk/includes/qmn_dashboard_widgets.php:165
235
+ #: includes/qmn_dashboard_widgets.php:166
236
+ msgid "total active quizzes"
237
+ msgstr "Total de avaliações ativas"
238
+
239
+ #: ../4.1.0/includes/qmn_dashboard_widgets.php:171
240
+ #: ../quiz_master_next/includes/qmn_dashboard_widgets.php:172
241
+ #: ../trunk/includes/qmn_dashboard_widgets.php:171
242
+ #: includes/qmn_dashboard_widgets.php:172
243
+ msgid "total active questions"
244
+ msgstr "Total de questões ativas"
245
+
246
+ #: ../4.1.0/includes/qmn_dashboard_widgets.php:177
247
+ #: ../quiz_master_next/includes/qmn_dashboard_widgets.php:178
248
+ #: ../trunk/includes/qmn_dashboard_widgets.php:177
249
+ #: includes/qmn_dashboard_widgets.php:178
250
+ msgid "most popular quiz"
251
+ msgstr "Avaliação mais popular"
252
+
253
+ #: ../4.1.0/includes/qmn_dashboard_widgets.php:183
254
+ #: ../quiz_master_next/includes/qmn_dashboard_widgets.php:184
255
+ #: ../trunk/includes/qmn_dashboard_widgets.php:183
256
+ #: includes/qmn_dashboard_widgets.php:184
257
+ msgid "least popular quiz"
258
+ msgstr "Última avaliação popular"
259
+
260
+ #: ../4.1.0/includes/qmn_help.php:12
261
+ #: ../quiz_master_next/includes/qmn_help.php:13
262
+ #: ../trunk/includes/qmn_help.php:12 includes/qmn_help.php:13
263
+ msgid "Need Help?"
264
+ msgstr "Precisa de Ajuda?"
265
+
266
+ #: ../4.1.0/includes/qmn_help.php:13
267
+ #: ../quiz_master_next/includes/qmn_help.php:14
268
+ #: ../trunk/includes/qmn_help.php:13 includes/qmn_help.php:14
269
+ msgid "Support"
270
+ msgstr "Suporte"
271
+
272
+ #: ../4.1.0/includes/qmn_help.php:14
273
+ #: ../quiz_master_next/includes/qmn_help.php:15
274
+ #: ../trunk/includes/qmn_help.php:14 includes/qmn_help.php:15
275
+ msgid "System Info"
276
+ msgstr "Informação de Sistema"
277
+
278
+ #: ../4.1.0/includes/qmn_help.php:17
279
+ #: ../quiz_master_next/includes/qmn_help.php:18
280
+ #: ../trunk/includes/qmn_help.php:17 includes/qmn_help.php:18
281
+ msgid "Help Page"
282
+ msgstr "Página de Ajuda"
283
+
284
+ #: ../4.1.0/includes/qmn_help.php:40
285
+ #: ../quiz_master_next/includes/qmn_help.php:41
286
+ #: ../trunk/includes/qmn_help.php:40 includes/qmn_help.php:41
287
+ msgid "Need help with the plugin? Try any of the following:"
288
+ msgstr ""
289
+ "Precisa de ajuda com o Plugin? Tente qualquer um dos seguintes procedimentos:"
290
+
291
+ #: ../4.1.0/includes/qmn_options_certificate_tab.php:5
292
+ #: ../quiz_master_next/includes/qmn_options_certificate_tab.php:6
293
+ #: ../trunk/includes/qmn_options_certificate_tab.php:5
294
+ #: includes/qmn_options_certificate_tab.php:6
295
+ msgid "Certificate (Beta)"
296
+ msgstr "Certificado"
297
+
298
+ #: ../4.1.0/includes/qmn_options_certificate_tab.php:31
299
+ #: ../quiz_master_next/includes/qmn_options_certificate_tab.php:32
300
+ #: ../trunk/includes/qmn_options_certificate_tab.php:31
301
+ #: includes/qmn_options_certificate_tab.php:32
302
+ msgid "The certificate has been updated successfully."
303
+ msgstr "O certificado foi atualizado com sucesso."
304
+
305
+ #: ../4.1.0/includes/qmn_options_certificate_tab.php:44
306
+ #: ../4.1.0/includes/qmn_options_email_tab.php:54
307
+ #: ../4.1.0/includes/qmn_options_email_tab.php:113
308
+ #: ../4.1.0/includes/qmn_options_email_tab.php:177
309
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:37
310
+ #: ../4.1.0/includes/qmn_options_option_tab.php:55
311
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:117
312
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:144
313
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:228
314
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:321
315
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:53
316
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:93
317
+ #: ../4.1.0/includes/qmn_options_style_tab.php:38
318
+ #: ../4.1.0/includes/qmn_options_text_tab.php:54
319
+ #: ../4.1.0/includes/qmn_options_tools_tab.php:35
320
+ #: ../4.1.0/includes/qmn_quiz_creator.php:381
321
+ #: ../4.1.0/includes/qmn_quiz_creator.php:447
322
+ #: ../4.1.0/includes/qmn_quiz_creator.php:489
323
+ #: ../4.1.0/includes/qmn_quiz_creator.php:635
324
+ #: ../4.1.0/includes/qmn_quiz_creator.php:700
325
+ #: ../4.1.0/includes/qmn_results.php:32
326
+ #: ../quiz_master_next/includes/qmn_options_certificate_tab.php:45
327
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:55
328
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:114
329
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:178
330
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:38
331
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:56
332
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:118
333
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:145
334
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:229
335
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:322
336
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:54
337
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:94
338
+ #: ../quiz_master_next/includes/qmn_options_style_tab.php:39
339
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:55
340
+ #: ../quiz_master_next/includes/qmn_options_tools_tab.php:36
341
+ #: ../quiz_master_next/includes/qmn_quiz_creator.php:382
342
+ #: ../quiz_master_next/includes/qmn_quiz_creator.php:448
343
+ #: ../quiz_master_next/includes/qmn_quiz_creator.php:490
344
+ #: ../quiz_master_next/includes/qmn_quiz_creator.php:648
345
+ #: ../quiz_master_next/includes/qmn_quiz_creator.php:713
346
+ #: ../quiz_master_next/includes/qmn_results.php:36
347
+ #: ../trunk/includes/qmn_options_certificate_tab.php:44
348
+ #: ../trunk/includes/qmn_options_email_tab.php:54
349
+ #: ../trunk/includes/qmn_options_email_tab.php:113
350
+ #: ../trunk/includes/qmn_options_email_tab.php:177
351
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:37
352
+ #: ../trunk/includes/qmn_options_option_tab.php:55
353
+ #: ../trunk/includes/qmn_options_questions_tab.php:117
354
+ #: ../trunk/includes/qmn_options_questions_tab.php:144
355
+ #: ../trunk/includes/qmn_options_questions_tab.php:228
356
+ #: ../trunk/includes/qmn_options_questions_tab.php:321
357
+ #: ../trunk/includes/qmn_options_results_page_tab.php:53
358
+ #: ../trunk/includes/qmn_options_results_page_tab.php:93
359
+ #: ../trunk/includes/qmn_options_style_tab.php:38
360
+ #: ../trunk/includes/qmn_options_text_tab.php:54
361
+ #: ../trunk/includes/qmn_options_tools_tab.php:35
362
+ #: ../trunk/includes/qmn_quiz_creator.php:381
363
+ #: ../trunk/includes/qmn_quiz_creator.php:447
364
+ #: ../trunk/includes/qmn_quiz_creator.php:489
365
+ #: ../trunk/includes/qmn_quiz_creator.php:635
366
+ #: ../trunk/includes/qmn_quiz_creator.php:700
367
+ #: ../trunk/includes/qmn_results.php:32
368
+ #: includes/qmn_options_certificate_tab.php:45
369
+ #: includes/qmn_options_email_tab.php:55
370
+ #: includes/qmn_options_email_tab.php:114
371
+ #: includes/qmn_options_email_tab.php:178
372
+ #: includes/qmn_options_leaderboard_tab.php:38
373
+ #: includes/qmn_options_option_tab.php:56
374
+ #: includes/qmn_options_questions_tab.php:118
375
+ #: includes/qmn_options_questions_tab.php:145
376
+ #: includes/qmn_options_questions_tab.php:229
377
+ #: includes/qmn_options_questions_tab.php:322
378
+ #: includes/qmn_options_results_page_tab.php:54
379
+ #: includes/qmn_options_results_page_tab.php:94
380
+ #: includes/qmn_options_style_tab.php:39 includes/qmn_options_text_tab.php:55
381
+ #: includes/qmn_options_tools_tab.php:36 includes/qmn_quiz_creator.php:382
382
+ #: includes/qmn_quiz_creator.php:448 includes/qmn_quiz_creator.php:490
383
+ #: includes/qmn_quiz_creator.php:648 includes/qmn_quiz_creator.php:713
384
+ #: includes/qmn_results.php:36
385
+ #, php-format
386
+ msgid ""
387
+ "There has been an error in this action. Please share this with the "
388
+ "developer. Error Code: %s"
389
+ msgstr ""
390
+ "Houve um erro nesta ação. Por favor, compartilhe isso com o desenvolvedor. "
391
+ "Código de erro:%s"
392
+
393
+ #: ../4.1.0/includes/qmn_options_certificate_tab.php:60
394
+ #: ../quiz_master_next/includes/qmn_options_certificate_tab.php:61
395
+ #: ../trunk/includes/qmn_options_certificate_tab.php:60
396
+ #: includes/qmn_options_certificate_tab.php:61
397
+ msgid "Enter title here"
398
+ msgstr "Coloque o título aqui"
399
+
400
+ #: ../4.1.0/includes/qmn_options_certificate_tab.php:60
401
+ #: ../4.1.0/includes/qmn_options_email_tab.php:72
402
+ #: ../4.1.0/includes/qmn_options_email_tab.php:90
403
+ #: ../quiz_master_next/includes/qmn_options_certificate_tab.php:61
404
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:73
405
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:91
406
+ #: ../trunk/includes/qmn_options_certificate_tab.php:60
407
+ #: ../trunk/includes/qmn_options_email_tab.php:72
408
+ #: ../trunk/includes/qmn_options_email_tab.php:90
409
+ #: includes/qmn_options_certificate_tab.php:61
410
+ #: includes/qmn_options_email_tab.php:73 includes/qmn_options_email_tab.php:91
411
+ msgid "Enter text here"
412
+ msgstr "Coloque o texto aqui"
413
+
414
+ #: ../4.1.0/includes/qmn_options_certificate_tab.php:69
415
+ #: ../quiz_master_next/includes/qmn_options_certificate_tab.php:70
416
+ #: ../trunk/includes/qmn_options_certificate_tab.php:69
417
+ #: includes/qmn_options_certificate_tab.php:70
418
+ msgid "Quiz Certificate (Beta)"
419
+ msgstr "Certificado de Avaliação"
420
+
421
+ #: ../4.1.0/includes/qmn_options_certificate_tab.php:70
422
+ #: ../quiz_master_next/includes/qmn_options_certificate_tab.php:71
423
+ #: ../trunk/includes/qmn_options_certificate_tab.php:70
424
+ #: includes/qmn_options_certificate_tab.php:71
425
+ msgid ""
426
+ "Enter in your text here to fill in the certificate for this quiz. Be sure to "
427
+ "enter in the link variable into the templates on the Quiz Text tab so the "
428
+ "user can access the certificate."
429
+ msgstr ""
430
+ "Digite em seu texto aqui para preencher o certificado para esta avaliação. "
431
+ "Certifique-se de entrarno link para os modelos da guia Texto do Questionário "
432
+ "de modo que o usuário pode acessar o certificado."
433
+
434
+ #: ../4.1.0/includes/qmn_options_certificate_tab.php:71
435
+ #: ../quiz_master_next/includes/qmn_options_certificate_tab.php:72
436
+ #: ../trunk/includes/qmn_options_certificate_tab.php:71
437
+ #: includes/qmn_options_certificate_tab.php:72
438
+ msgid "These fields cannot contain HTML."
439
+ msgstr "Estes campos não contém HTML."
440
+
441
+ #: ../4.1.0/includes/qmn_options_certificate_tab.php:72
442
+ #: ../4.1.0/includes/qmn_options_certificate_tab.php:128
443
+ #: ../quiz_master_next/includes/qmn_options_certificate_tab.php:73
444
+ #: ../quiz_master_next/includes/qmn_options_certificate_tab.php:129
445
+ #: ../trunk/includes/qmn_options_certificate_tab.php:72
446
+ #: ../trunk/includes/qmn_options_certificate_tab.php:128
447
+ #: includes/qmn_options_certificate_tab.php:73
448
+ #: includes/qmn_options_certificate_tab.php:129
449
+ msgid "Save Certificate Options"
450
+ msgstr "Salvar Opções de Certificado"
451
+
452
+ #: ../4.1.0/includes/qmn_options_certificate_tab.php:80
453
+ #: ../quiz_master_next/includes/qmn_options_certificate_tab.php:81
454
+ #: ../trunk/includes/qmn_options_certificate_tab.php:80
455
+ #: includes/qmn_options_certificate_tab.php:81
456
+ msgid "Enable Certificates For This Quiz?"
457
+ msgstr "Ativar Certificados para esta Avaliação?"
458
+
459
+ #: ../4.1.0/includes/qmn_options_certificate_tab.php:82
460
+ #: ../4.1.0/includes/qmn_options_email_tab.php:324
461
+ #: ../4.1.0/includes/qmn_options_email_tab.php:331
462
+ #: ../4.1.0/includes/qmn_options_option_tab.php:101
463
+ #: ../4.1.0/includes/qmn_options_option_tab.php:162
464
+ #: ../4.1.0/includes/qmn_options_option_tab.php:169
465
+ #: ../4.1.0/includes/qmn_options_option_tab.php:177
466
+ #: ../4.1.0/includes/qmn_options_option_tab.php:185
467
+ #: ../4.1.0/includes/qmn_options_option_tab.php:193
468
+ #: ../4.1.0/includes/qmn_options_option_tab.php:201
469
+ #: ../4.1.0/includes/qmn_options_option_tab.php:208
470
+ #: ../4.1.0/includes/qmn_options_option_tab.php:215
471
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:672
472
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:827
473
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:236
474
+ #: ../quiz_master_next/includes/qmn_options_certificate_tab.php:83
475
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:325
476
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:332
477
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:102
478
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:163
479
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:170
480
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:178
481
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:186
482
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:194
483
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:202
484
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:209
485
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:216
486
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:674
487
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:830
488
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:247
489
+ #: ../trunk/includes/qmn_options_certificate_tab.php:82
490
+ #: ../trunk/includes/qmn_options_email_tab.php:324
491
+ #: ../trunk/includes/qmn_options_email_tab.php:331
492
+ #: ../trunk/includes/qmn_options_option_tab.php:101
493
+ #: ../trunk/includes/qmn_options_option_tab.php:162
494
+ #: ../trunk/includes/qmn_options_option_tab.php:169
495
+ #: ../trunk/includes/qmn_options_option_tab.php:177
496
+ #: ../trunk/includes/qmn_options_option_tab.php:185
497
+ #: ../trunk/includes/qmn_options_option_tab.php:193
498
+ #: ../trunk/includes/qmn_options_option_tab.php:201
499
+ #: ../trunk/includes/qmn_options_option_tab.php:208
500
+ #: ../trunk/includes/qmn_options_option_tab.php:215
501
+ #: ../trunk/includes/qmn_options_questions_tab.php:672
502
+ #: ../trunk/includes/qmn_options_questions_tab.php:827
503
+ #: ../trunk/includes/qmn_options_results_page_tab.php:236
504
+ #: includes/qmn_options_certificate_tab.php:83
505
+ #: includes/qmn_options_email_tab.php:325
506
+ #: includes/qmn_options_email_tab.php:332
507
+ #: includes/qmn_options_option_tab.php:102
508
+ #: includes/qmn_options_option_tab.php:163
509
+ #: includes/qmn_options_option_tab.php:170
510
+ #: includes/qmn_options_option_tab.php:178
511
+ #: includes/qmn_options_option_tab.php:186
512
+ #: includes/qmn_options_option_tab.php:194
513
+ #: includes/qmn_options_option_tab.php:202
514
+ #: includes/qmn_options_option_tab.php:209
515
+ #: includes/qmn_options_option_tab.php:216
516
+ #: includes/qmn_options_questions_tab.php:674
517
+ #: includes/qmn_options_questions_tab.php:830
518
+ #: includes/qmn_options_results_page_tab.php:247
519
+ msgid "Yes"
520
+ msgstr "Sim"
521
+
522
+ #: ../4.1.0/includes/qmn_options_certificate_tab.php:83
523
+ #: ../4.1.0/includes/qmn_options_email_tab.php:325
524
+ #: ../4.1.0/includes/qmn_options_email_tab.php:332
525
+ #: ../4.1.0/includes/qmn_options_option_tab.php:102
526
+ #: ../4.1.0/includes/qmn_options_option_tab.php:149
527
+ #: ../4.1.0/includes/qmn_options_option_tab.php:163
528
+ #: ../4.1.0/includes/qmn_options_option_tab.php:171
529
+ #: ../4.1.0/includes/qmn_options_option_tab.php:179
530
+ #: ../4.1.0/includes/qmn_options_option_tab.php:187
531
+ #: ../4.1.0/includes/qmn_options_option_tab.php:195
532
+ #: ../4.1.0/includes/qmn_options_option_tab.php:202
533
+ #: ../4.1.0/includes/qmn_options_option_tab.php:209
534
+ #: ../4.1.0/includes/qmn_options_option_tab.php:216
535
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:673
536
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:828
537
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:236
538
+ #: ../quiz_master_next/includes/qmn_options_certificate_tab.php:84
539
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:326
540
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:333
541
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:103
542
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:150
543
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:164
544
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:172
545
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:180
546
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:188
547
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:196
548
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:203
549
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:210
550
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:217
551
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:675
552
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:831
553
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:247
554
+ #: ../trunk/includes/qmn_options_certificate_tab.php:83
555
+ #: ../trunk/includes/qmn_options_email_tab.php:325
556
+ #: ../trunk/includes/qmn_options_email_tab.php:332
557
+ #: ../trunk/includes/qmn_options_option_tab.php:102
558
+ #: ../trunk/includes/qmn_options_option_tab.php:149
559
+ #: ../trunk/includes/qmn_options_option_tab.php:163
560
+ #: ../trunk/includes/qmn_options_option_tab.php:171
561
+ #: ../trunk/includes/qmn_options_option_tab.php:179
562
+ #: ../trunk/includes/qmn_options_option_tab.php:187
563
+ #: ../trunk/includes/qmn_options_option_tab.php:195
564
+ #: ../trunk/includes/qmn_options_option_tab.php:202
565
+ #: ../trunk/includes/qmn_options_option_tab.php:209
566
+ #: ../trunk/includes/qmn_options_option_tab.php:216
567
+ #: ../trunk/includes/qmn_options_questions_tab.php:673
568
+ #: ../trunk/includes/qmn_options_questions_tab.php:828
569
+ #: ../trunk/includes/qmn_options_results_page_tab.php:236
570
+ #: includes/qmn_options_certificate_tab.php:84
571
+ #: includes/qmn_options_email_tab.php:326
572
+ #: includes/qmn_options_email_tab.php:333
573
+ #: includes/qmn_options_option_tab.php:103
574
+ #: includes/qmn_options_option_tab.php:150
575
+ #: includes/qmn_options_option_tab.php:164
576
+ #: includes/qmn_options_option_tab.php:172
577
+ #: includes/qmn_options_option_tab.php:180
578
+ #: includes/qmn_options_option_tab.php:188
579
+ #: includes/qmn_options_option_tab.php:196
580
+ #: includes/qmn_options_option_tab.php:203
581
+ #: includes/qmn_options_option_tab.php:210
582
+ #: includes/qmn_options_option_tab.php:217
583
+ #: includes/qmn_options_questions_tab.php:675
584
+ #: includes/qmn_options_questions_tab.php:831
585
+ #: includes/qmn_options_results_page_tab.php:247
586
+ msgid "No"
587
+ msgstr "Não"
588
+
589
+ #: ../4.1.0/includes/qmn_options_certificate_tab.php:88
590
+ #: ../quiz_master_next/includes/qmn_options_certificate_tab.php:89
591
+ #: ../trunk/includes/qmn_options_certificate_tab.php:88
592
+ #: includes/qmn_options_certificate_tab.php:89
593
+ msgid "Certificate Title"
594
+ msgstr "Título do Certificado"
595
+
596
+ #: ../4.1.0/includes/qmn_options_certificate_tab.php:95
597
+ #: ../quiz_master_next/includes/qmn_options_certificate_tab.php:96
598
+ #: ../trunk/includes/qmn_options_certificate_tab.php:95
599
+ #: includes/qmn_options_certificate_tab.php:96
600
+ msgid "Message Displayed On Certificate"
601
+ msgstr "Mensagem exibida no Certificado"
602
+
603
+ #: ../4.1.0/includes/qmn_options_certificate_tab.php:97
604
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:90
605
+ #: ../4.1.0/includes/qmn_options_text_tab.php:180
606
+ #: ../4.1.0/includes/qmn_options_text_tab.php:190
607
+ #: ../4.1.0/includes/qmn_options_text_tab.php:200
608
+ #: ../4.1.0/includes/qmn_options_text_tab.php:210
609
+ #: ../4.1.0/includes/qmn_options_text_tab.php:220
610
+ #: ../4.1.0/includes/qmn_options_text_tab.php:230
611
+ #: ../4.1.0/includes/qmn_options_text_tab.php:240
612
+ #: ../4.1.0/includes/qmn_options_text_tab.php:250
613
+ #: ../4.1.0/includes/qmn_options_text_tab.php:263
614
+ #: ../4.1.0/includes/qmn_options_text_tab.php:280
615
+ #: ../quiz_master_next/includes/qmn_options_certificate_tab.php:98
616
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:91
617
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:181
618
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:191
619
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:201
620
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:211
621
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:221
622
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:231
623
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:241
624
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:251
625
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:264
626
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:281
627
+ #: ../trunk/includes/qmn_options_certificate_tab.php:97
628
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:90
629
+ #: ../trunk/includes/qmn_options_text_tab.php:180
630
+ #: ../trunk/includes/qmn_options_text_tab.php:190
631
+ #: ../trunk/includes/qmn_options_text_tab.php:200
632
+ #: ../trunk/includes/qmn_options_text_tab.php:210
633
+ #: ../trunk/includes/qmn_options_text_tab.php:220
634
+ #: ../trunk/includes/qmn_options_text_tab.php:230
635
+ #: ../trunk/includes/qmn_options_text_tab.php:240
636
+ #: ../trunk/includes/qmn_options_text_tab.php:250
637
+ #: ../trunk/includes/qmn_options_text_tab.php:263
638
+ #: ../trunk/includes/qmn_options_text_tab.php:280
639
+ #: includes/qmn_options_certificate_tab.php:98
640
+ #: includes/qmn_options_leaderboard_tab.php:91
641
+ #: includes/qmn_options_text_tab.php:181 includes/qmn_options_text_tab.php:191
642
+ #: includes/qmn_options_text_tab.php:201 includes/qmn_options_text_tab.php:211
643
+ #: includes/qmn_options_text_tab.php:221 includes/qmn_options_text_tab.php:231
644
+ #: includes/qmn_options_text_tab.php:241 includes/qmn_options_text_tab.php:251
645
+ #: includes/qmn_options_text_tab.php:264 includes/qmn_options_text_tab.php:281
646
+ msgid "Allowed Variables:"
647
+ msgstr "Variaveis Mantidas:"
648
+
649
+ #: ../4.1.0/includes/qmn_options_certificate_tab.php:115
650
+ #: ../quiz_master_next/includes/qmn_options_certificate_tab.php:116
651
+ #: ../trunk/includes/qmn_options_certificate_tab.php:115
652
+ #: includes/qmn_options_certificate_tab.php:116
653
+ msgid "URL To Logo (Must be JPG, JPEG, PNG or GIF)"
654
+ msgstr "URL para o Logo ( JPG, JPEG, PNG or GIF)"
655
+
656
+ #: ../4.1.0/includes/qmn_options_certificate_tab.php:122
657
+ #: ../quiz_master_next/includes/qmn_options_certificate_tab.php:123
658
+ #: ../trunk/includes/qmn_options_certificate_tab.php:122
659
+ #: includes/qmn_options_certificate_tab.php:123
660
+ msgid "URL To Background Img (Must be JPG, JPEG, PNG or GIF)"
661
+ msgstr "URL para o Background Img ( JPG, JPEG, PNG or GIF)"
662
+
663
+ #: ../4.1.0/includes/qmn_options_email_tab.php:5
664
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:6
665
+ #: ../trunk/includes/qmn_options_email_tab.php:5
666
+ #: includes/qmn_options_email_tab.php:6
667
+ msgid "Emails"
668
+ msgstr "e-mails"
669
+
670
+ #: ../4.1.0/includes/qmn_options_email_tab.php:41
671
+ #: ../4.1.0/includes/qmn_options_email_tab.php:100
672
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:42
673
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:101
674
+ #: ../trunk/includes/qmn_options_email_tab.php:41
675
+ #: ../trunk/includes/qmn_options_email_tab.php:100
676
+ #: includes/qmn_options_email_tab.php:42
677
+ #: includes/qmn_options_email_tab.php:101
678
+ msgid "The email has been added successfully."
679
+ msgstr "E-mail adicionado com sucesso"
680
+
681
+ #: ../4.1.0/includes/qmn_options_email_tab.php:164
682
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:165
683
+ #: ../trunk/includes/qmn_options_email_tab.php:164
684
+ #: includes/qmn_options_email_tab.php:165
685
+ msgid "The email has been updated successfully."
686
+ msgstr "E-mail atualizado com sucesso"
687
+
688
+ #: ../4.1.0/includes/qmn_options_email_tab.php:231
689
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:48
690
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:133
691
+ #: ../4.1.0/includes/qmn_options_text_tab.php:91
692
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:232
693
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:49
694
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:134
695
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:92
696
+ #: ../trunk/includes/qmn_options_email_tab.php:231
697
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:48
698
+ #: ../trunk/includes/qmn_options_results_page_tab.php:133
699
+ #: ../trunk/includes/qmn_options_text_tab.php:91
700
+ #: includes/qmn_options_email_tab.php:232
701
+ #: includes/qmn_options_leaderboard_tab.php:49
702
+ #: includes/qmn_options_results_page_tab.php:134
703
+ #: includes/qmn_options_text_tab.php:92
704
+ msgid "Template Variables"
705
+ msgstr "Modelos Variáveis"
706
+
707
+ #: ../4.1.0/includes/qmn_options_email_tab.php:234
708
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:136
709
+ #: ../4.1.0/includes/qmn_options_text_tab.php:94
710
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:235
711
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:137
712
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:95
713
+ #: ../trunk/includes/qmn_options_email_tab.php:234
714
+ #: ../trunk/includes/qmn_options_results_page_tab.php:136
715
+ #: ../trunk/includes/qmn_options_text_tab.php:94
716
+ #: includes/qmn_options_email_tab.php:235
717
+ #: includes/qmn_options_results_page_tab.php:137
718
+ #: includes/qmn_options_text_tab.php:95
719
+ msgid "Score for the quiz when using points"
720
+ msgstr "Pontuação para avaliação que usa pontos"
721
+
722
+ #: ../4.1.0/includes/qmn_options_email_tab.php:237
723
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:139
724
+ #: ../4.1.0/includes/qmn_options_text_tab.php:97
725
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:238
726
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:140
727
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:98
728
+ #: ../trunk/includes/qmn_options_email_tab.php:237
729
+ #: ../trunk/includes/qmn_options_results_page_tab.php:139
730
+ #: ../trunk/includes/qmn_options_text_tab.php:97
731
+ #: includes/qmn_options_email_tab.php:238
732
+ #: includes/qmn_options_results_page_tab.php:140
733
+ #: includes/qmn_options_text_tab.php:98
734
+ msgid "The average amount of points user had per question"
735
+ msgstr "A quantidade média de pontos que o usuário tinha por pergunta"
736
+
737
+ #: ../4.1.0/includes/qmn_options_email_tab.php:240
738
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:142
739
+ #: ../4.1.0/includes/qmn_options_text_tab.php:100
740
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:241
741
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:143
742
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:101
743
+ #: ../trunk/includes/qmn_options_email_tab.php:240
744
+ #: ../trunk/includes/qmn_options_results_page_tab.php:142
745
+ #: ../trunk/includes/qmn_options_text_tab.php:100
746
+ #: includes/qmn_options_email_tab.php:241
747
+ #: includes/qmn_options_results_page_tab.php:143
748
+ #: includes/qmn_options_text_tab.php:101
749
+ msgid "The number of correct answers the user had"
750
+ msgstr "Número de respostas corretas que o usuario obteve"
751
+
752
+ #: ../4.1.0/includes/qmn_options_email_tab.php:243
753
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:145
754
+ #: ../4.1.0/includes/qmn_options_text_tab.php:103
755
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:244
756
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:146
757
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:104
758
+ #: ../trunk/includes/qmn_options_email_tab.php:243
759
+ #: ../trunk/includes/qmn_options_results_page_tab.php:145
760
+ #: ../trunk/includes/qmn_options_text_tab.php:103
761
+ #: includes/qmn_options_email_tab.php:244
762
+ #: includes/qmn_options_results_page_tab.php:146
763
+ #: includes/qmn_options_text_tab.php:104
764
+ msgid "The total number of questions in the quiz"
765
+ msgstr "O número total de perguntas no questionário"
766
+
767
+ #: ../4.1.0/includes/qmn_options_email_tab.php:246
768
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:148
769
+ #: ../4.1.0/includes/qmn_options_text_tab.php:106
770
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:247
771
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:149
772
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:107
773
+ #: ../trunk/includes/qmn_options_email_tab.php:246
774
+ #: ../trunk/includes/qmn_options_results_page_tab.php:148
775
+ #: ../trunk/includes/qmn_options_text_tab.php:106
776
+ #: includes/qmn_options_email_tab.php:247
777
+ #: includes/qmn_options_results_page_tab.php:149
778
+ #: includes/qmn_options_text_tab.php:107
779
+ msgid "Score for the quiz when using correct answers"
780
+ msgstr "Pontuação para o questionário ao usar respostas corretas"
781
+
782
+ #: ../4.1.0/includes/qmn_options_email_tab.php:249
783
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:151
784
+ #: ../4.1.0/includes/qmn_options_text_tab.php:109
785
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:250
786
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:152
787
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:110
788
+ #: ../trunk/includes/qmn_options_email_tab.php:249
789
+ #: ../trunk/includes/qmn_options_results_page_tab.php:151
790
+ #: ../trunk/includes/qmn_options_text_tab.php:109
791
+ #: includes/qmn_options_email_tab.php:250
792
+ #: includes/qmn_options_results_page_tab.php:152
793
+ #: includes/qmn_options_text_tab.php:110
794
+ msgid "The name the user entered before the quiz"
795
+ msgstr "O nome do usuário inserido antes do questionário"
796
+
797
+ #: ../4.1.0/includes/qmn_options_email_tab.php:252
798
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:154
799
+ #: ../4.1.0/includes/qmn_options_text_tab.php:112
800
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:253
801
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:155
802
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:113
803
+ #: ../trunk/includes/qmn_options_email_tab.php:252
804
+ #: ../trunk/includes/qmn_options_results_page_tab.php:154
805
+ #: ../trunk/includes/qmn_options_text_tab.php:112
806
+ #: includes/qmn_options_email_tab.php:253
807
+ #: includes/qmn_options_results_page_tab.php:155
808
+ #: includes/qmn_options_text_tab.php:113
809
+ msgid "The business the user entered before the quiz"
810
+ msgstr "O negócio que o usuário digitou antes do quiz"
811
+
812
+ #: ../4.1.0/includes/qmn_options_email_tab.php:255
813
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:157
814
+ #: ../4.1.0/includes/qmn_options_text_tab.php:115
815
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:256
816
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:158
817
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:116
818
+ #: ../trunk/includes/qmn_options_email_tab.php:255
819
+ #: ../trunk/includes/qmn_options_results_page_tab.php:157
820
+ #: ../trunk/includes/qmn_options_text_tab.php:115
821
+ #: includes/qmn_options_email_tab.php:256
822
+ #: includes/qmn_options_results_page_tab.php:158
823
+ #: includes/qmn_options_text_tab.php:116
824
+ msgid "The phone number the user entered before the quiz"
825
+ msgstr "O numero de telefone que o usuário digitou antes do quiz"
826
+
827
+ #: ../4.1.0/includes/qmn_options_email_tab.php:258
828
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:160
829
+ #: ../4.1.0/includes/qmn_options_text_tab.php:118
830
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:259
831
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:161
832
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:119
833
+ #: ../trunk/includes/qmn_options_email_tab.php:258
834
+ #: ../trunk/includes/qmn_options_results_page_tab.php:160
835
+ #: ../trunk/includes/qmn_options_text_tab.php:118
836
+ #: includes/qmn_options_email_tab.php:259
837
+ #: includes/qmn_options_results_page_tab.php:161
838
+ #: includes/qmn_options_text_tab.php:119
839
+ msgid "The email the user entered before the quiz"
840
+ msgstr "O e-mail que o usuário digitou antes do quiz"
841
+
842
+ #: ../4.1.0/includes/qmn_options_email_tab.php:261
843
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:76
844
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:163
845
+ #: ../4.1.0/includes/qmn_options_text_tab.php:121
846
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:262
847
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:77
848
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:164
849
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:122
850
+ #: ../trunk/includes/qmn_options_email_tab.php:261
851
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:76
852
+ #: ../trunk/includes/qmn_options_results_page_tab.php:163
853
+ #: ../trunk/includes/qmn_options_text_tab.php:121
854
+ #: includes/qmn_options_email_tab.php:262
855
+ #: includes/qmn_options_leaderboard_tab.php:77
856
+ #: includes/qmn_options_results_page_tab.php:164
857
+ #: includes/qmn_options_text_tab.php:122
858
+ msgid "The name of the quiz"
859
+ msgstr "Nome do questionário"
860
+
861
+ #: ../4.1.0/includes/qmn_options_email_tab.php:264
862
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:166
863
+ #: ../4.1.0/includes/qmn_options_text_tab.php:124
864
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:265
865
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:167
866
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:125
867
+ #: ../trunk/includes/qmn_options_email_tab.php:264
868
+ #: ../trunk/includes/qmn_options_results_page_tab.php:166
869
+ #: ../trunk/includes/qmn_options_text_tab.php:124
870
+ #: includes/qmn_options_email_tab.php:265
871
+ #: includes/qmn_options_results_page_tab.php:167
872
+ #: includes/qmn_options_text_tab.php:125
873
+ msgid ""
874
+ "Shows the question, the answer the user provided, and the correct answer"
875
+ msgstr ""
876
+ "Mostra a pergunta, a resposta do usuário fornecido, e a resposta correta"
877
+
878
+ #: ../4.1.0/includes/qmn_options_email_tab.php:267
879
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:169
880
+ #: ../4.1.0/includes/qmn_options_text_tab.php:127
881
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:268
882
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:170
883
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:128
884
+ #: ../trunk/includes/qmn_options_email_tab.php:267
885
+ #: ../trunk/includes/qmn_options_results_page_tab.php:169
886
+ #: ../trunk/includes/qmn_options_text_tab.php:127
887
+ #: includes/qmn_options_email_tab.php:268
888
+ #: includes/qmn_options_results_page_tab.php:170
889
+ #: includes/qmn_options_text_tab.php:128
890
+ msgid "The comments the user entered into comment box if enabled"
891
+ msgstr ""
892
+ "Os comentários que o usuário entrou em caixa de comentário se habilitado"
893
+
894
+ #: ../4.1.0/includes/qmn_options_email_tab.php:270
895
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:172
896
+ #: ../4.1.0/includes/qmn_options_text_tab.php:130
897
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:271
898
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:173
899
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:131
900
+ #: ../trunk/includes/qmn_options_email_tab.php:270
901
+ #: ../trunk/includes/qmn_options_results_page_tab.php:172
902
+ #: ../trunk/includes/qmn_options_text_tab.php:130
903
+ #: includes/qmn_options_email_tab.php:271
904
+ #: includes/qmn_options_results_page_tab.php:173
905
+ #: includes/qmn_options_text_tab.php:131
906
+ msgid "The amount of time user spent of quiz"
907
+ msgstr "Tempo gasto do usuário na avaliação"
908
+
909
+ #: ../4.1.0/includes/qmn_options_email_tab.php:273
910
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:175
911
+ #: ../4.1.0/includes/qmn_options_text_tab.php:133
912
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:274
913
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:176
914
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:134
915
+ #: ../trunk/includes/qmn_options_email_tab.php:273
916
+ #: ../trunk/includes/qmn_options_results_page_tab.php:175
917
+ #: ../trunk/includes/qmn_options_text_tab.php:133
918
+ #: includes/qmn_options_email_tab.php:274
919
+ #: includes/qmn_options_results_page_tab.php:176
920
+ #: includes/qmn_options_text_tab.php:134
921
+ msgid "The link to the certificate after completing the quiz"
922
+ msgstr "Link para o certificado após a conclusão do teste"
923
+
924
+ #: ../4.1.0/includes/qmn_options_email_tab.php:276
925
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:178
926
+ #: ../4.1.0/includes/qmn_options_text_tab.php:136
927
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:277
928
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:179
929
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:137
930
+ #: ../trunk/includes/qmn_options_email_tab.php:276
931
+ #: ../trunk/includes/qmn_options_results_page_tab.php:178
932
+ #: ../trunk/includes/qmn_options_text_tab.php:136
933
+ #: includes/qmn_options_email_tab.php:277
934
+ #: includes/qmn_options_results_page_tab.php:179
935
+ #: includes/qmn_options_text_tab.php:137
936
+ msgid "The amount of points a specific category earned."
937
+ msgstr "A quantidade de pontos de uma categoria específica obteve."
938
+
939
+ #: ../4.1.0/includes/qmn_options_email_tab.php:279
940
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:181
941
+ #: ../4.1.0/includes/qmn_options_text_tab.php:139
942
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:280
943
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:182
944
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:140
945
+ #: ../trunk/includes/qmn_options_email_tab.php:279
946
+ #: ../trunk/includes/qmn_options_results_page_tab.php:181
947
+ #: ../trunk/includes/qmn_options_text_tab.php:139
948
+ #: includes/qmn_options_email_tab.php:280
949
+ #: includes/qmn_options_results_page_tab.php:182
950
+ #: includes/qmn_options_text_tab.php:140
951
+ msgid "The score a specific category earned."
952
+ msgstr "A pontuação de uma categoria específica obteve."
953
+
954
+ #: ../4.1.0/includes/qmn_options_email_tab.php:282
955
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:184
956
+ #: ../4.1.0/includes/qmn_options_text_tab.php:142
957
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:283
958
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:185
959
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:143
960
+ #: ../trunk/includes/qmn_options_email_tab.php:282
961
+ #: ../trunk/includes/qmn_options_results_page_tab.php:184
962
+ #: ../trunk/includes/qmn_options_text_tab.php:142
963
+ #: includes/qmn_options_email_tab.php:283
964
+ #: includes/qmn_options_results_page_tab.php:185
965
+ #: includes/qmn_options_text_tab.php:143
966
+ msgid "The average points from all categories."
967
+ msgstr "Os pontos médios de todas as categorias."
968
+
969
+ #: ../4.1.0/includes/qmn_options_email_tab.php:285
970
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:187
971
+ #: ../4.1.0/includes/qmn_options_text_tab.php:145
972
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:286
973
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:188
974
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:146
975
+ #: ../trunk/includes/qmn_options_email_tab.php:285
976
+ #: ../trunk/includes/qmn_options_results_page_tab.php:187
977
+ #: ../trunk/includes/qmn_options_text_tab.php:145
978
+ #: includes/qmn_options_email_tab.php:286
979
+ #: includes/qmn_options_results_page_tab.php:188
980
+ #: includes/qmn_options_text_tab.php:146
981
+ msgid "The average score from all categories."
982
+ msgstr "Pontuação média de todas as categorias."
983
+
984
+ #: ../4.1.0/includes/qmn_options_email_tab.php:288
985
+ #: ../4.1.0/includes/qmn_options_text_tab.php:148
986
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:289
987
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:149
988
+ #: ../trunk/includes/qmn_options_email_tab.php:288
989
+ #: ../trunk/includes/qmn_options_text_tab.php:148
990
+ #: includes/qmn_options_email_tab.php:289
991
+ #: includes/qmn_options_text_tab.php:149
992
+ msgid "The question that the user answered"
993
+ msgstr "A pergunta que o usuário respondeu"
994
+
995
+ #: ../4.1.0/includes/qmn_options_email_tab.php:291
996
+ #: ../4.1.0/includes/qmn_options_text_tab.php:151
997
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:292
998
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:152
999
+ #: ../trunk/includes/qmn_options_email_tab.php:291
1000
+ #: ../trunk/includes/qmn_options_text_tab.php:151
1001
+ #: includes/qmn_options_email_tab.php:292
1002
+ #: includes/qmn_options_text_tab.php:152
1003
+ msgid "The answer the user gave for the question"
1004
+ msgstr "A resposta que o usuário deu para a pergunta"
1005
+
1006
+ #: ../4.1.0/includes/qmn_options_email_tab.php:294
1007
+ #: ../4.1.0/includes/qmn_options_text_tab.php:154
1008
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:295
1009
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:155
1010
+ #: ../trunk/includes/qmn_options_email_tab.php:294
1011
+ #: ../trunk/includes/qmn_options_text_tab.php:154
1012
+ #: includes/qmn_options_email_tab.php:295
1013
+ #: includes/qmn_options_text_tab.php:155
1014
+ msgid "The correct answer for the question"
1015
+ msgstr "A resposta correta para a pergunta"
1016
+
1017
+ #: ../4.1.0/includes/qmn_options_email_tab.php:297
1018
+ #: ../4.1.0/includes/qmn_options_text_tab.php:157
1019
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:298
1020
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:158
1021
+ #: ../trunk/includes/qmn_options_email_tab.php:297
1022
+ #: ../trunk/includes/qmn_options_text_tab.php:157
1023
+ #: includes/qmn_options_email_tab.php:298
1024
+ #: includes/qmn_options_text_tab.php:158
1025
+ msgid "The comments the user provided in the comment field for the question"
1026
+ msgstr ""
1027
+ "Os comentários do usuário fornecidos no campo de comentários para a questão"
1028
+
1029
+ #: ../4.1.0/includes/qmn_options_email_tab.php:300
1030
+ #: ../4.1.0/includes/qmn_options_text_tab.php:160
1031
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:301
1032
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:161
1033
+ #: ../trunk/includes/qmn_options_email_tab.php:300
1034
+ #: ../trunk/includes/qmn_options_text_tab.php:160
1035
+ #: includes/qmn_options_email_tab.php:301
1036
+ #: includes/qmn_options_text_tab.php:161
1037
+ msgid "Reason why the correct answer is the correct answer"
1038
+ msgstr "Razão pela qual a resposta está correta"
1039
+
1040
+ #: ../4.1.0/includes/qmn_options_email_tab.php:303
1041
+ #: ../4.1.0/includes/qmn_options_text_tab.php:163
1042
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:304
1043
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:164
1044
+ #: ../trunk/includes/qmn_options_email_tab.php:303
1045
+ #: ../trunk/includes/qmn_options_text_tab.php:163
1046
+ #: includes/qmn_options_email_tab.php:304
1047
+ #: includes/qmn_options_text_tab.php:164
1048
+ msgid "The Current Date"
1049
+ msgstr "Data atual"
1050
+
1051
+ #: ../4.1.0/includes/qmn_options_email_tab.php:318
1052
+ #: ../4.1.0/includes/qmn_options_email_tab.php:517
1053
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:319
1054
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:518
1055
+ #: ../trunk/includes/qmn_options_email_tab.php:318
1056
+ #: ../trunk/includes/qmn_options_email_tab.php:517
1057
+ #: includes/qmn_options_email_tab.php:319
1058
+ #: includes/qmn_options_email_tab.php:518
1059
+ msgid "Save Email Templates And Settings"
1060
+ msgstr "Salvar modelo de e-mail e configurações"
1061
+
1062
+ #: ../4.1.0/includes/qmn_options_email_tab.php:322
1063
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:323
1064
+ #: ../trunk/includes/qmn_options_email_tab.php:322
1065
+ #: includes/qmn_options_email_tab.php:323
1066
+ msgid "Send user email upon completion?"
1067
+ msgstr "Enviar e-mail do usuário após a conclusão?"
1068
+
1069
+ #: ../4.1.0/includes/qmn_options_email_tab.php:329
1070
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:330
1071
+ #: ../trunk/includes/qmn_options_email_tab.php:329
1072
+ #: includes/qmn_options_email_tab.php:330
1073
+ msgid "Send admin email upon completion?"
1074
+ msgstr "Enviar e-mail de administração após a conclusão?"
1075
+
1076
+ #: ../4.1.0/includes/qmn_options_email_tab.php:336
1077
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:337
1078
+ #: ../trunk/includes/qmn_options_email_tab.php:336
1079
+ #: includes/qmn_options_email_tab.php:337
1080
+ msgid ""
1081
+ "What emails should we send the admin email to? Separate emails with a comma."
1082
+ msgstr ""
1083
+ "Qual endereços de e-mails que devemos enviar para administração? Separar e-"
1084
+ "mails com uma vírgula."
1085
+
1086
+ #: ../4.1.0/includes/qmn_options_email_tab.php:340
1087
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:341
1088
+ #: ../trunk/includes/qmn_options_email_tab.php:340
1089
+ #: includes/qmn_options_email_tab.php:341
1090
+ msgid "What is the From Name for the email sent to users and admin?"
1091
+ msgstr "Qual é o nome a partir do e-mail enviado aos usuários e administrador?"
1092
+
1093
+ #: ../4.1.0/includes/qmn_options_email_tab.php:346
1094
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:347
1095
+ #: ../trunk/includes/qmn_options_email_tab.php:346
1096
+ #: includes/qmn_options_email_tab.php:347
1097
+ msgid "Email Sent To User"
1098
+ msgstr "e-mail enviado ao usuário"
1099
+
1100
+ #: ../4.1.0/includes/qmn_options_email_tab.php:347
1101
+ #: ../4.1.0/includes/qmn_options_email_tab.php:425
1102
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:348
1103
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:426
1104
+ #: ../trunk/includes/qmn_options_email_tab.php:347
1105
+ #: ../trunk/includes/qmn_options_email_tab.php:425
1106
+ #: includes/qmn_options_email_tab.php:348
1107
+ #: includes/qmn_options_email_tab.php:426
1108
+ msgid "Add New User Email"
1109
+ msgstr "Adicionar novo usuário de e-mail"
1110
+
1111
+ #: ../4.1.0/includes/qmn_options_email_tab.php:352
1112
+ #: ../4.1.0/includes/qmn_options_email_tab.php:418
1113
+ #: ../4.1.0/includes/qmn_options_email_tab.php:439
1114
+ #: ../4.1.0/includes/qmn_options_email_tab.php:505
1115
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:199
1116
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:256
1117
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:353
1118
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:419
1119
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:440
1120
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:506
1121
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:206
1122
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:270
1123
+ #: ../trunk/includes/qmn_options_email_tab.php:352
1124
+ #: ../trunk/includes/qmn_options_email_tab.php:418
1125
+ #: ../trunk/includes/qmn_options_email_tab.php:439
1126
+ #: ../trunk/includes/qmn_options_email_tab.php:505
1127
+ #: ../trunk/includes/qmn_options_results_page_tab.php:199
1128
+ #: ../trunk/includes/qmn_options_results_page_tab.php:256
1129
+ #: includes/qmn_options_email_tab.php:353
1130
+ #: includes/qmn_options_email_tab.php:419
1131
+ #: includes/qmn_options_email_tab.php:440
1132
+ #: includes/qmn_options_email_tab.php:506
1133
+ #: includes/qmn_options_results_page_tab.php:206
1134
+ #: includes/qmn_options_results_page_tab.php:270
1135
+ msgid "Score Greater Than Or Equal To"
1136
+ msgstr "Escore maior ou igual a"
1137
+
1138
+ #: ../4.1.0/includes/qmn_options_email_tab.php:353
1139
+ #: ../4.1.0/includes/qmn_options_email_tab.php:419
1140
+ #: ../4.1.0/includes/qmn_options_email_tab.php:440
1141
+ #: ../4.1.0/includes/qmn_options_email_tab.php:506
1142
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:200
1143
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:257
1144
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:354
1145
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:420
1146
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:441
1147
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:507
1148
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:207
1149
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:271
1150
+ #: ../trunk/includes/qmn_options_email_tab.php:353
1151
+ #: ../trunk/includes/qmn_options_email_tab.php:419
1152
+ #: ../trunk/includes/qmn_options_email_tab.php:440
1153
+ #: ../trunk/includes/qmn_options_email_tab.php:506
1154
+ #: ../trunk/includes/qmn_options_results_page_tab.php:200
1155
+ #: ../trunk/includes/qmn_options_results_page_tab.php:257
1156
+ #: includes/qmn_options_email_tab.php:354
1157
+ #: includes/qmn_options_email_tab.php:420
1158
+ #: includes/qmn_options_email_tab.php:441
1159
+ #: includes/qmn_options_email_tab.php:507
1160
+ #: includes/qmn_options_results_page_tab.php:207
1161
+ #: includes/qmn_options_results_page_tab.php:271
1162
+ msgid "Score Less Than Or Equal To"
1163
+ msgstr "Escore menor ou igual a"
1164
+
1165
+ #: ../4.1.0/includes/qmn_options_email_tab.php:354
1166
+ #: ../4.1.0/includes/qmn_options_email_tab.php:420
1167
+ #: ../4.1.0/includes/qmn_options_email_tab.php:441
1168
+ #: ../4.1.0/includes/qmn_options_email_tab.php:507
1169
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:355
1170
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:421
1171
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:442
1172
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:508
1173
+ #: ../trunk/includes/qmn_options_email_tab.php:354
1174
+ #: ../trunk/includes/qmn_options_email_tab.php:420
1175
+ #: ../trunk/includes/qmn_options_email_tab.php:441
1176
+ #: ../trunk/includes/qmn_options_email_tab.php:507
1177
+ #: includes/qmn_options_email_tab.php:355
1178
+ #: includes/qmn_options_email_tab.php:421
1179
+ #: includes/qmn_options_email_tab.php:442
1180
+ #: includes/qmn_options_email_tab.php:508
1181
+ msgid "Subject"
1182
+ msgstr "Assunto"
1183
+
1184
+ #: ../4.1.0/includes/qmn_options_email_tab.php:355
1185
+ #: ../4.1.0/includes/qmn_options_email_tab.php:421
1186
+ #: ../4.1.0/includes/qmn_options_email_tab.php:442
1187
+ #: ../4.1.0/includes/qmn_options_email_tab.php:508
1188
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:356
1189
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:422
1190
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:443
1191
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:509
1192
+ #: ../trunk/includes/qmn_options_email_tab.php:355
1193
+ #: ../trunk/includes/qmn_options_email_tab.php:421
1194
+ #: ../trunk/includes/qmn_options_email_tab.php:442
1195
+ #: ../trunk/includes/qmn_options_email_tab.php:508
1196
+ #: includes/qmn_options_email_tab.php:356
1197
+ #: includes/qmn_options_email_tab.php:422
1198
+ #: includes/qmn_options_email_tab.php:443
1199
+ #: includes/qmn_options_email_tab.php:509
1200
+ msgid "Email To Send"
1201
+ msgstr "Enviar e-mail para"
1202
+
1203
+ #: ../4.1.0/includes/qmn_options_email_tab.php:433
1204
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:434
1205
+ #: ../trunk/includes/qmn_options_email_tab.php:433
1206
+ #: includes/qmn_options_email_tab.php:434
1207
+ msgid "Email Sent To Admin"
1208
+ msgstr "Enviar e-mail para admin"
1209
+
1210
+ #: ../4.1.0/includes/qmn_options_email_tab.php:434
1211
+ #: ../4.1.0/includes/qmn_options_email_tab.php:512
1212
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:435
1213
+ #: ../quiz_master_next/includes/qmn_options_email_tab.php:513
1214
+ #: ../trunk/includes/qmn_options_email_tab.php:434
1215
+ #: ../trunk/includes/qmn_options_email_tab.php:512
1216
+ #: includes/qmn_options_email_tab.php:435
1217
+ #: includes/qmn_options_email_tab.php:513
1218
+ msgid "Add New Admin Email"
1219
+ msgstr "Adicionar novo e-mail de administrador"
1220
+
1221
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:5
1222
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:6
1223
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:5
1224
+ #: includes/qmn_options_leaderboard_tab.php:6
1225
+ msgid "Leaderboard"
1226
+ msgstr "Classificação"
1227
+
1228
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:24
1229
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:25
1230
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:24
1231
+ #: includes/qmn_options_leaderboard_tab.php:25
1232
+ msgid "The leaderboards has been updated successfully."
1233
+ msgstr "As tabelas de classificação foi atualizado com sucesso."
1234
+
1235
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:51
1236
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:52
1237
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:51
1238
+ #: includes/qmn_options_leaderboard_tab.php:52
1239
+ msgid "The name of the user who is in first place"
1240
+ msgstr "O nome do usuário que está em primeiro lugar"
1241
+
1242
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:52
1243
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:53
1244
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:52
1245
+ #: includes/qmn_options_leaderboard_tab.php:53
1246
+ msgid "The score from the first place's quiz"
1247
+ msgstr "A pontuação do questionário do primeiro lugar"
1248
+
1249
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:56
1250
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:57
1251
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:56
1252
+ #: includes/qmn_options_leaderboard_tab.php:57
1253
+ msgid "The name of the user who is in second place"
1254
+ msgstr "O nome do usuário que está em segundo lugar"
1255
+
1256
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:57
1257
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:58
1258
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:57
1259
+ #: includes/qmn_options_leaderboard_tab.php:58
1260
+ msgid "The score from the second place's quiz"
1261
+ msgstr "A pontuação do teste do segundo lugar"
1262
+
1263
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:61
1264
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:62
1265
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:61
1266
+ #: includes/qmn_options_leaderboard_tab.php:62
1267
+ msgid "The name of the user who is in third place"
1268
+ msgstr "O nome do usuário que está em terceiro lugar"
1269
+
1270
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:62
1271
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:63
1272
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:62
1273
+ #: includes/qmn_options_leaderboard_tab.php:63
1274
+ msgid "The score from the third place's quiz"
1275
+ msgstr "A pontuação do teste do terceiro lugar"
1276
+
1277
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:66
1278
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:67
1279
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:66
1280
+ #: includes/qmn_options_leaderboard_tab.php:67
1281
+ msgid "The name of the user who is in fourth place"
1282
+ msgstr "O nome do usuário que está em quarto lugar"
1283
+
1284
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:67
1285
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:68
1286
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:67
1287
+ #: includes/qmn_options_leaderboard_tab.php:68
1288
+ msgid "The score from the fourth place's quiz"
1289
+ msgstr "A pontuação do teste a quarta do lugar"
1290
+
1291
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:71
1292
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:72
1293
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:71
1294
+ #: includes/qmn_options_leaderboard_tab.php:72
1295
+ msgid "The name of the user who is in fifth place"
1296
+ msgstr "O nome do usuário que está em quinto lugar"
1297
+
1298
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:72
1299
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:73
1300
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:72
1301
+ #: includes/qmn_options_leaderboard_tab.php:73
1302
+ msgid "The score from the fifth place's quiz"
1303
+ msgstr "A pontuação do teste do quinto lugar"
1304
+
1305
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:79
1306
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:107
1307
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:80
1308
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:108
1309
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:79
1310
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:107
1311
+ #: includes/qmn_options_leaderboard_tab.php:80
1312
+ #: includes/qmn_options_leaderboard_tab.php:108
1313
+ msgid "Save Leaderboard Options"
1314
+ msgstr "Salvar opções de Classificações"
1315
+
1316
+ #: ../4.1.0/includes/qmn_options_leaderboard_tab.php:88
1317
+ #: ../quiz_master_next/includes/qmn_options_leaderboard_tab.php:89
1318
+ #: ../trunk/includes/qmn_options_leaderboard_tab.php:88
1319
+ #: includes/qmn_options_leaderboard_tab.php:89
1320
+ msgid "Leaderboard Template"
1321
+ msgstr "Modelos de Classificação"
1322
+
1323
+ #: ../4.1.0/includes/qmn_options_option_tab.php:5
1324
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:6
1325
+ #: ../trunk/includes/qmn_options_option_tab.php:5
1326
+ #: includes/qmn_options_option_tab.php:6
1327
+ msgid "Options"
1328
+ msgstr "Opções"
1329
+
1330
+ #: ../4.1.0/includes/qmn_options_option_tab.php:42
1331
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:43
1332
+ #: ../trunk/includes/qmn_options_option_tab.php:42
1333
+ #: includes/qmn_options_option_tab.php:43
1334
+ msgid "The options has been updated successfully."
1335
+ msgstr "As Opções foram atualizadas com sucesso."
1336
+
1337
+ #: ../4.1.0/includes/qmn_options_option_tab.php:83
1338
+ #: ../4.1.0/includes/qmn_options_option_tab.php:220
1339
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:84
1340
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:221
1341
+ #: ../trunk/includes/qmn_options_option_tab.php:83
1342
+ #: ../trunk/includes/qmn_options_option_tab.php:220
1343
+ #: includes/qmn_options_option_tab.php:84
1344
+ #: includes/qmn_options_option_tab.php:221
1345
+ msgid "Save Options"
1346
+ msgstr "Salvar Opções"
1347
+
1348
+ #: ../4.1.0/includes/qmn_options_option_tab.php:91
1349
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:92
1350
+ #: ../trunk/includes/qmn_options_option_tab.php:91
1351
+ #: includes/qmn_options_option_tab.php:92
1352
+ msgid "Which system is this quiz graded on?"
1353
+ msgstr "Escolha uma opção de avaliação"
1354
+
1355
+ #: ../4.1.0/includes/qmn_options_option_tab.php:93
1356
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:94
1357
+ #: ../trunk/includes/qmn_options_option_tab.php:93
1358
+ #: includes/qmn_options_option_tab.php:94
1359
+ msgid "Correct/Incorrect"
1360
+ msgstr "Correto/Incorreto"
1361
+
1362
+ #: ../4.1.0/includes/qmn_options_option_tab.php:94
1363
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:95
1364
+ #: ../trunk/includes/qmn_options_option_tab.php:94
1365
+ #: includes/qmn_options_option_tab.php:95
1366
+ msgid "Points"
1367
+ msgstr "Pontos"
1368
+
1369
+ #: ../4.1.0/includes/qmn_options_option_tab.php:95
1370
+ #: ../4.1.0/includes/qmn_results.php:254
1371
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:96
1372
+ #: ../quiz_master_next/includes/qmn_results.php:258
1373
+ #: ../trunk/includes/qmn_options_option_tab.php:95
1374
+ #: ../trunk/includes/qmn_results.php:254
1375
+ #: includes/qmn_options_option_tab.php:96 includes/qmn_results.php:258
1376
+ msgid "Not Graded"
1377
+ msgstr "Sem Classificação"
1378
+
1379
+ #: ../4.1.0/includes/qmn_options_option_tab.php:99
1380
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:100
1381
+ #: ../trunk/includes/qmn_options_option_tab.php:99
1382
+ #: includes/qmn_options_option_tab.php:100
1383
+ msgid "Should the user be required to be logged in to take this quiz?"
1384
+ msgstr "O usuário deve estar logado para fazer este teste?"
1385
+
1386
+ #: ../4.1.0/includes/qmn_options_option_tab.php:106
1387
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:107
1388
+ #: ../trunk/includes/qmn_options_option_tab.php:106
1389
+ #: includes/qmn_options_option_tab.php:107
1390
+ msgid ""
1391
+ "How many questions per page would you like? (Leave 0 for all questions on "
1392
+ "one page)"
1393
+ msgstr ""
1394
+ "Quantas perguntas por página ? (Deixe 0 para todas as perguntas em uma "
1395
+ "página)"
1396
+
1397
+ #: ../4.1.0/includes/qmn_options_option_tab.php:112
1398
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:113
1399
+ #: ../trunk/includes/qmn_options_option_tab.php:112
1400
+ #: includes/qmn_options_option_tab.php:113
1401
+ msgid ""
1402
+ "How many minutes does the user have to finish the quiz? (Leave 0 for no time "
1403
+ "limit)"
1404
+ msgstr ""
1405
+ "Quantos minutos que o usuário tem que terminar o teste? (Deixe 0 para nenhum "
1406
+ "limite de tempo)"
1407
+
1408
+ #: ../4.1.0/includes/qmn_options_option_tab.php:118
1409
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:119
1410
+ #: ../trunk/includes/qmn_options_option_tab.php:118
1411
+ #: includes/qmn_options_option_tab.php:119
1412
+ msgid ""
1413
+ "How many times can a user take this quiz? (Leave 0 for as many times as the "
1414
+ "user wants to. Currently only works for registered users)"
1415
+ msgstr ""
1416
+ "Quantas vezes um usuário pode fazer o teste? (Deixe 0 para o número de "
1417
+ "vezes que o usuário quer. Atualmente só funciona para usuários registrados)"
1418
+
1419
+ #: ../4.1.0/includes/qmn_options_option_tab.php:124
1420
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:125
1421
+ #: ../trunk/includes/qmn_options_option_tab.php:124
1422
+ #: includes/qmn_options_option_tab.php:125
1423
+ msgid ""
1424
+ "How many total entries can this quiz have? (Leave 0 for unlimited entries"
1425
+ msgstr ""
1426
+ "Quantas entradas no total pode ter este questionário? (Deixe 0 para entradas "
1427
+ "ilimitadas)"
1428
+
1429
+ #: ../4.1.0/includes/qmn_options_option_tab.php:130
1430
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:131
1431
+ #: ../trunk/includes/qmn_options_option_tab.php:130
1432
+ #: includes/qmn_options_option_tab.php:131
1433
+ msgid ""
1434
+ "How many questions should be loaded for quiz? (Leave 0 to load all questions)"
1435
+ msgstr ""
1436
+ "Quantas perguntas devem ser carregados para teste? (Deixe 0 para carregar "
1437
+ "todas as perguntas)"
1438
+
1439
+ #: ../4.1.0/includes/qmn_options_option_tab.php:136
1440
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:137
1441
+ #: ../trunk/includes/qmn_options_option_tab.php:136
1442
+ #: includes/qmn_options_option_tab.php:137
1443
+ msgid ""
1444
+ "What time-frame should the user be able to access the quiz? (Leave blank if "
1445
+ "the user can access anytime)"
1446
+ msgstr ""
1447
+ "O espaço de tempo que o usuário deve ser capaz de acessar o questionário? "
1448
+ "(Deixe em branco se o usuário pode acessar a qualquer momento)"
1449
+
1450
+ #: ../4.1.0/includes/qmn_options_option_tab.php:138
1451
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:139
1452
+ #: ../trunk/includes/qmn_options_option_tab.php:138
1453
+ #: includes/qmn_options_option_tab.php:139
1454
+ msgid "start date"
1455
+ msgstr "data de início"
1456
+
1457
+ #: ../4.1.0/includes/qmn_options_option_tab.php:141
1458
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:142
1459
+ #: ../trunk/includes/qmn_options_option_tab.php:141
1460
+ #: includes/qmn_options_option_tab.php:142
1461
+ msgid "end date"
1462
+ msgstr "data final"
1463
+
1464
+ #: ../4.1.0/includes/qmn_options_option_tab.php:145
1465
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:146
1466
+ #: ../trunk/includes/qmn_options_option_tab.php:145
1467
+ #: includes/qmn_options_option_tab.php:146
1468
+ msgid ""
1469
+ "Are the questions random? (Question Order will not apply if this is yes)"
1470
+ msgstr ""
1471
+ "São as perguntas aleatórias? (Pergunta Ordem não será aplicada se este é sim)"
1472
+
1473
+ #: ../4.1.0/includes/qmn_options_option_tab.php:147
1474
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:148
1475
+ #: ../trunk/includes/qmn_options_option_tab.php:147
1476
+ #: includes/qmn_options_option_tab.php:148
1477
+ msgid "Random Questions"
1478
+ msgstr "Questões Aleatórias"
1479
+
1480
+ #: ../4.1.0/includes/qmn_options_option_tab.php:148
1481
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:149
1482
+ #: ../trunk/includes/qmn_options_option_tab.php:148
1483
+ #: includes/qmn_options_option_tab.php:149
1484
+ msgid "Random Questions And Answers"
1485
+ msgstr "Perguntas e Respostas aleatórias"
1486
+
1487
+ #: ../4.1.0/includes/qmn_options_option_tab.php:153
1488
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:154
1489
+ #: ../trunk/includes/qmn_options_option_tab.php:153
1490
+ #: includes/qmn_options_option_tab.php:154
1491
+ msgid ""
1492
+ "Would you like to ask for the contact information at the beginning or at the "
1493
+ "end of the quiz?"
1494
+ msgstr "Iformações de contato no início ou no final do questionário?"
1495
+
1496
+ #: ../4.1.0/includes/qmn_options_option_tab.php:155
1497
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:156
1498
+ #: ../trunk/includes/qmn_options_option_tab.php:155
1499
+ #: includes/qmn_options_option_tab.php:156
1500
+ msgid "Beginning"
1501
+ msgstr "Inicio"
1502
+
1503
+ #: ../4.1.0/includes/qmn_options_option_tab.php:156
1504
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:157
1505
+ #: ../trunk/includes/qmn_options_option_tab.php:156
1506
+ #: includes/qmn_options_option_tab.php:157
1507
+ msgid "End"
1508
+ msgstr "Fim"
1509
+
1510
+ #: ../4.1.0/includes/qmn_options_option_tab.php:160
1511
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:161
1512
+ #: ../trunk/includes/qmn_options_option_tab.php:160
1513
+ #: includes/qmn_options_option_tab.php:161
1514
+ msgid ""
1515
+ "If a logged-in user takes the quiz, would you like them to be able to edit "
1516
+ "contact information? If set to no, the fields will not show up for logged in "
1517
+ "users; however, the users information will be saved for the fields."
1518
+ msgstr ""
1519
+ "Usuário poderá edita informações de contato? Se definido como não, os campos "
1520
+ "não vão aparecer para usuários logados; no entanto, a informação aos "
1521
+ "usuários será salvo para os campos."
1522
+
1523
+ #: ../4.1.0/includes/qmn_options_option_tab.php:167
1524
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:168
1525
+ #: ../trunk/includes/qmn_options_option_tab.php:167
1526
+ #: includes/qmn_options_option_tab.php:168
1527
+ msgid "Should we ask for users name?"
1528
+ msgstr "Nome de usuário"
1529
+
1530
+ #: ../4.1.0/includes/qmn_options_option_tab.php:170
1531
+ #: ../4.1.0/includes/qmn_options_option_tab.php:178
1532
+ #: ../4.1.0/includes/qmn_options_option_tab.php:186
1533
+ #: ../4.1.0/includes/qmn_options_option_tab.php:194
1534
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:171
1535
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:179
1536
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:187
1537
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:195
1538
+ #: ../trunk/includes/qmn_options_option_tab.php:170
1539
+ #: ../trunk/includes/qmn_options_option_tab.php:178
1540
+ #: ../trunk/includes/qmn_options_option_tab.php:186
1541
+ #: ../trunk/includes/qmn_options_option_tab.php:194
1542
+ #: includes/qmn_options_option_tab.php:171
1543
+ #: includes/qmn_options_option_tab.php:179
1544
+ #: includes/qmn_options_option_tab.php:187
1545
+ #: includes/qmn_options_option_tab.php:195
1546
+ msgid "Require"
1547
+ msgstr "Exigir"
1548
+
1549
+ #: ../4.1.0/includes/qmn_options_option_tab.php:175
1550
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:176
1551
+ #: ../trunk/includes/qmn_options_option_tab.php:175
1552
+ #: includes/qmn_options_option_tab.php:176
1553
+ msgid "Should we ask for users business?"
1554
+ msgstr "Empresa em que trabalha"
1555
+
1556
+ #: ../4.1.0/includes/qmn_options_option_tab.php:183
1557
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:184
1558
+ #: ../trunk/includes/qmn_options_option_tab.php:183
1559
+ #: includes/qmn_options_option_tab.php:184
1560
+ msgid "Should we ask for users email?"
1561
+ msgstr "Solicitar e-mail"
1562
+
1563
+ #: ../4.1.0/includes/qmn_options_option_tab.php:191
1564
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:192
1565
+ #: ../trunk/includes/qmn_options_option_tab.php:191
1566
+ #: includes/qmn_options_option_tab.php:192
1567
+ msgid "Should we ask for users phone number?"
1568
+ msgstr "Solicitar núero de telefone"
1569
+
1570
+ #: ../4.1.0/includes/qmn_options_option_tab.php:199
1571
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:200
1572
+ #: ../trunk/includes/qmn_options_option_tab.php:199
1573
+ #: includes/qmn_options_option_tab.php:200
1574
+ msgid "Would you like a place for the user to enter comments?"
1575
+ msgstr "Campo para usuário digitar comentário"
1576
+
1577
+ #: ../4.1.0/includes/qmn_options_option_tab.php:206
1578
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:207
1579
+ #: ../trunk/includes/qmn_options_option_tab.php:206
1580
+ #: includes/qmn_options_option_tab.php:207
1581
+ msgid "Show question number on quiz?"
1582
+ msgstr "Exibir número das questões?"
1583
+
1584
+ #: ../4.1.0/includes/qmn_options_option_tab.php:213
1585
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:214
1586
+ #: ../trunk/includes/qmn_options_option_tab.php:213
1587
+ #: includes/qmn_options_option_tab.php:214
1588
+ msgid "Show social media sharing buttons? (Twitter & Facebook)"
1589
+ msgstr ""
1590
+ "Mostrar botões de compartilhamento de mídia social ? (Twitter e Facebook)"
1591
+
1592
+ #: ../4.1.0/includes/qmn_options_preview_tab.php:5
1593
+ #: ../quiz_master_next/includes/qmn_options_preview_tab.php:6
1594
+ #: ../trunk/includes/qmn_options_preview_tab.php:5
1595
+ #: includes/qmn_options_preview_tab.php:6
1596
+ msgid "Preview"
1597
+ msgstr "Visualizar"
1598
+
1599
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:5
1600
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:6
1601
+ #: ../trunk/includes/qmn_options_questions_tab.php:5
1602
+ #: includes/qmn_options_questions_tab.php:6
1603
+ msgid "Questions"
1604
+ msgstr "Questões"
1605
+
1606
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:104
1607
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:105
1608
+ #: ../trunk/includes/qmn_options_questions_tab.php:104
1609
+ #: includes/qmn_options_questions_tab.php:105
1610
+ msgid "The question has been updated successfully."
1611
+ msgstr "A questão foi atualizado com sucesso."
1612
+
1613
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:131
1614
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:132
1615
+ #: ../trunk/includes/qmn_options_questions_tab.php:131
1616
+ #: includes/qmn_options_questions_tab.php:132
1617
+ msgid "The question has been deleted successfully."
1618
+ msgstr "A questão foi deletada com sucesso."
1619
+
1620
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:215
1621
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:216
1622
+ #: ../trunk/includes/qmn_options_questions_tab.php:215
1623
+ #: includes/qmn_options_questions_tab.php:216
1624
+ msgid "The question has been duplicated successfully."
1625
+ msgstr "A questão foi duplicada com sucesso."
1626
+
1627
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:308
1628
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:309
1629
+ #: ../trunk/includes/qmn_options_questions_tab.php:308
1630
+ #: includes/qmn_options_questions_tab.php:309
1631
+ msgid "The question has been created successfully."
1632
+ msgstr "A questão foi criada com sucesso."
1633
+
1634
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:453
1635
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:460
1636
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:591
1637
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:757
1638
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:454
1639
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:461
1640
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:593
1641
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:760
1642
+ #: ../trunk/includes/qmn_options_questions_tab.php:453
1643
+ #: ../trunk/includes/qmn_options_questions_tab.php:460
1644
+ #: ../trunk/includes/qmn_options_questions_tab.php:591
1645
+ #: ../trunk/includes/qmn_options_questions_tab.php:757
1646
+ #: includes/qmn_options_questions_tab.php:454
1647
+ #: includes/qmn_options_questions_tab.php:461
1648
+ #: includes/qmn_options_questions_tab.php:593
1649
+ #: includes/qmn_options_questions_tab.php:760
1650
+ msgid "Answer"
1651
+ msgstr "Resposta"
1652
+
1653
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:480
1654
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:727
1655
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:481
1656
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:729
1657
+ #: ../trunk/includes/qmn_options_questions_tab.php:480
1658
+ #: ../trunk/includes/qmn_options_questions_tab.php:727
1659
+ #: includes/qmn_options_questions_tab.php:481
1660
+ #: includes/qmn_options_questions_tab.php:729
1661
+ msgid "Add Question"
1662
+ msgstr "Adicionar Pergunta"
1663
+
1664
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:484
1665
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:485
1666
+ #: ../trunk/includes/qmn_options_questions_tab.php:484
1667
+ #: includes/qmn_options_questions_tab.php:485
1668
+ #, php-format
1669
+ msgid "One question"
1670
+ msgid_plural "%s questions"
1671
+ msgstr[0] "Uma questão"
1672
+ msgstr[1] "%s Questões"
1673
+
1674
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:556
1675
+ #: ../4.1.0/includes/qmn_quiz_admin.php:265
1676
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:557
1677
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:270
1678
+ #: ../trunk/includes/qmn_options_questions_tab.php:556
1679
+ #: ../trunk/includes/qmn_quiz_admin.php:265
1680
+ #: includes/qmn_options_questions_tab.php:557 includes/qmn_quiz_admin.php:270
1681
+ msgid "Edit"
1682
+ msgstr "Editar"
1683
+
1684
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:556
1685
+ #: ../4.1.0/includes/qmn_quiz_admin.php:267
1686
+ #: ../4.1.0/includes/qmn_quiz_admin.php:391
1687
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:557
1688
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:272
1689
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:397
1690
+ #: ../trunk/includes/qmn_options_questions_tab.php:556
1691
+ #: ../trunk/includes/qmn_quiz_admin.php:267
1692
+ #: ../trunk/includes/qmn_quiz_admin.php:391
1693
+ #: includes/qmn_options_questions_tab.php:557 includes/qmn_quiz_admin.php:272
1694
+ #: includes/qmn_quiz_admin.php:397
1695
+ msgid "Duplicate"
1696
+ msgstr "Duplicar"
1697
+
1698
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:556
1699
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:236
1700
+ #: ../4.1.0/includes/qmn_quiz_admin.php:268
1701
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:557
1702
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:247
1703
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:273
1704
+ #: ../trunk/includes/qmn_options_questions_tab.php:556
1705
+ #: ../trunk/includes/qmn_options_results_page_tab.php:236
1706
+ #: ../trunk/includes/qmn_quiz_admin.php:268
1707
+ #: includes/qmn_options_questions_tab.php:557
1708
+ #: includes/qmn_options_results_page_tab.php:247
1709
+ #: includes/qmn_quiz_admin.php:273
1710
+ msgid "Delete"
1711
+ msgstr "Apagar"
1712
+
1713
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:569
1714
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:712
1715
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:723
1716
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:737
1717
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:571
1718
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:714
1719
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:725
1720
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:740
1721
+ #: ../trunk/includes/qmn_options_questions_tab.php:569
1722
+ #: ../trunk/includes/qmn_options_questions_tab.php:712
1723
+ #: ../trunk/includes/qmn_options_questions_tab.php:723
1724
+ #: ../trunk/includes/qmn_options_questions_tab.php:737
1725
+ #: includes/qmn_options_questions_tab.php:571
1726
+ #: includes/qmn_options_questions_tab.php:714
1727
+ #: includes/qmn_options_questions_tab.php:725
1728
+ #: includes/qmn_options_questions_tab.php:740
1729
+ msgid "Question"
1730
+ msgstr "Pergunta"
1731
+
1732
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:580
1733
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:748
1734
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:582
1735
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:751
1736
+ #: ../trunk/includes/qmn_options_questions_tab.php:580
1737
+ #: ../trunk/includes/qmn_options_questions_tab.php:748
1738
+ #: includes/qmn_options_questions_tab.php:582
1739
+ #: includes/qmn_options_questions_tab.php:751
1740
+ msgid "Answers"
1741
+ msgstr "Respostas"
1742
+
1743
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:581
1744
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:749
1745
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:583
1746
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:752
1747
+ #: ../trunk/includes/qmn_options_questions_tab.php:581
1748
+ #: ../trunk/includes/qmn_options_questions_tab.php:749
1749
+ #: includes/qmn_options_questions_tab.php:583
1750
+ #: includes/qmn_options_questions_tab.php:752
1751
+ msgid "Points Worth"
1752
+ msgstr "Vale Pontos"
1753
+
1754
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:582
1755
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:750
1756
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:584
1757
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:753
1758
+ #: ../trunk/includes/qmn_options_questions_tab.php:582
1759
+ #: ../trunk/includes/qmn_options_questions_tab.php:750
1760
+ #: includes/qmn_options_questions_tab.php:584
1761
+ #: includes/qmn_options_questions_tab.php:753
1762
+ msgid "Correct Answer"
1763
+ msgstr "Resposta correta"
1764
+
1765
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:609
1766
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:772
1767
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:611
1768
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:775
1769
+ #: ../trunk/includes/qmn_options_questions_tab.php:609
1770
+ #: ../trunk/includes/qmn_options_questions_tab.php:772
1771
+ #: includes/qmn_options_questions_tab.php:611
1772
+ #: includes/qmn_options_questions_tab.php:775
1773
+ msgid "Add New Answer!"
1774
+ msgstr "Adicionar nova Resposta"
1775
+
1776
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:614
1777
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:777
1778
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:616
1779
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:780
1780
+ #: ../trunk/includes/qmn_options_questions_tab.php:614
1781
+ #: ../trunk/includes/qmn_options_questions_tab.php:777
1782
+ #: includes/qmn_options_questions_tab.php:616
1783
+ #: includes/qmn_options_questions_tab.php:780
1784
+ msgid "Correct Answer Info"
1785
+ msgstr "Informação da resposta correta"
1786
+
1787
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:621
1788
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:784
1789
+ #: ../4.1.0/includes/qmn_quiz.php:328
1790
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:623
1791
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:787
1792
+ #: ../quiz_master_next/includes/qmn_quiz.php:441
1793
+ #: ../trunk/includes/qmn_options_questions_tab.php:621
1794
+ #: ../trunk/includes/qmn_options_questions_tab.php:784
1795
+ #: ../trunk/includes/qmn_quiz.php:328
1796
+ #: includes/qmn_options_questions_tab.php:623
1797
+ #: includes/qmn_options_questions_tab.php:787 includes/qmn_quiz.php:441
1798
+ msgid "Hint"
1799
+ msgstr "Sugestão"
1800
+
1801
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:632
1802
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:710
1803
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:721
1804
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:795
1805
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:634
1806
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:712
1807
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:723
1808
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:798
1809
+ #: ../trunk/includes/qmn_options_questions_tab.php:632
1810
+ #: ../trunk/includes/qmn_options_questions_tab.php:710
1811
+ #: ../trunk/includes/qmn_options_questions_tab.php:721
1812
+ #: ../trunk/includes/qmn_options_questions_tab.php:795
1813
+ #: includes/qmn_options_questions_tab.php:634
1814
+ #: includes/qmn_options_questions_tab.php:712
1815
+ #: includes/qmn_options_questions_tab.php:723
1816
+ #: includes/qmn_options_questions_tab.php:798
1817
+ msgid "Question Type"
1818
+ msgstr "Tipo de pergunta"
1819
+
1820
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:650
1821
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:808
1822
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:652
1823
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:811
1824
+ #: ../trunk/includes/qmn_options_questions_tab.php:650
1825
+ #: ../trunk/includes/qmn_options_questions_tab.php:808
1826
+ #: includes/qmn_options_questions_tab.php:652
1827
+ #: includes/qmn_options_questions_tab.php:811
1828
+ msgid "Comment Field"
1829
+ msgstr "Comentários"
1830
+
1831
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:653
1832
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:810
1833
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:655
1834
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:813
1835
+ #: ../trunk/includes/qmn_options_questions_tab.php:653
1836
+ #: ../trunk/includes/qmn_options_questions_tab.php:810
1837
+ #: includes/qmn_options_questions_tab.php:655
1838
+ #: includes/qmn_options_questions_tab.php:813
1839
+ msgid "Small Text Field"
1840
+ msgstr "Campo de texto pequeno"
1841
+
1842
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:655
1843
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:811
1844
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:657
1845
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:814
1846
+ #: ../trunk/includes/qmn_options_questions_tab.php:655
1847
+ #: ../trunk/includes/qmn_options_questions_tab.php:811
1848
+ #: includes/qmn_options_questions_tab.php:657
1849
+ #: includes/qmn_options_questions_tab.php:814
1850
+ msgid "Large Text Field"
1851
+ msgstr "Campo de texto Grande"
1852
+
1853
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:657
1854
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:812
1855
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:659
1856
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:815
1857
+ #: ../trunk/includes/qmn_options_questions_tab.php:657
1858
+ #: ../trunk/includes/qmn_options_questions_tab.php:812
1859
+ #: includes/qmn_options_questions_tab.php:659
1860
+ #: includes/qmn_options_questions_tab.php:815
1861
+ msgid "None"
1862
+ msgstr "Nenhum"
1863
+
1864
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:661
1865
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:709
1866
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:720
1867
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:816
1868
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:663
1869
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:711
1870
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:722
1871
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:819
1872
+ #: ../trunk/includes/qmn_options_questions_tab.php:661
1873
+ #: ../trunk/includes/qmn_options_questions_tab.php:709
1874
+ #: ../trunk/includes/qmn_options_questions_tab.php:720
1875
+ #: ../trunk/includes/qmn_options_questions_tab.php:816
1876
+ #: includes/qmn_options_questions_tab.php:663
1877
+ #: includes/qmn_options_questions_tab.php:711
1878
+ #: includes/qmn_options_questions_tab.php:722
1879
+ #: includes/qmn_options_questions_tab.php:819
1880
+ msgid "Question Order"
1881
+ msgstr "Ordem das perguntas"
1882
+
1883
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:669
1884
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:824
1885
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:671
1886
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:827
1887
+ #: ../trunk/includes/qmn_options_questions_tab.php:669
1888
+ #: ../trunk/includes/qmn_options_questions_tab.php:824
1889
+ #: includes/qmn_options_questions_tab.php:671
1890
+ #: includes/qmn_options_questions_tab.php:827
1891
+ msgid "Required?"
1892
+ msgstr "Exigido?"
1893
+
1894
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:678
1895
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:711
1896
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:722
1897
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:833
1898
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:680
1899
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:713
1900
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:724
1901
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:836
1902
+ #: ../trunk/includes/qmn_options_questions_tab.php:678
1903
+ #: ../trunk/includes/qmn_options_questions_tab.php:711
1904
+ #: ../trunk/includes/qmn_options_questions_tab.php:722
1905
+ #: ../trunk/includes/qmn_options_questions_tab.php:833
1906
+ #: includes/qmn_options_questions_tab.php:680
1907
+ #: includes/qmn_options_questions_tab.php:713
1908
+ #: includes/qmn_options_questions_tab.php:724
1909
+ #: includes/qmn_options_questions_tab.php:836
1910
+ msgid "Category"
1911
+ msgstr "Categoria"
1912
+
1913
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:697
1914
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:852
1915
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:699
1916
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:855
1917
+ #: ../trunk/includes/qmn_options_questions_tab.php:697
1918
+ #: ../trunk/includes/qmn_options_questions_tab.php:852
1919
+ #: includes/qmn_options_questions_tab.php:699
1920
+ #: includes/qmn_options_questions_tab.php:855
1921
+ msgid ""
1922
+ "Required currently only works on open answer, number, accept, and captcha "
1923
+ "question types"
1924
+ msgstr ""
1925
+ "Necessário atualmente só funciona com resposta aberta, número, aceitar e "
1926
+ "tipos de captcha."
1927
+
1928
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:699
1929
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:701
1930
+ #: ../trunk/includes/qmn_options_questions_tab.php:699
1931
+ #: includes/qmn_options_questions_tab.php:701
1932
+ msgid "Edit Question"
1933
+ msgstr "Editar Pergunta"
1934
+
1935
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:854
1936
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:857
1937
+ #: ../trunk/includes/qmn_options_questions_tab.php:854
1938
+ #: includes/qmn_options_questions_tab.php:857
1939
+ msgid "Create Question"
1940
+ msgstr "Criar Pergunta"
1941
+
1942
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:859
1943
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:862
1944
+ #: ../trunk/includes/qmn_options_questions_tab.php:859
1945
+ #: includes/qmn_options_questions_tab.php:862
1946
+ msgid "Are you sure you want to delete this question?"
1947
+ msgstr "Tem certeza de que deseja excluir esta pergunta?"
1948
+
1949
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:864
1950
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:867
1951
+ #: ../trunk/includes/qmn_options_questions_tab.php:864
1952
+ #: includes/qmn_options_questions_tab.php:867
1953
+ msgid "Delete Question"
1954
+ msgstr "Apagar Perguntas"
1955
+
1956
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:869
1957
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:872
1958
+ #: ../trunk/includes/qmn_options_questions_tab.php:869
1959
+ #: includes/qmn_options_questions_tab.php:872
1960
+ msgid "Are you sure you want to duplicate this question?"
1961
+ msgstr "Tem certeza de que deseja duplicar esta pergunta?"
1962
+
1963
+ #: ../4.1.0/includes/qmn_options_questions_tab.php:874
1964
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:877
1965
+ #: ../trunk/includes/qmn_options_questions_tab.php:874
1966
+ #: includes/qmn_options_questions_tab.php:877
1967
+ msgid "Duplicate Question"
1968
+ msgstr "Duplicar Pergunta"
1969
+
1970
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:5
1971
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:6
1972
+ #: ../trunk/includes/qmn_options_results_page_tab.php:5
1973
+ #: includes/qmn_options_results_page_tab.php:6
1974
+ msgid "Results Pages"
1975
+ msgstr "Paginas de resultados"
1976
+
1977
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:40
1978
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:41
1979
+ #: ../trunk/includes/qmn_options_results_page_tab.php:40
1980
+ #: includes/qmn_options_results_page_tab.php:41
1981
+ msgid "The results page has been added successfully."
1982
+ msgstr "A Página de resultados foi adicionada com sucesso."
1983
+
1984
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:80
1985
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:81
1986
+ #: ../trunk/includes/qmn_options_results_page_tab.php:80
1987
+ #: includes/qmn_options_results_page_tab.php:81
1988
+ msgid "The results page has been saved successfully."
1989
+ msgstr "A Página de resultados foi salva com sucesso."
1990
+
1991
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:192
1992
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:265
1993
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:199
1994
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:280
1995
+ #: ../trunk/includes/qmn_options_results_page_tab.php:192
1996
+ #: ../trunk/includes/qmn_options_results_page_tab.php:265
1997
+ #: includes/qmn_options_results_page_tab.php:199
1998
+ #: includes/qmn_options_results_page_tab.php:280
1999
+ msgid "Save Results Pages"
2000
+ msgstr "Salvar página de resultados"
2001
+
2002
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:193
2003
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:270
2004
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:200
2005
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:285
2006
+ #: ../trunk/includes/qmn_options_results_page_tab.php:193
2007
+ #: ../trunk/includes/qmn_options_results_page_tab.php:270
2008
+ #: includes/qmn_options_results_page_tab.php:200
2009
+ #: includes/qmn_options_results_page_tab.php:285
2010
+ msgid "Add New Results Page"
2011
+ msgstr "Adicionar novas páginas de resultados"
2012
+
2013
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:201
2014
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:258
2015
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:208
2016
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:272
2017
+ #: ../trunk/includes/qmn_options_results_page_tab.php:201
2018
+ #: ../trunk/includes/qmn_options_results_page_tab.php:258
2019
+ #: includes/qmn_options_results_page_tab.php:208
2020
+ #: includes/qmn_options_results_page_tab.php:272
2021
+ msgid "Results Page Shown"
2022
+ msgstr "Página de Resultados"
2023
+
2024
+ #: ../4.1.0/includes/qmn_options_results_page_tab.php:236
2025
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:247
2026
+ #: ../trunk/includes/qmn_options_results_page_tab.php:236
2027
+ #: includes/qmn_options_results_page_tab.php:247
2028
+ msgid "Are you sure?"
2029
+ msgstr "Você tem certeza?"
2030
+
2031
+ #: ../4.1.0/includes/qmn_options_style_tab.php:5
2032
+ #: ../quiz_master_next/includes/qmn_options_style_tab.php:6
2033
+ #: ../trunk/includes/qmn_options_style_tab.php:5
2034
+ #: includes/qmn_options_style_tab.php:6
2035
+ msgid "Style"
2036
+ msgstr "Estilo"
2037
+
2038
+ #: ../4.1.0/includes/qmn_options_style_tab.php:25
2039
+ #: ../quiz_master_next/includes/qmn_options_style_tab.php:26
2040
+ #: ../trunk/includes/qmn_options_style_tab.php:25
2041
+ #: includes/qmn_options_style_tab.php:26
2042
+ msgid "The style has been saved successfully."
2043
+ msgstr "Estilo salvo com sucesso!"
2044
+
2045
+ #: ../4.1.0/includes/qmn_options_style_tab.php:64
2046
+ #: ../quiz_master_next/includes/qmn_options_style_tab.php:65
2047
+ #: ../trunk/includes/qmn_options_style_tab.php:64
2048
+ #: includes/qmn_options_style_tab.php:65
2049
+ msgid "Quiz Styles"
2050
+ msgstr "Estilo de Perguntas"
2051
+
2052
+ #: ../4.1.0/includes/qmn_options_style_tab.php:65
2053
+ #: ../quiz_master_next/includes/qmn_options_style_tab.php:66
2054
+ #: ../trunk/includes/qmn_options_style_tab.php:65
2055
+ #: includes/qmn_options_style_tab.php:66
2056
+ msgid "Choose your style:"
2057
+ msgstr "Escolha seu estilo"
2058
+
2059
+ #: ../4.1.0/includes/qmn_options_style_tab.php:87
2060
+ #: ../quiz_master_next/includes/qmn_options_style_tab.php:88
2061
+ #: ../trunk/includes/qmn_options_style_tab.php:87
2062
+ #: includes/qmn_options_style_tab.php:88
2063
+ msgid "Custom"
2064
+ msgstr "Personalizado"
2065
+
2066
+ #: ../4.1.0/includes/qmn_options_style_tab.php:93
2067
+ #: ../4.1.0/includes/qmn_options_style_tab.php:105
2068
+ #: ../quiz_master_next/includes/qmn_options_style_tab.php:94
2069
+ #: ../quiz_master_next/includes/qmn_options_style_tab.php:106
2070
+ #: ../trunk/includes/qmn_options_style_tab.php:93
2071
+ #: ../trunk/includes/qmn_options_style_tab.php:105
2072
+ #: includes/qmn_options_style_tab.php:94
2073
+ #: includes/qmn_options_style_tab.php:106
2074
+ msgid "Save Quiz Style"
2075
+ msgstr "Salvar Estilo de Questionário"
2076
+
2077
+ #: ../4.1.0/includes/qmn_options_style_tab.php:95
2078
+ #: ../quiz_master_next/includes/qmn_options_style_tab.php:96
2079
+ #: ../trunk/includes/qmn_options_style_tab.php:95
2080
+ #: includes/qmn_options_style_tab.php:96
2081
+ msgid "Custom Style CSS"
2082
+ msgstr "Estilo CSS personalizado"
2083
+
2084
+ #: ../4.1.0/includes/qmn_options_style_tab.php:96
2085
+ #: ../quiz_master_next/includes/qmn_options_style_tab.php:97
2086
+ #: ../trunk/includes/qmn_options_style_tab.php:96
2087
+ #: includes/qmn_options_style_tab.php:97
2088
+ msgid ""
2089
+ "For detailed help and guidance along with a list of different classes used "
2090
+ "in this plugin, please visit the following link:"
2091
+ msgstr ""
2092
+ "Para obter ajuda e orientação, juntamente com uma lista de diferentes "
2093
+ "classes usadas em este plugin detalhadas, por favor visite o seguinte link:"
2094
+
2095
+ #: ../4.1.0/includes/qmn_options_text_tab.php:5
2096
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:6
2097
+ #: ../trunk/includes/qmn_options_text_tab.php:5
2098
+ #: includes/qmn_options_text_tab.php:6
2099
+ msgid "Text"
2100
+ msgstr "texto"
2101
+
2102
+ #: ../4.1.0/includes/qmn_options_text_tab.php:41
2103
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:42
2104
+ #: ../trunk/includes/qmn_options_text_tab.php:41
2105
+ #: includes/qmn_options_text_tab.php:42
2106
+ msgid "The templates has been updated successfully."
2107
+ msgstr "Os modelos foram atualizados com sucesso"
2108
+
2109
+ #: ../4.1.0/includes/qmn_options_text_tab.php:72
2110
+ #: ../4.1.0/includes/qmn_quiz.php:1112
2111
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:73
2112
+ #: ../quiz_master_next/includes/qmn_quiz.php:1230
2113
+ #: ../trunk/includes/qmn_options_text_tab.php:72
2114
+ #: ../trunk/includes/qmn_quiz.php:1112 includes/qmn_options_text_tab.php:73
2115
+ #: includes/qmn_quiz.php:1230
2116
+ msgid "Previous"
2117
+ msgstr "Anterior"
2118
+
2119
+ #: ../4.1.0/includes/qmn_options_text_tab.php:168
2120
+ #: ../4.1.0/includes/qmn_options_text_tab.php:328
2121
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:169
2122
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:329
2123
+ #: ../trunk/includes/qmn_options_text_tab.php:168
2124
+ #: ../trunk/includes/qmn_options_text_tab.php:328
2125
+ #: includes/qmn_options_text_tab.php:169 includes/qmn_options_text_tab.php:329
2126
+ msgid "Save Templates"
2127
+ msgstr "Salvar modelos"
2128
+
2129
+ #: ../4.1.0/includes/qmn_options_text_tab.php:174
2130
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:175
2131
+ #: ../trunk/includes/qmn_options_text_tab.php:174
2132
+ #: includes/qmn_options_text_tab.php:175
2133
+ msgid "Message Templates"
2134
+ msgstr "Modelos de mensagens"
2135
+
2136
+ #: ../4.1.0/includes/qmn_options_text_tab.php:178
2137
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:179
2138
+ #: ../trunk/includes/qmn_options_text_tab.php:178
2139
+ #: includes/qmn_options_text_tab.php:179
2140
+ msgid "Message Displayed Before Quiz"
2141
+ msgstr "Mensagem exibida antes do questionário"
2142
+
2143
+ #: ../4.1.0/includes/qmn_options_text_tab.php:188
2144
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:189
2145
+ #: ../trunk/includes/qmn_options_text_tab.php:188
2146
+ #: includes/qmn_options_text_tab.php:189
2147
+ msgid "Message Displayed Before Comments Box If Enabled"
2148
+ msgstr "Mensagem exibida antes, se a caixa de comentários estiver ativa"
2149
+
2150
+ #: ../4.1.0/includes/qmn_options_text_tab.php:198
2151
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:199
2152
+ #: ../trunk/includes/qmn_options_text_tab.php:198
2153
+ #: includes/qmn_options_text_tab.php:199
2154
+ msgid "Message Displayed At End Of Quiz (Leave Blank To Omit Text Section)"
2155
+ msgstr ""
2156
+ "Mensagem exibida ao encerrar a avaliação (Deixe em branco para omitir esta "
2157
+ "seção)"
2158
+
2159
+ #: ../4.1.0/includes/qmn_options_text_tab.php:208
2160
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:209
2161
+ #: ../trunk/includes/qmn_options_text_tab.php:208
2162
+ #: includes/qmn_options_text_tab.php:209
2163
+ msgid "Message Displayed If User Has Tried Quiz Too Many Times"
2164
+ msgstr "Mensagem exibida se usuário tentar questionário várias vezes"
2165
+
2166
+ #: ../4.1.0/includes/qmn_options_text_tab.php:218
2167
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:219
2168
+ #: ../trunk/includes/qmn_options_text_tab.php:218
2169
+ #: includes/qmn_options_text_tab.php:219
2170
+ msgid ""
2171
+ "Message Displayed If User Is Not Logged In And Quiz Requires Users To Be "
2172
+ "Logged In"
2173
+ msgstr ""
2174
+ "Mensagem exibida Se o usuário não está logado e o Questionário requerer que "
2175
+ "os usuários devam estar conectados"
2176
+
2177
+ #: ../4.1.0/includes/qmn_options_text_tab.php:228
2178
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:229
2179
+ #: ../trunk/includes/qmn_options_text_tab.php:228
2180
+ #: includes/qmn_options_text_tab.php:229
2181
+ msgid "Message Displayed If Date Is Outside Scheduled Timeframe"
2182
+ msgstr "Mensagem exibida quando a data está fora do tempo programado"
2183
+
2184
+ #: ../4.1.0/includes/qmn_options_text_tab.php:238
2185
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:239
2186
+ #: ../trunk/includes/qmn_options_text_tab.php:238
2187
+ #: includes/qmn_options_text_tab.php:239
2188
+ msgid "Message Displayed If The Limit Of Total Entries Has Been Reached"
2189
+ msgstr "Mensagem exibida se ultrapassou o limite do total das entradas."
2190
+
2191
+ #: ../4.1.0/includes/qmn_options_text_tab.php:248
2192
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:249
2193
+ #: ../trunk/includes/qmn_options_text_tab.php:248
2194
+ #: includes/qmn_options_text_tab.php:249
2195
+ msgid "%QUESTIONS_ANSWERS% Text"
2196
+ msgstr "%QUESTIONS_ANSWERS% Texto"
2197
+
2198
+ #: ../4.1.0/includes/qmn_options_text_tab.php:261
2199
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:262
2200
+ #: ../trunk/includes/qmn_options_text_tab.php:261
2201
+ #: includes/qmn_options_text_tab.php:262
2202
+ msgid "Twitter Sharing Text"
2203
+ msgstr "Compartilhar texto Twitter"
2204
+
2205
+ #: ../4.1.0/includes/qmn_options_text_tab.php:278
2206
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:279
2207
+ #: ../trunk/includes/qmn_options_text_tab.php:278
2208
+ #: includes/qmn_options_text_tab.php:279
2209
+ msgid "Facebook Sharing Text"
2210
+ msgstr "Compartilhar Texto Facebook "
2211
+
2212
+ #: ../4.1.0/includes/qmn_options_text_tab.php:293
2213
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:294
2214
+ #: ../trunk/includes/qmn_options_text_tab.php:293
2215
+ #: includes/qmn_options_text_tab.php:294
2216
+ msgid "Other Templates"
2217
+ msgstr "Outros Modelos"
2218
+
2219
+ #: ../4.1.0/includes/qmn_options_text_tab.php:296
2220
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:297
2221
+ #: ../trunk/includes/qmn_options_text_tab.php:296
2222
+ #: includes/qmn_options_text_tab.php:297
2223
+ msgid "Text for submit button"
2224
+ msgstr "Texto para botão submeter"
2225
+
2226
+ #: ../4.1.0/includes/qmn_options_text_tab.php:300
2227
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:301
2228
+ #: ../trunk/includes/qmn_options_text_tab.php:300
2229
+ #: includes/qmn_options_text_tab.php:301
2230
+ msgid "Text for name field"
2231
+ msgstr "Texto para o Campo Nome"
2232
+
2233
+ #: ../4.1.0/includes/qmn_options_text_tab.php:304
2234
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:305
2235
+ #: ../trunk/includes/qmn_options_text_tab.php:304
2236
+ #: includes/qmn_options_text_tab.php:305
2237
+ msgid "Text for business field"
2238
+ msgstr "Texto para o Campo Empresa"
2239
+
2240
+ #: ../4.1.0/includes/qmn_options_text_tab.php:308
2241
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:309
2242
+ #: ../trunk/includes/qmn_options_text_tab.php:308
2243
+ #: includes/qmn_options_text_tab.php:309
2244
+ msgid "Text for email field"
2245
+ msgstr "Texto para o campo e-mail"
2246
+
2247
+ #: ../4.1.0/includes/qmn_options_text_tab.php:312
2248
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:313
2249
+ #: ../trunk/includes/qmn_options_text_tab.php:312
2250
+ #: includes/qmn_options_text_tab.php:313
2251
+ msgid "Text for phone number field"
2252
+ msgstr "Texto para o campo numero telefone"
2253
+
2254
+ #: ../4.1.0/includes/qmn_options_text_tab.php:316
2255
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:317
2256
+ #: ../trunk/includes/qmn_options_text_tab.php:316
2257
+ #: includes/qmn_options_text_tab.php:317
2258
+ msgid "Text for comments field"
2259
+ msgstr "Texto para o campo comentários"
2260
+
2261
+ #: ../4.1.0/includes/qmn_options_text_tab.php:320
2262
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:321
2263
+ #: ../trunk/includes/qmn_options_text_tab.php:320
2264
+ #: includes/qmn_options_text_tab.php:321
2265
+ msgid "Text for previous button"
2266
+ msgstr "Texto para o botão anterior"
2267
+
2268
+ #: ../4.1.0/includes/qmn_options_text_tab.php:324
2269
+ #: ../quiz_master_next/includes/qmn_options_text_tab.php:325
2270
+ #: ../trunk/includes/qmn_options_text_tab.php:324
2271
+ #: includes/qmn_options_text_tab.php:325
2272
+ msgid "Text for next button"
2273
+ msgstr "Texto para botão próximo "
2274
+
2275
+ #: ../4.1.0/includes/qmn_options_tools_tab.php:5
2276
+ #: ../4.1.0/includes/qmn_tools.php:53 ../4.1.0/mlw_quizmaster2.php:222
2277
+ #: ../quiz_master_next/includes/qmn_options_tools_tab.php:6
2278
+ #: ../quiz_master_next/includes/qmn_tools.php:58
2279
+ #: ../quiz_master_next/mlw_quizmaster2.php:222
2280
+ #: ../trunk/includes/qmn_options_tools_tab.php:5
2281
+ #: ../trunk/includes/qmn_tools.php:53 ../trunk/mlw_quizmaster2.php:222
2282
+ #: includes/qmn_options_tools_tab.php:6 includes/qmn_tools.php:58
2283
+ #: mlw_quizmaster2.php:222
2284
+ msgid "Tools"
2285
+ msgstr "Ferramentas"
2286
+
2287
+ #: ../4.1.0/includes/qmn_options_tools_tab.php:22
2288
+ #: ../quiz_master_next/includes/qmn_options_tools_tab.php:23
2289
+ #: ../trunk/includes/qmn_options_tools_tab.php:22
2290
+ #: includes/qmn_options_tools_tab.php:23
2291
+ msgid "The stats has been reset successfully."
2292
+ msgstr "Estatísticas resetadas com sucesso!"
2293
+
2294
+ #: ../4.1.0/includes/qmn_options_tools_tab.php:74
2295
+ #: ../quiz_master_next/includes/qmn_options_tools_tab.php:75
2296
+ #: ../trunk/includes/qmn_options_tools_tab.php:74
2297
+ #: includes/qmn_options_tools_tab.php:75
2298
+ msgid ""
2299
+ "Use this button to reset all the stats collected for this quiz (Quiz Views "
2300
+ "and Times Quiz Has Been Taken)."
2301
+ msgstr ""
2302
+ "Utilize este botão para repor todas as estatísticas coletadas para este "
2303
+ "questionário (Questionário Visualizações e vezes que o Questionário foi "
2304
+ "usado)."
2305
+
2306
+ #: ../4.1.0/includes/qmn_options_tools_tab.php:75
2307
+ #: ../quiz_master_next/includes/qmn_options_tools_tab.php:76
2308
+ #: ../trunk/includes/qmn_options_tools_tab.php:75
2309
+ #: includes/qmn_options_tools_tab.php:76
2310
+ msgid "Reset Quiz Views And Taken Stats"
2311
+ msgstr "Resetar questionário, pontos de vista e Estatísticas "
2312
+
2313
+ #: ../4.1.0/includes/qmn_options_tools_tab.php:86
2314
+ #: ../quiz_master_next/includes/qmn_options_tools_tab.php:87
2315
+ #: ../trunk/includes/qmn_options_tools_tab.php:86
2316
+ #: includes/qmn_options_tools_tab.php:87
2317
+ msgid ""
2318
+ "Are you sure you want to reset the stats to 0? All views and taken stats for "
2319
+ "this quiz will be reset. This is permanent and cannot be undone."
2320
+ msgstr ""
2321
+ "Tem certeza de que deseja redefinir as estatísticas para 0? Todos os pontos "
2322
+ "de vista e estatísticas tomadas para esse teste serão repostos. Isso é "
2323
+ "permanente e não pode ser desfeito."
2324
+
2325
+ #: ../4.1.0/includes/qmn_options_tools_tab.php:90
2326
+ #: ../quiz_master_next/includes/qmn_options_tools_tab.php:91
2327
+ #: ../trunk/includes/qmn_options_tools_tab.php:90
2328
+ #: includes/qmn_options_tools_tab.php:91
2329
+ msgid "Reset All Stats For Quiz"
2330
+ msgstr "Redefinir todas as estatísticas para Questionário"
2331
+
2332
+ #: ../4.1.0/includes/qmn_question_types.php:7
2333
+ #: ../quiz_master_next/includes/qmn_question_types.php:7
2334
+ #: ../trunk/includes/qmn_question_types.php:7
2335
+ #: includes/qmn_question_types.php:7
2336
+ msgid "Multiple Choice"
2337
+ msgstr "Multipla escolha"
2338
+
2339
+ #: ../4.1.0/includes/qmn_question_types.php:75
2340
+ #: ../quiz_master_next/includes/qmn_question_types.php:75
2341
+ #: ../trunk/includes/qmn_question_types.php:75
2342
+ #: includes/qmn_question_types.php:75
2343
+ msgid "Horizontal Multiple Choice"
2344
+ msgstr "Multipla escolha horizontal"
2345
+
2346
+ #: ../4.1.0/includes/qmn_question_types.php:143
2347
+ #: ../quiz_master_next/includes/qmn_question_types.php:143
2348
+ #: ../trunk/includes/qmn_question_types.php:143
2349
+ #: includes/qmn_question_types.php:143
2350
+ msgid "Drop Down"
2351
+ msgstr "Menu suspenso"
2352
+
2353
+ #: ../4.1.0/includes/qmn_question_types.php:208
2354
+ #: ../quiz_master_next/includes/qmn_question_types.php:208
2355
+ #: ../trunk/includes/qmn_question_types.php:208
2356
+ #: includes/qmn_question_types.php:208
2357
+ msgid "Small Open Answer"
2358
+ msgstr "Respostas curtas"
2359
+
2360
+ #: ../4.1.0/includes/qmn_question_types.php:257
2361
+ #: ../quiz_master_next/includes/qmn_question_types.php:257
2362
+ #: ../trunk/includes/qmn_question_types.php:257
2363
+ #: includes/qmn_question_types.php:257
2364
+ msgid "Multiple Response"
2365
+ msgstr "Resposta Multipla"
2366
+
2367
+ #: ../4.1.0/includes/qmn_question_types.php:332
2368
+ #: ../quiz_master_next/includes/qmn_question_types.php:332
2369
+ #: ../trunk/includes/qmn_question_types.php:332
2370
+ #: includes/qmn_question_types.php:332
2371
+ msgid "Large Open Answer"
2372
+ msgstr "Resposta Grande aberta"
2373
+
2374
+ #: ../4.1.0/includes/qmn_question_types.php:381
2375
+ #: ../quiz_master_next/includes/qmn_question_types.php:381
2376
+ #: ../trunk/includes/qmn_question_types.php:381
2377
+ #: includes/qmn_question_types.php:381
2378
+ msgid "Text Block"
2379
+ msgstr "Bloco de texto"
2380
+
2381
+ #: ../4.1.0/includes/qmn_question_types.php:396
2382
+ #: ../quiz_master_next/includes/qmn_question_types.php:396
2383
+ #: ../trunk/includes/qmn_question_types.php:396
2384
+ #: includes/qmn_question_types.php:396
2385
+ msgid "Number"
2386
+ msgstr "Numero"
2387
+
2388
+ #: ../4.1.0/includes/qmn_question_types.php:445
2389
+ #: ../quiz_master_next/includes/qmn_question_types.php:445
2390
+ #: ../trunk/includes/qmn_question_types.php:445
2391
+ #: includes/qmn_question_types.php:445
2392
+ msgid "Accept"
2393
+ msgstr "Aceitar"
2394
+
2395
+ #: ../4.1.0/includes/qmn_question_types.php:464
2396
+ #: ../quiz_master_next/includes/qmn_question_types.php:464
2397
+ #: ../trunk/includes/qmn_question_types.php:464
2398
+ #: includes/qmn_question_types.php:464
2399
+ msgid "Captcha"
2400
+ msgstr "captcha"
2401
+
2402
+ #: ../4.1.0/includes/qmn_question_types.php:505
2403
+ #: ../quiz_master_next/includes/qmn_question_types.php:505
2404
+ #: ../trunk/includes/qmn_question_types.php:505
2405
+ #: includes/qmn_question_types.php:505
2406
+ msgid "Horizontal Multiple Response"
2407
+ msgstr "Respostas múltiplas horizontais"
2408
+
2409
+ #: ../4.1.0/includes/qmn_quiz.php:214
2410
+ #: ../quiz_master_next/includes/qmn_quiz.php:326
2411
+ #: ../trunk/includes/qmn_quiz.php:214 includes/qmn_quiz.php:326
2412
+ msgid "Not a valid e-mail address!"
2413
+ msgstr "Endereço de e-mail inválido"
2414
+
2415
+ #: ../4.1.0/includes/qmn_quiz.php:215
2416
+ #: ../quiz_master_next/includes/qmn_quiz.php:327
2417
+ #: ../trunk/includes/qmn_quiz.php:215 includes/qmn_quiz.php:327
2418
+ msgid "This field must be a number!"
2419
+ msgstr "Este campo só aceita números!"
2420
+
2421
+ #: ../4.1.0/includes/qmn_quiz.php:216
2422
+ #: ../quiz_master_next/includes/qmn_quiz.php:328
2423
+ #: ../trunk/includes/qmn_quiz.php:216 includes/qmn_quiz.php:328
2424
+ msgid "The entered text is not correct!"
2425
+ msgstr "Texto digitado não está correto!"
2426
+
2427
+ #: ../4.1.0/includes/qmn_quiz.php:217
2428
+ #: ../quiz_master_next/includes/qmn_quiz.php:329
2429
+ #: ../trunk/includes/qmn_quiz.php:217 includes/qmn_quiz.php:329
2430
+ msgid "Please complete all required fields!"
2431
+ msgstr "Por Favor preencha todos campos obrigatórios!"
2432
+
2433
+ #: ../4.1.0/includes/qmn_quiz_admin.php:181 ../4.1.0/mlw_quizmaster2.php:217
2434
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:186
2435
+ #: ../quiz_master_next/mlw_quizmaster2.php:217
2436
+ #: ../trunk/includes/qmn_quiz_admin.php:181 ../trunk/mlw_quizmaster2.php:217
2437
+ #: includes/qmn_quiz_admin.php:186 mlw_quizmaster2.php:217
2438
+ msgid "Quizzes"
2439
+ msgstr "Testes"
2440
+
2441
+ #: ../4.1.0/includes/qmn_quiz_admin.php:181
2442
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:186
2443
+ #: ../trunk/includes/qmn_quiz_admin.php:181 includes/qmn_quiz_admin.php:186
2444
+ msgid "Add New"
2445
+ msgstr "Adicionar Novo"
2446
+
2447
+ #: ../4.1.0/includes/qmn_quiz_admin.php:199
2448
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:204
2449
+ #: ../trunk/includes/qmn_quiz_admin.php:199 includes/qmn_quiz_admin.php:204
2450
+ #, php-format
2451
+ msgid "One quiz"
2452
+ msgid_plural "%s quizzes"
2453
+ msgstr[0] "Uma questão"
2454
+ msgstr[1] "%s questões"
2455
+
2456
+ #: ../4.1.0/includes/qmn_quiz_admin.php:244
2457
+ #: ../4.1.0/includes/qmn_quiz_admin.php:290
2458
+ #: ../4.1.0/includes/qmn_quiz_admin.php:358
2459
+ #: ../4.1.0/includes/qmn_results.php:205
2460
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:249
2461
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:295
2462
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:364
2463
+ #: ../quiz_master_next/includes/qmn_results.php:209
2464
+ #: ../trunk/includes/qmn_quiz_admin.php:244
2465
+ #: ../trunk/includes/qmn_quiz_admin.php:290
2466
+ #: ../trunk/includes/qmn_quiz_admin.php:358
2467
+ #: ../trunk/includes/qmn_results.php:205 includes/qmn_quiz_admin.php:249
2468
+ #: includes/qmn_quiz_admin.php:295 includes/qmn_quiz_admin.php:364
2469
+ #: includes/qmn_results.php:209
2470
+ msgid "Quiz Name"
2471
+ msgstr "Nome da Avaliação"
2472
+
2473
+ #: ../4.1.0/includes/qmn_quiz_admin.php:245
2474
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:250
2475
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:296
2476
+ #: ../trunk/includes/qmn_quiz_admin.php:245 includes/qmn_quiz_admin.php:250
2477
+ #: includes/qmn_quiz_admin.php:296
2478
+ msgid "URL"
2479
+ msgstr "URL"
2480
+
2481
+ #: ../4.1.0/includes/qmn_quiz_admin.php:246
2482
+ #: ../4.1.0/includes/qmn_quiz_admin.php:291
2483
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:251
2484
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:297
2485
+ #: ../trunk/includes/qmn_quiz_admin.php:246
2486
+ #: ../trunk/includes/qmn_quiz_admin.php:291 includes/qmn_quiz_admin.php:251
2487
+ #: includes/qmn_quiz_admin.php:297
2488
+ msgid "Quiz Shortcode"
2489
+ msgstr "Shortcode do teste"
2490
+
2491
+ #: ../4.1.0/includes/qmn_quiz_admin.php:247
2492
+ #: ../4.1.0/includes/qmn_quiz_admin.php:292
2493
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:252
2494
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:298
2495
+ #: ../trunk/includes/qmn_quiz_admin.php:247
2496
+ #: ../trunk/includes/qmn_quiz_admin.php:292 includes/qmn_quiz_admin.php:252
2497
+ #: includes/qmn_quiz_admin.php:298
2498
+ msgid "Leaderboard Shortcode"
2499
+ msgstr "Shortcode da Pontuação"
2500
+
2501
+ #: ../4.1.0/includes/qmn_quiz_admin.php:248
2502
+ #: ../4.1.0/includes/qmn_quiz_admin.php:293
2503
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:253
2504
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:299
2505
+ #: ../trunk/includes/qmn_quiz_admin.php:248
2506
+ #: ../trunk/includes/qmn_quiz_admin.php:293 includes/qmn_quiz_admin.php:253
2507
+ #: includes/qmn_quiz_admin.php:299
2508
+ msgid "Quiz Views"
2509
+ msgstr "Visualização do Questionário"
2510
+
2511
+ #: ../4.1.0/includes/qmn_quiz_admin.php:249
2512
+ #: ../4.1.0/includes/qmn_quiz_admin.php:294
2513
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:254
2514
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:300
2515
+ #: ../trunk/includes/qmn_quiz_admin.php:249
2516
+ #: ../trunk/includes/qmn_quiz_admin.php:294 includes/qmn_quiz_admin.php:254
2517
+ #: includes/qmn_quiz_admin.php:300
2518
+ msgid "Quiz Taken"
2519
+ msgstr "Questionário Tomado"
2520
+
2521
+ #: ../4.1.0/includes/qmn_quiz_admin.php:250
2522
+ #: ../4.1.0/includes/qmn_quiz_admin.php:295
2523
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:255
2524
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:301
2525
+ #: ../trunk/includes/qmn_quiz_admin.php:250
2526
+ #: ../trunk/includes/qmn_quiz_admin.php:295 includes/qmn_quiz_admin.php:255
2527
+ #: includes/qmn_quiz_admin.php:301
2528
+ msgid "Last Modified"
2529
+ msgstr "Ultima modificação"
2530
+
2531
+ #: ../4.1.0/includes/qmn_quiz_admin.php:263
2532
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:268
2533
+ #: ../trunk/includes/qmn_quiz_admin.php:263 includes/qmn_quiz_admin.php:268
2534
+ msgid "Edit Name"
2535
+ msgstr "Editar nome"
2536
+
2537
+ #: ../4.1.0/includes/qmn_quiz_admin.php:266
2538
+ #: ../4.1.0/includes/qmn_results_details.php:116
2539
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:271
2540
+ #: ../quiz_master_next/includes/qmn_results_details.php:121
2541
+ #: ../trunk/includes/qmn_quiz_admin.php:266
2542
+ #: ../trunk/includes/qmn_results_details.php:116
2543
+ #: includes/qmn_quiz_admin.php:271 includes/qmn_results_details.php:121
2544
+ msgid "Results"
2545
+ msgstr "Resultados"
2546
+
2547
+ #: ../4.1.0/includes/qmn_quiz_admin.php:353
2548
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:359
2549
+ #: ../trunk/includes/qmn_quiz_admin.php:353 includes/qmn_quiz_admin.php:359
2550
+ msgid "Create New Quiz"
2551
+ msgstr "Criar Novo teste"
2552
+
2553
+ #: ../4.1.0/includes/qmn_quiz_admin.php:367
2554
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:373
2555
+ #: ../trunk/includes/qmn_quiz_admin.php:367 includes/qmn_quiz_admin.php:373
2556
+ msgid "Create Quiz"
2557
+ msgstr "Criar Teste"
2558
+
2559
+ #: ../4.1.0/includes/qmn_quiz_admin.php:373
2560
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:379
2561
+ #: ../trunk/includes/qmn_quiz_admin.php:373 includes/qmn_quiz_admin.php:379
2562
+ msgid "Quiz Name:"
2563
+ msgstr "Teste Nome:"
2564
+
2565
+ #: ../4.1.0/includes/qmn_quiz_admin.php:384
2566
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:390
2567
+ #: ../trunk/includes/qmn_quiz_admin.php:384 includes/qmn_quiz_admin.php:390
2568
+ msgid "Duplicate this quiz?"
2569
+ msgstr "Duplicar questão?"
2570
+
2571
+ #: ../4.1.0/includes/qmn_quiz_admin.php:386
2572
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:392
2573
+ #: ../trunk/includes/qmn_quiz_admin.php:386 includes/qmn_quiz_admin.php:392
2574
+ msgid "Duplicate questions with quiz"
2575
+ msgstr "Duplicar perguntas com questionário"
2576
+
2577
+ #: ../4.1.0/includes/qmn_quiz_admin.php:388
2578
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:394
2579
+ #: ../trunk/includes/qmn_quiz_admin.php:388 includes/qmn_quiz_admin.php:394
2580
+ msgid "Name Of New Quiz:"
2581
+ msgstr "Nome do novo questionário"
2582
+
2583
+ #: ../4.1.0/includes/qmn_quiz_admin.php:397
2584
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:403
2585
+ #: ../trunk/includes/qmn_quiz_admin.php:397 includes/qmn_quiz_admin.php:403
2586
+ msgid "Are you sure you want to delete this quiz?"
2587
+ msgstr "Você tem certeza que deseja deletar este questionário?"
2588
+
2589
+ #: ../4.1.0/includes/qmn_quiz_admin.php:402
2590
+ #: ../quiz_master_next/includes/qmn_quiz_admin.php:408
2591
+ #: ../trunk/includes/qmn_quiz_admin.php:402 includes/qmn_quiz_admin.php:408
2592
+ msgid "Delete Quiz"
2593
+ msgstr "Delete Questionário"
2594
+
2595
+ #: ../4.1.0/includes/qmn_quiz_creator.php:368
2596
+ #: ../quiz_master_next/includes/qmn_quiz_creator.php:369
2597
+ #: ../trunk/includes/qmn_quiz_creator.php:368
2598
+ #: includes/qmn_quiz_creator.php:369
2599
+ msgid ""
2600
+ "Your new quiz has been created successfully. To begin editing your quiz, "
2601
+ "click the Edit link on the new quiz."
2602
+ msgstr ""
2603
+ "Seu novo questionário foi criado com sucesso. Para começar a editar o seu "
2604
+ "questionário, clique no link Editar na nova avaliação."
2605
+
2606
+ #: ../4.1.0/includes/qmn_quiz_creator.php:434
2607
+ #: ../quiz_master_next/includes/qmn_quiz_creator.php:435
2608
+ #: ../trunk/includes/qmn_quiz_creator.php:434
2609
+ #: includes/qmn_quiz_creator.php:435
2610
+ msgid "Your quiz has been deleted successfully."
2611
+ msgstr "Sua avaliação foi apagada com sucesso!"
2612
+
2613
+ #: ../4.1.0/includes/qmn_quiz_creator.php:476
2614
+ #: ../quiz_master_next/includes/qmn_quiz_creator.php:477
2615
+ #: ../trunk/includes/qmn_quiz_creator.php:476
2616
+ #: includes/qmn_quiz_creator.php:477
2617
+ msgid "Your quiz name has been updated successfully."
2618
+ msgstr "O nome de sua avaliação foi atualizada com sucesso!"
2619
+
2620
+ #: ../4.1.0/includes/qmn_quiz_creator.php:622
2621
+ #: ../quiz_master_next/includes/qmn_quiz_creator.php:634
2622
+ #: ../trunk/includes/qmn_quiz_creator.php:622
2623
+ #: includes/qmn_quiz_creator.php:634
2624
+ msgid "Your quiz has been duplicated successfully."
2625
+ msgstr "Sua avaliação foi repetida com sucesso."
2626
+
2627
+ #. translators: The %s corresponds to the name of the quiz
2628
+ #: ../4.1.0/includes/qmn_quiz_options.php:51
2629
+ #: ../quiz_master_next/includes/qmn_quiz_options.php:56
2630
+ #: ../trunk/includes/qmn_quiz_options.php:51 includes/qmn_quiz_options.php:56
2631
+ #, php-format
2632
+ msgid "Quiz Settings For %s"
2633
+ msgstr "Configurações do questionário para %s"
2634
+
2635
+ #: ../4.1.0/includes/qmn_quiz_options.php:91
2636
+ #: ../quiz_master_next/includes/qmn_quiz_options.php:96
2637
+ #: ../trunk/includes/qmn_quiz_options.php:91 includes/qmn_quiz_options.php:96
2638
+ msgid ""
2639
+ "Please go to the quizzes page and click on the Edit link from the quiz you "
2640
+ "wish to edit."
2641
+ msgstr ""
2642
+ "Por favor, vá para a página de testes e clique no link Editar no "
2643
+ "questionário que pretende editar."
2644
+
2645
+ #: ../4.1.0/includes/qmn_results.php:19
2646
+ #: ../quiz_master_next/includes/qmn_results.php:23
2647
+ #: ../trunk/includes/qmn_results.php:19 includes/qmn_results.php:23
2648
+ msgid "Your results has been deleted successfully."
2649
+ msgstr "Seus resultados foram apagados com sucesso!"
2650
+
2651
+ #: ../4.1.0/includes/qmn_results.php:148
2652
+ #: ../4.1.0/includes/qmn_results_details.php:16
2653
+ #: ../4.1.0/mlw_quizmaster2.php:219
2654
+ #: ../quiz_master_next/includes/qmn_results.php:152
2655
+ #: ../quiz_master_next/includes/qmn_results_details.php:21
2656
+ #: ../quiz_master_next/mlw_quizmaster2.php:219
2657
+ #: ../trunk/includes/qmn_results.php:148
2658
+ #: ../trunk/includes/qmn_results_details.php:16
2659
+ #: ../trunk/mlw_quizmaster2.php:219 includes/qmn_results.php:152
2660
+ #: includes/qmn_results_details.php:21 mlw_quizmaster2.php:219
2661
+ msgid "Quiz Results"
2662
+ msgstr "Resultados"
2663
+
2664
+ #: ../4.1.0/includes/qmn_results.php:157
2665
+ #: ../quiz_master_next/includes/qmn_results.php:161
2666
+ #: ../trunk/includes/qmn_results.php:157 includes/qmn_results.php:161
2667
+ #, php-format
2668
+ msgid "One result"
2669
+ msgid_plural "%s results"
2670
+ msgstr[0] "Um resultado"
2671
+ msgstr[1] "%s resultados"
2672
+
2673
+ #: ../4.1.0/includes/qmn_results.php:204
2674
+ #: ../quiz_master_next/includes/qmn_results.php:208
2675
+ #: ../trunk/includes/qmn_results.php:204 includes/qmn_results.php:208
2676
+ msgid "Actions"
2677
+ msgstr "Ações"
2678
+
2679
+ #: ../4.1.0/includes/qmn_results.php:206
2680
+ #: ../quiz_master_next/includes/qmn_results.php:210
2681
+ #: ../trunk/includes/qmn_results.php:206 includes/qmn_results.php:210
2682
+ msgid "Score"
2683
+ msgstr "Placar"
2684
+
2685
+ #: ../4.1.0/includes/qmn_results.php:207
2686
+ #: ../quiz_master_next/includes/qmn_results.php:211
2687
+ #: ../trunk/includes/qmn_results.php:207 includes/qmn_results.php:211
2688
+ msgid "Time To Complete"
2689
+ msgstr "Tempo para concluir"
2690
+
2691
+ #: ../4.1.0/includes/qmn_results.php:208
2692
+ #: ../quiz_master_next/includes/qmn_results.php:212
2693
+ #: ../trunk/includes/qmn_results.php:208 includes/qmn_results.php:212
2694
+ msgid "Name"
2695
+ msgstr "Nome"
2696
+
2697
+ #: ../4.1.0/includes/qmn_results.php:209
2698
+ #: ../quiz_master_next/includes/qmn_results.php:213
2699
+ #: ../trunk/includes/qmn_results.php:209 includes/qmn_results.php:213
2700
+ msgid "Business"
2701
+ msgstr "Empresa"
2702
+
2703
+ #: ../4.1.0/includes/qmn_results.php:210
2704
+ #: ../quiz_master_next/includes/qmn_results.php:214
2705
+ #: ../trunk/includes/qmn_results.php:210 includes/qmn_results.php:214
2706
+ msgid "Email"
2707
+ msgstr "e-mail"
2708
+
2709
+ #: ../4.1.0/includes/qmn_results.php:211
2710
+ #: ../quiz_master_next/includes/qmn_results.php:215
2711
+ #: ../trunk/includes/qmn_results.php:211 includes/qmn_results.php:215
2712
+ msgid "Phone"
2713
+ msgstr "Fone"
2714
+
2715
+ #: ../4.1.0/includes/qmn_results.php:212
2716
+ #: ../quiz_master_next/includes/qmn_results.php:216
2717
+ #: ../trunk/includes/qmn_results.php:212 includes/qmn_results.php:216
2718
+ msgid "Time Taken"
2719
+ msgstr "Tempo necessário"
2720
+
2721
+ #: ../4.1.0/includes/qmn_results.php:272
2722
+ #: ../quiz_master_next/includes/qmn_results.php:276
2723
+ #: ../trunk/includes/qmn_results.php:272 includes/qmn_results.php:276
2724
+ msgid "Are you sure you want to delete these results?"
2725
+ msgstr "Tem certeza de que deseja apagar estes resultados?"
2726
+
2727
+ #: ../4.1.0/includes/qmn_results.php:277
2728
+ #: ../quiz_master_next/includes/qmn_results.php:281
2729
+ #: ../trunk/includes/qmn_results.php:277 includes/qmn_results.php:281
2730
+ msgid "Delete Results"
2731
+ msgstr "Deletar Resultados"
2732
+
2733
+ #: ../4.1.0/includes/qmn_results_details.php:195
2734
+ #: ../quiz_master_next/includes/qmn_results_details.php:200
2735
+ #: ../trunk/includes/qmn_results_details.php:195
2736
+ #: includes/qmn_results_details.php:200
2737
+ msgid "Create Certificate"
2738
+ msgstr "Criar Certificado"
2739
+
2740
+ #: ../4.1.0/includes/qmn_results_details.php:200
2741
+ #: ../quiz_master_next/includes/qmn_results_details.php:205
2742
+ #: ../trunk/includes/qmn_results_details.php:200
2743
+ #: includes/qmn_results_details.php:205
2744
+ msgid "Download Certificate Here"
2745
+ msgstr "Baixe o Certificado Aqui"
2746
+
2747
+ #: ../4.1.0/includes/qmn_results_details.php:207
2748
+ #: ../quiz_master_next/includes/qmn_results_details.php:212
2749
+ #: ../trunk/includes/qmn_results_details.php:207
2750
+ #: includes/qmn_results_details.php:212
2751
+ msgid "Certificate"
2752
+ msgstr "Certificado"
2753
+
2754
+ #: ../4.1.0/includes/qmn_tools.php:88
2755
+ #: ../quiz_master_next/includes/qmn_tools.php:93
2756
+ #: ../trunk/includes/qmn_tools.php:88 includes/qmn_tools.php:93
2757
+ msgid "There has been an error! Please try again."
2758
+ msgstr "Houve um erro! Por favor tente novamente."
2759
+
2760
+ #: ../4.1.0/includes/qmn_tools.php:106
2761
+ #: ../quiz_master_next/includes/qmn_tools.php:111
2762
+ #: ../trunk/includes/qmn_tools.php:106 includes/qmn_tools.php:111
2763
+ msgid "Quiz Has Been Restored!"
2764
+ msgstr "A Avaliação foi restaurada!"
2765
+
2766
+ #: ../4.1.0/includes/qmn_tools.php:111
2767
+ #: ../quiz_master_next/includes/qmn_tools.php:116
2768
+ #: ../trunk/includes/qmn_tools.php:111 includes/qmn_tools.php:116
2769
+ msgid ""
2770
+ "Choose a quiz in the drop down and then click the button to restore a "
2771
+ "deleted quiz."
2772
+ msgstr ""
2773
+ "Escolha uma Avaliação no drop down e, em seguida, clique no botão para "
2774
+ "restaurar uma avaliação excluída."
2775
+
2776
+ #: ../4.1.0/includes/qmn_tools.php:121
2777
+ #: ../quiz_master_next/includes/qmn_tools.php:126
2778
+ #: ../trunk/includes/qmn_tools.php:121 includes/qmn_tools.php:126
2779
+ msgid "Restore Quiz"
2780
+ msgstr "Recuperar Avaliação"
2781
+
2782
+ #: ../4.1.0/includes/qmn_tools.php:150 ../4.1.0/includes/qmn_tools.php:166
2783
+ #: ../quiz_master_next/includes/qmn_tools.php:155
2784
+ #: ../quiz_master_next/includes/qmn_tools.php:171
2785
+ #: ../trunk/includes/qmn_tools.php:150 ../trunk/includes/qmn_tools.php:166
2786
+ #: includes/qmn_tools.php:155 includes/qmn_tools.php:171
2787
+ #, php-format
2788
+ msgid "Previous %s Audits"
2789
+ msgstr "Anterior % s Auditorias"
2790
+
2791
+ #: ../4.1.0/includes/qmn_tools.php:153 ../4.1.0/includes/qmn_tools.php:160
2792
+ #: ../quiz_master_next/includes/qmn_tools.php:158
2793
+ #: ../quiz_master_next/includes/qmn_tools.php:165
2794
+ #: ../trunk/includes/qmn_tools.php:153 ../trunk/includes/qmn_tools.php:160
2795
+ #: includes/qmn_tools.php:158 includes/qmn_tools.php:165
2796
+ #, php-format
2797
+ msgid "Next %s Audits"
2798
+ msgstr "Próximo% s Auditorias"
2799
+
2800
+ #: ../4.1.0/includes/qmn_tools.php:173
2801
+ #: ../quiz_master_next/includes/qmn_tools.php:178
2802
+ #: ../trunk/includes/qmn_tools.php:173 includes/qmn_tools.php:178
2803
+ msgid "User"
2804
+ msgstr "Usuário"
2805
+
2806
+ #: ../4.1.0/includes/qmn_tools.php:174
2807
+ #: ../quiz_master_next/includes/qmn_tools.php:179
2808
+ #: ../trunk/includes/qmn_tools.php:174 includes/qmn_tools.php:179
2809
+ msgid "Action"
2810
+ msgstr "Ação"
2811
+
2812
+ #: ../4.1.0/includes/qmn_tools.php:175
2813
+ #: ../quiz_master_next/includes/qmn_tools.php:180
2814
+ #: ../trunk/includes/qmn_tools.php:175 includes/qmn_tools.php:180
2815
+ msgid "Time"
2816
+ msgstr "Tempo"
2817
+
2818
+ #: ../4.1.0/includes/qmn_usage_tracking.php:195
2819
+ #: ../quiz_master_next/includes/qmn_usage_tracking.php:193
2820
+ #: ../trunk/includes/qmn_usage_tracking.php:195
2821
+ #: includes/qmn_usage_tracking.php:193
2822
+ msgid ""
2823
+ "Allow Quiz Master Next to anonymously track this plugin's usage and help us "
2824
+ "make this plugin better? No sensitive data is tracked."
2825
+ msgstr ""
2826
+ "Permitir anonimamente controlar o uso deste plugin e nos ajudar a fazer este "
2827
+ "plugin melhor? Sem os dados sensíveis são monitorados."
2828
+
2829
+ #: ../4.1.0/includes/qmn_usage_tracking.php:196
2830
+ #: ../quiz_master_next/includes/qmn_usage_tracking.php:194
2831
+ #: ../trunk/includes/qmn_usage_tracking.php:196
2832
+ #: includes/qmn_usage_tracking.php:194
2833
+ msgid "Allow"
2834
+ msgstr "Permoitido"
2835
+
2836
+ #: ../4.1.0/includes/qmn_usage_tracking.php:197
2837
+ #: ../quiz_master_next/includes/qmn_usage_tracking.php:195
2838
+ #: ../trunk/includes/qmn_usage_tracking.php:197
2839
+ #: includes/qmn_usage_tracking.php:195
2840
+ msgid "Do not allow"
2841
+ msgstr "Não permitido"
2842
+
2843
+ #: ../4.1.0/includes/qmn_widgets.php:10
2844
+ #: ../Older_Dev/3.0.1/3.0.1/includes/mlw_qmn_widgets.php:10
2845
+ #: ../Older_Dev/3.0.1/trunk/includes/mlw_qmn_widgets.php:10
2846
+ #: ../Older_Dev/3.1.1/3.1.1/includes/mlw_qmn_widgets.php:10
2847
+ #: ../Older_Dev/3.1.1/trunk/includes/mlw_qmn_widgets.php:10
2848
+ #: ../Older_Dev/3.2.1/3.2.1/includes/mlw_qmn_widgets.php:10
2849
+ #: ../Older_Dev/3.2.1/trunk/includes/mlw_qmn_widgets.php:10
2850
+ #: ../Older_Dev/3.2.2/3.2.2/includes/mlw_qmn_widgets.php:10
2851
+ #: ../Older_Dev/3.2.2/trunk/includes/mlw_qmn_widgets.php:10
2852
+ #: ../Older_Dev/3.3.1/3.3.1/includes/mlw_qmn_widgets.php:10
2853
+ #: ../Older_Dev/3.3.1/trunk/includes/mlw_qmn_widgets.php:10
2854
+ #: ../Older_Dev/3.3.2/3.3.2/includes/mlw_qmn_widgets.php:10
2855
+ #: ../Older_Dev/3.3.2/trunk/includes/mlw_qmn_widgets.php:10
2856
+ #: ../Older_Dev/Before 1.0/0.9.8/trunk/includes/mlw_qmn_widgets.php:10
2857
+ #: 1.0/0.9.9/trunk/includes/mlw_qmn_widgets.php:10
2858
+ #: 2.0/1.0.1/trunk/includes/mlw_qmn_widgets.php:10
2859
+ #: 2.0/1.0/trunk/includes/mlw_qmn_widgets.php:10
2860
+ #: 2.0/1.1.1/trunk/includes/mlw_qmn_widgets.php:10
2861
+ #: 2.0/1.2.1/trunk/includes/mlw_qmn_widgets.php:10
2862
+ #: 2.0/1.3.1/trunk/includes/mlw_qmn_widgets.php:10
2863
+ #: 2.0/1.4.1/trunk/includes/mlw_qmn_widgets.php:10
2864
+ #: 2.0/1.4.2/trunk/includes/mlw_qmn_widgets.php:10
2865
+ #: 2.0/1.5.1/trunk/includes/mlw_qmn_widgets.php:10
2866
+ #: 2.0/1.6.1/trunk/includes/mlw_qmn_widgets.php:10
2867
+ #: 2.0/1.6.2/trunk/includes/mlw_qmn_widgets.php:10
2868
+ #: 2.0/1.6.3/trunk/includes/mlw_qmn_widgets.php:10
2869
+ #: 2.0/1.7.1/trunk/includes/mlw_qmn_widgets.php:10
2870
+ #: 2.0/1.8.1/trunk/includes/mlw_qmn_widgets.php:10
2871
+ #: 2.0/1.8.2/trunk/includes/mlw_qmn_widgets.php:10
2872
+ #: 2.0/1.9.1/trunk/includes/mlw_qmn_widgets.php:10
2873
+ #: 2.0/1.9.2/trunk/includes/mlw_qmn_widgets.php:10
2874
+ #: 2.0/1.9.3/trunk/includes/mlw_qmn_widgets.php:10
2875
+ #: 2.0/1.9.4/trunk/includes/mlw_qmn_widgets.php:10
2876
+ #: 2.0/1.9.5/trunk/includes/mlw_qmn_widgets.php:10
2877
+ #: 2.0/1.9.6/trunk/includes/mlw_qmn_widgets.php:10
2878
+ #: ../Older_Dev/Before_3.0/2.0.1/trunk/includes/mlw_qmn_widgets.php:10
2879
+ #: ../Older_Dev/Before_3.0/2.1.1/trunk/includes/mlw_qmn_widgets.php:10
2880
+ #: ../Older_Dev/Before_3.0/2.2.1/trunk/includes/mlw_qmn_widgets.php:10
2881
+ #: ../Older_Dev/Before_3.0/2.2.2/trunk/includes/mlw_qmn_widgets.php:10
2882
+ #: ../Older_Dev/Before_3.0/2.3.1/trunk/includes/mlw_qmn_widgets.php:10
2883
+ #: ../Older_Dev/Before_3.0/2.4.1/trunk/includes/mlw_qmn_widgets.php:10
2884
+ #: ../Older_Dev/Before_3.0/2.5.1/trunk/includes/mlw_qmn_widgets.php:10
2885
+ #: ../Older_Dev/Before_3.0/2.6.1/trunk/includes/mlw_qmn_widgets.php:10
2886
+ #: ../Older_Dev/Before_3.0/2.6.2/trunk/includes/mlw_qmn_widgets.php:10
2887
+ #: ../Older_Dev/Before_3.0/2.6.3/trunk/includes/mlw_qmn_widgets.php:10
2888
+ #: ../Older_Dev/Before_3.0/2.6.4/trunk/includes/mlw_qmn_widgets.php:10
2889
+ #: ../Older_Dev/Before_3.0/2.7.1/trunk/includes/mlw_qmn_widgets.php:10
2890
+ #: ../Older_Dev/Before_3.0/2.7.2/trunk/includes/mlw_qmn_widgets.php:10
2891
+ #: ../Older_Dev/Before_3.0/2.7.3/trunk/includes/mlw_qmn_widgets.php:10
2892
+ #: ../Older_Dev/Before_3.0/2.8.1/trunk/includes/mlw_qmn_widgets.php:10
2893
+ #: ../Older_Dev/Before_3.0/2.8.2/trunk/includes/mlw_qmn_widgets.php:10
2894
+ #: ../Older_Dev/Before_3.0/2.8.3/trunk/includes/mlw_qmn_widgets.php:10
2895
+ #: ../Older_Dev/Before_3.0/2.8.4/trunk/includes/mlw_qmn_widgets.php:10
2896
+ #: ../Older_Dev/Before_3.0/2.8.5/2.8.5/includes/mlw_qmn_widgets.php:10
2897
+ #: ../Older_Dev/Before_3.0/2.8.5/trunk/includes/mlw_qmn_widgets.php:10
2898
+ #: ../Older_Dev/Before_3.0/2.9.1/2.9.1/includes/mlw_qmn_widgets.php:10
2899
+ #: ../Older_Dev/Before_3.0/2.9.1/trunk/includes/mlw_qmn_widgets.php:10
2900
+ #: ../quiz_master_next/includes/qmn_widgets.php:11
2901
+ #: ../trunk/includes/qmn_widgets.php:10 includes/qmn_widgets.php:11
2902
+ msgid "Quiz Master Next Leaderboard Widget"
2903
+ msgstr "Widget de Classificações"
2904
+
2905
+ #: ../4.1.0/includes/qmn_widgets.php:25
2906
+ #: ../Older_Dev/3.0.1/3.0.1/includes/mlw_qmn_widgets.php:25
2907
+ #: ../Older_Dev/3.0.1/trunk/includes/mlw_qmn_widgets.php:25
2908
+ #: ../Older_Dev/3.1.1/3.1.1/includes/mlw_qmn_widgets.php:25
2909
+ #: ../Older_Dev/3.1.1/trunk/includes/mlw_qmn_widgets.php:25
2910
+ #: ../Older_Dev/3.2.1/3.2.1/includes/mlw_qmn_widgets.php:25
2911
+ #: ../Older_Dev/3.2.1/trunk/includes/mlw_qmn_widgets.php:25
2912
+ #: ../Older_Dev/3.2.2/3.2.2/includes/mlw_qmn_widgets.php:25
2913
+ #: ../Older_Dev/3.2.2/trunk/includes/mlw_qmn_widgets.php:25
2914
+ #: ../Older_Dev/3.3.1/3.3.1/includes/mlw_qmn_widgets.php:25
2915
+ #: ../Older_Dev/3.3.1/trunk/includes/mlw_qmn_widgets.php:25
2916
+ #: ../Older_Dev/3.3.2/3.3.2/includes/mlw_qmn_widgets.php:25
2917
+ #: ../Older_Dev/3.3.2/trunk/includes/mlw_qmn_widgets.php:25
2918
+ #: ../Older_Dev/Before 1.0/0.9.8/trunk/includes/mlw_qmn_widgets.php:25
2919
+ #: 1.0/0.9.9/trunk/includes/mlw_qmn_widgets.php:25
2920
+ #: 2.0/1.0.1/trunk/includes/mlw_qmn_widgets.php:25
2921
+ #: 2.0/1.0/trunk/includes/mlw_qmn_widgets.php:25
2922
+ #: 2.0/1.1.1/trunk/includes/mlw_qmn_widgets.php:25
2923
+ #: 2.0/1.2.1/trunk/includes/mlw_qmn_widgets.php:25
2924
+ #: 2.0/1.3.1/trunk/includes/mlw_qmn_widgets.php:25
2925
+ #: 2.0/1.4.1/trunk/includes/mlw_qmn_widgets.php:25
2926
+ #: 2.0/1.4.2/trunk/includes/mlw_qmn_widgets.php:25
2927
+ #: 2.0/1.5.1/trunk/includes/mlw_qmn_widgets.php:25
2928
+ #: 2.0/1.6.1/trunk/includes/mlw_qmn_widgets.php:25
2929
+ #: 2.0/1.6.2/trunk/includes/mlw_qmn_widgets.php:25
2930
+ #: 2.0/1.6.3/trunk/includes/mlw_qmn_widgets.php:25
2931
+ #: 2.0/1.7.1/trunk/includes/mlw_qmn_widgets.php:25
2932
+ #: 2.0/1.8.1/trunk/includes/mlw_qmn_widgets.php:25
2933
+ #: 2.0/1.8.2/trunk/includes/mlw_qmn_widgets.php:25
2934
+ #: 2.0/1.9.1/trunk/includes/mlw_qmn_widgets.php:25
2935
+ #: 2.0/1.9.2/trunk/includes/mlw_qmn_widgets.php:25
2936
+ #: 2.0/1.9.3/trunk/includes/mlw_qmn_widgets.php:25
2937
+ #: 2.0/1.9.4/trunk/includes/mlw_qmn_widgets.php:25
2938
+ #: 2.0/1.9.5/trunk/includes/mlw_qmn_widgets.php:25
2939
+ #: 2.0/1.9.6/trunk/includes/mlw_qmn_widgets.php:25
2940
+ #: ../Older_Dev/Before_3.0/2.0.1/trunk/includes/mlw_qmn_widgets.php:25
2941
+ #: ../Older_Dev/Before_3.0/2.1.1/trunk/includes/mlw_qmn_widgets.php:25
2942
+ #: ../Older_Dev/Before_3.0/2.2.1/trunk/includes/mlw_qmn_widgets.php:25
2943
+ #: ../Older_Dev/Before_3.0/2.2.2/trunk/includes/mlw_qmn_widgets.php:25
2944
+ #: ../Older_Dev/Before_3.0/2.3.1/trunk/includes/mlw_qmn_widgets.php:25
2945
+ #: ../Older_Dev/Before_3.0/2.4.1/trunk/includes/mlw_qmn_widgets.php:25
2946
+ #: ../Older_Dev/Before_3.0/2.5.1/trunk/includes/mlw_qmn_widgets.php:25
2947
+ #: ../Older_Dev/Before_3.0/2.6.1/trunk/includes/mlw_qmn_widgets.php:25
2948
+ #: ../Older_Dev/Before_3.0/2.6.2/trunk/includes/mlw_qmn_widgets.php:25
2949
+ #: ../Older_Dev/Before_3.0/2.6.3/trunk/includes/mlw_qmn_widgets.php:25
2950
+ #: ../Older_Dev/Before_3.0/2.6.4/trunk/includes/mlw_qmn_widgets.php:25
2951
+ #: ../Older_Dev/Before_3.0/2.7.1/trunk/includes/mlw_qmn_widgets.php:25
2952
+ #: ../Older_Dev/Before_3.0/2.7.2/trunk/includes/mlw_qmn_widgets.php:25
2953
+ #: ../Older_Dev/Before_3.0/2.7.3/trunk/includes/mlw_qmn_widgets.php:25
2954
+ #: ../Older_Dev/Before_3.0/2.8.1/trunk/includes/mlw_qmn_widgets.php:25
2955
+ #: ../Older_Dev/Before_3.0/2.8.2/trunk/includes/mlw_qmn_widgets.php:25
2956
+ #: ../Older_Dev/Before_3.0/2.8.3/trunk/includes/mlw_qmn_widgets.php:25
2957
+ #: ../Older_Dev/Before_3.0/2.8.4/trunk/includes/mlw_qmn_widgets.php:25
2958
+ #: ../Older_Dev/Before_3.0/2.8.5/2.8.5/includes/mlw_qmn_widgets.php:25
2959
+ #: ../Older_Dev/Before_3.0/2.8.5/trunk/includes/mlw_qmn_widgets.php:25
2960
+ #: ../Older_Dev/Before_3.0/2.9.1/2.9.1/includes/mlw_qmn_widgets.php:25
2961
+ #: ../Older_Dev/Before_3.0/2.9.1/trunk/includes/mlw_qmn_widgets.php:25
2962
+ #: ../quiz_master_next/includes/qmn_widgets.php:26
2963
+ #: ../trunk/includes/qmn_widgets.php:25 includes/qmn_widgets.php:26
2964
+ msgid "Widget Title"
2965
+ msgstr "Titulo do Widget"
2966
+
2967
+ #: ../4.1.0/includes/qmn_widgets.php:29
2968
+ #: ../Older_Dev/3.0.1/3.0.1/includes/mlw_qmn_widgets.php:29
2969
+ #: ../Older_Dev/3.0.1/trunk/includes/mlw_qmn_widgets.php:29
2970
+ #: ../Older_Dev/3.1.1/3.1.1/includes/mlw_qmn_widgets.php:29
2971
+ #: ../Older_Dev/3.1.1/trunk/includes/mlw_qmn_widgets.php:29
2972
+ #: ../Older_Dev/3.2.1/3.2.1/includes/mlw_qmn_widgets.php:29
2973
+ #: ../Older_Dev/3.2.1/trunk/includes/mlw_qmn_widgets.php:29
2974
+ #: ../Older_Dev/3.2.2/3.2.2/includes/mlw_qmn_widgets.php:29
2975
+ #: ../Older_Dev/3.2.2/trunk/includes/mlw_qmn_widgets.php:29
2976
+ #: ../Older_Dev/3.3.1/3.3.1/includes/mlw_qmn_widgets.php:29
2977
+ #: ../Older_Dev/3.3.1/trunk/includes/mlw_qmn_widgets.php:29
2978
+ #: ../Older_Dev/3.3.2/3.3.2/includes/mlw_qmn_widgets.php:29
2979
+ #: ../Older_Dev/3.3.2/trunk/includes/mlw_qmn_widgets.php:29
2980
+ #: ../Older_Dev/Before 1.0/0.9.8/trunk/includes/mlw_qmn_widgets.php:29
2981
+ #: 1.0/0.9.9/trunk/includes/mlw_qmn_widgets.php:29
2982
+ #: 2.0/1.0.1/trunk/includes/mlw_qmn_widgets.php:29
2983
+ #: 2.0/1.0/trunk/includes/mlw_qmn_widgets.php:29
2984
+ #: 2.0/1.1.1/trunk/includes/mlw_qmn_widgets.php:29
2985
+ #: 2.0/1.2.1/trunk/includes/mlw_qmn_widgets.php:29
2986
+ #: 2.0/1.3.1/trunk/includes/mlw_qmn_widgets.php:29
2987
+ #: 2.0/1.4.1/trunk/includes/mlw_qmn_widgets.php:29
2988
+ #: 2.0/1.4.2/trunk/includes/mlw_qmn_widgets.php:29
2989
+ #: 2.0/1.5.1/trunk/includes/mlw_qmn_widgets.php:29
2990
+ #: 2.0/1.6.1/trunk/includes/mlw_qmn_widgets.php:29
2991
+ #: 2.0/1.6.2/trunk/includes/mlw_qmn_widgets.php:29
2992
+ #: 2.0/1.6.3/trunk/includes/mlw_qmn_widgets.php:29
2993
+ #: 2.0/1.7.1/trunk/includes/mlw_qmn_widgets.php:29
2994
+ #: 2.0/1.8.1/trunk/includes/mlw_qmn_widgets.php:29
2995
+ #: 2.0/1.8.2/trunk/includes/mlw_qmn_widgets.php:29
2996
+ #: 2.0/1.9.1/trunk/includes/mlw_qmn_widgets.php:29
2997
+ #: 2.0/1.9.2/trunk/includes/mlw_qmn_widgets.php:29
2998
+ #: 2.0/1.9.3/trunk/includes/mlw_qmn_widgets.php:29
2999
+ #: 2.0/1.9.4/trunk/includes/mlw_qmn_widgets.php:29
3000
+ #: 2.0/1.9.5/trunk/includes/mlw_qmn_widgets.php:29
3001
+ #: 2.0/1.9.6/trunk/includes/mlw_qmn_widgets.php:29
3002
+ #: ../Older_Dev/Before_3.0/2.0.1/trunk/includes/mlw_qmn_widgets.php:29
3003
+ #: ../Older_Dev/Before_3.0/2.1.1/trunk/includes/mlw_qmn_widgets.php:29
3004
+ #: ../Older_Dev/Before_3.0/2.2.1/trunk/includes/mlw_qmn_widgets.php:29
3005
+ #: ../Older_Dev/Before_3.0/2.2.2/trunk/includes/mlw_qmn_widgets.php:29
3006
+ #: ../Older_Dev/Before_3.0/2.3.1/trunk/includes/mlw_qmn_widgets.php:29
3007
+ #: ../Older_Dev/Before_3.0/2.4.1/trunk/includes/mlw_qmn_widgets.php:29
3008
+ #: ../Older_Dev/Before_3.0/2.5.1/trunk/includes/mlw_qmn_widgets.php:29
3009
+ #: ../Older_Dev/Before_3.0/2.6.1/trunk/includes/mlw_qmn_widgets.php:29
3010
+ #: ../Older_Dev/Before_3.0/2.6.2/trunk/includes/mlw_qmn_widgets.php:29
3011
+ #: ../Older_Dev/Before_3.0/2.6.3/trunk/includes/mlw_qmn_widgets.php:29
3012
+ #: ../Older_Dev/Before_3.0/2.6.4/trunk/includes/mlw_qmn_widgets.php:29
3013
+ #: ../Older_Dev/Before_3.0/2.7.1/trunk/includes/mlw_qmn_widgets.php:29
3014
+ #: ../Older_Dev/Before_3.0/2.7.2/trunk/includes/mlw_qmn_widgets.php:29
3015
+ #: ../Older_Dev/Before_3.0/2.7.3/trunk/includes/mlw_qmn_widgets.php:29
3016
+ #: ../Older_Dev/Before_3.0/2.8.1/trunk/includes/mlw_qmn_widgets.php:29
3017
+ #: ../Older_Dev/Before_3.0/2.8.2/trunk/includes/mlw_qmn_widgets.php:29
3018
+ #: ../Older_Dev/Before_3.0/2.8.3/trunk/includes/mlw_qmn_widgets.php:29
3019
+ #: ../Older_Dev/Before_3.0/2.8.4/trunk/includes/mlw_qmn_widgets.php:29
3020
+ #: ../Older_Dev/Before_3.0/2.8.5/2.8.5/includes/mlw_qmn_widgets.php:29
3021
+ #: ../Older_Dev/Before_3.0/2.8.5/trunk/includes/mlw_qmn_widgets.php:29
3022
+ #: ../Older_Dev/Before_3.0/2.9.1/2.9.1/includes/mlw_qmn_widgets.php:29
3023
+ #: ../Older_Dev/Before_3.0/2.9.1/trunk/includes/mlw_qmn_widgets.php:29
3024
+ #: ../quiz_master_next/includes/qmn_widgets.php:30
3025
+ #: ../trunk/includes/qmn_widgets.php:29 includes/qmn_widgets.php:30
3026
+ msgid "Quiz ID"
3027
+ msgstr "ID de Avaliação"
3028
+
3029
+ #: ../4.1.0/mlw_quizmaster2.php:218
3030
+ #: ../quiz_master_next/mlw_quizmaster2.php:218
3031
+ #: ../trunk/mlw_quizmaster2.php:218 mlw_quizmaster2.php:218
3032
+ msgid "Quiz Settings"
3033
+ msgstr "Configuração de Avaliação"
3034
+
3035
+ #: ../4.1.0/mlw_quizmaster2.php:220
3036
+ #: ../quiz_master_next/mlw_quizmaster2.php:220
3037
+ #: ../trunk/mlw_quizmaster2.php:220 mlw_quizmaster2.php:220
3038
+ msgid "Quiz Result Details"
3039
+ msgstr "Detalhes dos resultados da Avaliação"
3040
+
3041
+ #: ../4.1.0/mlw_quizmaster2.php:221
3042
+ #: ../quiz_master_next/mlw_quizmaster2.php:221
3043
+ #: ../trunk/mlw_quizmaster2.php:221 mlw_quizmaster2.php:221
3044
+ msgid "Settings"
3045
+ msgstr "Configurações"
3046
+
3047
+ #: ../4.1.0/mlw_quizmaster2.php:223
3048
+ #: ../quiz_master_next/mlw_quizmaster2.php:223
3049
+ #: ../trunk/mlw_quizmaster2.php:223 mlw_quizmaster2.php:223
3050
+ msgid "Stats"
3051
+ msgstr "Estatísticas"
3052
+
3053
+ #: ../4.1.0/mlw_quizmaster2.php:224
3054
+ #: ../quiz_master_next/mlw_quizmaster2.php:224
3055
+ #: ../trunk/mlw_quizmaster2.php:224 mlw_quizmaster2.php:224
3056
+ msgid "Addon Settings"
3057
+ msgstr "Configurações de complemento"
3058
+
3059
+ #: ../4.1.0/mlw_quizmaster2.php:225
3060
+ #: ../quiz_master_next/mlw_quizmaster2.php:225
3061
+ #: ../trunk/mlw_quizmaster2.php:225 mlw_quizmaster2.php:225
3062
+ msgid "Help"
3063
+ msgstr "Ajuda"
3064
+
3065
+ #: ../4.1.0/mlw_quizmaster2.php:228 ../4.1.0/mlw_quizmaster2.php:229
3066
+ #: ../quiz_master_next/mlw_quizmaster2.php:228
3067
+ #: ../quiz_master_next/mlw_quizmaster2.php:229
3068
+ #: ../trunk/mlw_quizmaster2.php:228 ../trunk/mlw_quizmaster2.php:229
3069
+ #: mlw_quizmaster2.php:228 mlw_quizmaster2.php:229
3070
+ msgid "QMN About"
3071
+ msgstr "Sobre QMN"
3072
+
3073
+ #: ../Older_Dev/3.0.1/3.0.1/includes/mlw_dashboard.php:147
3074
+ #: ../Older_Dev/3.0.1/trunk/includes/mlw_dashboard.php:147
3075
+ #: ../Older_Dev/3.1.1/3.1.1/includes/mlw_dashboard.php:147
3076
+ #: ../Older_Dev/3.1.1/trunk/includes/mlw_dashboard.php:147
3077
+ #: ../Older_Dev/3.2.1/3.2.1/includes/mlw_dashboard.php:147
3078
+ #: ../Older_Dev/3.2.1/trunk/includes/mlw_dashboard.php:147
3079
+ #: ../Older_Dev/3.2.2/3.2.2/includes/mlw_dashboard.php:147
3080
+ #: ../Older_Dev/3.2.2/trunk/includes/mlw_dashboard.php:147
3081
+ #: ../Older_Dev/3.3.1/3.3.1/includes/mlw_dashboard.php:147
3082
+ #: ../Older_Dev/3.3.1/trunk/includes/mlw_dashboard.php:147
3083
+ #: ../Older_Dev/3.3.2/3.3.2/includes/mlw_dashboard.php:147
3084
+ #: ../Older_Dev/3.3.2/trunk/includes/mlw_dashboard.php:147 ../Older_Dev/Before
3085
+ #: 1.0/0.9.7/trunk/includes/mlw_dashboard.php:125
3086
+ #: 1.0/0.9.8/trunk/includes/mlw_dashboard.php:125
3087
+ #: 1.0/0.9.9/trunk/includes/mlw_dashboard.php:125
3088
+ #: 2.0/1.0.1/trunk/includes/mlw_dashboard.php:125
3089
+ #: 2.0/1.0/trunk/includes/mlw_dashboard.php:125
3090
+ #: 2.0/1.1.1/trunk/includes/mlw_dashboard.php:125
3091
+ #: 2.0/1.2.1/trunk/includes/mlw_dashboard.php:125
3092
+ #: 2.0/1.3.1/trunk/includes/mlw_dashboard.php:125
3093
+ #: 2.0/1.4.1/trunk/includes/mlw_dashboard.php:133
3094
+ #: 2.0/1.4.2/trunk/includes/mlw_dashboard.php:133
3095
+ #: 2.0/1.5.1/trunk/includes/mlw_dashboard.php:131
3096
+ #: 2.0/1.6.1/trunk/includes/mlw_dashboard.php:135
3097
+ #: 2.0/1.6.2/trunk/includes/mlw_dashboard.php:135
3098
+ #: 2.0/1.6.3/trunk/includes/mlw_dashboard.php:135
3099
+ #: 2.0/1.7.1/trunk/includes/mlw_dashboard.php:144
3100
+ #: 2.0/1.8.1/trunk/includes/mlw_dashboard.php:144
3101
+ #: 2.0/1.8.2/trunk/includes/mlw_dashboard.php:144
3102
+ #: 2.0/1.9.1/trunk/includes/mlw_dashboard.php:144
3103
+ #: 2.0/1.9.2/trunk/includes/mlw_dashboard.php:144
3104
+ #: 2.0/1.9.3/trunk/includes/mlw_dashboard.php:144
3105
+ #: 2.0/1.9.4/trunk/includes/mlw_dashboard.php:144
3106
+ #: 2.0/1.9.5/trunk/includes/mlw_dashboard.php:144
3107
+ #: 2.0/1.9.6/trunk/includes/mlw_dashboard.php:144
3108
+ #: ../Older_Dev/Before_3.0/2.0.1/trunk/includes/mlw_dashboard.php:147
3109
+ #: ../Older_Dev/Before_3.0/2.1.1/trunk/includes/mlw_dashboard.php:147
3110
+ #: ../Older_Dev/Before_3.0/2.2.1/trunk/includes/mlw_dashboard.php:147
3111
+ #: ../Older_Dev/Before_3.0/2.2.2/trunk/includes/mlw_dashboard.php:147
3112
+ #: ../Older_Dev/Before_3.0/2.3.1/trunk/includes/mlw_dashboard.php:147
3113
+ #: ../Older_Dev/Before_3.0/2.4.1/trunk/includes/mlw_dashboard.php:147
3114
+ #: ../Older_Dev/Before_3.0/2.5.1/trunk/includes/mlw_dashboard.php:147
3115
+ #: ../Older_Dev/Before_3.0/2.6.1/trunk/includes/mlw_dashboard.php:147
3116
+ #: ../Older_Dev/Before_3.0/2.6.2/trunk/includes/mlw_dashboard.php:147
3117
+ #: ../Older_Dev/Before_3.0/2.6.3/trunk/includes/mlw_dashboard.php:147
3118
+ #: ../Older_Dev/Before_3.0/2.6.4/trunk/includes/mlw_dashboard.php:147
3119
+ #: ../Older_Dev/Before_3.0/2.7.1/trunk/includes/mlw_dashboard.php:147
3120
+ #: ../Older_Dev/Before_3.0/2.7.2/trunk/includes/mlw_dashboard.php:147
3121
+ #: ../Older_Dev/Before_3.0/2.7.3/trunk/includes/mlw_dashboard.php:147
3122
+ #: ../Older_Dev/Before_3.0/2.8.1/trunk/includes/mlw_dashboard.php:147
3123
+ #: ../Older_Dev/Before_3.0/2.8.2/trunk/includes/mlw_dashboard.php:147
3124
+ #: ../Older_Dev/Before_3.0/2.8.3/trunk/includes/mlw_dashboard.php:147
3125
+ #: ../Older_Dev/Before_3.0/2.8.4/trunk/includes/mlw_dashboard.php:147
3126
+ #: ../Older_Dev/Before_3.0/2.8.5/2.8.5/includes/mlw_dashboard.php:147
3127
+ #: ../Older_Dev/Before_3.0/2.8.5/trunk/includes/mlw_dashboard.php:147
3128
+ #: ../Older_Dev/Before_3.0/2.9.1/2.9.1/includes/mlw_dashboard.php:147
3129
+ #: ../Older_Dev/Before_3.0/2.9.1/trunk/includes/mlw_dashboard.php:147
3130
+ msgid "Dashboard"
3131
+ msgstr ""
3132
+
3133
+ #: ../Older_Dev/3.0.1/3.0.1/mlw_quizmaster2.php:99
3134
+ #: ../Older_Dev/3.0.1/trunk/mlw_quizmaster2.php:99
3135
+ #: ../Older_Dev/Before_3.0/2.5.1/trunk/mlw_quizmaster2.php:101
3136
+ #: ../Older_Dev/Before_3.0/2.6.1/trunk/mlw_quizmaster2.php:101
3137
+ #: ../Older_Dev/Before_3.0/2.6.2/trunk/mlw_quizmaster2.php:101
3138
+ #: ../Older_Dev/Before_3.0/2.6.3/trunk/mlw_quizmaster2.php:101
3139
+ #: ../Older_Dev/Before_3.0/2.6.4/trunk/mlw_quizmaster2.php:101
3140
+ #: ../Older_Dev/Before_3.0/2.7.1/trunk/mlw_quizmaster2.php:101
3141
+ #: ../Older_Dev/Before_3.0/2.7.2/trunk/mlw_quizmaster2.php:101
3142
+ #: ../Older_Dev/Before_3.0/2.7.3/trunk/mlw_quizmaster2.php:101
3143
+ #: ../Older_Dev/Before_3.0/2.8.1/trunk/mlw_quizmaster2.php:99
3144
+ #: ../Older_Dev/Before_3.0/2.8.2/trunk/mlw_quizmaster2.php:99
3145
+ #: ../Older_Dev/Before_3.0/2.8.3/trunk/mlw_quizmaster2.php:99
3146
+ #: ../Older_Dev/Before_3.0/2.8.4/trunk/mlw_quizmaster2.php:99
3147
+ #: ../Older_Dev/Before_3.0/2.8.5/2.8.5/mlw_quizmaster2.php:99
3148
+ #: ../Older_Dev/Before_3.0/2.8.5/trunk/mlw_quizmaster2.php:99
3149
+ #: ../Older_Dev/Before_3.0/2.9.1/2.9.1/mlw_quizmaster2.php:99
3150
+ #: ../Older_Dev/Before_3.0/2.9.1/trunk/mlw_quizmaster2.php:99
3151
+ #, php-format
3152
+ msgid ""
3153
+ "You have been using the Quiz Master Next plugin for a while now! Thanks for "
3154
+ "choosing to use this plugin. If it has benefited your website, please "
3155
+ "consider purchasing an <a href=\"http://mylocalwebstop.com/shop/\">add-on</"
3156
+ "a>, a <a href=\"http://wordpress.org/support/view/plugin-reviews/quiz-master-"
3157
+ "next\">review</a>, or taking this <a href=\"http://mylocalwebstop.com/sample-"
3158
+ "survey/\" target=\"_blank\">survey</a>. | <a href=\"%1$s\">Hide Notice</a>"
3159
+ msgstr ""
3160
+
3161
+ #: ../Older_Dev/3.1.1/3.1.1/mlw_quizmaster2.php:99
3162
+ #: ../Older_Dev/3.1.1/trunk/mlw_quizmaster2.php:99
3163
+ #: ../Older_Dev/3.2.1/3.2.1/mlw_quizmaster2.php:99
3164
+ #: ../Older_Dev/3.2.1/trunk/mlw_quizmaster2.php:99
3165
+ #: ../Older_Dev/3.2.2/3.2.2/mlw_quizmaster2.php:99
3166
+ #: ../Older_Dev/3.2.2/trunk/mlw_quizmaster2.php:99
3167
+ #: ../Older_Dev/3.3.1/3.3.1/mlw_quizmaster2.php:99
3168
+ #: ../Older_Dev/3.3.1/trunk/mlw_quizmaster2.php:99
3169
+ #: ../Older_Dev/3.3.2/3.3.2/mlw_quizmaster2.php:99
3170
+ #: ../Older_Dev/3.3.2/trunk/mlw_quizmaster2.php:99
3171
+ #, php-format
3172
+ msgid ""
3173
+ "You have been using the Quiz Master Next plugin for a while now! Thanks for "
3174
+ "choosing to use this plugin. If it has benefited your website, please "
3175
+ "consider purchasing an <a href=\"http://mylocalwebstop.com/shop/\">add-on</"
3176
+ "a>, giving a <a href=\"http://wordpress.org/support/view/plugin-reviews/quiz-"
3177
+ "master-next\">review</a>, or taking this <a href=\"http://mylocalwebstop.com/"
3178
+ "sample-survey/\" target=\"_blank\">survey</a>. | <a href=\"%1$s\">Hide "
3179
+ "Notice</a>"
3180
+ msgstr ""
3181
+
3182
+ #: ../Older_Dev/Before 1.0/0.9.7/trunk/includes/mlw_dashboard.php:128
3183
+ msgid ""
3184
+ "Thank you for trying out this plugin. I hope you find it beneficial to your "
3185
+ "website. If it is, please consider donating from the support page. Or, "
3186
+ "please consider rating this plugin "
3187
+ msgstr ""
3188
+
3189
+ #: ../Older_Dev/Before 1.0/0.9.7/trunk/includes/mlw_dashboard.php:128
3190
+ #: 1.0/0.9.8/trunk/includes/mlw_dashboard.php:128
3191
+ #: 1.0/0.9.9/trunk/includes/mlw_dashboard.php:128
3192
+ #: 2.0/1.0.1/trunk/includes/mlw_dashboard.php:128
3193
+ #: 2.0/1.0/trunk/includes/mlw_dashboard.php:128
3194
+ #: 2.0/1.1.1/trunk/includes/mlw_dashboard.php:128
3195
+ #: 2.0/1.2.1/trunk/includes/mlw_dashboard.php:128
3196
+ #: 2.0/1.3.1/trunk/includes/mlw_dashboard.php:128
3197
+ #: 2.0/1.4.1/trunk/includes/mlw_dashboard.php:136
3198
+ #: 2.0/1.4.2/trunk/includes/mlw_dashboard.php:136
3199
+ #: 2.0/1.5.1/trunk/includes/mlw_dashboard.php:134
3200
+ #: 2.0/1.6.1/trunk/includes/mlw_dashboard.php:138
3201
+ #: 2.0/1.6.2/trunk/includes/mlw_dashboard.php:138
3202
+ #: 2.0/1.6.3/trunk/includes/mlw_dashboard.php:138
3203
+ #: 2.0/1.7.1/trunk/includes/mlw_dashboard.php:147
3204
+ msgid "here"
3205
+ msgstr ""
3206
+
3207
+ #: ../Older_Dev/Before 1.0/0.9.8/trunk/includes/mlw_dashboard.php:128
3208
+ #: 1.0/0.9.9/trunk/includes/mlw_dashboard.php:128
3209
+ #: 2.0/1.0.1/trunk/includes/mlw_dashboard.php:128
3210
+ #: 2.0/1.0/trunk/includes/mlw_dashboard.php:128
3211
+ #: 2.0/1.1.1/trunk/includes/mlw_dashboard.php:128
3212
+ #: 2.0/1.2.1/trunk/includes/mlw_dashboard.php:128
3213
+ #: 2.0/1.3.1/trunk/includes/mlw_dashboard.php:128
3214
+ #: 2.0/1.4.1/trunk/includes/mlw_dashboard.php:136
3215
+ #: 2.0/1.4.2/trunk/includes/mlw_dashboard.php:136
3216
+ msgid ""
3217
+ "Thank you for trying out this plugin. I hope you find it beneficial to your "
3218
+ "website. If it is, please consider donating Or, please consider rating this "
3219
+ "plugin "
3220
+ msgstr ""
3221
+
3222
+ #: ../Older_Dev/Before 2.0/1.5.1/trunk/includes/mlw_dashboard.php:134
3223
+ #: 2.0/1.6.1/trunk/includes/mlw_dashboard.php:138
3224
+ #: 2.0/1.6.2/trunk/includes/mlw_dashboard.php:138
3225
+ #: 2.0/1.6.3/trunk/includes/mlw_dashboard.php:138
3226
+ #: 2.0/1.7.1/trunk/includes/mlw_dashboard.php:147
3227
+ msgid ""
3228
+ "Thank you for trying out this plugin. I hope you find it beneficial to your "
3229
+ "website. If it is, please consider donating or please consider rating this "
3230
+ "plugin "
3231
+ msgstr ""
3232
+
3233
+ #: ../Older_Dev/Before 2.0/1.7.1/trunk/mlw_quizmaster2.php:78
3234
+ #, php-format
3235
+ msgid ""
3236
+ "You have been using the Quiz Master Next plugin for a while now! Thanks for "
3237
+ "choosing to use this plugin. If it has benefited your website, please "
3238
+ "consider a <a href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-"
3239
+ "xclick&hosted_button_id=RTGYAETX36ZQJ\">donation</a> or a <a href=\"http://"
3240
+ "wordpress.org/support/view/plugin-reviews/quiz-master-next\">review</a>. | "
3241
+ "<a href=\"%1$s\">Hide Notice</a>"
3242
+ msgstr ""
3243
+
3244
+ #: ../Older_Dev/Before 2.0/1.8.1/trunk/mlw_quizmaster2.php:78
3245
+ #: 2.0/1.8.2/trunk/mlw_quizmaster2.php:78
3246
+ #: 2.0/1.9.1/trunk/mlw_quizmaster2.php:78
3247
+ #: 2.0/1.9.2/trunk/mlw_quizmaster2.php:78
3248
+ #: 2.0/1.9.3/trunk/mlw_quizmaster2.php:78
3249
+ #: 2.0/1.9.4/trunk/mlw_quizmaster2.php:78
3250
+ #: 2.0/1.9.5/trunk/mlw_quizmaster2.php:78
3251
+ #: 2.0/1.9.6/trunk/mlw_quizmaster2.php:78
3252
+ #: ../Older_Dev/Before_3.0/2.0.1/trunk/mlw_quizmaster2.php:78
3253
+ #: ../Older_Dev/Before_3.0/2.1.1/trunk/mlw_quizmaster2.php:78
3254
+ #: ../Older_Dev/Before_3.0/2.2.1/trunk/mlw_quizmaster2.php:78
3255
+ #: ../Older_Dev/Before_3.0/2.2.2/trunk/mlw_quizmaster2.php:78
3256
+ #: ../Older_Dev/Before_3.0/2.3.1/trunk/mlw_quizmaster2.php:78
3257
+ #: ../Older_Dev/Before_3.0/2.4.1/trunk/mlw_quizmaster2.php:78
3258
+ #, php-format
3259
+ msgid ""
3260
+ "You have been using the Quiz Master Next plugin for a while now! Thanks for "
3261
+ "choosing to use this plugin. If it has benefited your website, please "
3262
+ "consider a <a href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-"
3263
+ "xclick&hosted_button_id=RTGYAETX36ZQJ\">donation</a>, a <a href=\"http://"
3264
+ "wordpress.org/support/view/plugin-reviews/quiz-master-next\">review</a>, or "
3265
+ "taking this <a href=\"http://mylocalwebstop.com/sample-survey/\" target="
3266
+ "\"_blank\">survey</a>. | <a href=\"%1$s\">Hide Notice</a>"
3267
+ msgstr ""
3268
+
3269
+ #: ../quiz_master_next/includes/qmn_options_option_tab.php:214
3270
+ #: includes/qmn_options_option_tab.php:214
3271
+ msgid ""
3272
+ "This option is for here only for users of older versions. Please use the new "
3273
+ "template variables %FACEBOOK_SHARE% %TWITTER_SHARE% on your results pages "
3274
+ "instead of using this option!"
3275
+ msgstr ""
3276
+
3277
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:568
3278
+ #: ../quiz_master_next/includes/qmn_options_questions_tab.php:737
3279
+ #: includes/qmn_options_questions_tab.php:568
3280
+ #: includes/qmn_options_questions_tab.php:737
3281
+ msgid ""
3282
+ "For fill in the blank types, use %BLANK% to represent where to put the text "
3283
+ "box in your text."
3284
+ msgstr ""
3285
+
3286
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:191
3287
+ #: includes/qmn_options_results_page_tab.php:191
3288
+ msgid "Displays button to share on Facebook."
3289
+ msgstr ""
3290
+
3291
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:194
3292
+ #: includes/qmn_options_results_page_tab.php:194
3293
+ msgid "Displays button to share on Twitter."
3294
+ msgstr ""
3295
+
3296
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:209
3297
+ #: ../quiz_master_next/includes/qmn_options_results_page_tab.php:273
3298
+ #: includes/qmn_options_results_page_tab.php:209
3299
+ #: includes/qmn_options_results_page_tab.php:273
3300
+ msgid "Redirect URL"
3301
+ msgstr ""
3302
+
3303
+ #: ../quiz_master_next/includes/qmn_question_types.php:579
3304
+ #: includes/qmn_question_types.php:579
3305
+ msgid "Fill In The Blank"
3306
+ msgstr ""
languages/quiz-master-next-th.mo ADDED
Binary file
languages/quiz-master-next-th.po ADDED
@@ -0,0 +1,1440 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Quiz Master Next
2
+ # Copyright (C) 2015 ...
3
+ # This file is distributed under the GNU General Public License v2 or later.
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: Quiz Master Next\n"
7
+ "Report-Msgid-Bugs-To: Frank Corso <fpcorso@mylocalwebstop.com>\n"
8
+ "POT-Creation-Date: 2015-03-06 14:05-0500\n"
9
+ "PO-Revision-Date: \n"
10
+ "Last-Translator: Your Name <you@example.com>\n"
11
+ "Language-Team: My Local Webstop <fpcorso@mylocalwebstop.com>\n"
12
+ "Language: en_US\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
18
+ "X-Poedit-SourceCharset: UTF-8\n"
19
+ "X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;esc_attr_e;esc_attr_x:1,2c;"
20
+ "esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;"
21
+ "__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
22
+ "X-Poedit-Basepath: ../\n"
23
+ "X-Generator: Poedit 1.7.3\n"
24
+ "X-Poedit-SearchPath-0: .\n"
25
+
26
+ #: includes/qmn_addons.php:48
27
+ msgid "These addons extend the functionality of Quiz Master Next"
28
+ msgstr "ส่วนเพิ่มเติม เหล่านี้ ขยายการทำงานของ Quiz Master Next"
29
+
30
+ #: includes/qmn_addons.php:71
31
+ msgid "Browse All Addons"
32
+ msgstr "เลือกส่วนเพิ่มเติมทั้งหมด"
33
+
34
+ #: includes/qmn_addons.php:78
35
+ msgid "Featured Addons"
36
+ msgstr "ส่วนเพิ่มเติมแนะนำ"
37
+
38
+ #: includes/qmn_alerts.php:19
39
+ msgid "Success!"
40
+ msgstr "สำเร็จ!"
41
+
42
+ #: includes/qmn_alerts.php:23 includes/qmn_quiz_options.php:96
43
+ msgid "Error!"
44
+ msgstr "ผิดพลาด!"
45
+
46
+ #: includes/qmn_credits.php:86
47
+ msgid "Welcome To Quiz Master Next"
48
+ msgstr "ยินดีต้อนรับสู่ Quiz Master Next"
49
+
50
+ #: includes/qmn_credits.php:87
51
+ msgid "Thank you for updating!"
52
+ msgstr "ขอบคุณที่อัพเดท!"
53
+
54
+ #: includes/qmn_credits.php:91
55
+ msgid "What's New!"
56
+ msgstr "มีอะไรใหม่!"
57
+
58
+ #: includes/qmn_credits.php:93
59
+ msgid "Changelog"
60
+ msgstr "บันทึกการเปลี่ยนแปลง"
61
+
62
+ #: includes/qmn_credits.php:95
63
+ msgid "Requested Features"
64
+ msgstr "ร้องของคุณสมบัติใหม่"
65
+
66
+ #: includes/qmn_dashboard.php:16
67
+ msgid "Quiz Daily Stats - Times Taken"
68
+ msgstr "สถิติทดสอบรายวัน - เวลาที่ใช้"
69
+
70
+ #: includes/qmn_dashboard.php:17
71
+ msgid "Quiz Total Stats"
72
+ msgstr "สถิติทดสอบทั้งหมด"
73
+
74
+ #: includes/qmn_dashboard.php:18
75
+ msgid "Quiz Weekly Stats - Times Taken"
76
+ msgstr "สถิติทดสอบรายสัปดาห์ - เวลาที่ใช้"
77
+
78
+ #: includes/qmn_dashboard.php:19
79
+ msgid "Quiz Monthly Stats - Times Taken"
80
+ msgstr "สถิติทดสอบรายเดือน - เวลาที่ใช้"
81
+
82
+ #: includes/qmn_dashboard.php:20
83
+ msgid "Quiz Quarterly Stats - Times Taken"
84
+ msgstr "สถิติทดสอบราย 3 เดือน - เวลาที่ใช้"
85
+
86
+ #: includes/qmn_dashboard.php:25
87
+ msgid "Quizzes Taken Today"
88
+ msgstr "แบบทดสอบที่ทำวันนี้"
89
+
90
+ #: includes/qmn_dashboard.php:26
91
+ msgid "Quizzes Taken Last 7 Days"
92
+ msgstr "แบบทดสอบที่ทำแล้วใน 7 วัน"
93
+
94
+ #: includes/qmn_dashboard.php:27
95
+ msgid "Quizzes Taken Last 30 Days"
96
+ msgstr "แบบทดสอบที่ทำแล้วใน 30 วัน"
97
+
98
+ #: includes/qmn_dashboard.php:28
99
+ msgid "Quizzes Taken Last 120 Days"
100
+ msgstr "แบบทดสอบที่ทำแล้วใน 120 วัน"
101
+
102
+ #: includes/qmn_dashboard.php:54
103
+ msgid "Quiz Statistics"
104
+ msgstr "สถิติการทดสอบ"
105
+
106
+ #: includes/qmn_dashboard.php:228
107
+ msgid "Total Created Quizzes"
108
+ msgstr "จำนวนแบบทดสอบที่สร้างทั้งหมด"
109
+
110
+ #: includes/qmn_dashboard.php:232
111
+ msgid "Total Deleted Quizzes"
112
+ msgstr "จำนวนแบบทดสอบที่ลบทั้งหมด"
113
+
114
+ #: includes/qmn_dashboard.php:236
115
+ msgid "Total Active Quizzes"
116
+ msgstr "จำนวนแบบทดสอบที่ใช้งานทั้งหมด"
117
+
118
+ #: includes/qmn_dashboard.php:240
119
+ msgid "Total Created Questions"
120
+ msgstr "จำนวนคำถามที่สร้างทั้งหมด"
121
+
122
+ #: includes/qmn_dashboard.php:244
123
+ msgid "Total Times All Active Quizzes Have Been Viewed"
124
+ msgstr "เวลาทั้งหมดที่แบบทดสอบถูกเปิดดู"
125
+
126
+ #: includes/qmn_dashboard.php:248
127
+ msgid "Total Times All Active Quizzes Have Been Taken"
128
+ msgstr "เวลาทั้งหมดที่แบบทดสอบถูกเปิดทำ"
129
+
130
+ #: includes/qmn_dashboard.php:252
131
+ msgid "Average Amount Each Active Quiz Has Been Viewed"
132
+ msgstr "จำนวนเฉลี่ยที่แบบทดสอบถูกเปิดดู"
133
+
134
+ #: includes/qmn_dashboard.php:256
135
+ msgid "Average Amount Each Active Quiz Has Been Taken"
136
+ msgstr "จำนวนเฉลี่ยที่แบบทดสอบถูกเปิดทำ"
137
+
138
+ #: includes/qmn_dashboard.php:260
139
+ msgid "Quiz That Has Been Viewed The Most"
140
+ msgstr "แบบทดสอบที่ถูกเปิดดูมากที่สุด"
141
+
142
+ #: includes/qmn_dashboard.php:264
143
+ msgid "Quiz That Has Been Taken The Most"
144
+ msgstr "แบบทดสอบที่ถูกเปิดทำมากที่สุด"
145
+
146
+ #: includes/qmn_dashboard_widgets.php:9
147
+ msgid "Quiz Master Next Snapshot"
148
+ msgstr "Quiz Master Next Snapshot"
149
+
150
+ #: includes/qmn_dashboard_widgets.php:128
151
+ msgid "quizzes taken today"
152
+ msgstr "แบบทดสอบที่มีคนทำในวันนี้"
153
+
154
+ #: includes/qmn_dashboard_widgets.php:147
155
+ msgid "quizzes taken last 7 days"
156
+ msgstr "แบบทดสอบที่มีคนทำ ย้อนหลัง 7 วัน"
157
+
158
+ #: includes/qmn_dashboard_widgets.php:166
159
+ msgid "total active quizzes"
160
+ msgstr "จำนวนแบบทดสอบที่ใช้งานทั้งหมด"
161
+
162
+ #: includes/qmn_dashboard_widgets.php:172
163
+ msgid "total active questions"
164
+ msgstr "จำนวนคำถามที่ใช้งานทั้งหมด"
165
+
166
+ #: includes/qmn_dashboard_widgets.php:178
167
+ msgid "most popular quiz"
168
+ msgstr "แบบทดสอบเป็นที่นิยมสูงสุด"
169
+
170
+ #: includes/qmn_dashboard_widgets.php:184
171
+ msgid "least popular quiz"
172
+ msgstr "แบบทดสอบเป็นที่นิยมต่ำสุด"
173
+
174
+ #: includes/qmn_help.php:13
175
+ msgid "Need Help?"
176
+ msgstr "ต้องการความช่วยเหลือ?"
177
+
178
+ #: includes/qmn_help.php:14
179
+ msgid "Support"
180
+ msgstr "สนับสนุน"
181
+
182
+ #: includes/qmn_help.php:15
183
+ msgid "System Info"
184
+ msgstr "ข้อมูลระบบ"
185
+
186
+ #: includes/qmn_help.php:18
187
+ msgid "Help Page"
188
+ msgstr "หน้าช่วยเหลือ"
189
+
190
+ #: includes/qmn_help.php:41
191
+ msgid "Need help with the plugin? Try any of the following:"
192
+ msgstr "ต้องการความช่วยเหลือ? ลองทำสิ่งต่อไปนี้"
193
+
194
+ #: includes/qmn_options_certificate_tab.php:6
195
+ msgid "Certificate (Beta)"
196
+ msgstr "ประกาศนียบัตร (รุ่นทดสอบ)"
197
+
198
+ #: includes/qmn_options_certificate_tab.php:32
199
+ msgid "The certificate has been updated successfully."
200
+ msgstr "อัพเดทประกาศนียบัตรเรียบร้อย"
201
+
202
+ #: includes/qmn_options_certificate_tab.php:45 includes/qmn_options_email_tab.php:55
203
+ #: includes/qmn_options_email_tab.php:114 includes/qmn_options_email_tab.php:178
204
+ #: includes/qmn_options_leaderboard_tab.php:38 includes/qmn_options_option_tab.php:56
205
+ #: includes/qmn_options_questions_tab.php:118 includes/qmn_options_questions_tab.php:145
206
+ #: includes/qmn_options_questions_tab.php:229 includes/qmn_options_questions_tab.php:322
207
+ #: includes/qmn_options_results_page_tab.php:54 includes/qmn_options_results_page_tab.php:94
208
+ #: includes/qmn_options_style_tab.php:39 includes/qmn_options_text_tab.php:55
209
+ #: includes/qmn_options_tools_tab.php:36 includes/qmn_quiz_creator.php:382
210
+ #: includes/qmn_quiz_creator.php:448 includes/qmn_quiz_creator.php:490
211
+ #: includes/qmn_quiz_creator.php:648 includes/qmn_quiz_creator.php:713
212
+ #: includes/qmn_results.php:36
213
+ #, php-format
214
+ msgid ""
215
+ "There has been an error in this action. Please share this with the developer. Error Code: %s"
216
+ msgstr "เกิดข้อผิดพลาดในการทำงาน โปรดแชร์ให้กับผู้พัฒนา หมายเลขข้อผิดพลาด Error Code: %s"
217
+
218
+ #: includes/qmn_options_certificate_tab.php:61
219
+ msgid "Enter title here"
220
+ msgstr "กรอกหัวข้อที่นี่"
221
+
222
+ #: includes/qmn_options_certificate_tab.php:61 includes/qmn_options_email_tab.php:73
223
+ #: includes/qmn_options_email_tab.php:91
224
+ msgid "Enter text here"
225
+ msgstr "กรอกข้อความที่นี่"
226
+
227
+ #: includes/qmn_options_certificate_tab.php:70
228
+ msgid "Quiz Certificate (Beta)"
229
+ msgstr "ประกาศนียบัตรสำหรับแบบทดสอบ (รุ่นทดลอง)"
230
+
231
+ #: includes/qmn_options_certificate_tab.php:71
232
+ msgid ""
233
+ "Enter in your text here to fill in the certificate for this quiz. Be sure to enter in the link "
234
+ "variable into the templates on the Quiz Text tab so the user can access the certificate."
235
+ msgstr ""
236
+ "กรอกข้อความที่นี่เพื่อเติมลงในประกาศนียบัตรสำหรับแบบทดสอบนี้ โปรดใส่ลิงค์ไปยังตัวแปรในแม่แบบ (Templates) ในแท็บ "
237
+ "ข้อความแบบทดสอบ เพื่อให้ผู้ใช้งานสามารถเข้าสู่ประกาศนียบัตรได้"
238
+
239
+ #: includes/qmn_options_certificate_tab.php:72
240
+ msgid "These fields cannot contain HTML."
241
+ msgstr "ไม่สามารถใช้ HTML ในช่องนี้"
242
+
243
+ #: includes/qmn_options_certificate_tab.php:73 includes/qmn_options_certificate_tab.php:129
244
+ msgid "Save Certificate Options"
245
+ msgstr "บันทึกการตั้งค่าประกาศนียบัตร"
246
+
247
+ #: includes/qmn_options_certificate_tab.php:81
248
+ msgid "Enable Certificates For This Quiz?"
249
+ msgstr "ใช้งานประกาศนียบัตรสำหรับแบบทดสอบนี้?"
250
+
251
+ #: includes/qmn_options_certificate_tab.php:83 includes/qmn_options_email_tab.php:325
252
+ #: includes/qmn_options_email_tab.php:332 includes/qmn_options_option_tab.php:102
253
+ #: includes/qmn_options_option_tab.php:163 includes/qmn_options_option_tab.php:170
254
+ #: includes/qmn_options_option_tab.php:178 includes/qmn_options_option_tab.php:186
255
+ #: includes/qmn_options_option_tab.php:194 includes/qmn_options_option_tab.php:202
256
+ #: includes/qmn_options_option_tab.php:209 includes/qmn_options_option_tab.php:216
257
+ #: includes/qmn_options_questions_tab.php:674 includes/qmn_options_questions_tab.php:830
258
+ #: includes/qmn_options_results_page_tab.php:247
259
+ msgid "Yes"
260
+ msgstr "ใช่"
261
+
262
+ #: includes/qmn_options_certificate_tab.php:84 includes/qmn_options_email_tab.php:326
263
+ #: includes/qmn_options_email_tab.php:333 includes/qmn_options_option_tab.php:103
264
+ #: includes/qmn_options_option_tab.php:150 includes/qmn_options_option_tab.php:164
265
+ #: includes/qmn_options_option_tab.php:172 includes/qmn_options_option_tab.php:180
266
+ #: includes/qmn_options_option_tab.php:188 includes/qmn_options_option_tab.php:196
267
+ #: includes/qmn_options_option_tab.php:203 includes/qmn_options_option_tab.php:210
268
+ #: includes/qmn_options_option_tab.php:217 includes/qmn_options_questions_tab.php:675
269
+ #: includes/qmn_options_questions_tab.php:831 includes/qmn_options_results_page_tab.php:247
270
+ msgid "No"
271
+ msgstr "ไม่ใช่"
272
+
273
+ #: includes/qmn_options_certificate_tab.php:89
274
+ msgid "Certificate Title"
275
+ msgstr "หัวข้อประกาศนียบัตร"
276
+
277
+ #: includes/qmn_options_certificate_tab.php:96
278
+ msgid "Message Displayed On Certificate"
279
+ msgstr "ข้อความแสดงบนประกาศนียบัตร"
280
+
281
+ #: includes/qmn_options_certificate_tab.php:98 includes/qmn_options_leaderboard_tab.php:91
282
+ #: includes/qmn_options_text_tab.php:181 includes/qmn_options_text_tab.php:191
283
+ #: includes/qmn_options_text_tab.php:201 includes/qmn_options_text_tab.php:211
284
+ #: includes/qmn_options_text_tab.php:221 includes/qmn_options_text_tab.php:231
285
+ #: includes/qmn_options_text_tab.php:241 includes/qmn_options_text_tab.php:251
286
+ #: includes/qmn_options_text_tab.php:264 includes/qmn_options_text_tab.php:281
287
+ msgid "Allowed Variables:"
288
+ msgstr "ตัวแปรที่อนุญาตื"
289
+
290
+ #: includes/qmn_options_certificate_tab.php:116
291
+ msgid "URL To Logo (Must be JPG, JPEG, PNG or GIF)"
292
+ msgstr "URL ไปยังโลโก้ (ชนิด JPG, JPEG, PNG or GIF)"
293
+
294
+ #: includes/qmn_options_certificate_tab.php:123
295
+ msgid "URL To Background Img (Must be JPG, JPEG, PNG or GIF)"
296
+ msgstr "URL ไปยังภาพพื้นหลัง (ชนิด JPG, JPEG, PNG or GIF)"
297
+
298
+ #: includes/qmn_options_email_tab.php:6
299
+ msgid "Emails"
300
+ msgstr "อีเมล์"
301
+
302
+ #: includes/qmn_options_email_tab.php:42 includes/qmn_options_email_tab.php:101
303
+ msgid "The email has been added successfully."
304
+ msgstr "เพิ่มอีเมล์เรียบร้อย"
305
+
306
+ #: includes/qmn_options_email_tab.php:165
307
+ msgid "The email has been updated successfully."
308
+ msgstr "อัพเดทอีเมล์เรียบร้อย"
309
+
310
+ #: includes/qmn_options_email_tab.php:232 includes/qmn_options_leaderboard_tab.php:49
311
+ #: includes/qmn_options_results_page_tab.php:134 includes/qmn_options_text_tab.php:92
312
+ msgid "Template Variables"
313
+ msgstr "ตัวแปรแม่แบบ"
314
+
315
+ #: includes/qmn_options_email_tab.php:235 includes/qmn_options_results_page_tab.php:137
316
+ #: includes/qmn_options_text_tab.php:95
317
+ msgid "Score for the quiz when using points"
318
+ msgstr "คะแนนแบบทดสอบ ใช้งานคะแนน"
319
+
320
+ #: includes/qmn_options_email_tab.php:238 includes/qmn_options_results_page_tab.php:140
321
+ #: includes/qmn_options_text_tab.php:98
322
+ msgid "The average amount of points user had per question"
323
+ msgstr "คะแนนเฉลี่ยของผู้ใช้งาน ต่อคำถาม"
324
+
325
+ #: includes/qmn_options_email_tab.php:241 includes/qmn_options_results_page_tab.php:143
326
+ #: includes/qmn_options_text_tab.php:101
327
+ msgid "The number of correct answers the user had"
328
+ msgstr "จำนวนข้อถูกของผู้ใช้"
329
+
330
+ #: includes/qmn_options_email_tab.php:244 includes/qmn_options_results_page_tab.php:146
331
+ #: includes/qmn_options_text_tab.php:104
332
+ msgid "The total number of questions in the quiz"
333
+ msgstr "จำนวนคำถามทั้งหมดของแบบทดสอบนี้"
334
+
335
+ #: includes/qmn_options_email_tab.php:247 includes/qmn_options_results_page_tab.php:149
336
+ #: includes/qmn_options_text_tab.php:107
337
+ msgid "Score for the quiz when using correct answers"
338
+ msgstr "คะแนนแบบทดสอบ ใช้งานคำตอบที่ถูก"
339
+
340
+ #: includes/qmn_options_email_tab.php:250 includes/qmn_options_results_page_tab.php:152
341
+ #: includes/qmn_options_text_tab.php:110
342
+ msgid "The name the user entered before the quiz"
343
+ msgstr "ชื่อที่ผู้ใช้กรอกก่อนทำแบบทดสอบ"
344
+
345
+ #: includes/qmn_options_email_tab.php:253 includes/qmn_options_results_page_tab.php:155
346
+ #: includes/qmn_options_text_tab.php:113
347
+ msgid "The business the user entered before the quiz"
348
+ msgstr "ที่ทำงานที่ผู้ใช้กรอกก่อนทำแบบทดสอบ"
349
+
350
+ #: includes/qmn_options_email_tab.php:256 includes/qmn_options_results_page_tab.php:158
351
+ #: includes/qmn_options_text_tab.php:116
352
+ msgid "The phone number the user entered before the quiz"
353
+ msgstr "โทรศัพท์ที่ผู้ใช้กรอกก่อนทำแบบทดสอบ"
354
+
355
+ #: includes/qmn_options_email_tab.php:259 includes/qmn_options_results_page_tab.php:161
356
+ #: includes/qmn_options_text_tab.php:119
357
+ msgid "The email the user entered before the quiz"
358
+ msgstr "อีเมล์ที่ผู้ใช้กรอกก่อนทำแบบทดสอบ"
359
+
360
+ #: includes/qmn_options_email_tab.php:262 includes/qmn_options_leaderboard_tab.php:77
361
+ #: includes/qmn_options_results_page_tab.php:164 includes/qmn_options_text_tab.php:122
362
+ msgid "The name of the quiz"
363
+ msgstr "ชื่อของแบบทดสอบ"
364
+
365
+ #: includes/qmn_options_email_tab.php:265 includes/qmn_options_results_page_tab.php:167
366
+ #: includes/qmn_options_text_tab.php:125
367
+ msgid "Shows the question, the answer the user provided, and the correct answer"
368
+ msgstr "แสดงคำถาม, คำตอบจากผู้ใช้, และข้อที่ถูกต้อง"
369
+
370
+ #: includes/qmn_options_email_tab.php:268 includes/qmn_options_results_page_tab.php:170
371
+ #: includes/qmn_options_text_tab.php:128
372
+ msgid "The comments the user entered into comment box if enabled"
373
+ msgstr "ข้อแนะนำที่ได้รับจากผู้ใช้"
374
+
375
+ #: includes/qmn_options_email_tab.php:271 includes/qmn_options_results_page_tab.php:173
376
+ #: includes/qmn_options_text_tab.php:131
377
+ msgid "The amount of time user spent of quiz"
378
+ msgstr "เวลาที่ใช้ทั่งหมดในการทำแบบทดสอบ"
379
+
380
+ #: includes/qmn_options_email_tab.php:274 includes/qmn_options_results_page_tab.php:176
381
+ #: includes/qmn_options_text_tab.php:134
382
+ msgid "The link to the certificate after completing the quiz"
383
+ msgstr "ลิงค์ไปสู่ประกาศนียบัตรหลังทำแบบทดสอบเรียบร้อย"
384
+
385
+ #: includes/qmn_options_email_tab.php:277 includes/qmn_options_results_page_tab.php:179
386
+ #: includes/qmn_options_text_tab.php:137
387
+ msgid "The amount of points a specific category earned."
388
+ msgstr "คะแนนเฉพาะจากหมวดหมู่"
389
+
390
+ #: includes/qmn_options_email_tab.php:280 includes/qmn_options_results_page_tab.php:182
391
+ #: includes/qmn_options_text_tab.php:140
392
+ msgid "The score a specific category earned."
393
+ msgstr "คะแนนเฉพาะจากหมวดหมู่"
394
+
395
+ #: includes/qmn_options_email_tab.php:283 includes/qmn_options_results_page_tab.php:185
396
+ #: includes/qmn_options_text_tab.php:143
397
+ msgid "The average points from all categories."
398
+ msgstr "คะแนนเฉลี่ยจากหมวดหมู่ทั้งหมด"
399
+
400
+ #: includes/qmn_options_email_tab.php:286 includes/qmn_options_results_page_tab.php:188
401
+ #: includes/qmn_options_text_tab.php:146
402
+ msgid "The average score from all categories."
403
+ msgstr "คะแนนเฉลี่ยจากหมวดหมู่ทั้งหมด"
404
+
405
+ #: includes/qmn_options_email_tab.php:289 includes/qmn_options_text_tab.php:149
406
+ msgid "The question that the user answered"
407
+ msgstr "คำถามที่ผู้ใช้ตอบ"
408
+
409
+ #: includes/qmn_options_email_tab.php:292 includes/qmn_options_text_tab.php:152
410
+ msgid "The answer the user gave for the question"
411
+ msgstr "คำตอบที่ผู้ใช้ตอบคำถาม"
412
+
413
+ #: includes/qmn_options_email_tab.php:295 includes/qmn_options_text_tab.php:155
414
+ msgid "The correct answer for the question"
415
+ msgstr "คำตอบที่ถูกต้อง"
416
+
417
+ #: includes/qmn_options_email_tab.php:298 includes/qmn_options_text_tab.php:158
418
+ msgid "The comments the user provided in the comment field for the question"
419
+ msgstr "ข้อเสนอแนะที่ผู้ใช้กรอกสำหรับคำถาม"
420
+
421
+ #: includes/qmn_options_email_tab.php:301 includes/qmn_options_text_tab.php:161
422
+ msgid "Reason why the correct answer is the correct answer"
423
+ msgstr "เหตุผลอธิบายข้อถูก"
424
+
425
+ #: includes/qmn_options_email_tab.php:304 includes/qmn_options_text_tab.php:164
426
+ msgid "The Current Date"
427
+ msgstr "วันที่ปัจจุบัน"
428
+
429
+ #: includes/qmn_options_email_tab.php:319 includes/qmn_options_email_tab.php:518
430
+ msgid "Save Email Templates And Settings"
431
+ msgstr "บันทึกแม่แบบอีเมล์และการตั้งค่า"
432
+
433
+ #: includes/qmn_options_email_tab.php:323
434
+ msgid "Send user email upon completion?"
435
+ msgstr "ส่งอีเมล์หาผู้ใช้เมื่อเสร็จเรียบร้อย"
436
+
437
+ #: includes/qmn_options_email_tab.php:330
438
+ msgid "Send admin email upon completion?"
439
+ msgstr "ส่งอีเมล์หาผู้ดูแลระบบเมื่อเสร็จเรียบร้อย"
440
+
441
+ #: includes/qmn_options_email_tab.php:337
442
+ msgid "What emails should we send the admin email to? Separate emails with a comma."
443
+ msgstr "อีเมล์ใดที่จะใช้ส่งไปยังผู้ดูแลระบบ แยกแต่ละอีเมล์ด้วยเครื่องหมายลูกน่ำ"
444
+
445
+ #: includes/qmn_options_email_tab.php:341
446
+ msgid "What is the From Name for the email sent to users and admin?"
447
+ msgstr "ชื่อฟอร์มใดที่ต้องการใช้ส่งอีเมล์ไปยังผู้ใช้และผู้ดูแลระบบ"
448
+
449
+ #: includes/qmn_options_email_tab.php:347
450
+ msgid "Email Sent To User"
451
+ msgstr "ส่งอีเมล์ให้ผู้ใช้เรียบร้อย"
452
+
453
+ #: includes/qmn_options_email_tab.php:348 includes/qmn_options_email_tab.php:426
454
+ msgid "Add New User Email"
455
+ msgstr "เพิ่มอีเมล์ผู้ใช่ใหม่"
456
+
457
+ #: includes/qmn_options_email_tab.php:353 includes/qmn_options_email_tab.php:419
458
+ #: includes/qmn_options_email_tab.php:440 includes/qmn_options_email_tab.php:506
459
+ #: includes/qmn_options_results_page_tab.php:206 includes/qmn_options_results_page_tab.php:270
460
+ msgid "Score Greater Than Or Equal To"
461
+ msgstr "คะแนนมากกว่าหรือเท่ากับ"
462
+
463
+ #: includes/qmn_options_email_tab.php:354 includes/qmn_options_email_tab.php:420
464
+ #: includes/qmn_options_email_tab.php:441 includes/qmn_options_email_tab.php:507
465
+ #: includes/qmn_options_results_page_tab.php:207 includes/qmn_options_results_page_tab.php:271
466
+ msgid "Score Less Than Or Equal To"
467
+ msgstr "คะแนนน้อยกว่าหรือเท่ากับ"
468
+
469
+ #: includes/qmn_options_email_tab.php:355 includes/qmn_options_email_tab.php:421
470
+ #: includes/qmn_options_email_tab.php:442 includes/qmn_options_email_tab.php:508
471
+ msgid "Subject"
472
+ msgstr "หัวเรื่อง"
473
+
474
+ #: includes/qmn_options_email_tab.php:356 includes/qmn_options_email_tab.php:422
475
+ #: includes/qmn_options_email_tab.php:443 includes/qmn_options_email_tab.php:509
476
+ msgid "Email To Send"
477
+ msgstr "อีเมล์ที่จะส่ง"
478
+
479
+ #: includes/qmn_options_email_tab.php:434
480
+ msgid "Email Sent To Admin"
481
+ msgstr "ส่งอีเมล์ไปหาผู้ดูแลระบบแล้ว"
482
+
483
+ #: includes/qmn_options_email_tab.php:435 includes/qmn_options_email_tab.php:513
484
+ msgid "Add New Admin Email"
485
+ msgstr "เพื่ออีเมล์ผู้ดูแลระบบใหม่"
486
+
487
+ #: includes/qmn_options_leaderboard_tab.php:6
488
+ msgid "Leaderboard"
489
+ msgstr "กระดานผู้นำ"
490
+
491
+ #: includes/qmn_options_leaderboard_tab.php:25
492
+ msgid "The leaderboards has been updated successfully."
493
+ msgstr "อัพเดทกระดานผู้นำเรียบร้อย"
494
+
495
+ #: includes/qmn_options_leaderboard_tab.php:52
496
+ msgid "The name of the user who is in first place"
497
+ msgstr "ชื่อผู้ใช้งานที่อยู่ในลำดับที่ 1"
498
+
499
+ #: includes/qmn_options_leaderboard_tab.php:53
500
+ msgid "The score from the first place's quiz"
501
+ msgstr "คะแนนจากแบบทดสอบลำดับที่ 1"
502
+
503
+ #: includes/qmn_options_leaderboard_tab.php:57
504
+ msgid "The name of the user who is in second place"
505
+ msgstr "ชื่อผู้ใช้งานที่อยู่ในลำดับที่ 2"
506
+
507
+ #: includes/qmn_options_leaderboard_tab.php:58
508
+ msgid "The score from the second place's quiz"
509
+ msgstr "คะแนนจากแบบทดสอบลำดับที่ 2"
510
+
511
+ #: includes/qmn_options_leaderboard_tab.php:62
512
+ msgid "The name of the user who is in third place"
513
+ msgstr "ชื่อผู้ใช้งานที่อยู่ในลำดับที่ 3"
514
+
515
+ #: includes/qmn_options_leaderboard_tab.php:63
516
+ msgid "The score from the third place's quiz"
517
+ msgstr "คะแนนจากแบบทดสอบลำดับที่ 3"
518
+
519
+ #: includes/qmn_options_leaderboard_tab.php:67
520
+ msgid "The name of the user who is in fourth place"
521
+ msgstr "ชื่อผู้ใช้งานที่อยู่ในลำดับที่ 4"
522
+
523
+ #: includes/qmn_options_leaderboard_tab.php:68
524
+ msgid "The score from the fourth place's quiz"
525
+ msgstr "คะแนนจากแบบทดสอบลำดับที่ 4"
526
+
527
+ #: includes/qmn_options_leaderboard_tab.php:72
528
+ msgid "The name of the user who is in fifth place"
529
+ msgstr "ชื่อผู้ใช้งานที่อยู่ในลำดับที่ 5"
530
+
531
+ #: includes/qmn_options_leaderboard_tab.php:73
532
+ msgid "The score from the fifth place's quiz"
533
+ msgstr "คะแนนจากแบบทดสอบลำดับที่ 5"
534
+
535
+ #: includes/qmn_options_leaderboard_tab.php:80 includes/qmn_options_leaderboard_tab.php:108
536
+ msgid "Save Leaderboard Options"
537
+ msgstr "บันทึกการตั้งค่ากระดานผู้นำ"
538
+
539
+ #: includes/qmn_options_leaderboard_tab.php:89
540
+ msgid "Leaderboard Template"
541
+ msgstr "แม่แบบกระดานผู้นำ"
542
+
543
+ #: includes/qmn_options_option_tab.php:6
544
+ msgid "Options"
545
+ msgstr "ตัวเลือก"
546
+
547
+ #: includes/qmn_options_option_tab.php:43
548
+ msgid "The options has been updated successfully."
549
+ msgstr "อัพเดทตัวเลือกเรียบร้อย"
550
+
551
+ #: includes/qmn_options_option_tab.php:84 includes/qmn_options_option_tab.php:221
552
+ msgid "Save Options"
553
+ msgstr "บันทึกตัวเลือก"
554
+
555
+ #: includes/qmn_options_option_tab.php:92
556
+ msgid "Which system is this quiz graded on?"
557
+ msgstr "รูปแบบการให้คะแนน"
558
+
559
+ #: includes/qmn_options_option_tab.php:94
560
+ msgid "Correct/Incorrect"
561
+ msgstr "ข้อถูก/ข้อผิด"
562
+
563
+ #: includes/qmn_options_option_tab.php:95
564
+ msgid "Points"
565
+ msgstr "คะแนนรวม"
566
+
567
+ #: includes/qmn_options_option_tab.php:96 includes/qmn_results.php:258
568
+ msgid "Not Graded"
569
+ msgstr "ไม่คิดคะแนน"
570
+
571
+ #: includes/qmn_options_option_tab.php:100
572
+ msgid "Should the user be required to be logged in to take this quiz?"
573
+ msgstr "ผู้ใช้งานต้อง ลงชื่อเข้าระบบ เพื่อทำแบบทดสอบ?"
574
+
575
+ #: includes/qmn_options_option_tab.php:107
576
+ msgid "How many questions per page would you like? (Leave 0 for all questions on one page)"
577
+ msgstr "จำนวนคำถามต่อหน้า? (ใส่ 0 จะแสดงคำถามทั้งหมดในหน้าเดียว)"
578
+
579
+ #: includes/qmn_options_option_tab.php:113
580
+ msgid "How many minutes does the user have to finish the quiz? (Leave 0 for no time limit)"
581
+ msgstr "ให้เวลา กี่นาที สำหรับแบบทดสอบนี้? (ใส่ 0 จะไม่กำหนดเวลา)"
582
+
583
+ #: includes/qmn_options_option_tab.php:119
584
+ msgid ""
585
+ "How many times can a user take this quiz? (Leave 0 for as many times as the user wants to. "
586
+ "Currently only works for registered users)"
587
+ msgstr ""
588
+ "จำกัดจำนวนครั้งที่ผู้ใช้งานทำแบบทดสอบนี้? (ใส่ 0 จะไม่จำกัดจำนวนครั้ง ใช้จำกัดได้เฉพาะผู้ใช้งานอยู่่ในระบบและลงชื่อเข้าใช้)"
589
+
590
+ #: includes/qmn_options_option_tab.php:125
591
+ msgid "How many total entries can this quiz have? (Leave 0 for unlimited entries"
592
+ msgstr "จำนวนรายการทั้งหมดที่แบบทดสอบมีได้? (ใส่ 0 จะไม่จำกัดจำนวน)"
593
+
594
+ #: includes/qmn_options_option_tab.php:131
595
+ msgid "How many questions should be loaded for quiz? (Leave 0 to load all questions)"
596
+ msgstr "กำหนดจำนวนคำถามที่เลือกมาใช้ในแบบทดสอบนี้ (ใส่ 0 จะเลือกคำถามทั้งหมด)"
597
+
598
+ #: includes/qmn_options_option_tab.php:137
599
+ msgid ""
600
+ "What time-frame should the user be able to access the quiz? (Leave blank if the user can access "
601
+ "anytime)"
602
+ msgstr "กำหนดช่วงเวลาที่อนุญาติให้เข้าทำแบบทดสอบ (ใส่ 0 จะไม่กำหนดเวลา)"
603
+
604
+ #: includes/qmn_options_option_tab.php:139
605
+ msgid "start date"
606
+ msgstr "วันที่เริ่มต้น"
607
+
608
+ #: includes/qmn_options_option_tab.php:142
609
+ msgid "end date"
610
+ msgstr "วันที่สิ้นสุด"
611
+
612
+ #: includes/qmn_options_option_tab.php:146
613
+ msgid "Are the questions random? (Question Order will not apply if this is yes)"
614
+ msgstr "สุ่มเลือกคำถาม? (ระบบจะไม่สนใจการเรียงลำดับคำถาม)"
615
+
616
+ #: includes/qmn_options_option_tab.php:148
617
+ msgid "Random Questions"
618
+ msgstr "สุ่มคำถาม"
619
+
620
+ #: includes/qmn_options_option_tab.php:149
621
+ msgid "Random Questions And Answers"
622
+ msgstr "สุ่มลำดับคำถามและคำตอบ"
623
+
624
+ #: includes/qmn_options_option_tab.php:154
625
+ msgid ""
626
+ "Would you like to ask for the contact information at the beginning or at the end of the quiz?"
627
+ msgstr "ต้องการถามที่อยู่่เพื่อติดต่อกลับ ที่ตอนต้นหรือตอนท้ายของแบบทดสอบ?"
628
+
629
+ #: includes/qmn_options_option_tab.php:156
630
+ msgid "Beginning"
631
+ msgstr "ตอนต้น"
632
+
633
+ #: includes/qmn_options_option_tab.php:157
634
+ msgid "End"
635
+ msgstr "ตอนท้าย"
636
+
637
+ #: includes/qmn_options_option_tab.php:161
638
+ msgid ""
639
+ "If a logged-in user takes the quiz, would you like them to be able to edit contact information? "
640
+ "If set to no, the fields will not show up for logged in users; however, the users information "
641
+ "will be saved for the fields."
642
+ msgstr ""
643
+ "ถ้าผู้ทำแบบทดสอบเข้าใช้ระบบอยู่ คุณต้องการให้ผู้ใช้สามารถแก้ไขที่อยู่ติดต่อหรือไม่? หากเลือกไม่ ช่องต่างๆ จะไม่แสดงผล "
644
+ "อย่างไรก็ตามข้อมูลต่างๆ จะยังคงถูกบันทึกช่องนั้นๆ ในฐานข้อมูล"
645
+
646
+ #: includes/qmn_options_option_tab.php:168
647
+ msgid "Should we ask for users name?"
648
+ msgstr "ถามชื่อผู้ใช้งาน?"
649
+
650
+ #: includes/qmn_options_option_tab.php:171 includes/qmn_options_option_tab.php:179
651
+ #: includes/qmn_options_option_tab.php:187 includes/qmn_options_option_tab.php:195
652
+ msgid "Require"
653
+ msgstr "บังคับ"
654
+
655
+ #: includes/qmn_options_option_tab.php:176
656
+ msgid "Should we ask for users business?"
657
+ msgstr "ถามสถานที่ทำงานของผู้ใช้?"
658
+
659
+ #: includes/qmn_options_option_tab.php:184
660
+ msgid "Should we ask for users email?"
661
+ msgstr "ถามอีเมล์ของผู้ใช้?"
662
+
663
+ #: includes/qmn_options_option_tab.php:192
664
+ msgid "Should we ask for users phone number?"
665
+ msgstr "ถามเบอร์โทรศัพท์ของผู้ใช้?"
666
+
667
+ #: includes/qmn_options_option_tab.php:200
668
+ msgid "Would you like a place for the user to enter comments?"
669
+ msgstr "ต้องการให้ผู้ใช้กรอกความคิดเห็น?"
670
+
671
+ #: includes/qmn_options_option_tab.php:207
672
+ msgid "Show question number on quiz?"
673
+ msgstr "แสดงหมายเลขข้อของแบบทดสอบ?"
674
+
675
+ #: includes/qmn_options_option_tab.php:214
676
+ msgid "Show social media sharing buttons? (Twitter & Facebook)"
677
+ msgstr "แสดงปุ่มสำหรับสื่อสังคมออนไลน์ (Twitter & Facebook)"
678
+
679
+ #: includes/qmn_options_option_tab.php:214
680
+ msgid ""
681
+ "This option is for here only for users of older versions. Please use the new template variables "
682
+ "%FACEBOOK_SHARE% %TWITTER_SHARE% on your results pages instead of using this option!"
683
+ msgstr ""
684
+
685
+ #: includes/qmn_options_preview_tab.php:6
686
+ msgid "Preview"
687
+ msgstr "ดูตัวอย่าง"
688
+
689
+ #: includes/qmn_options_questions_tab.php:6
690
+ msgid "Questions"
691
+ msgstr "คำถาม"
692
+
693
+ #: includes/qmn_options_questions_tab.php:105
694
+ msgid "The question has been updated successfully."
695
+ msgstr "ปรับปรุงคำถามเรียบร้อย"
696
+
697
+ #: includes/qmn_options_questions_tab.php:132
698
+ msgid "The question has been deleted successfully."
699
+ msgstr "ลบคำถามเรียบร้อย"
700
+
701
+ #: includes/qmn_options_questions_tab.php:216
702
+ msgid "The question has been duplicated successfully."
703
+ msgstr "ทำสำเนาคำถามเรียบร้อย"
704
+
705
+ #: includes/qmn_options_questions_tab.php:309
706
+ msgid "The question has been created successfully."
707
+ msgstr "สร้างคำถามเรียบร้อย"
708
+
709
+ #: includes/qmn_options_questions_tab.php:454 includes/qmn_options_questions_tab.php:461
710
+ #: includes/qmn_options_questions_tab.php:593 includes/qmn_options_questions_tab.php:760
711
+ msgid "Answer"
712
+ msgstr "คำตอบ"
713
+
714
+ #: includes/qmn_options_questions_tab.php:481 includes/qmn_options_questions_tab.php:729
715
+ msgid "Add Question"
716
+ msgstr "เพิ่มคำถาม"
717
+
718
+ #: includes/qmn_options_questions_tab.php:485
719
+ #, php-format
720
+ msgid "One question"
721
+ msgid_plural "%s questions"
722
+ msgstr[0] "หนึ่งคำถาม"
723
+ msgstr[1] "%s คำถาม"
724
+
725
+ #: includes/qmn_options_questions_tab.php:557 includes/qmn_quiz_admin.php:270
726
+ msgid "Edit"
727
+ msgstr "แก้ไข"
728
+
729
+ #: includes/qmn_options_questions_tab.php:557 includes/qmn_quiz_admin.php:272
730
+ #: includes/qmn_quiz_admin.php:397
731
+ msgid "Duplicate"
732
+ msgstr "ทำสำเนา"
733
+
734
+ #: includes/qmn_options_questions_tab.php:557 includes/qmn_options_results_page_tab.php:247
735
+ #: includes/qmn_quiz_admin.php:273
736
+ msgid "Delete"
737
+ msgstr "ลบ"
738
+
739
+ #: includes/qmn_options_questions_tab.php:568 includes/qmn_options_questions_tab.php:737
740
+ msgid ""
741
+ "For fill in the blank types, use %BLANK% to represent where to put the text box in your text."
742
+ msgstr ""
743
+
744
+ #: includes/qmn_options_questions_tab.php:571 includes/qmn_options_questions_tab.php:714
745
+ #: includes/qmn_options_questions_tab.php:725 includes/qmn_options_questions_tab.php:740
746
+ msgid "Question"
747
+ msgstr "คำถาม"
748
+
749
+ #: includes/qmn_options_questions_tab.php:582 includes/qmn_options_questions_tab.php:751
750
+ msgid "Answers"
751
+ msgstr "คำตอบ"
752
+
753
+ #: includes/qmn_options_questions_tab.php:583 includes/qmn_options_questions_tab.php:752
754
+ msgid "Points Worth"
755
+ msgstr "ค่าคะแนน"
756
+
757
+ #: includes/qmn_options_questions_tab.php:584 includes/qmn_options_questions_tab.php:753
758
+ msgid "Correct Answer"
759
+ msgstr "ข้อที่ถูกต้อง"
760
+
761
+ #: includes/qmn_options_questions_tab.php:611 includes/qmn_options_questions_tab.php:775
762
+ msgid "Add New Answer!"
763
+ msgstr "เพิ่มคำตอบใหม่"
764
+
765
+ #: includes/qmn_options_questions_tab.php:616 includes/qmn_options_questions_tab.php:780
766
+ msgid "Correct Answer Info"
767
+ msgstr "ข้อความข้อที่ถูกต้อง"
768
+
769
+ #: includes/qmn_options_questions_tab.php:623 includes/qmn_options_questions_tab.php:787
770
+ #: includes/qmn_quiz.php:441
771
+ msgid "Hint"
772
+ msgstr "บอกใบ้"
773
+
774
+ #: includes/qmn_options_questions_tab.php:634 includes/qmn_options_questions_tab.php:712
775
+ #: includes/qmn_options_questions_tab.php:723 includes/qmn_options_questions_tab.php:798
776
+ msgid "Question Type"
777
+ msgstr "ชนิดคำถาม"
778
+
779
+ #: includes/qmn_options_questions_tab.php:652 includes/qmn_options_questions_tab.php:811
780
+ msgid "Comment Field"
781
+ msgstr "ข้อเสนอแนะ"
782
+
783
+ #: includes/qmn_options_questions_tab.php:655 includes/qmn_options_questions_tab.php:813
784
+ msgid "Small Text Field"
785
+ msgstr "ข้อความสั้น"
786
+
787
+ #: includes/qmn_options_questions_tab.php:657 includes/qmn_options_questions_tab.php:814
788
+ msgid "Large Text Field"
789
+ msgstr "ข้อความยาว"
790
+
791
+ #: includes/qmn_options_questions_tab.php:659 includes/qmn_options_questions_tab.php:815
792
+ msgid "None"
793
+ msgstr "ไม่มี"
794
+
795
+ #: includes/qmn_options_questions_tab.php:663 includes/qmn_options_questions_tab.php:711
796
+ #: includes/qmn_options_questions_tab.php:722 includes/qmn_options_questions_tab.php:819
797
+ msgid "Question Order"
798
+ msgstr "ลำดับคำถาม"
799
+
800
+ #: includes/qmn_options_questions_tab.php:671 includes/qmn_options_questions_tab.php:827
801
+ msgid "Required?"
802
+ msgstr "บังคับ?"
803
+
804
+ #: includes/qmn_options_questions_tab.php:680 includes/qmn_options_questions_tab.php:713
805
+ #: includes/qmn_options_questions_tab.php:724 includes/qmn_options_questions_tab.php:836
806
+ msgid "Category"
807
+ msgstr "หมวดหมู่"
808
+
809
+ #: includes/qmn_options_questions_tab.php:699 includes/qmn_options_questions_tab.php:855
810
+ msgid "Required currently only works on open answer, number, accept, and captcha question types"
811
+ msgstr "บังคับได้เฉพาะคำถามแบบ คำตอบปลายเปิด ตัวเลข และ captcha เท่านั้น"
812
+
813
+ #: includes/qmn_options_questions_tab.php:701
814
+ msgid "Edit Question"
815
+ msgstr "แก้ไขคำถาม"
816
+
817
+ #: includes/qmn_options_questions_tab.php:857
818
+ msgid "Create Question"
819
+ msgstr "สร้างคำถาม"
820
+
821
+ #: includes/qmn_options_questions_tab.php:862
822
+ msgid "Are you sure you want to delete this question?"
823
+ msgstr "คุณแน่ใจหรือไม่ที่จะลบคำถามนี้?"
824
+
825
+ #: includes/qmn_options_questions_tab.php:867
826
+ msgid "Delete Question"
827
+ msgstr "ลบคำถาม"
828
+
829
+ #: includes/qmn_options_questions_tab.php:872
830
+ msgid "Are you sure you want to duplicate this question?"
831
+ msgstr "คุณแน่ใจหรือไม่ที่จะสำเนาคำถามนี้?"
832
+
833
+ #: includes/qmn_options_questions_tab.php:877
834
+ msgid "Duplicate Question"
835
+ msgstr "ทำสำเนาคำถาม"
836
+
837
+ #: includes/qmn_options_results_page_tab.php:6
838
+ msgid "Results Pages"
839
+ msgstr "หน้าแสดงผลลัพธ์"
840
+
841
+ #: includes/qmn_options_results_page_tab.php:41
842
+ msgid "The results page has been added successfully."
843
+ msgstr "เพิ่มหน้าแสดงผลลัพธ์เรียบร้อย"
844
+
845
+ #: includes/qmn_options_results_page_tab.php:81
846
+ msgid "The results page has been saved successfully."
847
+ msgstr "บันทึกหน้าแสดงผลลัพธ์เรียบร้อย"
848
+
849
+ #: includes/qmn_options_results_page_tab.php:191
850
+ msgid "Displays button to share on Facebook."
851
+ msgstr ""
852
+
853
+ #: includes/qmn_options_results_page_tab.php:194
854
+ msgid "Displays button to share on Twitter."
855
+ msgstr ""
856
+
857
+ #: includes/qmn_options_results_page_tab.php:199 includes/qmn_options_results_page_tab.php:280
858
+ msgid "Save Results Pages"
859
+ msgstr "บันทึกหน้าแสดงผลลัพธ์"
860
+
861
+ #: includes/qmn_options_results_page_tab.php:200 includes/qmn_options_results_page_tab.php:285
862
+ msgid "Add New Results Page"
863
+ msgstr "เพิ่มหน้าแสดงผลลัพธ์ใหม่"
864
+
865
+ #: includes/qmn_options_results_page_tab.php:208 includes/qmn_options_results_page_tab.php:272
866
+ msgid "Results Page Shown"
867
+ msgstr "แสดงหน้าแสดงผลลัพธ์"
868
+
869
+ #: includes/qmn_options_results_page_tab.php:209 includes/qmn_options_results_page_tab.php:273
870
+ msgid "Redirect URL"
871
+ msgstr ""
872
+
873
+ #: includes/qmn_options_results_page_tab.php:247
874
+ msgid "Are you sure?"
875
+ msgstr "คุณแน่ใจหรือไม่?"
876
+
877
+ #: includes/qmn_options_style_tab.php:6
878
+ msgid "Style"
879
+ msgstr "รูปแบบ"
880
+
881
+ #: includes/qmn_options_style_tab.php:26
882
+ msgid "The style has been saved successfully."
883
+ msgstr "บันทึกรูปแบบเรียบร้อย"
884
+
885
+ #: includes/qmn_options_style_tab.php:65
886
+ msgid "Quiz Styles"
887
+ msgstr "รูปแบบคำถาม"
888
+
889
+ #: includes/qmn_options_style_tab.php:66
890
+ msgid "Choose your style:"
891
+ msgstr "เลือกรูปแบบ:"
892
+
893
+ #: includes/qmn_options_style_tab.php:88
894
+ msgid "Custom"
895
+ msgstr "กำหนดเอง"
896
+
897
+ #: includes/qmn_options_style_tab.php:94 includes/qmn_options_style_tab.php:106
898
+ msgid "Save Quiz Style"
899
+ msgstr "บันทึกรูปแบบคำถาม"
900
+
901
+ #: includes/qmn_options_style_tab.php:96
902
+ msgid "Custom Style CSS"
903
+ msgstr "กำหนด CSS เอง"
904
+
905
+ #: includes/qmn_options_style_tab.php:97
906
+ msgid ""
907
+ "For detailed help and guidance along with a list of different classes used in this plugin, "
908
+ "please visit the following link:"
909
+ msgstr "ข้อมูลความช่วยเหลือและห้องเรียนที่ใช้งานปลั้กอินนี้ กรุณาไปยังลิงค์:"
910
+
911
+ #: includes/qmn_options_text_tab.php:6
912
+ msgid "Text"
913
+ msgstr "ข้อความ"
914
+
915
+ #: includes/qmn_options_text_tab.php:42
916
+ msgid "The templates has been updated successfully."
917
+ msgstr "อัพเดทแม่แบบเรียบร้อย"
918
+
919
+ #: includes/qmn_options_text_tab.php:73 includes/qmn_quiz.php:1230
920
+ msgid "Previous"
921
+ msgstr "ก่อนหน้า"
922
+
923
+ #: includes/qmn_options_text_tab.php:169 includes/qmn_options_text_tab.php:329
924
+ msgid "Save Templates"
925
+ msgstr "บันทึกแม่แบบ"
926
+
927
+ #: includes/qmn_options_text_tab.php:175
928
+ msgid "Message Templates"
929
+ msgstr "แม่แบบข้อความ"
930
+
931
+ #: includes/qmn_options_text_tab.php:179
932
+ msgid "Message Displayed Before Quiz"
933
+ msgstr "ข้อความที่แสดงก่อนทำแบบทดสอบ"
934
+
935
+ #: includes/qmn_options_text_tab.php:189
936
+ msgid "Message Displayed Before Comments Box If Enabled"
937
+ msgstr "ข้อความที่ถูกแสดงก่อนช่องข้อแนะนำ, หากเปิดใช้"
938
+
939
+ #: includes/qmn_options_text_tab.php:199
940
+ msgid "Message Displayed At End Of Quiz (Leave Blank To Omit Text Section)"
941
+ msgstr "ข้อความที่ถูกแสดงทำแบบทดสอบเสร็จ (ปล่อยว่างเพื่อละเว้นการเลือกข้อความ)"
942
+
943
+ #: includes/qmn_options_text_tab.php:209
944
+ msgid "Message Displayed If User Has Tried Quiz Too Many Times"
945
+ msgstr "ข้อความที่ถูกแสดงหากผู้ใช้ทำแบบทดสอบหลายครั้งเกินไป"
946
+
947
+ #: includes/qmn_options_text_tab.php:219
948
+ msgid "Message Displayed If User Is Not Logged In And Quiz Requires Users To Be Logged In"
949
+ msgstr "ข้อความที่ถูกแสดง เมื่อผู้ใช้ไม่ได้ลงชื่อเข้าใช้ เมื่อแบบทดสอบต้องการลงชื่อเข้าใช้งาน"
950
+
951
+ #: includes/qmn_options_text_tab.php:229
952
+ msgid "Message Displayed If Date Is Outside Scheduled Timeframe"
953
+ msgstr "ข้อความที่ถูกแสดงถ้าวันที่อยู่นอกวันเวลาที่อนุญาติใช้งาน"
954
+
955
+ #: includes/qmn_options_text_tab.php:239
956
+ msgid "Message Displayed If The Limit Of Total Entries Has Been Reached"
957
+ msgstr "ข้อความที่ถูกแสดงหากจำนวนรายการเกินกำหนด"
958
+
959
+ #: includes/qmn_options_text_tab.php:249
960
+ msgid "%QUESTIONS_ANSWERS% Text"
961
+ msgstr "%QUESTIONS_ANSWERS% ข้อความ"
962
+
963
+ #: includes/qmn_options_text_tab.php:262
964
+ msgid "Twitter Sharing Text"
965
+ msgstr "ข้อความแชร์ทวิตเตอร์"
966
+
967
+ #: includes/qmn_options_text_tab.php:279
968
+ msgid "Facebook Sharing Text"
969
+ msgstr "ข้อความแชร์เฟสบุค"
970
+
971
+ #: includes/qmn_options_text_tab.php:294
972
+ msgid "Other Templates"
973
+ msgstr "แม่แบบอื่นๆ"
974
+
975
+ #: includes/qmn_options_text_tab.php:297
976
+ msgid "Text for submit button"
977
+ msgstr "ข้อความสำหรับปุ่ม ส่ง"
978
+
979
+ #: includes/qmn_options_text_tab.php:301
980
+ msgid "Text for name field"
981
+ msgstr "ข้อความสำหรับช่องชื่อ"
982
+
983
+ #: includes/qmn_options_text_tab.php:305
984
+ msgid "Text for business field"
985
+ msgstr "ข้อความสำหรับช่องที่ทำงาน"
986
+
987
+ #: includes/qmn_options_text_tab.php:309
988
+ msgid "Text for email field"
989
+ msgstr "ข้อความสำหรับข่องอีเมล์"
990
+
991
+ #: includes/qmn_options_text_tab.php:313
992
+ msgid "Text for phone number field"
993
+ msgstr "ข้อความสำหรับช่องโทรศัพท์"
994
+
995
+ #: includes/qmn_options_text_tab.php:317
996
+ msgid "Text for comments field"
997
+ msgstr "ข้อความสำหรับช่องข้อแนะนำ"
998
+
999
+ #: includes/qmn_options_text_tab.php:321
1000
+ msgid "Text for previous button"
1001
+ msgstr "ข้อความสำหรับปุ่ม ก่อนหน้า"
1002
+
1003
+ #: includes/qmn_options_text_tab.php:325
1004
+ msgid "Text for next button"
1005
+ msgstr "ข้อความสำหรับปุ่ม ถัดไป"
1006
+
1007
+ #: includes/qmn_options_tools_tab.php:6 includes/qmn_tools.php:58 mlw_quizmaster2.php:222
1008
+ msgid "Tools"
1009
+ msgstr "เครื่องมือ"
1010
+
1011
+ #: includes/qmn_options_tools_tab.php:23
1012
+ msgid "The stats has been reset successfully."
1013
+ msgstr "ล้างค่าสถิติเรียบร้อย"
1014
+
1015
+ #: includes/qmn_options_tools_tab.php:75
1016
+ msgid ""
1017
+ "Use this button to reset all the stats collected for this quiz (Quiz Views and Times Quiz Has "
1018
+ "Been Taken)."
1019
+ msgstr "ใช้ปุ่มนี้ เพื่อล้างค่าสถิติที่เก็บข้อมูลแบบทดสอบนี้"
1020
+
1021
+ #: includes/qmn_options_tools_tab.php:76
1022
+ msgid "Reset Quiz Views And Taken Stats"
1023
+ msgstr "ล้างสถิติการดูและทำแบบทดสอบ"
1024
+
1025
+ #: includes/qmn_options_tools_tab.php:87
1026
+ msgid ""
1027
+ "Are you sure you want to reset the stats to 0? All views and taken stats for this quiz will be "
1028
+ "reset. This is permanent and cannot be undone."
1029
+ msgstr ""
1030
+ "คุณแน่ใจหรือไม่ ว่าต้องการลบสถิติทั้งหมดเป็น 0? ข้อมูลสถิติการดูและทำแบบทำสอบจะถูกตั้งค่าใหม่ ไม่สามารถกู้คืนข้อมูลได้!!"
1031
+
1032
+ #: includes/qmn_options_tools_tab.php:91
1033
+ msgid "Reset All Stats For Quiz"
1034
+ msgstr "ล้างสถิติทั้งหมดของแบบทดสอบ"
1035
+
1036
+ #: includes/qmn_question_types.php:7
1037
+ msgid "Multiple Choice"
1038
+ msgstr "หลายตัวเลือก"
1039
+
1040
+ #: includes/qmn_question_types.php:75
1041
+ msgid "Horizontal Multiple Choice"
1042
+ msgstr "ตัวเลือกแนวนอน"
1043
+
1044
+ #: includes/qmn_question_types.php:143
1045
+ msgid "Drop Down"
1046
+ msgstr "ดรอปดาวน์"
1047
+
1048
+ #: includes/qmn_question_types.php:208
1049
+ msgid "Small Open Answer"
1050
+ msgstr "คำตอบปลายเปิดแบบสั้น"
1051
+
1052
+ #: includes/qmn_question_types.php:257
1053
+ msgid "Multiple Response"
1054
+ msgstr "เลือกหลายคำตอบ"
1055
+
1056
+ #: includes/qmn_question_types.php:332
1057
+ msgid "Large Open Answer"
1058
+ msgstr "กรอกคำตอบแบบยาว"
1059
+
1060
+ #: includes/qmn_question_types.php:381
1061
+ msgid "Text Block"
1062
+ msgstr "ช่องข้อความ"
1063
+
1064
+ #: includes/qmn_question_types.php:396
1065
+ msgid "Number"
1066
+ msgstr "ตัวเลข"
1067
+
1068
+ #: includes/qmn_question_types.php:445
1069
+ msgid "Accept"
1070
+ msgstr "ยอมรับ"
1071
+
1072
+ #: includes/qmn_question_types.php:464
1073
+ msgid "Captcha"
1074
+ msgstr "Captcha"
1075
+
1076
+ #: includes/qmn_question_types.php:505
1077
+ msgid "Horizontal Multiple Response"
1078
+ msgstr "เลือกได้หลายคำตอบแนวนอน"
1079
+
1080
+ #: includes/qmn_question_types.php:579
1081
+ msgid "Fill In The Blank"
1082
+ msgstr ""
1083
+
1084
+ #: includes/qmn_quiz.php:326
1085
+ msgid "Not a valid e-mail address!"
1086
+ msgstr "รูปแบบอีเมล์ไม่ถูกต้อง"
1087
+
1088
+ #: includes/qmn_quiz.php:327
1089
+ msgid "This field must be a number!"
1090
+ msgstr "ใช้ตัวเลขในช่องนี้เท่านั้น"
1091
+
1092
+ #: includes/qmn_quiz.php:328
1093
+ msgid "The entered text is not correct!"
1094
+ msgstr "ข้อความที่กรอกไม่ถูกต้อง!"
1095
+
1096
+ #: includes/qmn_quiz.php:329
1097
+ msgid "Please complete all required fields!"
1098
+ msgstr "กรุณาตอบช่องบังคับทุกช่อง!"
1099
+
1100
+ #: includes/qmn_quiz_admin.php:186 mlw_quizmaster2.php:217
1101
+ msgid "Quizzes"
1102
+ msgstr "แบบทดสอบ"
1103
+
1104
+ #: includes/qmn_quiz_admin.php:186
1105
+ msgid "Add New"
1106
+ msgstr "เพิ่มใหม่"
1107
+
1108
+ #: includes/qmn_quiz_admin.php:204
1109
+ #, php-format
1110
+ msgid "One quiz"
1111
+ msgid_plural "%s quizzes"
1112
+ msgstr[0] "หนึ่งแบบทดสอบ"
1113
+ msgstr[1] "%s แบบทดสอบ"
1114
+
1115
+ #: includes/qmn_quiz_admin.php:249 includes/qmn_quiz_admin.php:295
1116
+ #: includes/qmn_quiz_admin.php:364 includes/qmn_results.php:209
1117
+ msgid "Quiz Name"
1118
+ msgstr "ชื่อแบบทดสอบ"
1119
+
1120
+ #: includes/qmn_quiz_admin.php:250 includes/qmn_quiz_admin.php:296
1121
+ msgid "URL"
1122
+ msgstr ""
1123
+
1124
+ #: includes/qmn_quiz_admin.php:251 includes/qmn_quiz_admin.php:297
1125
+ msgid "Quiz Shortcode"
1126
+ msgstr "Shortcode แบบทดสอบ"
1127
+
1128
+ #: includes/qmn_quiz_admin.php:252 includes/qmn_quiz_admin.php:298
1129
+ msgid "Leaderboard Shortcode"
1130
+ msgstr "Shortcode กระดานผู้นำ"
1131
+
1132
+ #: includes/qmn_quiz_admin.php:253 includes/qmn_quiz_admin.php:299
1133
+ msgid "Quiz Views"
1134
+ msgstr "ดูแบบทดสอบ"
1135
+
1136
+ #: includes/qmn_quiz_admin.php:254 includes/qmn_quiz_admin.php:300
1137
+ msgid "Quiz Taken"
1138
+ msgstr "แบบทดสอบถูกทำ"
1139
+
1140
+ #: includes/qmn_quiz_admin.php:255 includes/qmn_quiz_admin.php:301
1141
+ msgid "Last Modified"
1142
+ msgstr "แก้ไขล่าสุด"
1143
+
1144
+ #: includes/qmn_quiz_admin.php:268
1145
+ msgid "Edit Name"
1146
+ msgstr "แก้ไขชื่อ"
1147
+
1148
+ #: includes/qmn_quiz_admin.php:271 includes/qmn_results_details.php:121
1149
+ msgid "Results"
1150
+ msgstr "ผลลัพธ์"
1151
+
1152
+ #: includes/qmn_quiz_admin.php:359
1153
+ msgid "Create New Quiz"
1154
+ msgstr "สร้างแบบทดสอบใหม่"
1155
+
1156
+ #: includes/qmn_quiz_admin.php:373
1157
+ msgid "Create Quiz"
1158
+ msgstr "สร้างแบบทดสอบ"
1159
+
1160
+ #: includes/qmn_quiz_admin.php:379
1161
+ msgid "Quiz Name:"
1162
+ msgstr "ชื่อแบบทดสอบ:"
1163
+
1164
+ #: includes/qmn_quiz_admin.php:390
1165
+ msgid "Duplicate this quiz?"
1166
+ msgstr "ทำสำเนาแบบทดสอบนี้?"
1167
+
1168
+ #: includes/qmn_quiz_admin.php:392
1169
+ msgid "Duplicate questions with quiz"
1170
+ msgstr ""
1171
+
1172
+ #: includes/qmn_quiz_admin.php:394
1173
+ msgid "Name Of New Quiz:"
1174
+ msgstr "ชื่อแบบทดสอบใหม่"
1175
+
1176
+ #: includes/qmn_quiz_admin.php:403
1177
+ msgid "Are you sure you want to delete this quiz?"
1178
+ msgstr "คุณแน่ใจหรือไม่ที่จะลบแบบทดสอบ?"
1179
+
1180
+ #: includes/qmn_quiz_admin.php:408
1181
+ msgid "Delete Quiz"
1182
+ msgstr "ลบแบบทดสอบ"
1183
+
1184
+ #: includes/qmn_quiz_creator.php:369
1185
+ msgid ""
1186
+ "Your new quiz has been created successfully. To begin editing your quiz, click the Edit link on "
1187
+ "the new quiz."
1188
+ msgstr "แบบทดสอบใหม่จองท่านได้ถูกสร้างเรียบร้อย คลิ้กลิงค์แก้ไขที่แบบทดสอบใหม่ เพื่อทำการแก้ไข"
1189
+
1190
+ #: includes/qmn_quiz_creator.php:435
1191
+ msgid "Your quiz has been deleted successfully."
1192
+ msgstr "แบบทดสอบของท่านได้ถูกลบเรียบร้อย"
1193
+
1194
+ #: includes/qmn_quiz_creator.php:477
1195
+ msgid "Your quiz name has been updated successfully."
1196
+ msgstr "ชื่อแบบทดสอบของท่านได้ถูกอัพเดทเรียบร้อย"
1197
+
1198
+ #: includes/qmn_quiz_creator.php:634
1199
+ msgid "Your quiz has been duplicated successfully."
1200
+ msgstr "แบบทดสอบของท่านได้ถูกทำสำเนาเรียบร้อย"
1201
+
1202
+ #. translators: The %s corresponds to the name of the quiz
1203
+ #: includes/qmn_quiz_options.php:56
1204
+ #, php-format
1205
+ msgid "Quiz Settings For %s"
1206
+ msgstr "ตั้งค่าแบบทดสอบสำหรับ %s"
1207
+
1208
+ #: includes/qmn_quiz_options.php:96
1209
+ msgid "Please go to the quizzes page and click on the Edit link from the quiz you wish to edit."
1210
+ msgstr "กรุณาไปยังหน้ารายการแบบทดสอบและ คลิ้ก แก้ไขลิงค์ ของแบบทดสอบที่ต้องการแก้ไข"
1211
+
1212
+ #: includes/qmn_results.php:23
1213
+ msgid "Your results has been deleted successfully."
1214
+ msgstr "ผลลัพท์ของท่านได้ถูกลบเรียบร้อย"
1215
+
1216
+ #: includes/qmn_results.php:152 includes/qmn_results_details.php:21 mlw_quizmaster2.php:219
1217
+ msgid "Quiz Results"
1218
+ msgstr "ผลลัพธ์แบบทดสอบ"
1219
+
1220
+ #: includes/qmn_results.php:161
1221
+ #, php-format
1222
+ msgid "One result"
1223
+ msgid_plural "%s results"
1224
+ msgstr[0] ""
1225
+ msgstr[1] ""
1226
+
1227
+ #: includes/qmn_results.php:208
1228
+ msgid "Actions"
1229
+ msgstr "กระทำ"
1230
+
1231
+ #: includes/qmn_results.php:210
1232
+ msgid "Score"
1233
+ msgstr "คำแนน"
1234
+
1235
+ #: includes/qmn_results.php:211
1236
+ msgid "Time To Complete"
1237
+ msgstr "เวลาที่ทำสำเร็จ"
1238
+
1239
+ #: includes/qmn_results.php:212
1240
+ msgid "Name"
1241
+ msgstr "ชื่อ"
1242
+
1243
+ #: includes/qmn_results.php:213
1244
+ msgid "Business"
1245
+ msgstr "ที่ทำงาน"
1246
+
1247
+ #: includes/qmn_results.php:214
1248
+ msgid "Email"
1249
+ msgstr "อีเมล์"
1250
+
1251
+ #: includes/qmn_results.php:215
1252
+ msgid "Phone"
1253
+ msgstr "โทรศัพท์"
1254
+
1255
+ #: includes/qmn_results.php:216
1256
+ msgid "Time Taken"
1257
+ msgstr "ใช้เวลาไป"
1258
+
1259
+ #: includes/qmn_results.php:276
1260
+ msgid "Are you sure you want to delete these results?"
1261
+ msgstr "คุณแน่ใจหรือไม่ที่จะลบผลลัพธ์"
1262
+
1263
+ #: includes/qmn_results.php:281
1264
+ msgid "Delete Results"
1265
+ msgstr "ลบผลลัพธ์"
1266
+
1267
+ #: includes/qmn_results_details.php:200
1268
+ msgid "Create Certificate"
1269
+ msgstr "สร้างประกาศนียบัตร"
1270
+
1271
+ #: includes/qmn_results_details.php:205
1272
+ msgid "Download Certificate Here"
1273
+ msgstr "ดาวน์โหลดประกาศนียบัตร"
1274
+
1275
+ #: includes/qmn_results_details.php:212
1276
+ msgid "Certificate"
1277
+ msgstr ""
1278
+
1279
+ #: includes/qmn_tools.php:93
1280
+ msgid "There has been an error! Please try again."
1281
+ msgstr ""
1282
+
1283
+ #: includes/qmn_tools.php:111
1284
+ msgid "Quiz Has Been Restored!"
1285
+ msgstr ""
1286
+
1287
+ #: includes/qmn_tools.php:116
1288
+ msgid "Choose a quiz in the drop down and then click the button to restore a deleted quiz."
1289
+ msgstr ""
1290
+
1291
+ #: includes/qmn_tools.php:126
1292
+ msgid "Restore Quiz"
1293
+ msgstr ""
1294
+
1295
+ #: includes/qmn_tools.php:155 includes/qmn_tools.php:171
1296
+ #, php-format
1297
+ msgid "Previous %s Audits"
1298
+ msgstr "การตรวจสอบภายใน %s ก่อนหน้า"
1299
+
1300
+ #: includes/qmn_tools.php:158 includes/qmn_tools.php:165
1301
+ #, php-format
1302
+ msgid "Next %s Audits"
1303
+ msgstr "Next %s Audits"
1304
+
1305
+ #: includes/qmn_tools.php:178
1306
+ msgid "User"
1307
+ msgstr "ผู้ใช้"
1308
+
1309
+ #: includes/qmn_tools.php:179
1310
+ msgid "Action"
1311
+ msgstr "กระทำ"
1312
+
1313
+ #: includes/qmn_tools.php:180
1314
+ msgid "Time"
1315
+ msgstr "เวลา"
1316
+
1317
+ #: includes/qmn_usage_tracking.php:193
1318
+ msgid ""
1319
+ "Allow Quiz Master Next to anonymously track this plugin's usage and help us make this plugin "
1320
+ "better? No sensitive data is tracked."
1321
+ msgstr ""
1322
+
1323
+ #: includes/qmn_usage_tracking.php:194
1324
+ msgid "Allow"
1325
+ msgstr ""
1326
+
1327
+ #: includes/qmn_usage_tracking.php:195
1328
+ msgid "Do not allow"
1329
+ msgstr ""
1330
+
1331
+ #: includes/qmn_widgets.php:11
1332
+ msgid "Quiz Master Next Leaderboard Widget"
1333
+ msgstr "Leaderboard วิตเจ็ต"
1334
+
1335
+ #: includes/qmn_widgets.php:26
1336
+ msgid "Widget Title"
1337
+ msgstr "ชื่อหัวข้อวิตเจ็ต"
1338
+
1339
+ #: includes/qmn_widgets.php:30
1340
+ msgid "Quiz ID"
1341
+ msgstr "หมายเลขแบบทดสอบ"
1342
+
1343
+ #: mlw_quizmaster2.php:218
1344
+ msgid "Quiz Settings"
1345
+ msgstr "ตั้งค่าแบบทดสอบ"
1346
+
1347
+ #: mlw_quizmaster2.php:220
1348
+ msgid "Quiz Result Details"
1349
+ msgstr "รายละเอียดผลลัพธ์ของแบบทดสอบ"
1350
+
1351
+ #: mlw_quizmaster2.php:221
1352
+ msgid "Settings"
1353
+ msgstr ""
1354
+
1355
+ #: mlw_quizmaster2.php:223
1356
+ msgid "Stats"
1357
+ msgstr "สถิติ"
1358
+
1359
+ #: mlw_quizmaster2.php:224
1360
+ msgid "Addon Settings"
1361
+ msgstr "ตั้งค่าส่วนเพิ่มเติม"
1362
+
1363
+ #: mlw_quizmaster2.php:225
1364
+ msgid "Help"
1365
+ msgstr "ช่วยเหลือ"
1366
+
1367
+ #: mlw_quizmaster2.php:228 mlw_quizmaster2.php:229
1368
+ msgid "QMN About"
1369
+ msgstr "เกี่ยวกับ QMN"
1370
+
1371
+ #~ msgid "Default:"
1372
+ #~ msgstr "ค่าเริ่มต้น:"
1373
+
1374
+ #~ msgid "Total points user earned when taking quiz"
1375
+ #~ msgstr "คะแนนรวมที่ได้รับจากการทำแบบทดสอบ"
1376
+
1377
+ #~ msgid "The percent score for the quiz showing percent of total quetions answered correctly"
1378
+ #~ msgstr "เปอร์เซ็นต์แสดงจำนวนข้อที่ตอบถูก"
1379
+
1380
+ #~ msgid "It appears that this quiz is not set up correctly."
1381
+ #~ msgstr "แบบทดสอบตั้งค่าไม่ถูกต้อง"
1382
+
1383
+ #~ msgid "Previous %s Results"
1384
+ #~ msgstr "ผลลัพท์ %s ก่อนหน้า"
1385
+
1386
+ #~ msgid "Next %s Results"
1387
+ #~ msgstr "Next %s Results"
1388
+
1389
+ #~ msgid "Quiz Tools"
1390
+ #~ msgstr "เครื่องมือแบบทดสอบ"
1391
+
1392
+ #~ msgid "Name Provided"
1393
+ #~ msgstr "ชื่อ"
1394
+
1395
+ #~ msgid "Business Provided"
1396
+ #~ msgstr "ที่ทำงาน"
1397
+
1398
+ #~ msgid "Email Provided"
1399
+ #~ msgstr "อีเมล์"
1400
+
1401
+ #~ msgid "Phone Provided"
1402
+ #~ msgstr "โทรศัพท์"
1403
+
1404
+ #~ msgid "Score Received"
1405
+ #~ msgstr "คะแนนที่ได้"
1406
+
1407
+ #~ msgid "Answers Provided"
1408
+ #~ msgstr "คำตอบที่ให้"
1409
+
1410
+ #~ msgid "hours"
1411
+ #~ msgstr "ชั่วโมง"
1412
+
1413
+ #~ msgid "minutes"
1414
+ #~ msgstr "นาที"
1415
+
1416
+ #~ msgid "seconds"
1417
+ #~ msgstr "วินาที"
1418
+
1419
+ #~ msgid "The user took %s to complete this quiz."
1420
+ #~ msgstr "ผู้ใช้งานใช้เวลาในการทำแบบทดสอบ %s"
1421
+
1422
+ #~ msgid "The comments entered into the comment box (if enabled)"
1423
+ #~ msgstr "ข้อแนะนำจากช่องรับข้อแนะนำ (หากเปิดใช้)"
1424
+
1425
+ #~ msgid "The answers were as follows"
1426
+ #~ msgstr "คำตอบดังแสดงต่อไปนี้"
1427
+
1428
+ #~ msgid "Answer Provided: "
1429
+ #~ msgstr "คำตอบที่ให้"
1430
+
1431
+ #~ msgid "Correct Answer: "
1432
+ #~ msgstr "คำตอบถูกต้อง"
1433
+
1434
+ #~ msgid "Comments Entered:"
1435
+ #~ msgstr "ข้อเสนอแนะที่ได้รับ"
1436
+
1437
+ #~ msgid ""
1438
+ #~ "Please go to the Quiz Results page and click on the View link from the result you wish to "
1439
+ #~ "see."
1440
+ #~ msgstr "กรุณาไปยังหน้าผลลัพท์ของแบบทดสอบ และ คลิ้กลิงค์สำหรับดู จากรายการผลลัพท์ที่ต้องการ"
languages/quiz-master-next.pot CHANGED
@@ -5,7 +5,7 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Quiz Master Next\n"
7
  "Report-Msgid-Bugs-To: Frank Corso <fpcorso@mylocalwebstop.com>\n"
8
- "POT-Creation-Date: 2015-02-10 15:55-0500\n"
9
  "PO-Revision-Date: \n"
10
  "Last-Translator: Your Name <you@example.com>\n"
11
  "Language-Team: My Local Webstop <fpcorso@mylocalwebstop.com>\n"
@@ -23,1096 +23,1123 @@ msgstr ""
23
  "X-Generator: Poedit 1.7.3\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
 
26
- #: includes/qmn_addons.php:43
27
  msgid "These addons extend the functionality of Quiz Master Next"
28
  msgstr ""
29
 
30
- #: includes/qmn_addons.php:66
31
  msgid "Browse All Addons"
32
  msgstr ""
33
 
34
- #: includes/qmn_addons.php:73
35
  msgid "Featured Addons"
36
  msgstr ""
37
 
38
- #: includes/qmn_alerts.php:18
39
  msgid "Success!"
40
  msgstr ""
41
 
42
- #: includes/qmn_alerts.php:22 includes/qmn_quiz_options.php:91
43
  msgid "Error!"
44
  msgstr ""
45
 
46
- #: includes/qmn_credits.php:85
47
  msgid "Welcome To Quiz Master Next"
48
  msgstr ""
49
 
50
- #: includes/qmn_credits.php:86
51
  msgid "Thank you for updating!"
52
  msgstr ""
53
 
54
- #: includes/qmn_credits.php:90
55
  msgid "What's New!"
56
  msgstr ""
57
 
58
- #: includes/qmn_credits.php:92
59
  msgid "Changelog"
60
  msgstr ""
61
 
62
- #: includes/qmn_credits.php:94
63
  msgid "Requested Features"
64
  msgstr ""
65
 
66
- #: includes/qmn_dashboard.php:15
67
  msgid "Quiz Daily Stats - Times Taken"
68
  msgstr ""
69
 
70
- #: includes/qmn_dashboard.php:16
71
  msgid "Quiz Total Stats"
72
  msgstr ""
73
 
74
- #: includes/qmn_dashboard.php:17
75
  msgid "Quiz Weekly Stats - Times Taken"
76
  msgstr ""
77
 
78
- #: includes/qmn_dashboard.php:18
79
  msgid "Quiz Monthly Stats - Times Taken"
80
  msgstr ""
81
 
82
- #: includes/qmn_dashboard.php:19
83
  msgid "Quiz Quarterly Stats - Times Taken"
84
  msgstr ""
85
 
86
- #: includes/qmn_dashboard.php:24
87
  msgid "Quizzes Taken Today"
88
  msgstr ""
89
 
90
- #: includes/qmn_dashboard.php:25
91
  msgid "Quizzes Taken Last 7 Days"
92
  msgstr ""
93
 
94
- #: includes/qmn_dashboard.php:26
95
  msgid "Quizzes Taken Last 30 Days"
96
  msgstr ""
97
 
98
- #: includes/qmn_dashboard.php:27
99
  msgid "Quizzes Taken Last 120 Days"
100
  msgstr ""
101
 
102
- #: includes/qmn_dashboard.php:53
103
  msgid "Quiz Statistics"
104
  msgstr ""
105
 
106
- #: includes/qmn_dashboard.php:227
107
  msgid "Total Created Quizzes"
108
  msgstr ""
109
 
110
- #: includes/qmn_dashboard.php:231
111
  msgid "Total Deleted Quizzes"
112
  msgstr ""
113
 
114
- #: includes/qmn_dashboard.php:235
115
  msgid "Total Active Quizzes"
116
  msgstr ""
117
 
118
- #: includes/qmn_dashboard.php:239
119
  msgid "Total Created Questions"
120
  msgstr ""
121
 
122
- #: includes/qmn_dashboard.php:243
123
  msgid "Total Times All Active Quizzes Have Been Viewed"
124
  msgstr ""
125
 
126
- #: includes/qmn_dashboard.php:247
127
  msgid "Total Times All Active Quizzes Have Been Taken"
128
  msgstr ""
129
 
130
- #: includes/qmn_dashboard.php:251
131
  msgid "Average Amount Each Active Quiz Has Been Viewed"
132
  msgstr ""
133
 
134
- #: includes/qmn_dashboard.php:255
135
  msgid "Average Amount Each Active Quiz Has Been Taken"
136
  msgstr ""
137
 
138
- #: includes/qmn_dashboard.php:259
139
  msgid "Quiz That Has Been Viewed The Most"
140
  msgstr ""
141
 
142
- #: includes/qmn_dashboard.php:263
143
  msgid "Quiz That Has Been Taken The Most"
144
  msgstr ""
145
 
146
- #: includes/qmn_dashboard_widgets.php:8
147
  msgid "Quiz Master Next Snapshot"
148
  msgstr ""
149
 
150
- #: includes/qmn_dashboard_widgets.php:127
151
  msgid "quizzes taken today"
152
  msgstr ""
153
 
154
- #: includes/qmn_dashboard_widgets.php:146
155
  msgid "quizzes taken last 7 days"
156
  msgstr ""
157
 
158
- #: includes/qmn_dashboard_widgets.php:165
159
  msgid "total active quizzes"
160
  msgstr ""
161
 
162
- #: includes/qmn_dashboard_widgets.php:171
163
  msgid "total active questions"
164
  msgstr ""
165
 
166
- #: includes/qmn_dashboard_widgets.php:177
167
  msgid "most popular quiz"
168
  msgstr ""
169
 
170
- #: includes/qmn_dashboard_widgets.php:183
171
  msgid "least popular quiz"
172
  msgstr ""
173
 
174
- #: includes/qmn_help.php:12
175
  msgid "Need Help?"
176
  msgstr ""
177
 
178
- #: includes/qmn_help.php:13
179
  msgid "Support"
180
  msgstr ""
181
 
182
- #: includes/qmn_help.php:14
183
  msgid "System Info"
184
  msgstr ""
185
 
186
- #: includes/qmn_help.php:17
187
  msgid "Help Page"
188
  msgstr ""
189
 
190
- #: includes/qmn_help.php:40
191
  msgid "Need help with the plugin? Try any of the following:"
192
  msgstr ""
193
 
194
- #: includes/qmn_options_certificate_tab.php:5
195
  msgid "Certificate (Beta)"
196
  msgstr ""
197
 
198
- #: includes/qmn_options_certificate_tab.php:31
199
  msgid "The certificate has been updated successfully."
200
  msgstr ""
201
 
202
- #: includes/qmn_options_certificate_tab.php:44
203
- #: includes/qmn_options_email_tab.php:54
204
- #: includes/qmn_options_email_tab.php:113
205
- #: includes/qmn_options_email_tab.php:177
206
- #: includes/qmn_options_leaderboard_tab.php:37
207
- #: includes/qmn_options_option_tab.php:55
208
- #: includes/qmn_options_questions_tab.php:117
209
- #: includes/qmn_options_questions_tab.php:144
210
- #: includes/qmn_options_questions_tab.php:228
211
- #: includes/qmn_options_questions_tab.php:321
212
- #: includes/qmn_options_results_page_tab.php:53
213
- #: includes/qmn_options_results_page_tab.php:93
214
- #: includes/qmn_options_style_tab.php:38 includes/qmn_options_text_tab.php:54
215
- #: includes/qmn_options_tools_tab.php:35 includes/qmn_quiz_creator.php:381
216
- #: includes/qmn_quiz_creator.php:447 includes/qmn_quiz_creator.php:489
217
- #: includes/qmn_quiz_creator.php:635 includes/qmn_quiz_creator.php:700
218
- #: includes/qmn_results.php:32
219
  #, php-format
220
  msgid ""
221
  "There has been an error in this action. Please share this with the "
222
  "developer. Error Code: %s"
223
  msgstr ""
224
 
225
- #: includes/qmn_options_certificate_tab.php:60
226
  msgid "Enter title here"
227
  msgstr ""
228
 
229
- #: includes/qmn_options_certificate_tab.php:60
230
- #: includes/qmn_options_email_tab.php:72 includes/qmn_options_email_tab.php:90
231
  msgid "Enter text here"
232
  msgstr ""
233
 
234
- #: includes/qmn_options_certificate_tab.php:69
235
  msgid "Quiz Certificate (Beta)"
236
  msgstr ""
237
 
238
- #: includes/qmn_options_certificate_tab.php:70
239
  msgid ""
240
  "Enter in your text here to fill in the certificate for this quiz. Be sure to "
241
  "enter in the link variable into the templates on the Quiz Text tab so the "
242
  "user can access the certificate."
243
  msgstr ""
244
 
245
- #: includes/qmn_options_certificate_tab.php:71
246
  msgid "These fields cannot contain HTML."
247
  msgstr ""
248
 
249
- #: includes/qmn_options_certificate_tab.php:72
250
- #: includes/qmn_options_certificate_tab.php:128
251
  msgid "Save Certificate Options"
252
  msgstr ""
253
 
254
- #: includes/qmn_options_certificate_tab.php:80
255
  msgid "Enable Certificates For This Quiz?"
256
  msgstr ""
257
 
258
- #: includes/qmn_options_certificate_tab.php:82
259
- #: includes/qmn_options_email_tab.php:324
260
- #: includes/qmn_options_email_tab.php:331
261
- #: includes/qmn_options_option_tab.php:101
262
- #: includes/qmn_options_option_tab.php:162
263
- #: includes/qmn_options_option_tab.php:169
264
- #: includes/qmn_options_option_tab.php:177
265
- #: includes/qmn_options_option_tab.php:185
266
- #: includes/qmn_options_option_tab.php:193
267
- #: includes/qmn_options_option_tab.php:201
268
- #: includes/qmn_options_option_tab.php:208
269
- #: includes/qmn_options_option_tab.php:215
270
- #: includes/qmn_options_questions_tab.php:672
271
- #: includes/qmn_options_questions_tab.php:827
272
- #: includes/qmn_options_results_page_tab.php:236
273
- msgid "Yes"
274
- msgstr ""
275
-
276
  #: includes/qmn_options_certificate_tab.php:83
277
  #: includes/qmn_options_email_tab.php:325
278
  #: includes/qmn_options_email_tab.php:332
279
  #: includes/qmn_options_option_tab.php:102
280
- #: includes/qmn_options_option_tab.php:149
281
  #: includes/qmn_options_option_tab.php:163
282
- #: includes/qmn_options_option_tab.php:171
283
- #: includes/qmn_options_option_tab.php:179
284
- #: includes/qmn_options_option_tab.php:187
285
- #: includes/qmn_options_option_tab.php:195
286
  #: includes/qmn_options_option_tab.php:202
287
  #: includes/qmn_options_option_tab.php:209
288
  #: includes/qmn_options_option_tab.php:216
289
- #: includes/qmn_options_questions_tab.php:673
290
- #: includes/qmn_options_questions_tab.php:828
291
- #: includes/qmn_options_results_page_tab.php:236
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
292
  msgid "No"
293
  msgstr ""
294
 
295
- #: includes/qmn_options_certificate_tab.php:88
296
  msgid "Certificate Title"
297
  msgstr ""
298
 
299
- #: includes/qmn_options_certificate_tab.php:95
300
  msgid "Message Displayed On Certificate"
301
  msgstr ""
302
 
303
- #: includes/qmn_options_certificate_tab.php:97
304
- #: includes/qmn_options_leaderboard_tab.php:90
305
- #: includes/qmn_options_text_tab.php:180 includes/qmn_options_text_tab.php:190
306
- #: includes/qmn_options_text_tab.php:200 includes/qmn_options_text_tab.php:210
307
- #: includes/qmn_options_text_tab.php:220 includes/qmn_options_text_tab.php:230
308
- #: includes/qmn_options_text_tab.php:240 includes/qmn_options_text_tab.php:250
309
- #: includes/qmn_options_text_tab.php:263 includes/qmn_options_text_tab.php:280
310
  msgid "Allowed Variables:"
311
  msgstr ""
312
 
313
- #: includes/qmn_options_certificate_tab.php:115
314
  msgid "URL To Logo (Must be JPG, JPEG, PNG or GIF)"
315
  msgstr ""
316
 
317
- #: includes/qmn_options_certificate_tab.php:122
318
  msgid "URL To Background Img (Must be JPG, JPEG, PNG or GIF)"
319
  msgstr ""
320
 
321
- #: includes/qmn_options_email_tab.php:5
322
  msgid "Emails"
323
  msgstr ""
324
 
325
- #: includes/qmn_options_email_tab.php:41
326
- #: includes/qmn_options_email_tab.php:100
327
  msgid "The email has been added successfully."
328
  msgstr ""
329
 
330
- #: includes/qmn_options_email_tab.php:164
331
  msgid "The email has been updated successfully."
332
  msgstr ""
333
 
334
- #: includes/qmn_options_email_tab.php:231
335
- #: includes/qmn_options_leaderboard_tab.php:48
336
- #: includes/qmn_options_results_page_tab.php:133
337
- #: includes/qmn_options_text_tab.php:91
338
  msgid "Template Variables"
339
  msgstr ""
340
 
341
- #: includes/qmn_options_email_tab.php:234
342
- #: includes/qmn_options_results_page_tab.php:136
343
- #: includes/qmn_options_text_tab.php:94
344
  msgid "Score for the quiz when using points"
345
  msgstr ""
346
 
347
- #: includes/qmn_options_email_tab.php:237
348
- #: includes/qmn_options_results_page_tab.php:139
349
- #: includes/qmn_options_text_tab.php:97
350
  msgid "The average amount of points user had per question"
351
  msgstr ""
352
 
353
- #: includes/qmn_options_email_tab.php:240
354
- #: includes/qmn_options_results_page_tab.php:142
355
- #: includes/qmn_options_text_tab.php:100
356
  msgid "The number of correct answers the user had"
357
  msgstr ""
358
 
359
- #: includes/qmn_options_email_tab.php:243
360
- #: includes/qmn_options_results_page_tab.php:145
361
- #: includes/qmn_options_text_tab.php:103
362
  msgid "The total number of questions in the quiz"
363
  msgstr ""
364
 
365
- #: includes/qmn_options_email_tab.php:246
366
- #: includes/qmn_options_results_page_tab.php:148
367
- #: includes/qmn_options_text_tab.php:106
368
  msgid "Score for the quiz when using correct answers"
369
  msgstr ""
370
 
371
- #: includes/qmn_options_email_tab.php:249
372
- #: includes/qmn_options_results_page_tab.php:151
373
- #: includes/qmn_options_text_tab.php:109
374
  msgid "The name the user entered before the quiz"
375
  msgstr ""
376
 
377
- #: includes/qmn_options_email_tab.php:252
378
- #: includes/qmn_options_results_page_tab.php:154
379
- #: includes/qmn_options_text_tab.php:112
380
  msgid "The business the user entered before the quiz"
381
  msgstr ""
382
 
383
- #: includes/qmn_options_email_tab.php:255
384
- #: includes/qmn_options_results_page_tab.php:157
385
- #: includes/qmn_options_text_tab.php:115
386
  msgid "The phone number the user entered before the quiz"
387
  msgstr ""
388
 
389
- #: includes/qmn_options_email_tab.php:258
390
- #: includes/qmn_options_results_page_tab.php:160
391
- #: includes/qmn_options_text_tab.php:118
392
  msgid "The email the user entered before the quiz"
393
  msgstr ""
394
 
395
- #: includes/qmn_options_email_tab.php:261
396
- #: includes/qmn_options_leaderboard_tab.php:76
397
- #: includes/qmn_options_results_page_tab.php:163
398
- #: includes/qmn_options_text_tab.php:121
399
  msgid "The name of the quiz"
400
  msgstr ""
401
 
402
- #: includes/qmn_options_email_tab.php:264
403
- #: includes/qmn_options_results_page_tab.php:166
404
- #: includes/qmn_options_text_tab.php:124
405
  msgid ""
406
  "Shows the question, the answer the user provided, and the correct answer"
407
  msgstr ""
408
 
409
- #: includes/qmn_options_email_tab.php:267
410
- #: includes/qmn_options_results_page_tab.php:169
411
- #: includes/qmn_options_text_tab.php:127
412
  msgid "The comments the user entered into comment box if enabled"
413
  msgstr ""
414
 
415
- #: includes/qmn_options_email_tab.php:270
416
- #: includes/qmn_options_results_page_tab.php:172
417
- #: includes/qmn_options_text_tab.php:130
418
  msgid "The amount of time user spent of quiz"
419
  msgstr ""
420
 
421
- #: includes/qmn_options_email_tab.php:273
422
- #: includes/qmn_options_results_page_tab.php:175
423
- #: includes/qmn_options_text_tab.php:133
424
  msgid "The link to the certificate after completing the quiz"
425
  msgstr ""
426
 
427
- #: includes/qmn_options_email_tab.php:276
428
- #: includes/qmn_options_results_page_tab.php:178
429
- #: includes/qmn_options_text_tab.php:136
430
  msgid "The amount of points a specific category earned."
431
  msgstr ""
432
 
433
- #: includes/qmn_options_email_tab.php:279
434
- #: includes/qmn_options_results_page_tab.php:181
435
- #: includes/qmn_options_text_tab.php:139
436
  msgid "The score a specific category earned."
437
  msgstr ""
438
 
439
- #: includes/qmn_options_email_tab.php:282
440
- #: includes/qmn_options_results_page_tab.php:184
441
- #: includes/qmn_options_text_tab.php:142
442
  msgid "The average points from all categories."
443
  msgstr ""
444
 
445
- #: includes/qmn_options_email_tab.php:285
446
- #: includes/qmn_options_results_page_tab.php:187
447
- #: includes/qmn_options_text_tab.php:145
448
  msgid "The average score from all categories."
449
  msgstr ""
450
 
451
- #: includes/qmn_options_email_tab.php:288
452
- #: includes/qmn_options_text_tab.php:148
453
  msgid "The question that the user answered"
454
  msgstr ""
455
 
456
- #: includes/qmn_options_email_tab.php:291
457
- #: includes/qmn_options_text_tab.php:151
458
  msgid "The answer the user gave for the question"
459
  msgstr ""
460
 
461
- #: includes/qmn_options_email_tab.php:294
462
- #: includes/qmn_options_text_tab.php:154
463
  msgid "The correct answer for the question"
464
  msgstr ""
465
 
466
- #: includes/qmn_options_email_tab.php:297
467
- #: includes/qmn_options_text_tab.php:157
468
  msgid "The comments the user provided in the comment field for the question"
469
  msgstr ""
470
 
471
- #: includes/qmn_options_email_tab.php:300
472
- #: includes/qmn_options_text_tab.php:160
473
  msgid "Reason why the correct answer is the correct answer"
474
  msgstr ""
475
 
476
- #: includes/qmn_options_email_tab.php:303
477
- #: includes/qmn_options_text_tab.php:163
478
  msgid "The Current Date"
479
  msgstr ""
480
 
481
- #: includes/qmn_options_email_tab.php:318
482
- #: includes/qmn_options_email_tab.php:517
483
  msgid "Save Email Templates And Settings"
484
  msgstr ""
485
 
486
- #: includes/qmn_options_email_tab.php:322
487
  msgid "Send user email upon completion?"
488
  msgstr ""
489
 
490
- #: includes/qmn_options_email_tab.php:329
491
  msgid "Send admin email upon completion?"
492
  msgstr ""
493
 
494
- #: includes/qmn_options_email_tab.php:336
495
  msgid ""
496
  "What emails should we send the admin email to? Separate emails with a comma."
497
  msgstr ""
498
 
499
- #: includes/qmn_options_email_tab.php:340
500
  msgid "What is the From Name for the email sent to users and admin?"
501
  msgstr ""
502
 
503
- #: includes/qmn_options_email_tab.php:346
504
  msgid "Email Sent To User"
505
  msgstr ""
506
 
507
- #: includes/qmn_options_email_tab.php:347
508
- #: includes/qmn_options_email_tab.php:425
509
  msgid "Add New User Email"
510
  msgstr ""
511
 
512
- #: includes/qmn_options_email_tab.php:352
513
- #: includes/qmn_options_email_tab.php:418
514
- #: includes/qmn_options_email_tab.php:439
515
- #: includes/qmn_options_email_tab.php:505
516
- #: includes/qmn_options_results_page_tab.php:199
517
- #: includes/qmn_options_results_page_tab.php:256
518
- msgid "Score Greater Than Or Equal To"
519
- msgstr ""
520
-
521
  #: includes/qmn_options_email_tab.php:353
522
  #: includes/qmn_options_email_tab.php:419
523
  #: includes/qmn_options_email_tab.php:440
524
  #: includes/qmn_options_email_tab.php:506
525
- #: includes/qmn_options_results_page_tab.php:200
526
- #: includes/qmn_options_results_page_tab.php:257
527
- msgid "Score Less Than Or Equal To"
528
  msgstr ""
529
 
530
  #: includes/qmn_options_email_tab.php:354
531
  #: includes/qmn_options_email_tab.php:420
532
  #: includes/qmn_options_email_tab.php:441
533
  #: includes/qmn_options_email_tab.php:507
534
- msgid "Subject"
 
 
535
  msgstr ""
536
 
537
  #: includes/qmn_options_email_tab.php:355
538
  #: includes/qmn_options_email_tab.php:421
539
  #: includes/qmn_options_email_tab.php:442
540
  #: includes/qmn_options_email_tab.php:508
 
 
 
 
 
 
 
541
  msgid "Email To Send"
542
  msgstr ""
543
 
544
- #: includes/qmn_options_email_tab.php:433
545
  msgid "Email Sent To Admin"
546
  msgstr ""
547
 
548
- #: includes/qmn_options_email_tab.php:434
549
- #: includes/qmn_options_email_tab.php:512
550
  msgid "Add New Admin Email"
551
  msgstr ""
552
 
553
- #: includes/qmn_options_leaderboard_tab.php:5
554
  msgid "Leaderboard"
555
  msgstr ""
556
 
557
- #: includes/qmn_options_leaderboard_tab.php:24
558
  msgid "The leaderboards has been updated successfully."
559
  msgstr ""
560
 
561
- #: includes/qmn_options_leaderboard_tab.php:51
562
  msgid "The name of the user who is in first place"
563
  msgstr ""
564
 
565
- #: includes/qmn_options_leaderboard_tab.php:52
566
  msgid "The score from the first place's quiz"
567
  msgstr ""
568
 
569
- #: includes/qmn_options_leaderboard_tab.php:56
570
  msgid "The name of the user who is in second place"
571
  msgstr ""
572
 
573
- #: includes/qmn_options_leaderboard_tab.php:57
574
  msgid "The score from the second place's quiz"
575
  msgstr ""
576
 
577
- #: includes/qmn_options_leaderboard_tab.php:61
578
  msgid "The name of the user who is in third place"
579
  msgstr ""
580
 
581
- #: includes/qmn_options_leaderboard_tab.php:62
582
  msgid "The score from the third place's quiz"
583
  msgstr ""
584
 
585
- #: includes/qmn_options_leaderboard_tab.php:66
586
  msgid "The name of the user who is in fourth place"
587
  msgstr ""
588
 
589
- #: includes/qmn_options_leaderboard_tab.php:67
590
  msgid "The score from the fourth place's quiz"
591
  msgstr ""
592
 
593
- #: includes/qmn_options_leaderboard_tab.php:71
594
  msgid "The name of the user who is in fifth place"
595
  msgstr ""
596
 
597
- #: includes/qmn_options_leaderboard_tab.php:72
598
  msgid "The score from the fifth place's quiz"
599
  msgstr ""
600
 
601
- #: includes/qmn_options_leaderboard_tab.php:79
602
- #: includes/qmn_options_leaderboard_tab.php:107
603
  msgid "Save Leaderboard Options"
604
  msgstr ""
605
 
606
- #: includes/qmn_options_leaderboard_tab.php:88
607
  msgid "Leaderboard Template"
608
  msgstr ""
609
 
610
- #: includes/qmn_options_option_tab.php:5
611
  msgid "Options"
612
  msgstr ""
613
 
614
- #: includes/qmn_options_option_tab.php:42
615
  msgid "The options has been updated successfully."
616
  msgstr ""
617
 
618
- #: includes/qmn_options_option_tab.php:83
619
- #: includes/qmn_options_option_tab.php:220
620
  msgid "Save Options"
621
  msgstr ""
622
 
623
- #: includes/qmn_options_option_tab.php:91
624
  msgid "Which system is this quiz graded on?"
625
  msgstr ""
626
 
627
- #: includes/qmn_options_option_tab.php:93
628
  msgid "Correct/Incorrect"
629
  msgstr ""
630
 
631
- #: includes/qmn_options_option_tab.php:94
632
  msgid "Points"
633
  msgstr ""
634
 
635
- #: includes/qmn_options_option_tab.php:95 includes/qmn_results.php:254
636
  msgid "Not Graded"
637
  msgstr ""
638
 
639
- #: includes/qmn_options_option_tab.php:99
640
  msgid "Should the user be required to be logged in to take this quiz?"
641
  msgstr ""
642
 
643
- #: includes/qmn_options_option_tab.php:106
644
  msgid ""
645
  "How many questions per page would you like? (Leave 0 for all questions on "
646
  "one page)"
647
  msgstr ""
648
 
649
- #: includes/qmn_options_option_tab.php:112
650
  msgid ""
651
  "How many minutes does the user have to finish the quiz? (Leave 0 for no time "
652
  "limit)"
653
  msgstr ""
654
 
655
- #: includes/qmn_options_option_tab.php:118
656
  msgid ""
657
  "How many times can a user take this quiz? (Leave 0 for as many times as the "
658
  "user wants to. Currently only works for registered users)"
659
  msgstr ""
660
 
661
- #: includes/qmn_options_option_tab.php:124
662
  msgid ""
663
  "How many total entries can this quiz have? (Leave 0 for unlimited entries"
664
  msgstr ""
665
 
666
- #: includes/qmn_options_option_tab.php:130
667
  msgid ""
668
  "How many questions should be loaded for quiz? (Leave 0 to load all questions)"
669
  msgstr ""
670
 
671
- #: includes/qmn_options_option_tab.php:136
672
  msgid ""
673
  "What time-frame should the user be able to access the quiz? (Leave blank if "
674
  "the user can access anytime)"
675
  msgstr ""
676
 
677
- #: includes/qmn_options_option_tab.php:138
678
  msgid "start date"
679
  msgstr ""
680
 
681
- #: includes/qmn_options_option_tab.php:141
682
  msgid "end date"
683
  msgstr ""
684
 
685
- #: includes/qmn_options_option_tab.php:145
686
  msgid ""
687
  "Are the questions random? (Question Order will not apply if this is yes)"
688
  msgstr ""
689
 
690
- #: includes/qmn_options_option_tab.php:147
691
  msgid "Random Questions"
692
  msgstr ""
693
 
694
- #: includes/qmn_options_option_tab.php:148
695
  msgid "Random Questions And Answers"
696
  msgstr ""
697
 
698
- #: includes/qmn_options_option_tab.php:153
699
  msgid ""
700
  "Would you like to ask for the contact information at the beginning or at the "
701
  "end of the quiz?"
702
  msgstr ""
703
 
704
- #: includes/qmn_options_option_tab.php:155
705
  msgid "Beginning"
706
  msgstr ""
707
 
708
- #: includes/qmn_options_option_tab.php:156
709
  msgid "End"
710
  msgstr ""
711
 
712
- #: includes/qmn_options_option_tab.php:160
713
  msgid ""
714
  "If a logged-in user takes the quiz, would you like them to be able to edit "
715
  "contact information? If set to no, the fields will not show up for logged in "
716
  "users; however, the users information will be saved for the fields."
717
  msgstr ""
718
 
719
- #: includes/qmn_options_option_tab.php:167
720
  msgid "Should we ask for users name?"
721
  msgstr ""
722
 
723
- #: includes/qmn_options_option_tab.php:170
724
- #: includes/qmn_options_option_tab.php:178
725
- #: includes/qmn_options_option_tab.php:186
726
- #: includes/qmn_options_option_tab.php:194
727
  msgid "Require"
728
  msgstr ""
729
 
730
- #: includes/qmn_options_option_tab.php:175
731
  msgid "Should we ask for users business?"
732
  msgstr ""
733
 
734
- #: includes/qmn_options_option_tab.php:183
735
  msgid "Should we ask for users email?"
736
  msgstr ""
737
 
738
- #: includes/qmn_options_option_tab.php:191
739
  msgid "Should we ask for users phone number?"
740
  msgstr ""
741
 
742
- #: includes/qmn_options_option_tab.php:199
743
  msgid "Would you like a place for the user to enter comments?"
744
  msgstr ""
745
 
746
- #: includes/qmn_options_option_tab.php:206
747
  msgid "Show question number on quiz?"
748
  msgstr ""
749
 
750
- #: includes/qmn_options_option_tab.php:213
751
  msgid "Show social media sharing buttons? (Twitter & Facebook)"
752
  msgstr ""
753
 
754
- #: includes/qmn_options_preview_tab.php:5
 
 
 
 
 
 
 
755
  msgid "Preview"
756
  msgstr ""
757
 
758
- #: includes/qmn_options_questions_tab.php:5
759
  msgid "Questions"
760
  msgstr ""
761
 
762
- #: includes/qmn_options_questions_tab.php:104
763
  msgid "The question has been updated successfully."
764
  msgstr ""
765
 
766
- #: includes/qmn_options_questions_tab.php:131
767
  msgid "The question has been deleted successfully."
768
  msgstr ""
769
 
770
- #: includes/qmn_options_questions_tab.php:215
771
  msgid "The question has been duplicated successfully."
772
  msgstr ""
773
 
774
- #: includes/qmn_options_questions_tab.php:308
775
  msgid "The question has been created successfully."
776
  msgstr ""
777
 
778
- #: includes/qmn_options_questions_tab.php:453
779
- #: includes/qmn_options_questions_tab.php:460
780
- #: includes/qmn_options_questions_tab.php:591
781
- #: includes/qmn_options_questions_tab.php:757
782
  msgid "Answer"
783
  msgstr ""
784
 
785
- #: includes/qmn_options_questions_tab.php:480
786
- #: includes/qmn_options_questions_tab.php:727
787
  msgid "Add Question"
788
  msgstr ""
789
 
790
- #: includes/qmn_options_questions_tab.php:484
791
  #, php-format
792
  msgid "One question"
793
  msgid_plural "%s questions"
794
  msgstr[0] ""
795
  msgstr[1] ""
796
 
797
- #: includes/qmn_options_questions_tab.php:556 includes/qmn_quiz_admin.php:265
798
  msgid "Edit"
799
  msgstr ""
800
 
801
- #: includes/qmn_options_questions_tab.php:556 includes/qmn_quiz_admin.php:267
802
- #: includes/qmn_quiz_admin.php:391
803
  msgid "Duplicate"
804
  msgstr ""
805
 
806
- #: includes/qmn_options_questions_tab.php:556
807
- #: includes/qmn_options_results_page_tab.php:236
808
- #: includes/qmn_quiz_admin.php:268
809
  msgid "Delete"
810
  msgstr ""
811
 
812
- #: includes/qmn_options_questions_tab.php:569
813
- #: includes/qmn_options_questions_tab.php:712
814
- #: includes/qmn_options_questions_tab.php:723
815
  #: includes/qmn_options_questions_tab.php:737
 
 
 
 
 
 
 
 
 
816
  msgid "Question"
817
  msgstr ""
818
 
819
- #: includes/qmn_options_questions_tab.php:580
820
- #: includes/qmn_options_questions_tab.php:748
821
  msgid "Answers"
822
  msgstr ""
823
 
824
- #: includes/qmn_options_questions_tab.php:581
825
- #: includes/qmn_options_questions_tab.php:749
826
  msgid "Points Worth"
827
  msgstr ""
828
 
829
- #: includes/qmn_options_questions_tab.php:582
830
- #: includes/qmn_options_questions_tab.php:750
831
  msgid "Correct Answer"
832
  msgstr ""
833
 
834
- #: includes/qmn_options_questions_tab.php:609
835
- #: includes/qmn_options_questions_tab.php:772
836
  msgid "Add New Answer!"
837
  msgstr ""
838
 
839
- #: includes/qmn_options_questions_tab.php:614
840
- #: includes/qmn_options_questions_tab.php:777
841
  msgid "Correct Answer Info"
842
  msgstr ""
843
 
844
- #: includes/qmn_options_questions_tab.php:621
845
- #: includes/qmn_options_questions_tab.php:784 includes/qmn_quiz.php:328
846
  msgid "Hint"
847
  msgstr ""
848
 
849
- #: includes/qmn_options_questions_tab.php:632
850
- #: includes/qmn_options_questions_tab.php:710
851
- #: includes/qmn_options_questions_tab.php:721
852
- #: includes/qmn_options_questions_tab.php:795
853
  msgid "Question Type"
854
  msgstr ""
855
 
856
- #: includes/qmn_options_questions_tab.php:650
857
- #: includes/qmn_options_questions_tab.php:808
858
  msgid "Comment Field"
859
  msgstr ""
860
 
861
- #: includes/qmn_options_questions_tab.php:653
862
- #: includes/qmn_options_questions_tab.php:810
863
  msgid "Small Text Field"
864
  msgstr ""
865
 
866
- #: includes/qmn_options_questions_tab.php:655
867
- #: includes/qmn_options_questions_tab.php:811
868
  msgid "Large Text Field"
869
  msgstr ""
870
 
871
- #: includes/qmn_options_questions_tab.php:657
872
- #: includes/qmn_options_questions_tab.php:812
873
  msgid "None"
874
  msgstr ""
875
 
876
- #: includes/qmn_options_questions_tab.php:661
877
- #: includes/qmn_options_questions_tab.php:709
878
- #: includes/qmn_options_questions_tab.php:720
879
- #: includes/qmn_options_questions_tab.php:816
880
  msgid "Question Order"
881
  msgstr ""
882
 
883
- #: includes/qmn_options_questions_tab.php:669
884
- #: includes/qmn_options_questions_tab.php:824
885
  msgid "Required?"
886
  msgstr ""
887
 
888
- #: includes/qmn_options_questions_tab.php:678
889
- #: includes/qmn_options_questions_tab.php:711
890
- #: includes/qmn_options_questions_tab.php:722
891
- #: includes/qmn_options_questions_tab.php:833
892
  msgid "Category"
893
  msgstr ""
894
 
895
- #: includes/qmn_options_questions_tab.php:697
896
- #: includes/qmn_options_questions_tab.php:852
897
  msgid ""
898
  "Required currently only works on open answer, number, accept, and captcha "
899
  "question types"
900
  msgstr ""
901
 
902
- #: includes/qmn_options_questions_tab.php:699
903
  msgid "Edit Question"
904
  msgstr ""
905
 
906
- #: includes/qmn_options_questions_tab.php:854
907
  msgid "Create Question"
908
  msgstr ""
909
 
910
- #: includes/qmn_options_questions_tab.php:859
911
  msgid "Are you sure you want to delete this question?"
912
  msgstr ""
913
 
914
- #: includes/qmn_options_questions_tab.php:864
915
  msgid "Delete Question"
916
  msgstr ""
917
 
918
- #: includes/qmn_options_questions_tab.php:869
919
  msgid "Are you sure you want to duplicate this question?"
920
  msgstr ""
921
 
922
- #: includes/qmn_options_questions_tab.php:874
923
  msgid "Duplicate Question"
924
  msgstr ""
925
 
926
- #: includes/qmn_options_results_page_tab.php:5
927
  msgid "Results Pages"
928
  msgstr ""
929
 
930
- #: includes/qmn_options_results_page_tab.php:40
931
  msgid "The results page has been added successfully."
932
  msgstr ""
933
 
934
- #: includes/qmn_options_results_page_tab.php:80
935
  msgid "The results page has been saved successfully."
936
  msgstr ""
937
 
938
- #: includes/qmn_options_results_page_tab.php:192
939
- #: includes/qmn_options_results_page_tab.php:265
 
 
 
 
 
 
 
 
940
  msgid "Save Results Pages"
941
  msgstr ""
942
 
943
- #: includes/qmn_options_results_page_tab.php:193
944
- #: includes/qmn_options_results_page_tab.php:270
945
  msgid "Add New Results Page"
946
  msgstr ""
947
 
948
- #: includes/qmn_options_results_page_tab.php:201
949
- #: includes/qmn_options_results_page_tab.php:258
950
  msgid "Results Page Shown"
951
  msgstr ""
952
 
953
- #: includes/qmn_options_results_page_tab.php:236
 
 
 
 
 
954
  msgid "Are you sure?"
955
  msgstr ""
956
 
957
- #: includes/qmn_options_style_tab.php:5
958
  msgid "Style"
959
  msgstr ""
960
 
961
- #: includes/qmn_options_style_tab.php:25
962
  msgid "The style has been saved successfully."
963
  msgstr ""
964
 
965
- #: includes/qmn_options_style_tab.php:64
966
  msgid "Quiz Styles"
967
  msgstr ""
968
 
969
- #: includes/qmn_options_style_tab.php:65
970
  msgid "Choose your style:"
971
  msgstr ""
972
 
973
- #: includes/qmn_options_style_tab.php:87
974
  msgid "Custom"
975
  msgstr ""
976
 
977
- #: includes/qmn_options_style_tab.php:93
978
- #: includes/qmn_options_style_tab.php:105
979
  msgid "Save Quiz Style"
980
  msgstr ""
981
 
982
- #: includes/qmn_options_style_tab.php:95
983
  msgid "Custom Style CSS"
984
  msgstr ""
985
 
986
- #: includes/qmn_options_style_tab.php:96
987
  msgid ""
988
  "For detailed help and guidance along with a list of different classes used "
989
  "in this plugin, please visit the following link:"
990
  msgstr ""
991
 
992
- #: includes/qmn_options_text_tab.php:5
993
  msgid "Text"
994
  msgstr ""
995
 
996
- #: includes/qmn_options_text_tab.php:41
997
  msgid "The templates has been updated successfully."
998
  msgstr ""
999
 
1000
- #: includes/qmn_options_text_tab.php:72 includes/qmn_quiz.php:1112
1001
  msgid "Previous"
1002
  msgstr ""
1003
 
1004
- #: includes/qmn_options_text_tab.php:168 includes/qmn_options_text_tab.php:328
1005
  msgid "Save Templates"
1006
  msgstr ""
1007
 
1008
- #: includes/qmn_options_text_tab.php:174
1009
  msgid "Message Templates"
1010
  msgstr ""
1011
 
1012
- #: includes/qmn_options_text_tab.php:178
1013
  msgid "Message Displayed Before Quiz"
1014
  msgstr ""
1015
 
1016
- #: includes/qmn_options_text_tab.php:188
1017
  msgid "Message Displayed Before Comments Box If Enabled"
1018
  msgstr ""
1019
 
1020
- #: includes/qmn_options_text_tab.php:198
1021
  msgid "Message Displayed At End Of Quiz (Leave Blank To Omit Text Section)"
1022
  msgstr ""
1023
 
1024
- #: includes/qmn_options_text_tab.php:208
1025
  msgid "Message Displayed If User Has Tried Quiz Too Many Times"
1026
  msgstr ""
1027
 
1028
- #: includes/qmn_options_text_tab.php:218
1029
  msgid ""
1030
  "Message Displayed If User Is Not Logged In And Quiz Requires Users To Be "
1031
  "Logged In"
1032
  msgstr ""
1033
 
1034
- #: includes/qmn_options_text_tab.php:228
1035
  msgid "Message Displayed If Date Is Outside Scheduled Timeframe"
1036
  msgstr ""
1037
 
1038
- #: includes/qmn_options_text_tab.php:238
1039
  msgid "Message Displayed If The Limit Of Total Entries Has Been Reached"
1040
  msgstr ""
1041
 
1042
- #: includes/qmn_options_text_tab.php:248
1043
  msgid "%QUESTIONS_ANSWERS% Text"
1044
  msgstr ""
1045
 
1046
- #: includes/qmn_options_text_tab.php:261
1047
  msgid "Twitter Sharing Text"
1048
  msgstr ""
1049
 
1050
- #: includes/qmn_options_text_tab.php:278
1051
  msgid "Facebook Sharing Text"
1052
  msgstr ""
1053
 
1054
- #: includes/qmn_options_text_tab.php:293
1055
  msgid "Other Templates"
1056
  msgstr ""
1057
 
1058
- #: includes/qmn_options_text_tab.php:296
1059
  msgid "Text for submit button"
1060
  msgstr ""
1061
 
1062
- #: includes/qmn_options_text_tab.php:300
1063
  msgid "Text for name field"
1064
  msgstr ""
1065
 
1066
- #: includes/qmn_options_text_tab.php:304
1067
  msgid "Text for business field"
1068
  msgstr ""
1069
 
1070
- #: includes/qmn_options_text_tab.php:308
1071
  msgid "Text for email field"
1072
  msgstr ""
1073
 
1074
- #: includes/qmn_options_text_tab.php:312
1075
  msgid "Text for phone number field"
1076
  msgstr ""
1077
 
1078
- #: includes/qmn_options_text_tab.php:316
1079
  msgid "Text for comments field"
1080
  msgstr ""
1081
 
1082
- #: includes/qmn_options_text_tab.php:320
1083
  msgid "Text for previous button"
1084
  msgstr ""
1085
 
1086
- #: includes/qmn_options_text_tab.php:324
1087
  msgid "Text for next button"
1088
  msgstr ""
1089
 
1090
- #: includes/qmn_options_tools_tab.php:5 includes/qmn_tools.php:53
1091
  #: mlw_quizmaster2.php:222
1092
  msgid "Tools"
1093
  msgstr ""
1094
 
1095
- #: includes/qmn_options_tools_tab.php:22
1096
  msgid "The stats has been reset successfully."
1097
  msgstr ""
1098
 
1099
- #: includes/qmn_options_tools_tab.php:74
1100
  msgid ""
1101
  "Use this button to reset all the stats collected for this quiz (Quiz Views "
1102
  "and Times Quiz Has Been Taken)."
1103
  msgstr ""
1104
 
1105
- #: includes/qmn_options_tools_tab.php:75
1106
  msgid "Reset Quiz Views And Taken Stats"
1107
  msgstr ""
1108
 
1109
- #: includes/qmn_options_tools_tab.php:86
1110
  msgid ""
1111
  "Are you sure you want to reset the stats to 0? All views and taken stats for "
1112
  "this quiz will be reset. This is permanent and cannot be undone."
1113
  msgstr ""
1114
 
1115
- #: includes/qmn_options_tools_tab.php:90
1116
  msgid "Reset All Stats For Quiz"
1117
  msgstr ""
1118
 
@@ -1160,267 +1187,271 @@ msgstr ""
1160
  msgid "Horizontal Multiple Response"
1161
  msgstr ""
1162
 
1163
- #: includes/qmn_quiz.php:214
 
 
 
 
1164
  msgid "Not a valid e-mail address!"
1165
  msgstr ""
1166
 
1167
- #: includes/qmn_quiz.php:215
1168
  msgid "This field must be a number!"
1169
  msgstr ""
1170
 
1171
- #: includes/qmn_quiz.php:216
1172
  msgid "The entered text is not correct!"
1173
  msgstr ""
1174
 
1175
- #: includes/qmn_quiz.php:217
1176
  msgid "Please complete all required fields!"
1177
  msgstr ""
1178
 
1179
- #: includes/qmn_quiz_admin.php:181 mlw_quizmaster2.php:217
1180
  msgid "Quizzes"
1181
  msgstr ""
1182
 
1183
- #: includes/qmn_quiz_admin.php:181
1184
  msgid "Add New"
1185
  msgstr ""
1186
 
1187
- #: includes/qmn_quiz_admin.php:199
1188
  #, php-format
1189
  msgid "One quiz"
1190
  msgid_plural "%s quizzes"
1191
  msgstr[0] ""
1192
  msgstr[1] ""
1193
 
1194
- #: includes/qmn_quiz_admin.php:244 includes/qmn_quiz_admin.php:290
1195
- #: includes/qmn_quiz_admin.php:358 includes/qmn_results.php:205
1196
  msgid "Quiz Name"
1197
  msgstr ""
1198
 
1199
- #: includes/qmn_quiz_admin.php:245
1200
  msgid "URL"
1201
  msgstr ""
1202
 
1203
- #: includes/qmn_quiz_admin.php:246 includes/qmn_quiz_admin.php:291
1204
  msgid "Quiz Shortcode"
1205
  msgstr ""
1206
 
1207
- #: includes/qmn_quiz_admin.php:247 includes/qmn_quiz_admin.php:292
1208
  msgid "Leaderboard Shortcode"
1209
  msgstr ""
1210
 
1211
- #: includes/qmn_quiz_admin.php:248 includes/qmn_quiz_admin.php:293
1212
  msgid "Quiz Views"
1213
  msgstr ""
1214
 
1215
- #: includes/qmn_quiz_admin.php:249 includes/qmn_quiz_admin.php:294
1216
  msgid "Quiz Taken"
1217
  msgstr ""
1218
 
1219
- #: includes/qmn_quiz_admin.php:250 includes/qmn_quiz_admin.php:295
1220
  msgid "Last Modified"
1221
  msgstr ""
1222
 
1223
- #: includes/qmn_quiz_admin.php:263
1224
  msgid "Edit Name"
1225
  msgstr ""
1226
 
1227
- #: includes/qmn_quiz_admin.php:266 includes/qmn_results_details.php:116
1228
  msgid "Results"
1229
  msgstr ""
1230
 
1231
- #: includes/qmn_quiz_admin.php:353
1232
  msgid "Create New Quiz"
1233
  msgstr ""
1234
 
1235
- #: includes/qmn_quiz_admin.php:367
1236
  msgid "Create Quiz"
1237
  msgstr ""
1238
 
1239
- #: includes/qmn_quiz_admin.php:373
1240
  msgid "Quiz Name:"
1241
  msgstr ""
1242
 
1243
- #: includes/qmn_quiz_admin.php:384
1244
  msgid "Duplicate this quiz?"
1245
  msgstr ""
1246
 
1247
- #: includes/qmn_quiz_admin.php:386
1248
  msgid "Duplicate questions with quiz"
1249
  msgstr ""
1250
 
1251
- #: includes/qmn_quiz_admin.php:388
1252
  msgid "Name Of New Quiz:"
1253
  msgstr ""
1254
 
1255
- #: includes/qmn_quiz_admin.php:397
1256
  msgid "Are you sure you want to delete this quiz?"
1257
  msgstr ""
1258
 
1259
- #: includes/qmn_quiz_admin.php:402
1260
  msgid "Delete Quiz"
1261
  msgstr ""
1262
 
1263
- #: includes/qmn_quiz_creator.php:368
1264
  msgid ""
1265
  "Your new quiz has been created successfully. To begin editing your quiz, "
1266
  "click the Edit link on the new quiz."
1267
  msgstr ""
1268
 
1269
- #: includes/qmn_quiz_creator.php:434
1270
  msgid "Your quiz has been deleted successfully."
1271
  msgstr ""
1272
 
1273
- #: includes/qmn_quiz_creator.php:476
1274
  msgid "Your quiz name has been updated successfully."
1275
  msgstr ""
1276
 
1277
- #: includes/qmn_quiz_creator.php:622
1278
  msgid "Your quiz has been duplicated successfully."
1279
  msgstr ""
1280
 
1281
  #. translators: The %s corresponds to the name of the quiz
1282
- #: includes/qmn_quiz_options.php:51
1283
  #, php-format
1284
  msgid "Quiz Settings For %s"
1285
  msgstr ""
1286
 
1287
- #: includes/qmn_quiz_options.php:91
1288
  msgid ""
1289
  "Please go to the quizzes page and click on the Edit link from the quiz you "
1290
  "wish to edit."
1291
  msgstr ""
1292
 
1293
- #: includes/qmn_results.php:19
1294
  msgid "Your results has been deleted successfully."
1295
  msgstr ""
1296
 
1297
- #: includes/qmn_results.php:148 includes/qmn_results_details.php:16
1298
  #: mlw_quizmaster2.php:219
1299
  msgid "Quiz Results"
1300
  msgstr ""
1301
 
1302
- #: includes/qmn_results.php:157
1303
  #, php-format
1304
  msgid "One result"
1305
  msgid_plural "%s results"
1306
  msgstr[0] ""
1307
  msgstr[1] ""
1308
 
1309
- #: includes/qmn_results.php:204
1310
  msgid "Actions"
1311
  msgstr ""
1312
 
1313
- #: includes/qmn_results.php:206
1314
  msgid "Score"
1315
  msgstr ""
1316
 
1317
- #: includes/qmn_results.php:207
1318
  msgid "Time To Complete"
1319
  msgstr ""
1320
 
1321
- #: includes/qmn_results.php:208
1322
  msgid "Name"
1323
  msgstr ""
1324
 
1325
- #: includes/qmn_results.php:209
1326
  msgid "Business"
1327
  msgstr ""
1328
 
1329
- #: includes/qmn_results.php:210
1330
  msgid "Email"
1331
  msgstr ""
1332
 
1333
- #: includes/qmn_results.php:211
1334
  msgid "Phone"
1335
  msgstr ""
1336
 
1337
- #: includes/qmn_results.php:212
1338
  msgid "Time Taken"
1339
  msgstr ""
1340
 
1341
- #: includes/qmn_results.php:272
1342
  msgid "Are you sure you want to delete these results?"
1343
  msgstr ""
1344
 
1345
- #: includes/qmn_results.php:277
1346
  msgid "Delete Results"
1347
  msgstr ""
1348
 
1349
- #: includes/qmn_results_details.php:195
1350
  msgid "Create Certificate"
1351
  msgstr ""
1352
 
1353
- #: includes/qmn_results_details.php:200
1354
  msgid "Download Certificate Here"
1355
  msgstr ""
1356
 
1357
- #: includes/qmn_results_details.php:207
1358
  msgid "Certificate"
1359
  msgstr ""
1360
 
1361
- #: includes/qmn_tools.php:88
1362
  msgid "There has been an error! Please try again."
1363
  msgstr ""
1364
 
1365
- #: includes/qmn_tools.php:106
1366
  msgid "Quiz Has Been Restored!"
1367
  msgstr ""
1368
 
1369
- #: includes/qmn_tools.php:111
1370
  msgid ""
1371
  "Choose a quiz in the drop down and then click the button to restore a "
1372
  "deleted quiz."
1373
  msgstr ""
1374
 
1375
- #: includes/qmn_tools.php:121
1376
  msgid "Restore Quiz"
1377
  msgstr ""
1378
 
1379
- #: includes/qmn_tools.php:150 includes/qmn_tools.php:166
1380
  #, php-format
1381
  msgid "Previous %s Audits"
1382
  msgstr ""
1383
 
1384
- #: includes/qmn_tools.php:153 includes/qmn_tools.php:160
1385
  #, php-format
1386
  msgid "Next %s Audits"
1387
  msgstr ""
1388
 
1389
- #: includes/qmn_tools.php:173
1390
  msgid "User"
1391
  msgstr ""
1392
 
1393
- #: includes/qmn_tools.php:174
1394
  msgid "Action"
1395
  msgstr ""
1396
 
1397
- #: includes/qmn_tools.php:175
1398
  msgid "Time"
1399
  msgstr ""
1400
 
1401
- #: includes/qmn_usage_tracking.php:195
1402
  msgid ""
1403
  "Allow Quiz Master Next to anonymously track this plugin's usage and help us "
1404
  "make this plugin better? No sensitive data is tracked."
1405
  msgstr ""
1406
 
1407
- #: includes/qmn_usage_tracking.php:196
1408
  msgid "Allow"
1409
  msgstr ""
1410
 
1411
- #: includes/qmn_usage_tracking.php:197
1412
  msgid "Do not allow"
1413
  msgstr ""
1414
 
1415
- #: includes/qmn_widgets.php:10
1416
  msgid "Quiz Master Next Leaderboard Widget"
1417
  msgstr ""
1418
 
1419
- #: includes/qmn_widgets.php:25
1420
  msgid "Widget Title"
1421
  msgstr ""
1422
 
1423
- #: includes/qmn_widgets.php:29
1424
  msgid "Quiz ID"
1425
  msgstr ""
1426
 
5
  msgstr ""
6
  "Project-Id-Version: Quiz Master Next\n"
7
  "Report-Msgid-Bugs-To: Frank Corso <fpcorso@mylocalwebstop.com>\n"
8
+ "POT-Creation-Date: 2015-03-06 14:03-0500\n"
9
  "PO-Revision-Date: \n"
10
  "Last-Translator: Your Name <you@example.com>\n"
11
  "Language-Team: My Local Webstop <fpcorso@mylocalwebstop.com>\n"
23
  "X-Generator: Poedit 1.7.3\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
 
26
+ #: includes/qmn_addons.php:48
27
  msgid "These addons extend the functionality of Quiz Master Next"
28
  msgstr ""
29
 
30
+ #: includes/qmn_addons.php:71
31
  msgid "Browse All Addons"
32
  msgstr ""
33
 
34
+ #: includes/qmn_addons.php:78
35
  msgid "Featured Addons"
36
  msgstr ""
37
 
38
+ #: includes/qmn_alerts.php:19
39
  msgid "Success!"
40
  msgstr ""
41
 
42
+ #: includes/qmn_alerts.php:23 includes/qmn_quiz_options.php:96
43
  msgid "Error!"
44
  msgstr ""
45
 
46
+ #: includes/qmn_credits.php:86
47
  msgid "Welcome To Quiz Master Next"
48
  msgstr ""
49
 
50
+ #: includes/qmn_credits.php:87
51
  msgid "Thank you for updating!"
52
  msgstr ""
53
 
54
+ #: includes/qmn_credits.php:91
55
  msgid "What's New!"
56
  msgstr ""
57
 
58
+ #: includes/qmn_credits.php:93
59
  msgid "Changelog"
60
  msgstr ""
61
 
62
+ #: includes/qmn_credits.php:95
63
  msgid "Requested Features"
64
  msgstr ""
65
 
66
+ #: includes/qmn_dashboard.php:16
67
  msgid "Quiz Daily Stats - Times Taken"
68
  msgstr ""
69
 
70
+ #: includes/qmn_dashboard.php:17
71
  msgid "Quiz Total Stats"
72
  msgstr ""
73
 
74
+ #: includes/qmn_dashboard.php:18
75
  msgid "Quiz Weekly Stats - Times Taken"
76
  msgstr ""
77
 
78
+ #: includes/qmn_dashboard.php:19
79
  msgid "Quiz Monthly Stats - Times Taken"
80
  msgstr ""
81
 
82
+ #: includes/qmn_dashboard.php:20
83
  msgid "Quiz Quarterly Stats - Times Taken"
84
  msgstr ""
85
 
86
+ #: includes/qmn_dashboard.php:25
87
  msgid "Quizzes Taken Today"
88
  msgstr ""
89
 
90
+ #: includes/qmn_dashboard.php:26
91
  msgid "Quizzes Taken Last 7 Days"
92
  msgstr ""
93
 
94
+ #: includes/qmn_dashboard.php:27
95
  msgid "Quizzes Taken Last 30 Days"
96
  msgstr ""
97
 
98
+ #: includes/qmn_dashboard.php:28
99
  msgid "Quizzes Taken Last 120 Days"
100
  msgstr ""
101
 
102
+ #: includes/qmn_dashboard.php:54
103
  msgid "Quiz Statistics"
104
  msgstr ""
105
 
106
+ #: includes/qmn_dashboard.php:228
107
  msgid "Total Created Quizzes"
108
  msgstr ""
109
 
110
+ #: includes/qmn_dashboard.php:232
111
  msgid "Total Deleted Quizzes"
112
  msgstr ""
113
 
114
+ #: includes/qmn_dashboard.php:236
115
  msgid "Total Active Quizzes"
116
  msgstr ""
117
 
118
+ #: includes/qmn_dashboard.php:240
119
  msgid "Total Created Questions"
120
  msgstr ""
121
 
122
+ #: includes/qmn_dashboard.php:244
123
  msgid "Total Times All Active Quizzes Have Been Viewed"
124
  msgstr ""
125
 
126
+ #: includes/qmn_dashboard.php:248
127
  msgid "Total Times All Active Quizzes Have Been Taken"
128
  msgstr ""
129
 
130
+ #: includes/qmn_dashboard.php:252
131
  msgid "Average Amount Each Active Quiz Has Been Viewed"
132
  msgstr ""
133
 
134
+ #: includes/qmn_dashboard.php:256
135
  msgid "Average Amount Each Active Quiz Has Been Taken"
136
  msgstr ""
137
 
138
+ #: includes/qmn_dashboard.php:260
139
  msgid "Quiz That Has Been Viewed The Most"
140
  msgstr ""
141
 
142
+ #: includes/qmn_dashboard.php:264
143
  msgid "Quiz That Has Been Taken The Most"
144
  msgstr ""
145
 
146
+ #: includes/qmn_dashboard_widgets.php:9
147
  msgid "Quiz Master Next Snapshot"
148
  msgstr ""
149
 
150
+ #: includes/qmn_dashboard_widgets.php:128
151
  msgid "quizzes taken today"
152
  msgstr ""
153
 
154
+ #: includes/qmn_dashboard_widgets.php:147
155
  msgid "quizzes taken last 7 days"
156
  msgstr ""
157
 
158
+ #: includes/qmn_dashboard_widgets.php:166
159
  msgid "total active quizzes"
160
  msgstr ""
161
 
162
+ #: includes/qmn_dashboard_widgets.php:172
163
  msgid "total active questions"
164
  msgstr ""
165
 
166
+ #: includes/qmn_dashboard_widgets.php:178
167
  msgid "most popular quiz"
168
  msgstr ""
169
 
170
+ #: includes/qmn_dashboard_widgets.php:184
171
  msgid "least popular quiz"
172
  msgstr ""
173
 
174
+ #: includes/qmn_help.php:13
175
  msgid "Need Help?"
176
  msgstr ""
177
 
178
+ #: includes/qmn_help.php:14
179
  msgid "Support"
180
  msgstr ""
181
 
182
+ #: includes/qmn_help.php:15
183
  msgid "System Info"
184
  msgstr ""
185
 
186
+ #: includes/qmn_help.php:18
187
  msgid "Help Page"
188
  msgstr ""
189
 
190
+ #: includes/qmn_help.php:41
191
  msgid "Need help with the plugin? Try any of the following:"
192
  msgstr ""
193
 
194
+ #: includes/qmn_options_certificate_tab.php:6
195
  msgid "Certificate (Beta)"
196
  msgstr ""
197
 
198
+ #: includes/qmn_options_certificate_tab.php:32
199
  msgid "The certificate has been updated successfully."
200
  msgstr ""
201
 
202
+ #: includes/qmn_options_certificate_tab.php:45
203
+ #: includes/qmn_options_email_tab.php:55
204
+ #: includes/qmn_options_email_tab.php:114
205
+ #: includes/qmn_options_email_tab.php:178
206
+ #: includes/qmn_options_leaderboard_tab.php:38
207
+ #: includes/qmn_options_option_tab.php:56
208
+ #: includes/qmn_options_questions_tab.php:118
209
+ #: includes/qmn_options_questions_tab.php:145
210
+ #: includes/qmn_options_questions_tab.php:229
211
+ #: includes/qmn_options_questions_tab.php:322
212
+ #: includes/qmn_options_results_page_tab.php:54
213
+ #: includes/qmn_options_results_page_tab.php:94
214
+ #: includes/qmn_options_style_tab.php:39 includes/qmn_options_text_tab.php:55
215
+ #: includes/qmn_options_tools_tab.php:36 includes/qmn_quiz_creator.php:382
216
+ #: includes/qmn_quiz_creator.php:448 includes/qmn_quiz_creator.php:490
217
+ #: includes/qmn_quiz_creator.php:648 includes/qmn_quiz_creator.php:713
218
+ #: includes/qmn_results.php:36
219
  #, php-format
220
  msgid ""
221
  "There has been an error in this action. Please share this with the "
222
  "developer. Error Code: %s"
223
  msgstr ""
224
 
225
+ #: includes/qmn_options_certificate_tab.php:61
226
  msgid "Enter title here"
227
  msgstr ""
228
 
229
+ #: includes/qmn_options_certificate_tab.php:61
230
+ #: includes/qmn_options_email_tab.php:73 includes/qmn_options_email_tab.php:91
231
  msgid "Enter text here"
232
  msgstr ""
233
 
234
+ #: includes/qmn_options_certificate_tab.php:70
235
  msgid "Quiz Certificate (Beta)"
236
  msgstr ""
237
 
238
+ #: includes/qmn_options_certificate_tab.php:71
239
  msgid ""
240
  "Enter in your text here to fill in the certificate for this quiz. Be sure to "
241
  "enter in the link variable into the templates on the Quiz Text tab so the "
242
  "user can access the certificate."
243
  msgstr ""
244
 
245
+ #: includes/qmn_options_certificate_tab.php:72
246
  msgid "These fields cannot contain HTML."
247
  msgstr ""
248
 
249
+ #: includes/qmn_options_certificate_tab.php:73
250
+ #: includes/qmn_options_certificate_tab.php:129
251
  msgid "Save Certificate Options"
252
  msgstr ""
253
 
254
+ #: includes/qmn_options_certificate_tab.php:81
255
  msgid "Enable Certificates For This Quiz?"
256
  msgstr ""
257
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
258
  #: includes/qmn_options_certificate_tab.php:83
259
  #: includes/qmn_options_email_tab.php:325
260
  #: includes/qmn_options_email_tab.php:332
261
  #: includes/qmn_options_option_tab.php:102
 
262
  #: includes/qmn_options_option_tab.php:163
263
+ #: includes/qmn_options_option_tab.php:170
264
+ #: includes/qmn_options_option_tab.php:178
265
+ #: includes/qmn_options_option_tab.php:186
266
+ #: includes/qmn_options_option_tab.php:194
267
  #: includes/qmn_options_option_tab.php:202
268
  #: includes/qmn_options_option_tab.php:209
269
  #: includes/qmn_options_option_tab.php:216
270
+ #: includes/qmn_options_questions_tab.php:674
271
+ #: includes/qmn_options_questions_tab.php:830
272
+ #: includes/qmn_options_results_page_tab.php:247
273
+ msgid "Yes"
274
+ msgstr ""
275
+
276
+ #: includes/qmn_options_certificate_tab.php:84
277
+ #: includes/qmn_options_email_tab.php:326
278
+ #: includes/qmn_options_email_tab.php:333
279
+ #: includes/qmn_options_option_tab.php:103
280
+ #: includes/qmn_options_option_tab.php:150
281
+ #: includes/qmn_options_option_tab.php:164
282
+ #: includes/qmn_options_option_tab.php:172
283
+ #: includes/qmn_options_option_tab.php:180
284
+ #: includes/qmn_options_option_tab.php:188
285
+ #: includes/qmn_options_option_tab.php:196
286
+ #: includes/qmn_options_option_tab.php:203
287
+ #: includes/qmn_options_option_tab.php:210
288
+ #: includes/qmn_options_option_tab.php:217
289
+ #: includes/qmn_options_questions_tab.php:675
290
+ #: includes/qmn_options_questions_tab.php:831
291
+ #: includes/qmn_options_results_page_tab.php:247
292
  msgid "No"
293
  msgstr ""
294
 
295
+ #: includes/qmn_options_certificate_tab.php:89
296
  msgid "Certificate Title"
297
  msgstr ""
298
 
299
+ #: includes/qmn_options_certificate_tab.php:96
300
  msgid "Message Displayed On Certificate"
301
  msgstr ""
302
 
303
+ #: includes/qmn_options_certificate_tab.php:98
304
+ #: includes/qmn_options_leaderboard_tab.php:91
305
+ #: includes/qmn_options_text_tab.php:181 includes/qmn_options_text_tab.php:191
306
+ #: includes/qmn_options_text_tab.php:201 includes/qmn_options_text_tab.php:211
307
+ #: includes/qmn_options_text_tab.php:221 includes/qmn_options_text_tab.php:231
308
+ #: includes/qmn_options_text_tab.php:241 includes/qmn_options_text_tab.php:251
309
+ #: includes/qmn_options_text_tab.php:264 includes/qmn_options_text_tab.php:281
310
  msgid "Allowed Variables:"
311
  msgstr ""
312
 
313
+ #: includes/qmn_options_certificate_tab.php:116
314
  msgid "URL To Logo (Must be JPG, JPEG, PNG or GIF)"
315
  msgstr ""
316
 
317
+ #: includes/qmn_options_certificate_tab.php:123
318
  msgid "URL To Background Img (Must be JPG, JPEG, PNG or GIF)"
319
  msgstr ""
320
 
321
+ #: includes/qmn_options_email_tab.php:6
322
  msgid "Emails"
323
  msgstr ""
324
 
325
+ #: includes/qmn_options_email_tab.php:42
326
+ #: includes/qmn_options_email_tab.php:101
327
  msgid "The email has been added successfully."
328
  msgstr ""
329
 
330
+ #: includes/qmn_options_email_tab.php:165
331
  msgid "The email has been updated successfully."
332
  msgstr ""
333
 
334
+ #: includes/qmn_options_email_tab.php:232
335
+ #: includes/qmn_options_leaderboard_tab.php:49
336
+ #: includes/qmn_options_results_page_tab.php:134
337
+ #: includes/qmn_options_text_tab.php:92
338
  msgid "Template Variables"
339
  msgstr ""
340
 
341
+ #: includes/qmn_options_email_tab.php:235
342
+ #: includes/qmn_options_results_page_tab.php:137
343
+ #: includes/qmn_options_text_tab.php:95
344
  msgid "Score for the quiz when using points"
345
  msgstr ""
346
 
347
+ #: includes/qmn_options_email_tab.php:238
348
+ #: includes/qmn_options_results_page_tab.php:140
349
+ #: includes/qmn_options_text_tab.php:98
350
  msgid "The average amount of points user had per question"
351
  msgstr ""
352
 
353
+ #: includes/qmn_options_email_tab.php:241
354
+ #: includes/qmn_options_results_page_tab.php:143
355
+ #: includes/qmn_options_text_tab.php:101
356
  msgid "The number of correct answers the user had"
357
  msgstr ""
358
 
359
+ #: includes/qmn_options_email_tab.php:244
360
+ #: includes/qmn_options_results_page_tab.php:146
361
+ #: includes/qmn_options_text_tab.php:104
362
  msgid "The total number of questions in the quiz"
363
  msgstr ""
364
 
365
+ #: includes/qmn_options_email_tab.php:247
366
+ #: includes/qmn_options_results_page_tab.php:149
367
+ #: includes/qmn_options_text_tab.php:107
368
  msgid "Score for the quiz when using correct answers"
369
  msgstr ""
370
 
371
+ #: includes/qmn_options_email_tab.php:250
372
+ #: includes/qmn_options_results_page_tab.php:152
373
+ #: includes/qmn_options_text_tab.php:110
374
  msgid "The name the user entered before the quiz"
375
  msgstr ""
376
 
377
+ #: includes/qmn_options_email_tab.php:253
378
+ #: includes/qmn_options_results_page_tab.php:155
379
+ #: includes/qmn_options_text_tab.php:113
380
  msgid "The business the user entered before the quiz"
381
  msgstr ""
382
 
383
+ #: includes/qmn_options_email_tab.php:256
384
+ #: includes/qmn_options_results_page_tab.php:158
385
+ #: includes/qmn_options_text_tab.php:116
386
  msgid "The phone number the user entered before the quiz"
387
  msgstr ""
388
 
389
+ #: includes/qmn_options_email_tab.php:259
390
+ #: includes/qmn_options_results_page_tab.php:161
391
+ #: includes/qmn_options_text_tab.php:119
392
  msgid "The email the user entered before the quiz"
393
  msgstr ""
394
 
395
+ #: includes/qmn_options_email_tab.php:262
396
+ #: includes/qmn_options_leaderboard_tab.php:77
397
+ #: includes/qmn_options_results_page_tab.php:164
398
+ #: includes/qmn_options_text_tab.php:122
399
  msgid "The name of the quiz"
400
  msgstr ""
401
 
402
+ #: includes/qmn_options_email_tab.php:265
403
+ #: includes/qmn_options_results_page_tab.php:167
404
+ #: includes/qmn_options_text_tab.php:125
405
  msgid ""
406
  "Shows the question, the answer the user provided, and the correct answer"
407
  msgstr ""
408
 
409
+ #: includes/qmn_options_email_tab.php:268
410
+ #: includes/qmn_options_results_page_tab.php:170
411
+ #: includes/qmn_options_text_tab.php:128
412
  msgid "The comments the user entered into comment box if enabled"
413
  msgstr ""
414
 
415
+ #: includes/qmn_options_email_tab.php:271
416
+ #: includes/qmn_options_results_page_tab.php:173
417
+ #: includes/qmn_options_text_tab.php:131
418
  msgid "The amount of time user spent of quiz"
419
  msgstr ""
420
 
421
+ #: includes/qmn_options_email_tab.php:274
422
+ #: includes/qmn_options_results_page_tab.php:176
423
+ #: includes/qmn_options_text_tab.php:134
424
  msgid "The link to the certificate after completing the quiz"
425
  msgstr ""
426
 
427
+ #: includes/qmn_options_email_tab.php:277
428
+ #: includes/qmn_options_results_page_tab.php:179
429
+ #: includes/qmn_options_text_tab.php:137
430
  msgid "The amount of points a specific category earned."
431
  msgstr ""
432
 
433
+ #: includes/qmn_options_email_tab.php:280
434
+ #: includes/qmn_options_results_page_tab.php:182
435
+ #: includes/qmn_options_text_tab.php:140
436
  msgid "The score a specific category earned."
437
  msgstr ""
438
 
439
+ #: includes/qmn_options_email_tab.php:283
440
+ #: includes/qmn_options_results_page_tab.php:185
441
+ #: includes/qmn_options_text_tab.php:143
442
  msgid "The average points from all categories."
443
  msgstr ""
444
 
445
+ #: includes/qmn_options_email_tab.php:286
446
+ #: includes/qmn_options_results_page_tab.php:188
447
+ #: includes/qmn_options_text_tab.php:146
448
  msgid "The average score from all categories."
449
  msgstr ""
450
 
451
+ #: includes/qmn_options_email_tab.php:289
452
+ #: includes/qmn_options_text_tab.php:149
453
  msgid "The question that the user answered"
454
  msgstr ""
455
 
456
+ #: includes/qmn_options_email_tab.php:292
457
+ #: includes/qmn_options_text_tab.php:152
458
  msgid "The answer the user gave for the question"
459
  msgstr ""
460
 
461
+ #: includes/qmn_options_email_tab.php:295
462
+ #: includes/qmn_options_text_tab.php:155
463
  msgid "The correct answer for the question"
464
  msgstr ""
465
 
466
+ #: includes/qmn_options_email_tab.php:298
467
+ #: includes/qmn_options_text_tab.php:158
468
  msgid "The comments the user provided in the comment field for the question"
469
  msgstr ""
470
 
471
+ #: includes/qmn_options_email_tab.php:301
472
+ #: includes/qmn_options_text_tab.php:161
473
  msgid "Reason why the correct answer is the correct answer"
474
  msgstr ""
475
 
476
+ #: includes/qmn_options_email_tab.php:304
477
+ #: includes/qmn_options_text_tab.php:164
478
  msgid "The Current Date"
479
  msgstr ""
480
 
481
+ #: includes/qmn_options_email_tab.php:319
482
+ #: includes/qmn_options_email_tab.php:518
483
  msgid "Save Email Templates And Settings"
484
  msgstr ""
485
 
486
+ #: includes/qmn_options_email_tab.php:323
487
  msgid "Send user email upon completion?"
488
  msgstr ""
489
 
490
+ #: includes/qmn_options_email_tab.php:330
491
  msgid "Send admin email upon completion?"
492
  msgstr ""
493
 
494
+ #: includes/qmn_options_email_tab.php:337
495
  msgid ""
496
  "What emails should we send the admin email to? Separate emails with a comma."
497
  msgstr ""
498
 
499
+ #: includes/qmn_options_email_tab.php:341
500
  msgid "What is the From Name for the email sent to users and admin?"
501
  msgstr ""
502
 
503
+ #: includes/qmn_options_email_tab.php:347
504
  msgid "Email Sent To User"
505
  msgstr ""
506
 
507
+ #: includes/qmn_options_email_tab.php:348
508
+ #: includes/qmn_options_email_tab.php:426
509
  msgid "Add New User Email"
510
  msgstr ""
511
 
 
 
 
 
 
 
 
 
 
512
  #: includes/qmn_options_email_tab.php:353
513
  #: includes/qmn_options_email_tab.php:419
514
  #: includes/qmn_options_email_tab.php:440
515
  #: includes/qmn_options_email_tab.php:506
516
+ #: includes/qmn_options_results_page_tab.php:206
517
+ #: includes/qmn_options_results_page_tab.php:270
518
+ msgid "Score Greater Than Or Equal To"
519
  msgstr ""
520
 
521
  #: includes/qmn_options_email_tab.php:354
522
  #: includes/qmn_options_email_tab.php:420
523
  #: includes/qmn_options_email_tab.php:441
524
  #: includes/qmn_options_email_tab.php:507
525
+ #: includes/qmn_options_results_page_tab.php:207
526
+ #: includes/qmn_options_results_page_tab.php:271
527
+ msgid "Score Less Than Or Equal To"
528
  msgstr ""
529
 
530
  #: includes/qmn_options_email_tab.php:355
531
  #: includes/qmn_options_email_tab.php:421
532
  #: includes/qmn_options_email_tab.php:442
533
  #: includes/qmn_options_email_tab.php:508
534
+ msgid "Subject"
535
+ msgstr ""
536
+
537
+ #: includes/qmn_options_email_tab.php:356
538
+ #: includes/qmn_options_email_tab.php:422
539
+ #: includes/qmn_options_email_tab.php:443
540
+ #: includes/qmn_options_email_tab.php:509
541
  msgid "Email To Send"
542
  msgstr ""
543
 
544
+ #: includes/qmn_options_email_tab.php:434
545
  msgid "Email Sent To Admin"
546
  msgstr ""
547
 
548
+ #: includes/qmn_options_email_tab.php:435
549
+ #: includes/qmn_options_email_tab.php:513
550
  msgid "Add New Admin Email"
551
  msgstr ""
552
 
553
+ #: includes/qmn_options_leaderboard_tab.php:6
554
  msgid "Leaderboard"
555
  msgstr ""
556
 
557
+ #: includes/qmn_options_leaderboard_tab.php:25
558
  msgid "The leaderboards has been updated successfully."
559
  msgstr ""
560
 
561
+ #: includes/qmn_options_leaderboard_tab.php:52
562
  msgid "The name of the user who is in first place"
563
  msgstr ""
564
 
565
+ #: includes/qmn_options_leaderboard_tab.php:53
566
  msgid "The score from the first place's quiz"
567
  msgstr ""
568
 
569
+ #: includes/qmn_options_leaderboard_tab.php:57
570
  msgid "The name of the user who is in second place"
571
  msgstr ""
572
 
573
+ #: includes/qmn_options_leaderboard_tab.php:58
574
  msgid "The score from the second place's quiz"
575
  msgstr ""
576
 
577
+ #: includes/qmn_options_leaderboard_tab.php:62
578
  msgid "The name of the user who is in third place"
579
  msgstr ""
580
 
581
+ #: includes/qmn_options_leaderboard_tab.php:63
582
  msgid "The score from the third place's quiz"
583
  msgstr ""
584
 
585
+ #: includes/qmn_options_leaderboard_tab.php:67
586
  msgid "The name of the user who is in fourth place"
587
  msgstr ""
588
 
589
+ #: includes/qmn_options_leaderboard_tab.php:68
590
  msgid "The score from the fourth place's quiz"
591
  msgstr ""
592
 
593
+ #: includes/qmn_options_leaderboard_tab.php:72
594
  msgid "The name of the user who is in fifth place"
595
  msgstr ""
596
 
597
+ #: includes/qmn_options_leaderboard_tab.php:73
598
  msgid "The score from the fifth place's quiz"
599
  msgstr ""
600
 
601
+ #: includes/qmn_options_leaderboard_tab.php:80
602
+ #: includes/qmn_options_leaderboard_tab.php:108
603
  msgid "Save Leaderboard Options"
604
  msgstr ""
605
 
606
+ #: includes/qmn_options_leaderboard_tab.php:89
607
  msgid "Leaderboard Template"
608
  msgstr ""
609
 
610
+ #: includes/qmn_options_option_tab.php:6
611
  msgid "Options"
612
  msgstr ""
613
 
614
+ #: includes/qmn_options_option_tab.php:43
615
  msgid "The options has been updated successfully."
616
  msgstr ""
617
 
618
+ #: includes/qmn_options_option_tab.php:84
619
+ #: includes/qmn_options_option_tab.php:221
620
  msgid "Save Options"
621
  msgstr ""
622
 
623
+ #: includes/qmn_options_option_tab.php:92
624
  msgid "Which system is this quiz graded on?"
625
  msgstr ""
626
 
627
+ #: includes/qmn_options_option_tab.php:94
628
  msgid "Correct/Incorrect"
629
  msgstr ""
630
 
631
+ #: includes/qmn_options_option_tab.php:95
632
  msgid "Points"
633
  msgstr ""
634
 
635
+ #: includes/qmn_options_option_tab.php:96 includes/qmn_results.php:258
636
  msgid "Not Graded"
637
  msgstr ""
638
 
639
+ #: includes/qmn_options_option_tab.php:100
640
  msgid "Should the user be required to be logged in to take this quiz?"
641
  msgstr ""
642
 
643
+ #: includes/qmn_options_option_tab.php:107
644
  msgid ""
645
  "How many questions per page would you like? (Leave 0 for all questions on "
646
  "one page)"
647
  msgstr ""
648
 
649
+ #: includes/qmn_options_option_tab.php:113
650
  msgid ""
651
  "How many minutes does the user have to finish the quiz? (Leave 0 for no time "
652
  "limit)"
653
  msgstr ""
654
 
655
+ #: includes/qmn_options_option_tab.php:119
656
  msgid ""
657
  "How many times can a user take this quiz? (Leave 0 for as many times as the "
658
  "user wants to. Currently only works for registered users)"
659
  msgstr ""
660
 
661
+ #: includes/qmn_options_option_tab.php:125
662
  msgid ""
663
  "How many total entries can this quiz have? (Leave 0 for unlimited entries"
664
  msgstr ""
665
 
666
+ #: includes/qmn_options_option_tab.php:131
667
  msgid ""
668
  "How many questions should be loaded for quiz? (Leave 0 to load all questions)"
669
  msgstr ""
670
 
671
+ #: includes/qmn_options_option_tab.php:137
672
  msgid ""
673
  "What time-frame should the user be able to access the quiz? (Leave blank if "
674
  "the user can access anytime)"
675
  msgstr ""
676
 
677
+ #: includes/qmn_options_option_tab.php:139
678
  msgid "start date"
679
  msgstr ""
680
 
681
+ #: includes/qmn_options_option_tab.php:142
682
  msgid "end date"
683
  msgstr ""
684
 
685
+ #: includes/qmn_options_option_tab.php:146
686
  msgid ""
687
  "Are the questions random? (Question Order will not apply if this is yes)"
688
  msgstr ""
689
 
690
+ #: includes/qmn_options_option_tab.php:148
691
  msgid "Random Questions"
692
  msgstr ""
693
 
694
+ #: includes/qmn_options_option_tab.php:149
695
  msgid "Random Questions And Answers"
696
  msgstr ""
697
 
698
+ #: includes/qmn_options_option_tab.php:154
699
  msgid ""
700
  "Would you like to ask for the contact information at the beginning or at the "
701
  "end of the quiz?"
702
  msgstr ""
703
 
704
+ #: includes/qmn_options_option_tab.php:156
705
  msgid "Beginning"
706
  msgstr ""
707
 
708
+ #: includes/qmn_options_option_tab.php:157
709
  msgid "End"
710
  msgstr ""
711
 
712
+ #: includes/qmn_options_option_tab.php:161
713
  msgid ""
714
  "If a logged-in user takes the quiz, would you like them to be able to edit "
715
  "contact information? If set to no, the fields will not show up for logged in "
716
  "users; however, the users information will be saved for the fields."
717
  msgstr ""
718
 
719
+ #: includes/qmn_options_option_tab.php:168
720
  msgid "Should we ask for users name?"
721
  msgstr ""
722
 
723
+ #: includes/qmn_options_option_tab.php:171
724
+ #: includes/qmn_options_option_tab.php:179
725
+ #: includes/qmn_options_option_tab.php:187
726
+ #: includes/qmn_options_option_tab.php:195
727
  msgid "Require"
728
  msgstr ""
729
 
730
+ #: includes/qmn_options_option_tab.php:176
731
  msgid "Should we ask for users business?"
732
  msgstr ""
733
 
734
+ #: includes/qmn_options_option_tab.php:184
735
  msgid "Should we ask for users email?"
736
  msgstr ""
737
 
738
+ #: includes/qmn_options_option_tab.php:192
739
  msgid "Should we ask for users phone number?"
740
  msgstr ""
741
 
742
+ #: includes/qmn_options_option_tab.php:200
743
  msgid "Would you like a place for the user to enter comments?"
744
  msgstr ""
745
 
746
+ #: includes/qmn_options_option_tab.php:207
747
  msgid "Show question number on quiz?"
748
  msgstr ""
749
 
750
+ #: includes/qmn_options_option_tab.php:214
751
  msgid "Show social media sharing buttons? (Twitter & Facebook)"
752
  msgstr ""
753
 
754
+ #: includes/qmn_options_option_tab.php:214
755
+ msgid ""
756
+ "This option is for here only for users of older versions. Please use the new "
757
+ "template variables %FACEBOOK_SHARE% %TWITTER_SHARE% on your results pages "
758
+ "instead of using this option!"
759
+ msgstr ""
760
+
761
+ #: includes/qmn_options_preview_tab.php:6
762
  msgid "Preview"
763
  msgstr ""
764
 
765
+ #: includes/qmn_options_questions_tab.php:6
766
  msgid "Questions"
767
  msgstr ""
768
 
769
+ #: includes/qmn_options_questions_tab.php:105
770
  msgid "The question has been updated successfully."
771
  msgstr ""
772
 
773
+ #: includes/qmn_options_questions_tab.php:132
774
  msgid "The question has been deleted successfully."
775
  msgstr ""
776
 
777
+ #: includes/qmn_options_questions_tab.php:216
778
  msgid "The question has been duplicated successfully."
779
  msgstr ""
780
 
781
+ #: includes/qmn_options_questions_tab.php:309
782
  msgid "The question has been created successfully."
783
  msgstr ""
784
 
785
+ #: includes/qmn_options_questions_tab.php:454
786
+ #: includes/qmn_options_questions_tab.php:461
787
+ #: includes/qmn_options_questions_tab.php:593
788
+ #: includes/qmn_options_questions_tab.php:760
789
  msgid "Answer"
790
  msgstr ""
791
 
792
+ #: includes/qmn_options_questions_tab.php:481
793
+ #: includes/qmn_options_questions_tab.php:729
794
  msgid "Add Question"
795
  msgstr ""
796
 
797
+ #: includes/qmn_options_questions_tab.php:485
798
  #, php-format
799
  msgid "One question"
800
  msgid_plural "%s questions"
801
  msgstr[0] ""
802
  msgstr[1] ""
803
 
804
+ #: includes/qmn_options_questions_tab.php:557 includes/qmn_quiz_admin.php:270
805
  msgid "Edit"
806
  msgstr ""
807
 
808
+ #: includes/qmn_options_questions_tab.php:557 includes/qmn_quiz_admin.php:272
809
+ #: includes/qmn_quiz_admin.php:397
810
  msgid "Duplicate"
811
  msgstr ""
812
 
813
+ #: includes/qmn_options_questions_tab.php:557
814
+ #: includes/qmn_options_results_page_tab.php:247
815
+ #: includes/qmn_quiz_admin.php:273
816
  msgid "Delete"
817
  msgstr ""
818
 
819
+ #: includes/qmn_options_questions_tab.php:568
 
 
820
  #: includes/qmn_options_questions_tab.php:737
821
+ msgid ""
822
+ "For fill in the blank types, use %BLANK% to represent where to put the text "
823
+ "box in your text."
824
+ msgstr ""
825
+
826
+ #: includes/qmn_options_questions_tab.php:571
827
+ #: includes/qmn_options_questions_tab.php:714
828
+ #: includes/qmn_options_questions_tab.php:725
829
+ #: includes/qmn_options_questions_tab.php:740
830
  msgid "Question"
831
  msgstr ""
832
 
833
+ #: includes/qmn_options_questions_tab.php:582
834
+ #: includes/qmn_options_questions_tab.php:751
835
  msgid "Answers"
836
  msgstr ""
837
 
838
+ #: includes/qmn_options_questions_tab.php:583
839
+ #: includes/qmn_options_questions_tab.php:752
840
  msgid "Points Worth"
841
  msgstr ""
842
 
843
+ #: includes/qmn_options_questions_tab.php:584
844
+ #: includes/qmn_options_questions_tab.php:753
845
  msgid "Correct Answer"
846
  msgstr ""
847
 
848
+ #: includes/qmn_options_questions_tab.php:611
849
+ #: includes/qmn_options_questions_tab.php:775
850
  msgid "Add New Answer!"
851
  msgstr ""
852
 
853
+ #: includes/qmn_options_questions_tab.php:616
854
+ #: includes/qmn_options_questions_tab.php:780
855
  msgid "Correct Answer Info"
856
  msgstr ""
857
 
858
+ #: includes/qmn_options_questions_tab.php:623
859
+ #: includes/qmn_options_questions_tab.php:787 includes/qmn_quiz.php:441
860
  msgid "Hint"
861
  msgstr ""
862
 
863
+ #: includes/qmn_options_questions_tab.php:634
864
+ #: includes/qmn_options_questions_tab.php:712
865
+ #: includes/qmn_options_questions_tab.php:723
866
+ #: includes/qmn_options_questions_tab.php:798
867
  msgid "Question Type"
868
  msgstr ""
869
 
870
+ #: includes/qmn_options_questions_tab.php:652
871
+ #: includes/qmn_options_questions_tab.php:811
872
  msgid "Comment Field"
873
  msgstr ""
874
 
875
+ #: includes/qmn_options_questions_tab.php:655
876
+ #: includes/qmn_options_questions_tab.php:813
877
  msgid "Small Text Field"
878
  msgstr ""
879
 
880
+ #: includes/qmn_options_questions_tab.php:657
881
+ #: includes/qmn_options_questions_tab.php:814
882
  msgid "Large Text Field"
883
  msgstr ""
884
 
885
+ #: includes/qmn_options_questions_tab.php:659
886
+ #: includes/qmn_options_questions_tab.php:815
887
  msgid "None"
888
  msgstr ""
889
 
890
+ #: includes/qmn_options_questions_tab.php:663
891
+ #: includes/qmn_options_questions_tab.php:711
892
+ #: includes/qmn_options_questions_tab.php:722
893
+ #: includes/qmn_options_questions_tab.php:819
894
  msgid "Question Order"
895
  msgstr ""
896
 
897
+ #: includes/qmn_options_questions_tab.php:671
898
+ #: includes/qmn_options_questions_tab.php:827
899
  msgid "Required?"
900
  msgstr ""
901
 
902
+ #: includes/qmn_options_questions_tab.php:680
903
+ #: includes/qmn_options_questions_tab.php:713
904
+ #: includes/qmn_options_questions_tab.php:724
905
+ #: includes/qmn_options_questions_tab.php:836
906
  msgid "Category"
907
  msgstr ""
908
 
909
+ #: includes/qmn_options_questions_tab.php:699
910
+ #: includes/qmn_options_questions_tab.php:855
911
  msgid ""
912
  "Required currently only works on open answer, number, accept, and captcha "
913
  "question types"
914
  msgstr ""
915
 
916
+ #: includes/qmn_options_questions_tab.php:701
917
  msgid "Edit Question"
918
  msgstr ""
919
 
920
+ #: includes/qmn_options_questions_tab.php:857
921
  msgid "Create Question"
922
  msgstr ""
923
 
924
+ #: includes/qmn_options_questions_tab.php:862
925
  msgid "Are you sure you want to delete this question?"
926
  msgstr ""
927
 
928
+ #: includes/qmn_options_questions_tab.php:867
929
  msgid "Delete Question"
930
  msgstr ""
931
 
932
+ #: includes/qmn_options_questions_tab.php:872
933
  msgid "Are you sure you want to duplicate this question?"
934
  msgstr ""
935
 
936
+ #: includes/qmn_options_questions_tab.php:877
937
  msgid "Duplicate Question"
938
  msgstr ""
939
 
940
+ #: includes/qmn_options_results_page_tab.php:6
941
  msgid "Results Pages"
942
  msgstr ""
943
 
944
+ #: includes/qmn_options_results_page_tab.php:41
945
  msgid "The results page has been added successfully."
946
  msgstr ""
947
 
948
+ #: includes/qmn_options_results_page_tab.php:81
949
  msgid "The results page has been saved successfully."
950
  msgstr ""
951
 
952
+ #: includes/qmn_options_results_page_tab.php:191
953
+ msgid "Displays button to share on Facebook."
954
+ msgstr ""
955
+
956
+ #: includes/qmn_options_results_page_tab.php:194
957
+ msgid "Displays button to share on Twitter."
958
+ msgstr ""
959
+
960
+ #: includes/qmn_options_results_page_tab.php:199
961
+ #: includes/qmn_options_results_page_tab.php:280
962
  msgid "Save Results Pages"
963
  msgstr ""
964
 
965
+ #: includes/qmn_options_results_page_tab.php:200
966
+ #: includes/qmn_options_results_page_tab.php:285
967
  msgid "Add New Results Page"
968
  msgstr ""
969
 
970
+ #: includes/qmn_options_results_page_tab.php:208
971
+ #: includes/qmn_options_results_page_tab.php:272
972
  msgid "Results Page Shown"
973
  msgstr ""
974
 
975
+ #: includes/qmn_options_results_page_tab.php:209
976
+ #: includes/qmn_options_results_page_tab.php:273
977
+ msgid "Redirect URL"
978
+ msgstr ""
979
+
980
+ #: includes/qmn_options_results_page_tab.php:247
981
  msgid "Are you sure?"
982
  msgstr ""
983
 
984
+ #: includes/qmn_options_style_tab.php:6
985
  msgid "Style"
986
  msgstr ""
987
 
988
+ #: includes/qmn_options_style_tab.php:26
989
  msgid "The style has been saved successfully."
990
  msgstr ""
991
 
992
+ #: includes/qmn_options_style_tab.php:65
993
  msgid "Quiz Styles"
994
  msgstr ""
995
 
996
+ #: includes/qmn_options_style_tab.php:66
997
  msgid "Choose your style:"
998
  msgstr ""
999
 
1000
+ #: includes/qmn_options_style_tab.php:88
1001
  msgid "Custom"
1002
  msgstr ""
1003
 
1004
+ #: includes/qmn_options_style_tab.php:94
1005
+ #: includes/qmn_options_style_tab.php:106
1006
  msgid "Save Quiz Style"
1007
  msgstr ""
1008
 
1009
+ #: includes/qmn_options_style_tab.php:96
1010
  msgid "Custom Style CSS"
1011
  msgstr ""
1012
 
1013
+ #: includes/qmn_options_style_tab.php:97
1014
  msgid ""
1015
  "For detailed help and guidance along with a list of different classes used "
1016
  "in this plugin, please visit the following link:"
1017
  msgstr ""
1018
 
1019
+ #: includes/qmn_options_text_tab.php:6
1020
  msgid "Text"
1021
  msgstr ""
1022
 
1023
+ #: includes/qmn_options_text_tab.php:42
1024
  msgid "The templates has been updated successfully."
1025
  msgstr ""
1026
 
1027
+ #: includes/qmn_options_text_tab.php:73 includes/qmn_quiz.php:1230
1028
  msgid "Previous"
1029
  msgstr ""
1030
 
1031
+ #: includes/qmn_options_text_tab.php:169 includes/qmn_options_text_tab.php:329
1032
  msgid "Save Templates"
1033
  msgstr ""
1034
 
1035
+ #: includes/qmn_options_text_tab.php:175
1036
  msgid "Message Templates"
1037
  msgstr ""
1038
 
1039
+ #: includes/qmn_options_text_tab.php:179
1040
  msgid "Message Displayed Before Quiz"
1041
  msgstr ""
1042
 
1043
+ #: includes/qmn_options_text_tab.php:189
1044
  msgid "Message Displayed Before Comments Box If Enabled"
1045
  msgstr ""
1046
 
1047
+ #: includes/qmn_options_text_tab.php:199
1048
  msgid "Message Displayed At End Of Quiz (Leave Blank To Omit Text Section)"
1049
  msgstr ""
1050
 
1051
+ #: includes/qmn_options_text_tab.php:209
1052
  msgid "Message Displayed If User Has Tried Quiz Too Many Times"
1053
  msgstr ""
1054
 
1055
+ #: includes/qmn_options_text_tab.php:219
1056
  msgid ""
1057
  "Message Displayed If User Is Not Logged In And Quiz Requires Users To Be "
1058
  "Logged In"
1059
  msgstr ""
1060
 
1061
+ #: includes/qmn_options_text_tab.php:229
1062
  msgid "Message Displayed If Date Is Outside Scheduled Timeframe"
1063
  msgstr ""
1064
 
1065
+ #: includes/qmn_options_text_tab.php:239
1066
  msgid "Message Displayed If The Limit Of Total Entries Has Been Reached"
1067
  msgstr ""
1068
 
1069
+ #: includes/qmn_options_text_tab.php:249
1070
  msgid "%QUESTIONS_ANSWERS% Text"
1071
  msgstr ""
1072
 
1073
+ #: includes/qmn_options_text_tab.php:262
1074
  msgid "Twitter Sharing Text"
1075
  msgstr ""
1076
 
1077
+ #: includes/qmn_options_text_tab.php:279
1078
  msgid "Facebook Sharing Text"
1079
  msgstr ""
1080
 
1081
+ #: includes/qmn_options_text_tab.php:294
1082
  msgid "Other Templates"
1083
  msgstr ""
1084
 
1085
+ #: includes/qmn_options_text_tab.php:297
1086
  msgid "Text for submit button"
1087
  msgstr ""
1088
 
1089
+ #: includes/qmn_options_text_tab.php:301
1090
  msgid "Text for name field"
1091
  msgstr ""
1092
 
1093
+ #: includes/qmn_options_text_tab.php:305
1094
  msgid "Text for business field"
1095
  msgstr ""
1096
 
1097
+ #: includes/qmn_options_text_tab.php:309
1098
  msgid "Text for email field"
1099
  msgstr ""
1100
 
1101
+ #: includes/qmn_options_text_tab.php:313
1102
  msgid "Text for phone number field"
1103
  msgstr ""
1104
 
1105
+ #: includes/qmn_options_text_tab.php:317
1106
  msgid "Text for comments field"
1107
  msgstr ""
1108
 
1109
+ #: includes/qmn_options_text_tab.php:321
1110
  msgid "Text for previous button"
1111
  msgstr ""
1112
 
1113
+ #: includes/qmn_options_text_tab.php:325
1114
  msgid "Text for next button"
1115
  msgstr ""
1116
 
1117
+ #: includes/qmn_options_tools_tab.php:6 includes/qmn_tools.php:58
1118
  #: mlw_quizmaster2.php:222
1119
  msgid "Tools"
1120
  msgstr ""
1121
 
1122
+ #: includes/qmn_options_tools_tab.php:23
1123
  msgid "The stats has been reset successfully."
1124
  msgstr ""
1125
 
1126
+ #: includes/qmn_options_tools_tab.php:75
1127
  msgid ""
1128
  "Use this button to reset all the stats collected for this quiz (Quiz Views "
1129
  "and Times Quiz Has Been Taken)."
1130
  msgstr ""
1131
 
1132
+ #: includes/qmn_options_tools_tab.php:76
1133
  msgid "Reset Quiz Views And Taken Stats"
1134
  msgstr ""
1135
 
1136
+ #: includes/qmn_options_tools_tab.php:87
1137
  msgid ""
1138
  "Are you sure you want to reset the stats to 0? All views and taken stats for "
1139
  "this quiz will be reset. This is permanent and cannot be undone."
1140
  msgstr ""
1141
 
1142
+ #: includes/qmn_options_tools_tab.php:91
1143
  msgid "Reset All Stats For Quiz"
1144
  msgstr ""
1145
 
1187
  msgid "Horizontal Multiple Response"
1188
  msgstr ""
1189
 
1190
+ #: includes/qmn_question_types.php:579
1191
+ msgid "Fill In The Blank"
1192
+ msgstr ""
1193
+
1194
+ #: includes/qmn_quiz.php:326
1195
  msgid "Not a valid e-mail address!"
1196
  msgstr ""
1197
 
1198
+ #: includes/qmn_quiz.php:327
1199
  msgid "This field must be a number!"
1200
  msgstr ""
1201
 
1202
+ #: includes/qmn_quiz.php:328
1203
  msgid "The entered text is not correct!"
1204
  msgstr ""
1205
 
1206
+ #: includes/qmn_quiz.php:329
1207
  msgid "Please complete all required fields!"
1208
  msgstr ""
1209
 
1210
+ #: includes/qmn_quiz_admin.php:186 mlw_quizmaster2.php:217
1211
  msgid "Quizzes"
1212
  msgstr ""
1213
 
1214
+ #: includes/qmn_quiz_admin.php:186
1215
  msgid "Add New"
1216
  msgstr ""
1217
 
1218
+ #: includes/qmn_quiz_admin.php:204
1219
  #, php-format
1220
  msgid "One quiz"
1221
  msgid_plural "%s quizzes"
1222
  msgstr[0] ""
1223
  msgstr[1] ""
1224
 
1225
+ #: includes/qmn_quiz_admin.php:249 includes/qmn_quiz_admin.php:295
1226
+ #: includes/qmn_quiz_admin.php:364 includes/qmn_results.php:209
1227
  msgid "Quiz Name"
1228
  msgstr ""
1229
 
1230
+ #: includes/qmn_quiz_admin.php:250 includes/qmn_quiz_admin.php:296
1231
  msgid "URL"
1232
  msgstr ""
1233
 
1234
+ #: includes/qmn_quiz_admin.php:251 includes/qmn_quiz_admin.php:297
1235
  msgid "Quiz Shortcode"
1236
  msgstr ""
1237
 
1238
+ #: includes/qmn_quiz_admin.php:252 includes/qmn_quiz_admin.php:298
1239
  msgid "Leaderboard Shortcode"
1240
  msgstr ""
1241
 
1242
+ #: includes/qmn_quiz_admin.php:253 includes/qmn_quiz_admin.php:299
1243
  msgid "Quiz Views"
1244
  msgstr ""
1245
 
1246
+ #: includes/qmn_quiz_admin.php:254 includes/qmn_quiz_admin.php:300
1247
  msgid "Quiz Taken"
1248
  msgstr ""
1249
 
1250
+ #: includes/qmn_quiz_admin.php:255 includes/qmn_quiz_admin.php:301
1251
  msgid "Last Modified"
1252
  msgstr ""
1253
 
1254
+ #: includes/qmn_quiz_admin.php:268
1255
  msgid "Edit Name"
1256
  msgstr ""
1257
 
1258
+ #: includes/qmn_quiz_admin.php:271 includes/qmn_results_details.php:121
1259
  msgid "Results"
1260
  msgstr ""
1261
 
1262
+ #: includes/qmn_quiz_admin.php:359
1263
  msgid "Create New Quiz"
1264
  msgstr ""
1265
 
1266
+ #: includes/qmn_quiz_admin.php:373
1267
  msgid "Create Quiz"
1268
  msgstr ""
1269
 
1270
+ #: includes/qmn_quiz_admin.php:379
1271
  msgid "Quiz Name:"
1272
  msgstr ""
1273
 
1274
+ #: includes/qmn_quiz_admin.php:390
1275
  msgid "Duplicate this quiz?"
1276
  msgstr ""
1277
 
1278
+ #: includes/qmn_quiz_admin.php:392
1279
  msgid "Duplicate questions with quiz"
1280
  msgstr ""
1281
 
1282
+ #: includes/qmn_quiz_admin.php:394
1283
  msgid "Name Of New Quiz:"
1284
  msgstr ""
1285
 
1286
+ #: includes/qmn_quiz_admin.php:403
1287
  msgid "Are you sure you want to delete this quiz?"
1288
  msgstr ""
1289
 
1290
+ #: includes/qmn_quiz_admin.php:408
1291
  msgid "Delete Quiz"
1292
  msgstr ""
1293
 
1294
+ #: includes/qmn_quiz_creator.php:369
1295
  msgid ""
1296
  "Your new quiz has been created successfully. To begin editing your quiz, "
1297
  "click the Edit link on the new quiz."
1298
  msgstr ""
1299
 
1300
+ #: includes/qmn_quiz_creator.php:435
1301
  msgid "Your quiz has been deleted successfully."
1302
  msgstr ""
1303
 
1304
+ #: includes/qmn_quiz_creator.php:477
1305
  msgid "Your quiz name has been updated successfully."
1306
  msgstr ""
1307
 
1308
+ #: includes/qmn_quiz_creator.php:634
1309
  msgid "Your quiz has been duplicated successfully."
1310
  msgstr ""
1311
 
1312
  #. translators: The %s corresponds to the name of the quiz
1313
+ #: includes/qmn_quiz_options.php:56
1314
  #, php-format
1315
  msgid "Quiz Settings For %s"
1316
  msgstr ""
1317
 
1318
+ #: includes/qmn_quiz_options.php:96
1319
  msgid ""
1320
  "Please go to the quizzes page and click on the Edit link from the quiz you "
1321
  "wish to edit."
1322
  msgstr ""
1323
 
1324
+ #: includes/qmn_results.php:23
1325
  msgid "Your results has been deleted successfully."
1326
  msgstr ""
1327
 
1328
+ #: includes/qmn_results.php:152 includes/qmn_results_details.php:21
1329
  #: mlw_quizmaster2.php:219
1330
  msgid "Quiz Results"
1331
  msgstr ""
1332
 
1333
+ #: includes/qmn_results.php:161
1334
  #, php-format
1335
  msgid "One result"
1336
  msgid_plural "%s results"
1337
  msgstr[0] ""
1338
  msgstr[1] ""
1339
 
1340
+ #: includes/qmn_results.php:208
1341
  msgid "Actions"
1342
  msgstr ""
1343
 
1344
+ #: includes/qmn_results.php:210
1345
  msgid "Score"
1346
  msgstr ""
1347
 
1348
+ #: includes/qmn_results.php:211
1349
  msgid "Time To Complete"
1350
  msgstr ""
1351
 
1352
+ #: includes/qmn_results.php:212
1353
  msgid "Name"
1354
  msgstr ""
1355
 
1356
+ #: includes/qmn_results.php:213
1357
  msgid "Business"
1358
  msgstr ""
1359
 
1360
+ #: includes/qmn_results.php:214
1361
  msgid "Email"
1362
  msgstr ""
1363
 
1364
+ #: includes/qmn_results.php:215
1365
  msgid "Phone"
1366
  msgstr ""
1367
 
1368
+ #: includes/qmn_results.php:216
1369
  msgid "Time Taken"
1370
  msgstr ""
1371
 
1372
+ #: includes/qmn_results.php:276
1373
  msgid "Are you sure you want to delete these results?"
1374
  msgstr ""
1375
 
1376
+ #: includes/qmn_results.php:281
1377
  msgid "Delete Results"
1378
  msgstr ""
1379
 
1380
+ #: includes/qmn_results_details.php:200
1381
  msgid "Create Certificate"
1382
  msgstr ""
1383
 
1384
+ #: includes/qmn_results_details.php:205
1385
  msgid "Download Certificate Here"
1386
  msgstr ""
1387
 
1388
+ #: includes/qmn_results_details.php:212
1389
  msgid "Certificate"
1390
  msgstr ""
1391
 
1392
+ #: includes/qmn_tools.php:93
1393
  msgid "There has been an error! Please try again."
1394
  msgstr ""
1395
 
1396
+ #: includes/qmn_tools.php:111
1397
  msgid "Quiz Has Been Restored!"
1398
  msgstr ""
1399
 
1400
+ #: includes/qmn_tools.php:116
1401
  msgid ""
1402
  "Choose a quiz in the drop down and then click the button to restore a "
1403
  "deleted quiz."
1404
  msgstr ""
1405
 
1406
+ #: includes/qmn_tools.php:126
1407
  msgid "Restore Quiz"
1408
  msgstr ""
1409
 
1410
+ #: includes/qmn_tools.php:155 includes/qmn_tools.php:171
1411
  #, php-format
1412
  msgid "Previous %s Audits"
1413
  msgstr ""
1414
 
1415
+ #: includes/qmn_tools.php:158 includes/qmn_tools.php:165
1416
  #, php-format
1417
  msgid "Next %s Audits"
1418
  msgstr ""
1419
 
1420
+ #: includes/qmn_tools.php:178
1421
  msgid "User"
1422
  msgstr ""
1423
 
1424
+ #: includes/qmn_tools.php:179
1425
  msgid "Action"
1426
  msgstr ""
1427
 
1428
+ #: includes/qmn_tools.php:180
1429
  msgid "Time"
1430
  msgstr ""
1431
 
1432
+ #: includes/qmn_usage_tracking.php:193
1433
  msgid ""
1434
  "Allow Quiz Master Next to anonymously track this plugin's usage and help us "
1435
  "make this plugin better? No sensitive data is tracked."
1436
  msgstr ""
1437
 
1438
+ #: includes/qmn_usage_tracking.php:194
1439
  msgid "Allow"
1440
  msgstr ""
1441
 
1442
+ #: includes/qmn_usage_tracking.php:195
1443
  msgid "Do not allow"
1444
  msgstr ""
1445
 
1446
+ #: includes/qmn_widgets.php:11
1447
  msgid "Quiz Master Next Leaderboard Widget"
1448
  msgstr ""
1449
 
1450
+ #: includes/qmn_widgets.php:26
1451
  msgid "Widget Title"
1452
  msgstr ""
1453
 
1454
+ #: includes/qmn_widgets.php:30
1455
  msgid "Quiz ID"
1456
  msgstr ""
1457
 
mlw_quizmaster2.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: Quiz Master Next
4
  * Description: Use this plugin to add multiple quizzes, tests, or surveys to your website.
5
- * Version: 4.1.0
6
  * Author: Frank Corso
7
  * Author URI: http://www.mylocalwebstop.com/
8
  * Plugin URI: http://www.mylocalwebstop.com/
@@ -16,9 +16,9 @@
16
  * You understand that you install, operate, and unistall the plugin at your own discretion and risk.
17
  *
18
  * @author Frank Corso
19
- * @version 4.1.0
20
  */
21
-
22
  /**
23
  * This class is the main class of the plugin
24
  *
@@ -34,7 +34,7 @@ class MLWQuizMasterNext
34
  * @var string
35
  * @since 4.0.0
36
  */
37
- public $version = '4.1.0';
38
 
39
  /**
40
  * QMN Alert Manager Object
2
  /**
3
  * Plugin Name: Quiz Master Next
4
  * Description: Use this plugin to add multiple quizzes, tests, or surveys to your website.
5
+ * Version: 4.2.0
6
  * Author: Frank Corso
7
  * Author URI: http://www.mylocalwebstop.com/
8
  * Plugin URI: http://www.mylocalwebstop.com/
16
  * You understand that you install, operate, and unistall the plugin at your own discretion and risk.
17
  *
18
  * @author Frank Corso
19
+ * @version 4.2.0
20
  */
21
+ if ( ! defined( 'ABSPATH' ) ) exit;
22
  /**
23
  * This class is the main class of the plugin
24
  *
34
  * @var string
35
  * @since 4.0.0
36
  */
37
+ public $version = '4.2.0';
38
 
39
  /**
40
  * QMN Alert Manager Object
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Quiz Master Next ===
2
  Contributors: fpcorso
3
- Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RTGYAETX36ZQJ
4
  Tags: quiz, test, score, exam, survey, contact, form, email, answer, question, certificate, points, results, math
5
  Requires at least: 3.8.1
6
  Tested up to: 4.1
7
- Stable tag: 4.1.0
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
  The easiest and most flexible way to add multiple quizzes, tests, and surveys to your website.
@@ -13,16 +13,16 @@ The easiest and most flexible way to add multiple quizzes, tests, and surveys to
13
 
14
  The easiest and most flexible way to add multiple quizzes, tests, surveys, and contact forms to your website. This plugin allows for unlimited quizzes each with unlimited amount of questions. The plugin allows you to create the quiz, add it to any page using a customized shortcode, allows the user to take the quiz, and then saves the results. You can set up what the user sees after he or she takes the quiz based on the user's score. You can also have the plugin create a certificate for the user as well!
15
 
16
- = Have Unlimted Quizzes, Tests, Surveys, Contact Forms, etc.. =
17
  Each of your quizzes can have **unlimited** questions and each of those questions can have **unlimited** answers! Your questions can contain **HTML** to show images, Youtube videos and more.
18
 
19
  = Customize Your Text =
20
  All the text your users see can be **customized**. Everything from the text blocks throughout the quiz to the submit button.
21
 
22
  = Different Types Of Questions =
23
- You can have **multiple choice** (radio buttons), **true and false**, **open answer** question, **drop down**, **multiple response** (checkboxes), **number**, **captcha**, and **accept**. More types are being supported in future updates!
24
 
25
- = Mulitple Landing Pages For Each Quiz =
26
  Each quiz can have **unlimited** results pages that can be customized with your text. Show different results pages based on the users score!
27
 
28
  = Emails After Completion Of Quiz =
@@ -64,6 +64,14 @@ You can set up the quiz to only be active between two days. Utilize this for qui
64
  * Able to set up time limits on the quiz
65
  * And **Much** More...
66
 
 
 
 
 
 
 
 
 
67
  = Make Suggestions Or Contribute =
68
  Quiz Master Next is now on [GitHub](https://github.com/fpcorso/quiz_master_next/)!
69
 
@@ -115,6 +123,15 @@ Feel free to use the widget on the help page within the plugin or from the conta
115
 
116
  == Changelog ==
117
 
 
 
 
 
 
 
 
 
 
118
  = 4.1.0 (February 11, 2015) =
119
  * Added Ability To Restore Deleted Quizzes ([GitHub Issue #107](https://github.com/fpcorso/quiz_master_next/issues/107))
120
  * Added Ability To Multi-Delete Results ([GitHub Issue #4](https://github.com/fpcorso/quiz_master_next/issues/4))
@@ -623,6 +640,9 @@ Feel free to use the widget on the help page within the plugin or from the conta
623
 
624
  == Upgrade Notice ==
625
 
 
 
 
626
  = 4.1.0 =
627
  Upgrade for redesigned admin results pages, new global settings page, ability to edit facebook app id, and more.
628
 
1
  === Quiz Master Next ===
2
  Contributors: fpcorso
3
+ Donate link: http://mylocalwebstop.com/downloads/donation-service-payment/
4
  Tags: quiz, test, score, exam, survey, contact, form, email, answer, question, certificate, points, results, math
5
  Requires at least: 3.8.1
6
  Tested up to: 4.1
7
+ Stable tag: 4.2.0
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
  The easiest and most flexible way to add multiple quizzes, tests, and surveys to your website.
13
 
14
  The easiest and most flexible way to add multiple quizzes, tests, surveys, and contact forms to your website. This plugin allows for unlimited quizzes each with unlimited amount of questions. The plugin allows you to create the quiz, add it to any page using a customized shortcode, allows the user to take the quiz, and then saves the results. You can set up what the user sees after he or she takes the quiz based on the user's score. You can also have the plugin create a certificate for the user as well!
15
 
16
+ = Have Unlimited Quizzes, Tests, Surveys, Contact Forms, etc.. =
17
  Each of your quizzes can have **unlimited** questions and each of those questions can have **unlimited** answers! Your questions can contain **HTML** to show images, Youtube videos and more.
18
 
19
  = Customize Your Text =
20
  All the text your users see can be **customized**. Everything from the text blocks throughout the quiz to the submit button.
21
 
22
  = Different Types Of Questions =
23
+ You can have **multiple choice** (radio buttons), **true and false**, **open answer** question, **drop down**, **multiple response** (checkboxes), **fill in the blank**, **number**, **captcha**, and **accept**. More types are being supported in future updates!
24
 
25
+ = Multiple Landing Pages For Each Quiz =
26
  Each quiz can have **unlimited** results pages that can be customized with your text. Show different results pages based on the users score!
27
 
28
  = Emails After Completion Of Quiz =
64
  * Able to set up time limits on the quiz
65
  * And **Much** More...
66
 
67
+ = Translations =
68
+
69
+ * Portuguese (Brazil) (Thanks to Francisco Ildefonso)
70
+ * Spanish (Spain) (Thanks to Jordi)
71
+ * Thai (Thanks to Yudthaphon)
72
+ * Danish (Thanks to Jørgen Granborg)
73
+ * Dutch (Thanks to Huub Scheenen)
74
+
75
  = Make Suggestions Or Contribute =
76
  Quiz Master Next is now on [GitHub](https://github.com/fpcorso/quiz_master_next/)!
77
 
123
 
124
  == Changelog ==
125
 
126
+ = 4.2.0 (March 7, 2015) =
127
+ * Added Fill In The Blank Questions ([GitHub Issue #132](https://github.com/fpcorso/quiz_master_next/issues/132))
128
+ * Created New Template Variables For Social Sharing ([GitHub Issue #121](https://github.com/fpcorso/quiz_master_next/issues/121))
129
+ * Added Ability To Redirect To Other Page Upon Completion ([GitHub Issue #35](https://github.com/fpcorso/quiz_master_next/issues/35))
130
+ * Added Several Translations: da_DK, es_ES, nl_NL, pt_BR, and th
131
+ * Bug Fix: Duplicate Quizzes Not Having URL ([GitHub Issue #144](https://github.com/fpcorso/quiz_master_next/issues/144))
132
+ * Bug Fix: Message Sent Text ([GitHub Issue #142](https://github.com/fpcorso/quiz_master_next/issues/142))
133
+ * Bug Fix: Missing Footer Column ([GitHub Issue #145](https://github.com/fpcorso/quiz_master_next/issues/145))
134
+
135
  = 4.1.0 (February 11, 2015) =
136
  * Added Ability To Restore Deleted Quizzes ([GitHub Issue #107](https://github.com/fpcorso/quiz_master_next/issues/107))
137
  * Added Ability To Multi-Delete Results ([GitHub Issue #4](https://github.com/fpcorso/quiz_master_next/issues/4))
640
 
641
  == Upgrade Notice ==
642
 
643
+ = 4.2.0=
644
+ Upgrade for social sharing template variables, redirects, and fill in the blank question types.
645
+
646
  = 4.1.0 =
647
  Upgrade for redesigned admin results pages, new global settings page, ability to edit facebook app id, and more.
648