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

Version Description

Upgrade for the new template variable %TIMER_MINUTES%, made modification to timer for pagination, Eliminates first page if empty, and more.

Download this release

Release Info

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

Code changes from version 4.3.1 to 4.4.0

Files changed (46) hide show
  1. js/qmn_pagination.js +73 -51
  2. js/qmn_quiz.js +40 -37
  3. js/qmn_timer.js +17 -2
  4. languages/quiz-master-next-da_DK.mo +0 -0
  5. languages/quiz-master-next-da_DK.po +865 -756
  6. languages/quiz-master-next-es_ES.mo +0 -0
  7. languages/quiz-master-next-es_ES.po +899 -766
  8. languages/quiz-master-next-it_IT.mo +0 -0
  9. languages/quiz-master-next-it_IT.po +877 -751
  10. languages/quiz-master-next-nl-NL.mo +0 -0
  11. languages/quiz-master-next-nl-NL.po +892 -755
  12. languages/quiz-master-next-pt_BR.mo +0 -0
  13. languages/quiz-master-next-pt_BR.po +38 -77
  14. languages/quiz-master-next-th.mo +0 -0
  15. languages/quiz-master-next-th.po +803 -757
  16. languages/quiz-master-next.pot +638 -613
  17. mlw_quizmaster2.php +3 -3
  18. php/qmn_addons.php +20 -1
  19. php/qmn_adverts.php +9 -0
  20. php/qmn_alerts.php +18 -0
  21. php/qmn_credits.php +21 -14
  22. php/qmn_dashboard_widgets.php +15 -1
  23. php/qmn_help.php +32 -4
  24. php/qmn_leaderboard.php +9 -2
  25. php/qmn_options_certificate_tab.php +15 -0
  26. php/qmn_options_email_tab.php +31 -1
  27. php/qmn_options_leaderboard_tab.php +14 -0
  28. php/qmn_options_option_tab.php +13 -0
  29. php/qmn_options_preview_tab.php +13 -0
  30. php/qmn_options_questions_tab.php +14 -0
  31. php/qmn_options_results_page_tab.php +18 -1
  32. php/qmn_options_style_tab.php +13 -0
  33. php/qmn_options_text_tab.php +18 -1
  34. php/qmn_options_tools_tab.php +14 -0
  35. php/qmn_question_types.php +283 -0
  36. php/qmn_quiz.php +28 -21
  37. php/qmn_quiz_admin.php +8 -1
  38. php/qmn_quiz_install.php +5 -2
  39. php/qmn_quiz_options.php +6 -2
  40. php/qmn_results.php +7 -0
  41. php/qmn_results_details.php +35 -2
  42. php/qmn_template_variables.php +17 -0
  43. php/qmn_tools.php +24 -0
  44. php/qmn_update.php +7 -0
  45. php/qmn_widgets.php +6 -3
  46. readme.txt +15 -2
js/qmn_pagination.js CHANGED
@@ -1,3 +1,5 @@
 
 
1
  function qmnValidatePage() {
2
  var validated = true;
3
  jQuery(".quiz_section.slide"+window.mlw_quiz_slide+' *').each(function(){
@@ -66,86 +68,89 @@ function qmnValidatePage() {
66
  }
67
  return validated;
68
  }
69
- function nextSlide(mlw_pagination, mlw_goto_top)
70
- {
 
 
71
  jQuery( ".quiz_section" ).hide();
72
- for (var i = 0; i < mlw_pagination; i++)
73
- {
74
- if (i == 0 && window.mlw_previous == 1 && window.mlw_quiz_slide > 1)
75
- {
76
  window.mlw_quiz_slide = window.mlw_quiz_slide + mlw_pagination;
77
- }
78
- else
79
- {
80
  window.mlw_quiz_slide++;
81
  }
82
- if (window.mlw_quiz_slide < 1)
83
- {
84
  window.mlw_quiz_slide = 1;
85
  }
86
- if (window.mlw_quiz_slide == 1)
87
- {
88
- jQuery( ".mlw_qmn_quiz_link.mlw_previous" ).hide();
89
- }
90
- if (window.mlw_quiz_slide > 1)
91
- {
92
- jQuery( ".mlw_qmn_quiz_link.mlw_previous" ).show();
93
- }
94
- if (window.mlw_quiz_slide == window.mlw_quiz_total_slides)
95
- {
 
 
96
  jQuery( ".mlw_qmn_quiz_link.mlw_next" ).hide();
97
  }
98
- if (window.mlw_quiz_slide < window.mlw_quiz_total_slides)
99
- {
100
  jQuery( ".mlw_qmn_quiz_link.mlw_next" ).show();
101
  }
102
  jQuery( ".quiz_section.slide"+window.mlw_quiz_slide ).show();
103
  }
 
 
 
 
 
104
  window.mlw_previous = 0;
105
- if (mlw_goto_top == 1)
106
- {
107
  window.location.hash = "mlw_does_not_exist";
108
  window.location.hash = "mlw_top_of_quiz";
109
  }
110
  }
111
- function prevSlide(mlw_pagination, mlw_goto_top)
112
- {
113
  jQuery( ".quiz_section" ).hide();
114
- for (var i = 0; i < mlw_pagination; i++)
115
- {
116
- if (i == 0 && window.mlw_previous == 0)
117
- {
118
  window.mlw_quiz_slide = window.mlw_quiz_slide - mlw_pagination;
119
- }
120
- else
121
- {
122
  window.mlw_quiz_slide--;
123
  }
124
- if (window.mlw_quiz_slide < 1)
125
- {
126
  window.mlw_quiz_slide = 1;
127
  }
128
- if (window.mlw_quiz_slide == 1)
129
- {
130
- jQuery( ".mlw_qmn_quiz_link.mlw_previous" ).hide();
131
- }
132
- if (window.mlw_quiz_slide > 1)
133
- {
134
- jQuery( ".mlw_qmn_quiz_link.mlw_previous" ).show();
 
 
 
 
135
  }
136
- if (window.mlw_quiz_slide == window.mlw_quiz_total_slides)
137
- {
138
  jQuery( ".mlw_qmn_quiz_link.mlw_next" ).hide();
139
  }
140
- if (window.mlw_quiz_slide < window.mlw_quiz_total_slides)
141
- {
142
  jQuery( ".mlw_qmn_quiz_link.mlw_next" ).show();
143
  }
144
  jQuery( ".quiz_section.slide"+window.mlw_quiz_slide ).show();
145
  }
 
 
 
 
 
146
  window.mlw_previous = 1;
147
- if (mlw_goto_top == 1)
148
- {
149
  window.location.hash = "mlw_does_not_exist";
150
  window.location.hash = "mlw_top_of_quiz";
151
  }
@@ -155,12 +160,29 @@ jQuery( ".quiz_section" ).hide();
155
  jQuery( ".quiz_section" ).append( "<br />" );
156
  jQuery( ".mlw_qmn_quiz" ).append( '<a class="mlw_qmn_quiz_link mlw_previous" href="#">'+qmn_pagination_previous_text+'</a>' );
157
  jQuery( ".mlw_qmn_quiz" ).append( '<span class="qmn_page_message"></span>' );
 
158
  jQuery( ".mlw_qmn_quiz" ).append( '<span class="qmn_page_error_message"></span>' );
159
  jQuery( ".mlw_qmn_quiz" ).append( '<a class="mlw_qmn_quiz_link mlw_next" href="#">'+qmn_pagination_next_text+'</a>' );
160
  window.mlw_quiz_slide = 0;
161
  window.mlw_previous = 0;
162
- window.mlw_quiz_total_slides = qmn_section_limit;
163
- nextSlide(1, 0);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
 
165
  jQuery(".mlw_next").click(function(event) {
166
  event.preventDefault();
1
+
2
+ //Function to validate the answers provided in quiz
3
  function qmnValidatePage() {
4
  var validated = true;
5
  jQuery(".quiz_section.slide"+window.mlw_quiz_slide+' *').each(function(){
68
  }
69
  return validated;
70
  }
71
+
72
+
73
+ //Function to advance quiz to next page
74
+ function nextSlide(mlw_pagination, mlw_goto_top) {
75
  jQuery( ".quiz_section" ).hide();
76
+ for (var i = 0; i < mlw_pagination; i++) {
77
+ if (i == 0 && window.mlw_previous == 1 && window.mlw_quiz_slide > 1) {
 
 
78
  window.mlw_quiz_slide = window.mlw_quiz_slide + mlw_pagination;
79
+ } else {
 
 
80
  window.mlw_quiz_slide++;
81
  }
82
+ if (window.mlw_quiz_slide < 1) {
 
83
  window.mlw_quiz_slide = 1;
84
  }
85
+ jQuery( ".mlw_qmn_quiz_link.mlw_previous" ).hide();
86
+
87
+ if (firstPage) {
88
+ if (window.mlw_quiz_slide > 1) {
89
+ jQuery( ".mlw_qmn_quiz_link.mlw_previous" ).show();
90
+ }
91
+ } else {
92
+ if (window.mlw_quiz_slide > mlw_pagination) {
93
+ jQuery( ".mlw_qmn_quiz_link.mlw_previous" ).show();
94
+ }
95
+ }
96
+ if (window.mlw_quiz_slide == qmn_section_total) {
97
  jQuery( ".mlw_qmn_quiz_link.mlw_next" ).hide();
98
  }
99
+ if (window.mlw_quiz_slide < qmn_section_total) {
 
100
  jQuery( ".mlw_qmn_quiz_link.mlw_next" ).show();
101
  }
102
  jQuery( ".quiz_section.slide"+window.mlw_quiz_slide ).show();
103
  }
104
+
105
+ //Update page number
106
+ qmn_current_page += 1;
107
+ jQuery(".qmn_page_counter_message").text(qmn_current_page+"/"+qmn_total_pages);
108
+
109
  window.mlw_previous = 0;
110
+ if (mlw_goto_top == 1) {
 
111
  window.location.hash = "mlw_does_not_exist";
112
  window.location.hash = "mlw_top_of_quiz";
113
  }
114
  }
115
+
116
+ function prevSlide(mlw_pagination, mlw_goto_top) {
117
  jQuery( ".quiz_section" ).hide();
118
+ for (var i = 0; i < mlw_pagination; i++) {
119
+ if (i == 0 && window.mlw_previous == 0) {
 
 
120
  window.mlw_quiz_slide = window.mlw_quiz_slide - mlw_pagination;
121
+ } else {
 
 
122
  window.mlw_quiz_slide--;
123
  }
124
+ if (window.mlw_quiz_slide < 1) {
 
125
  window.mlw_quiz_slide = 1;
126
  }
127
+
128
+ jQuery( ".mlw_qmn_quiz_link.mlw_previous" ).hide();
129
+
130
+ if (firstPage) {
131
+ if (window.mlw_quiz_slide > 1) {
132
+ jQuery( ".mlw_qmn_quiz_link.mlw_previous" ).show();
133
+ }
134
+ } else {
135
+ if (window.mlw_quiz_slide > mlw_pagination) {
136
+ jQuery( ".mlw_qmn_quiz_link.mlw_previous" ).show();
137
+ }
138
  }
139
+ if (window.mlw_quiz_slide == qmn_section_total) {
 
140
  jQuery( ".mlw_qmn_quiz_link.mlw_next" ).hide();
141
  }
142
+ if (window.mlw_quiz_slide < qmn_section_total) {
 
143
  jQuery( ".mlw_qmn_quiz_link.mlw_next" ).show();
144
  }
145
  jQuery( ".quiz_section.slide"+window.mlw_quiz_slide ).show();
146
  }
147
+
148
+ //Update page number
149
+ qmn_current_page -= 1;
150
+ jQuery(".qmn_page_counter_message").text(qmn_current_page+"/"+qmn_total_pages);
151
+
152
  window.mlw_previous = 1;
153
+ if (mlw_goto_top == 1) {
 
154
  window.location.hash = "mlw_does_not_exist";
155
  window.location.hash = "mlw_top_of_quiz";
156
  }
160
  jQuery( ".quiz_section" ).append( "<br />" );
161
  jQuery( ".mlw_qmn_quiz" ).append( '<a class="mlw_qmn_quiz_link mlw_previous" href="#">'+qmn_pagination_previous_text+'</a>' );
162
  jQuery( ".mlw_qmn_quiz" ).append( '<span class="qmn_page_message"></span>' );
163
+ jQuery( ".mlw_qmn_quiz" ).append( '<span class="qmn_page_counter_message"></span>' );
164
  jQuery( ".mlw_qmn_quiz" ).append( '<span class="qmn_page_error_message"></span>' );
165
  jQuery( ".mlw_qmn_quiz" ).append( '<a class="mlw_qmn_quiz_link mlw_next" href="#">'+qmn_pagination_next_text+'</a>' );
166
  window.mlw_quiz_slide = 0;
167
  window.mlw_previous = 0;
168
+
169
+ //
170
+ var qmn_current_page = 0;
171
+ var qmn_section_total = qmn_total_questions + 1;
172
+ if (qmn_section_comments == 0) {
173
+ qmn_section_total += 1;
174
+ }
175
+ var qmn_total_pages = Math.ceil(qmn_section_total/qmn_pagination);
176
+ if (firstPage) {
177
+ qmn_total_pages += 1;
178
+ qmn_section_total += 1;
179
+ }
180
+
181
+ if (firstPage) {
182
+ nextSlide(1, 0);
183
+ } else {
184
+ nextSlide(qmn_pagination, 0);
185
+ }
186
 
187
  jQuery(".mlw_next").click(function(event) {
188
  event.preventDefault();
js/qmn_quiz.js CHANGED
@@ -48,54 +48,57 @@ function mlw_validateForm()
48
  jQuery(this).css("outline", "2px solid red");
49
  }
50
  }
51
- if(jQuery(this).attr('class').indexOf('mlwRequiredNumber') > -1 && this.value == "" && +this.value != NaN)
52
- {
53
- document.getElementById('mlw_error_message').innerHTML = '**'+number_error+'**';
54
- document.getElementById('mlw_error_message_bottom').innerHTML = '**'+number_error+'**';
55
- jQuery(this).css("outline", "2px solid red");
56
- mlw_validateResult = false;
57
- }
58
- if(jQuery(this).attr('class').indexOf('mlwRequiredText') > -1 && this.value == "")
59
- {
60
- document.getElementById('mlw_error_message').innerHTML = '**'+empty_error+'**';
61
- document.getElementById('mlw_error_message_bottom').innerHTML = '**'+empty_error+'**';
62
- jQuery(this).css("outline", "2px solid red");
63
- mlw_validateResult = false;
64
- }
65
- if(jQuery(this).attr('class').indexOf('mlwRequiredCaptcha') > -1 && this.value != mlw_code)
66
- {
67
- document.getElementById('mlw_error_message').innerHTML = '**'+incorrect_error+'**';
68
- document.getElementById('mlw_error_message_bottom').innerHTML = '**'+incorrect_error+'**';
69
- jQuery(this).css("outline", "2px solid red");
70
- mlw_validateResult = false;
71
- }
72
- if(jQuery(this).attr('class').indexOf('mlwRequiredAccept') > -1 && !this.checked)
73
- {
74
- document.getElementById('mlw_error_message').innerHTML = '**'+empty_error+'**';
75
- document.getElementById('mlw_error_message_bottom').innerHTML = '**'+empty_error+'**';
76
- jQuery(this).css("outline", "2px solid red");
77
- mlw_validateResult = false;
78
- }
79
- if(jQuery(this).attr('class').indexOf('mlwRequiredRadio') > -1)
80
- {
81
- check_val = jQuery(this).find('input:checked').val();
82
- if (check_val == "No Answer Provided")
83
  {
84
- document.getElementById('mlw_error_message').innerHTML = '**'+empty_error+'**';
85
  document.getElementById('mlw_error_message_bottom').innerHTML = '**'+empty_error+'**';
86
  jQuery(this).css("outline", "2px solid red");
87
  mlw_validateResult = false;
88
  }
89
- }
90
- if(jQuery(this).attr('class').indexOf('mlwRequiredCheck') > -1)
91
- {
92
- if (!jQuery(this).find('input:checked').length)
 
 
 
 
93
  {
94
  document.getElementById('mlw_error_message').innerHTML = '**'+empty_error+'**';
95
  document.getElementById('mlw_error_message_bottom').innerHTML = '**'+empty_error+'**';
96
  jQuery(this).css("outline", "2px solid red");
97
  mlw_validateResult = false;
98
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  }
100
  }
101
  });
48
  jQuery(this).css("outline", "2px solid red");
49
  }
50
  }
51
+ if (window.sessionStorage.getItem('mlw_time_quiz'+qmn_quiz_id) == null || window.sessionStorage.getItem('mlw_time_quiz'+qmn_quiz_id) > 0.08) {
52
+
53
+ if(jQuery(this).attr('class').indexOf('mlwRequiredNumber') > -1 && this.value == "" && +this.value != NaN)
54
+ {
55
+ document.getElementById('mlw_error_message').innerHTML = '**'+number_error+'**';
56
+ document.getElementById('mlw_error_message_bottom').innerHTML = '**'+number_error+'**';
57
+ jQuery(this).css("outline", "2px solid red");
58
+ mlw_validateResult = false;
59
+ }
60
+ if(jQuery(this).attr('class').indexOf('mlwRequiredText') > -1 && this.value == "")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  {
62
+ document.getElementById('mlw_error_message').innerHTML = '**'+empty_error+'**';
63
  document.getElementById('mlw_error_message_bottom').innerHTML = '**'+empty_error+'**';
64
  jQuery(this).css("outline", "2px solid red");
65
  mlw_validateResult = false;
66
  }
67
+ if(jQuery(this).attr('class').indexOf('mlwRequiredCaptcha') > -1 && this.value != mlw_code)
68
+ {
69
+ document.getElementById('mlw_error_message').innerHTML = '**'+incorrect_error+'**';
70
+ document.getElementById('mlw_error_message_bottom').innerHTML = '**'+incorrect_error+'**';
71
+ jQuery(this).css("outline", "2px solid red");
72
+ mlw_validateResult = false;
73
+ }
74
+ if(jQuery(this).attr('class').indexOf('mlwRequiredAccept') > -1 && !this.checked)
75
  {
76
  document.getElementById('mlw_error_message').innerHTML = '**'+empty_error+'**';
77
  document.getElementById('mlw_error_message_bottom').innerHTML = '**'+empty_error+'**';
78
  jQuery(this).css("outline", "2px solid red");
79
  mlw_validateResult = false;
80
  }
81
+ if(jQuery(this).attr('class').indexOf('mlwRequiredRadio') > -1)
82
+ {
83
+ check_val = jQuery(this).find('input:checked').val();
84
+ if (check_val == "No Answer Provided")
85
+ {
86
+ document.getElementById('mlw_error_message').innerHTML = '**'+empty_error+'**';
87
+ document.getElementById('mlw_error_message_bottom').innerHTML = '**'+empty_error+'**';
88
+ jQuery(this).css("outline", "2px solid red");
89
+ mlw_validateResult = false;
90
+ }
91
+ }
92
+ if(jQuery(this).attr('class').indexOf('mlwRequiredCheck') > -1)
93
+ {
94
+ if (!jQuery(this).find('input:checked').length)
95
+ {
96
+ document.getElementById('mlw_error_message').innerHTML = '**'+empty_error+'**';
97
+ document.getElementById('mlw_error_message_bottom').innerHTML = '**'+empty_error+'**';
98
+ jQuery(this).css("outline", "2px solid red");
99
+ mlw_validateResult = false;
100
+ }
101
+ }
102
  }
103
  }
104
  });
js/qmn_timer.js CHANGED
@@ -1,4 +1,18 @@
1
- setTimeout(function(){
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  var minutes = 0;
3
  if (window.sessionStorage.getItem('mlw_started_quiz'+qmn_quiz_id) == "yes" && window.sessionStorage.getItem('mlw_time_quiz'+qmn_quiz_id) >= 0)
4
  {
@@ -12,7 +26,8 @@ setTimeout(function(){
12
  window.titleText = window.document.title;
13
  document.getElementById("mlw_qmn_timer").innerHTML = minToSec(window.amount);
14
  window.counter=setInterval(timer, 1000);
15
- }, 100);
 
16
  function timer()
17
  {
18
  window.amount=window.amount-1;
1
+ var qmn_timer_activated = false;
2
+ if (typeof qmn_current_page !== 'undefined') {
3
+ jQuery(".mlw_next").click(function(event) {
4
+ event.preventDefault();
5
+ if ( !qmn_timer_activated ) {
6
+ qmn_activate_timer();
7
+ }
8
+ });
9
+ } else {
10
+ setTimeout(qmn_activate_timer, 100);
11
+ }
12
+
13
+ function qmn_activate_timer() {
14
+ jQuery("#mlw_qmn_timer").show();
15
+ qmn_timer_activated = true;
16
  var minutes = 0;
17
  if (window.sessionStorage.getItem('mlw_started_quiz'+qmn_quiz_id) == "yes" && window.sessionStorage.getItem('mlw_time_quiz'+qmn_quiz_id) >= 0)
18
  {
26
  window.titleText = window.document.title;
27
  document.getElementById("mlw_qmn_timer").innerHTML = minToSec(window.amount);
28
  window.counter=setInterval(timer, 1000);
29
+ }
30
+
31
  function timer()
32
  {
33
  window.amount=window.amount-1;
languages/quiz-master-next-da_DK.mo CHANGED
Binary file
languages/quiz-master-next-da_DK.po CHANGED
@@ -5,7 +5,7 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Quiz Master Next\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2015-04-20 01:12-0500\n"
9
  "PO-Revision-Date: \n"
10
  "Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
11
  "Language-Team: My Local Webstop <fpcorso@mylocalwebstop.com>\n"
@@ -16,12 +16,14 @@ msgstr ""
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;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;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
 
 
20
  "X-Poedit-Basepath: ../\n"
21
- "X-Generator: Poedit 1.7.3\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
- #: mlw_quizmaster2.php:217
25
  msgid "Quizzes"
26
  msgstr "Quizzer"
27
 
@@ -29,7 +31,8 @@ msgstr "Quizzer"
29
  msgid "Quiz Settings"
30
  msgstr "Quiz indstillinger"
31
 
32
- #: mlw_quizmaster2.php:219
 
33
  msgid "Quiz Results"
34
  msgstr "Quiz resultater"
35
 
@@ -41,7 +44,8 @@ msgstr "Quiz resultater detaljer"
41
  msgid "Settings"
42
  msgstr "Indstillinger"
43
 
44
- #: mlw_quizmaster2.php:222
 
45
  msgid "Tools"
46
  msgstr "Værktøjer"
47
 
@@ -57,1219 +61,1324 @@ msgstr "Addon indstillinger"
57
  msgid "Help"
58
  msgstr "Hjælp"
59
 
60
- #: mlw_quizmaster2.php:228
61
- #: mlw_quizmaster2.php:229
62
  msgid "QMN About"
63
  msgstr "QMN Om"
64
 
65
- #: php/qmn_options_email_tab.php:6
66
- msgid "Emails"
67
- msgstr "E-mails"
68
 
69
- #: php/qmn_options_email_tab.php:42
70
- #: php/qmn_options_email_tab.php:101
71
- msgid "The email has been added successfully."
72
- msgstr "E-mail er blevet tilføjet."
73
 
74
- #: php/qmn_options_email_tab.php:55
75
- #: php/qmn_options_email_tab.php:114
76
- #: php/qmn_options_email_tab.php:178
77
- #: php/qmn_quiz_creator.php:382
78
- #: php/qmn_quiz_creator.php:448
79
- #: php/qmn_quiz_creator.php:490
80
- #: php/qmn_quiz_creator.php:648
81
- #: php/qmn_quiz_creator.php:713
82
- #: php/qmn_options_leaderboard_tab.php:38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  #, php-format
84
- msgid "There has been an error in this action. Please share this with the developer. Error Code: %s"
 
 
85
  msgstr "Der har været en fejl. Venligst del dette med udvikleren . Fejlkode:% s"
86
 
87
- #: php/qmn_options_email_tab.php:73
88
- #: php/qmn_options_email_tab.php:91
 
 
 
 
89
  msgid "Enter text here"
90
  msgstr "Indtast tekst her"
91
 
92
- #: php/qmn_options_email_tab.php:165
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
  msgid "The email has been updated successfully."
94
  msgstr "E-mail er blevet opdateret."
95
 
96
- #: php/qmn_options_email_tab.php:232
97
- #: php/qmn_options_leaderboard_tab.php:49
98
  msgid "Template Variables"
99
  msgstr "Skabelon variable"
100
 
101
- #: php/qmn_options_email_tab.php:235
 
102
  msgid "Score for the quiz when using points"
103
  msgstr "Score for quizzen, når du bruger point"
104
 
105
- #: php/qmn_options_email_tab.php:238
 
106
  msgid "The average amount of points user had per question"
107
  msgstr "Det gennemsnitlige antal point bruger havde pr spørgsmål"
108
 
109
- #: php/qmn_options_email_tab.php:241
 
110
  msgid "The number of correct answers the user had"
111
  msgstr "Antallet af korrekte svar brugeren havde"
112
 
113
- #: php/qmn_options_email_tab.php:244
 
114
  msgid "The total number of questions in the quiz"
115
  msgstr "Det samlede antal spørgsmål i quizzen"
116
 
117
- #: php/qmn_options_email_tab.php:247
 
118
  msgid "Score for the quiz when using correct answers"
119
  msgstr "Score for quizzen, når du bruger korrekte svar"
120
 
121
- #: php/qmn_options_email_tab.php:250
 
122
  msgid "The name the user entered before the quiz"
123
  msgstr "Navnet brugeren indtastes, før quizzen"
124
 
125
- #: php/qmn_options_email_tab.php:253
 
126
  msgid "The business the user entered before the quiz"
127
  msgstr "Forretningen brugeren indtastes, før quizzen"
128
 
129
- #: php/qmn_options_email_tab.php:256
 
130
  msgid "The phone number the user entered before the quiz"
131
  msgstr "Telefonnummeret brugeren indtastede, før quizzen"
132
 
133
- #: php/qmn_options_email_tab.php:259
 
134
  msgid "The email the user entered before the quiz"
135
  msgstr "Den e-mail brugeren indtastes, før quizzen"
136
 
137
- #: php/qmn_options_email_tab.php:262
138
- #: php/qmn_options_leaderboard_tab.php:77
139
  msgid "The name of the quiz"
140
  msgstr "Navn på Quiz:"
141
 
142
- #: php/qmn_options_email_tab.php:265
 
143
  msgid "Shows the question, the answer the user provided, and the correct answer"
144
  msgstr "Viser brugers svar og det korrekte svar"
145
 
146
- #: php/qmn_options_email_tab.php:268
 
147
  msgid "The comments the user entered into comment box if enabled"
148
  msgstr "Kommenar som brugeren har indtastet"
149
 
150
- #: php/qmn_options_email_tab.php:271
151
- msgid "The amount of time user spent of quiz"
152
- msgstr "Tid brugeren brugte på undersøgelsen"
 
 
 
 
153
 
154
- #: php/qmn_options_email_tab.php:274
 
155
  msgid "The link to the certificate after completing the quiz"
156
  msgstr "Link til certifikat - efter endt test"
157
 
158
- #: php/qmn_options_email_tab.php:277
 
159
  msgid "The amount of points a specific category earned."
160
  msgstr "Antal point der er opnået i kategorien"
161
 
162
- #: php/qmn_options_email_tab.php:280
 
163
  msgid "The score a specific category earned."
164
  msgstr "Skore for specifik kategori"
165
 
166
- #: php/qmn_options_email_tab.php:283
 
167
  msgid "The average points from all categories."
168
  msgstr "Gennemsnit af point for alle kategorier"
169
 
170
- #: php/qmn_options_email_tab.php:286
 
171
  msgid "The average score from all categories."
172
  msgstr "Gennemsnit skore for alle kategorier"
173
 
174
- #: php/qmn_options_email_tab.php:289
175
  msgid "The question that the user answered"
176
  msgstr "Spørgsmål brugeren besvarede"
177
 
178
- #: php/qmn_options_email_tab.php:292
179
  msgid "The answer the user gave for the question"
180
  msgstr "Brugerens svar på sprøgesmål"
181
 
182
- #: php/qmn_options_email_tab.php:295
183
  msgid "The correct answer for the question"
184
  msgstr "Korrekt svar på spørgsmål"
185
 
186
- #: php/qmn_options_email_tab.php:298
187
  msgid "The comments the user provided in the comment field for the question"
188
  msgstr "Kommentar til spørgsmål"
189
 
190
- #: php/qmn_options_email_tab.php:301
191
  msgid "Reason why the correct answer is the correct answer"
192
  msgstr "Årsag til at dette er det korrekte svar"
193
 
194
- #: php/qmn_options_email_tab.php:304
195
  msgid "The Current Date"
196
  msgstr "Dags dato"
197
 
198
- #: php/qmn_options_email_tab.php:319
199
- #: php/qmn_options_email_tab.php:518
200
  msgid "Save Email Templates And Settings"
201
  msgstr "Gem e-mail skabelon og opsætning"
202
 
203
- #: php/qmn_options_email_tab.php:323
204
  msgid "Send user email upon completion?"
205
  msgstr "Send bruger mail ved afslutning"
206
 
207
- #: php/qmn_options_email_tab.php:325
208
- #: php/qmn_options_email_tab.php:332
209
- msgid "Yes"
210
- msgstr "Ja"
211
-
212
- #: php/qmn_options_email_tab.php:326
213
- #: php/qmn_options_email_tab.php:333
214
- msgid "No"
215
- msgstr "Nej"
216
-
217
- #: php/qmn_options_email_tab.php:330
218
  msgid "Send admin email upon completion?"
219
  msgstr "Send e-mail til administrator ved afslutning?"
220
 
221
- #: php/qmn_options_email_tab.php:337
222
- msgid "What emails should we send the admin email to? Separate emails with a comma."
 
223
  msgstr "E-mail som administrator e-mails skal sendes til? adskil med komma."
224
 
225
- #: php/qmn_options_email_tab.php:341
226
  msgid "What is the From Name for the email sent to users and admin?"
227
  msgstr "Navn på afsender på e-mails til brugere og administrator?"
228
 
229
- #: php/qmn_options_email_tab.php:347
230
  msgid "Email Sent To User"
231
  msgstr "E-mail til bruger"
232
 
233
- #: php/qmn_options_email_tab.php:348
234
- #: php/qmn_options_email_tab.php:426
235
  msgid "Add New User Email"
236
  msgstr "Tilføj ny bruger e-mail"
237
 
238
- #: php/qmn_options_email_tab.php:353
239
- #: php/qmn_options_email_tab.php:419
240
- #: php/qmn_options_email_tab.php:440
241
- #: php/qmn_options_email_tab.php:506
242
  msgid "Score Greater Than Or Equal To"
243
  msgstr "Skore større eller lig med"
244
 
245
- #: php/qmn_options_email_tab.php:354
246
- #: php/qmn_options_email_tab.php:420
247
- #: php/qmn_options_email_tab.php:441
248
- #: php/qmn_options_email_tab.php:507
249
  msgid "Score Less Than Or Equal To"
250
  msgstr "Skore mindre end eller lige med"
251
 
252
- #: php/qmn_options_email_tab.php:355
253
- #: php/qmn_options_email_tab.php:421
254
- #: php/qmn_options_email_tab.php:442
255
- #: php/qmn_options_email_tab.php:508
256
  msgid "Subject"
257
  msgstr "Emne"
258
 
259
- #: php/qmn_options_email_tab.php:356
260
- #: php/qmn_options_email_tab.php:422
261
- #: php/qmn_options_email_tab.php:443
262
- #: php/qmn_options_email_tab.php:509
263
  msgid "Email To Send"
264
  msgstr "E-mail der sendes"
265
 
266
- #: php/qmn_options_email_tab.php:434
267
  msgid "Email Sent To Admin"
268
  msgstr "E-mail sendt til administrator"
269
 
270
- #: php/qmn_options_email_tab.php:435
271
- #: php/qmn_options_email_tab.php:513
272
  msgid "Add New Admin Email"
273
  msgstr "Tilføj ny administrator e-mail"
274
 
275
- #: php/qmn_quiz_creator.php:369
276
- msgid "Your new quiz has been created successfully. To begin editing your quiz, click the Edit link on the new quiz."
277
- msgstr "Din nye quiz er blevet oprettet. For at edigere din quiz, klik på linket Rediger ved den nye quiz"
278
-
279
- #: php/qmn_quiz_creator.php:435
280
- msgid "Your quiz has been deleted successfully."
281
- msgstr "Din Quiz er blevet slettet."
282
-
283
- #: php/qmn_quiz_creator.php:477
284
- msgid "Your quiz name has been updated successfully."
285
- msgstr "Dit quiz navn er blevet opdateret."
286
-
287
- #: php/qmn_quiz_creator.php:634
288
- msgid "Your quiz has been duplicated successfully."
289
- msgstr "Din Quiz er blevet dublikeret."
290
-
291
- #: php/qmn_quiz.php:350
292
- msgid "Not a valid e-mail address!"
293
- msgstr "Ikke en gyldig e-mail-adresse!"
294
-
295
- #: php/qmn_quiz.php:351
296
- msgid "This field must be a number!"
297
- msgstr "Dette felt skal være et tal!"
298
-
299
- #: php/qmn_quiz.php:352
300
- msgid "The entered text is not correct!"
301
- msgstr "Den indtastede tekst er ikke korrekt!"
302
-
303
- #: php/qmn_quiz.php:353
304
- msgid "Please complete all required fields!"
305
- msgstr "Venligst udfyld alle obligatoriske felter"
306
-
307
- #: php/qmn_quiz.php:465
308
- msgid "Hint"
309
- msgstr "Hint"
310
-
311
- #: php/qmn_quiz.php:1254
312
- msgid "Previous"
313
- msgstr "Tidligere"
314
-
315
- #: php/qmn_credits.php:27
316
- msgid "Welcome To Quiz Master Next"
317
- msgstr "Velkommen til Quiz Master Next"
318
-
319
- #: php/qmn_credits.php:28
320
- msgid "Thank you for updating!"
321
- msgstr "Tak for opdatering!"
322
-
323
- #: php/qmn_credits.php:32
324
- msgid "What's New!"
325
- msgstr "Nyheder!"
326
-
327
- #: php/qmn_credits.php:34
328
- msgid "Changelog"
329
- msgstr "Ændringslog"
330
-
331
- #: php/qmn_usage_tracking.php:193
332
- msgid "Allow Quiz Master Next to anonymously track this plugin's usage and help us make this plugin better? No sensitive data is tracked."
333
- msgstr "Tillad Quiz Master Next at følge brugen af dette plugin for at forbedre kvaliteten - ingen følsomme data overvåges."
334
-
335
- #: php/qmn_usage_tracking.php:194
336
- msgid "Allow"
337
- msgstr "Tillad"
338
-
339
- #: php/qmn_usage_tracking.php:195
340
- msgid "Do not allow"
341
- msgstr "Tillad ikke"
342
-
343
- #: php/qmn_options_leaderboard_tab.php:6
344
  msgid "Leaderboard"
345
  msgstr "Leaderboard"
346
 
347
- #: php/qmn_options_leaderboard_tab.php:25
348
  msgid "The leaderboards has been updated successfully."
349
  msgstr "Leaderboards er blevet opdateret"
350
 
351
- #: php/qmn_options_leaderboard_tab.php:52
352
  msgid "The name of the user who is in first place"
353
  msgstr "Navn på bruger der er nummer et"
354
 
355
- #: php/qmn_options_leaderboard_tab.php:53
356
  msgid "The score from the first place's quiz"
357
  msgstr "Skore på førstepladsen"
358
 
359
- #: php/qmn_options_leaderboard_tab.php:57
360
  msgid "The name of the user who is in second place"
361
  msgstr "Navn på bruger som er nummer 2"
362
 
363
- #: php/qmn_options_leaderboard_tab.php:58
364
  msgid "The score from the second place's quiz"
365
  msgstr "Andenpladsens skore"
366
 
367
- #: php/qmn_options_leaderboard_tab.php:62
368
  msgid "The name of the user who is in third place"
369
  msgstr "Navn på bruger på trediepladsen"
370
 
371
- #: php/qmn_options_leaderboard_tab.php:63
372
  msgid "The score from the third place's quiz"
373
  msgstr "Skore fra bruger på trediepladsen"
374
 
375
- #: php/qmn_options_leaderboard_tab.php:67
376
  msgid "The name of the user who is in fourth place"
377
  msgstr "Navn på bruger på fjerdepladsen"
378
 
379
- #: php/qmn_options_leaderboard_tab.php:68
380
  msgid "The score from the fourth place's quiz"
381
  msgstr "Skore fra bruger på fjerdepladsen"
382
 
383
- #: php/qmn_options_leaderboard_tab.php:72
384
  msgid "The name of the user who is in fifth place"
385
  msgstr "Navn på bruger på femte pladsen"
386
 
387
- #: php/qmn_options_leaderboard_tab.php:73
388
  msgid "The score from the fifth place's quiz"
389
  msgstr "Skore på 5 pladsens bruger"
390
 
391
- #: php/qmn_options_leaderboard_tab.php:80
392
- #: php/qmn_options_leaderboard_tab.php:108
393
  msgid "Save Leaderboard Options"
394
  msgstr "Gem leaderboard indstillinger"
395
 
396
- #: php/qmn_options_leaderboard_tab.php:89
397
  msgid "Leaderboard Template"
398
  msgstr "Leaderboard skabelon"
399
 
400
- #: php/qmn_options_leaderboard_tab.php:91
401
- msgid "Allowed Variables:"
402
- msgstr "Tilladte variable"
403
 
404
- #: php/qmn_addons.php:48
405
- msgid "These addons extend the functionality of Quiz Master Next"
406
- msgstr "Disse addons udvide funktionaliteten i Quiz Master Next"
407
 
408
- #: php/qmn_addons.php:91
409
- msgid "Browse All Addons"
410
- msgstr "Gennemse alle Addons"
411
 
412
- #: php/qmn_addons.php:98
413
- msgid "Featured Addons"
414
- msgstr "Udvalgte Addons"
415
 
416
- #: php/qmn_options_text_tab.php:6
417
- msgid "Text"
418
- msgstr "Tekst"
419
 
420
- #: php/qmn_options_text_tab.php:42
421
- msgid "The templates has been updated successfully."
422
- msgstr "Skabelonerne er blevet opdateret"
423
 
424
- #: php/qmn_options_text_tab.php:170
425
- #: php/qmn_options_text_tab.php:330
426
- msgid "Save Templates"
427
- msgstr "Gem skabeloner"
428
 
429
- #: php/qmn_options_text_tab.php:176
430
- msgid "Message Templates"
431
- msgstr "Besked skabeloner"
432
 
433
- #: php/qmn_options_text_tab.php:180
434
- msgid "Message Displayed Before Quiz"
435
- msgstr "Besked vist før Quiz"
 
 
 
 
436
 
437
- #: php/qmn_options_text_tab.php:190
438
- msgid "Message Displayed Before Comments Box If Enabled"
439
- msgstr "Besked vist før kommentar boksen hvis aktiv"
 
 
 
 
440
 
441
- #: php/qmn_options_text_tab.php:200
442
- msgid "Message Displayed At End Of Quiz (Leave Blank To Omit Text Section)"
443
- msgstr "Besked vist ved slutningen af Quizzen (Vis blank for at undlade tekst sektion)"
 
 
 
 
444
 
445
- #: php/qmn_options_text_tab.php:210
446
- msgid "Message Displayed If User Has Tried Quiz Too Many Times"
447
- msgstr "Besked vist hvis brugeren har deltaget for mange gange"
448
-
449
- #: php/qmn_options_text_tab.php:220
450
- msgid "Message Displayed If User Is Not Logged In And Quiz Requires Users To Be Logged In"
451
- msgstr "Besked vist, hvis brugeren skal være logget ind for at besvare denne Quiz"
452
-
453
- #: php/qmn_options_text_tab.php:230
454
- msgid "Message Displayed If Date Is Outside Scheduled Timeframe"
455
- msgstr "Besked hvis dato er udenfor planlagt Tidsramme"
456
-
457
- #: php/qmn_options_text_tab.php:240
458
- msgid "Message Displayed If The Limit Of Total Entries Has Been Reached"
459
- msgstr "Besked Hvis grænsen på indtastninger er nået"
460
-
461
- #: php/qmn_options_text_tab.php:250
462
- msgid "%QUESTIONS_ANSWERS% Text"
463
- msgstr "% QUESTIONS_ANSWERS% Tekst"
464
-
465
- #: php/qmn_options_text_tab.php:263
466
- msgid "Twitter Sharing Text"
467
- msgstr "Twitter Deling tekst"
468
-
469
- #: php/qmn_options_text_tab.php:280
470
- msgid "Facebook Sharing Text"
471
- msgstr "Facebook Deling tekst"
472
-
473
- #: php/qmn_options_text_tab.php:295
474
- msgid "Other Templates"
475
- msgstr "Andre skabeloner"
476
-
477
- #: php/qmn_options_text_tab.php:298
478
- msgid "Text for submit button"
479
- msgstr "Tekst for send-knappen"
480
-
481
- #: php/qmn_options_text_tab.php:302
482
- msgid "Text for name field"
483
- msgstr "Tekst til navnefeltet"
484
-
485
- #: php/qmn_options_text_tab.php:306
486
- msgid "Text for business field"
487
- msgstr "Tekst til firma felt"
488
-
489
- #: php/qmn_options_text_tab.php:310
490
- msgid "Text for email field"
491
- msgstr "Tekst til e-mail-feltet"
492
-
493
- #: php/qmn_options_text_tab.php:314
494
- msgid "Text for phone number field"
495
- msgstr "Tekst til telefon nummer felt"
496
-
497
- #: php/qmn_options_text_tab.php:318
498
- msgid "Text for comments field"
499
- msgstr "Tekst for kommentarer felt"
500
-
501
- #: php/qmn_options_text_tab.php:322
502
- msgid "Text for previous button"
503
- msgstr "Tekst til forrige knap"
504
-
505
- #: php/qmn_options_text_tab.php:326
506
- msgid "Text for next button"
507
- msgstr "Tekst til næste knap"
508
-
509
- #: php/qmn_options_tools_tab.php:23
510
- msgid "The stats has been reset successfully."
511
- msgstr "De statistikker er blevet nulstillet korrekt."
512
-
513
- #: php/qmn_options_tools_tab.php:75
514
- msgid "Use this button to reset all the stats collected for this quiz (Quiz Views and Times Quiz Has Been Taken)."
515
- msgstr "Brug denne knap til at nulstille alle indsamlet til denne quiz statistik (Quiz Views og Times Quiz er taget)."
516
-
517
- #: php/qmn_options_tools_tab.php:76
518
- msgid "Reset Quiz Views And Taken Stats"
519
- msgstr "Nulstil Quiz Views og oprettede statistikker"
520
-
521
- #: php/qmn_options_tools_tab.php:87
522
- msgid "Are you sure you want to reset the stats to 0? All views and taken stats for this quiz will be reset. This is permanent and cannot be undone."
523
- msgstr "Er du sikker på du vil nulstille statistik til 0? Alle synspunkter og taget statistik for denne quiz vil blive nulstillet. Det er permanent og kan ikke fortrydes."
524
-
525
- #: php/qmn_options_tools_tab.php:91
526
- msgid "Reset All Stats For Quiz"
527
- msgstr "Nulstil alle Stats for Quiz"
528
-
529
- #: php/qmn_dashboard_widgets.php:9
530
- msgid "Quiz Master Next Snapshot"
531
- msgstr "Quiz Master Next skærmdump"
532
 
533
- #: php/qmn_dashboard_widgets.php:166
534
- msgid "quizzes taken today"
535
- msgstr "Spørgeskemaer udfyldt i dag"
 
 
536
 
537
- #: php/qmn_dashboard_widgets.php:185
538
- msgid "quizzes taken last 7 days"
539
- msgstr "Spørgeskemaer udfyldt de sidste 7 dage"
 
 
 
 
540
 
541
- #: php/qmn_dashboard_widgets.php:204
542
- #, fuzzy
543
- msgid "quizzes taken last 30 days"
544
- msgstr "Spørgeskemaer udfyldt de sidste 7 dage"
545
 
546
- #: php/qmn_dashboard_widgets.php:223
547
- #, fuzzy
548
- msgid "quizzes taken last 120 days"
549
- msgstr "Spørgeskemaer udfyldt de sidste 7 dage"
550
 
551
- #: php/qmn_dashboard_widgets.php:242
552
- msgid "total active quizzes"
553
- msgstr "Antal aktive spørgeskemaundersøgelser"
 
554
 
555
- #: php/qmn_dashboard_widgets.php:248
556
- msgid "total active questions"
557
- msgstr "Antal aktive spørgsmål"
558
 
559
- #: php/qmn_dashboard_widgets.php:254
560
- msgid "most popular quiz"
561
- msgstr "mest populære spørgeskemaundersøgelse"
562
 
563
- #: php/qmn_dashboard_widgets.php:260
564
- msgid "least popular quiz"
565
- msgstr "mindst populære undersøgelse"
 
 
 
566
 
567
- #: php/qmn_options_certificate_tab.php:6
568
- msgid "Certificate (Beta)"
569
- msgstr "Certifikat"
570
 
571
- #: php/qmn_options_certificate_tab.php:32
572
- msgid "The certificate has been updated successfully."
573
- msgstr "Certifikatet er blevet opdateret."
574
 
575
- #: php/qmn_options_certificate_tab.php:61
576
- msgid "Enter title here"
577
- msgstr "Indtast titel her"
 
 
 
 
 
 
578
 
579
- #: php/qmn_options_certificate_tab.php:65
580
- msgid "Quiz Certificate (Beta)"
581
- msgstr "Quiz Certificate (Beta)"
582
 
583
- #: php/qmn_options_certificate_tab.php:66
584
- msgid "Enter in your text here to fill in the certificate for this quiz. Be sure to enter in the link variable into the templates on the Quiz Text tab so the user can access the certificate."
585
- msgstr "Indtast din tekst her for at udfylde attesten for denne quiz. Sørg for at indtaste i linket variabel i skabelonerne under fanen Quiz tekst, så brugeren kan få adgang til certifikatet."
 
586
 
587
- #: php/qmn_options_certificate_tab.php:67
588
- msgid "These fields cannot contain HTML."
589
- msgstr "Disse felter kan ikke indeholde HTML."
590
 
591
- #: php/qmn_options_certificate_tab.php:68
592
- #: php/qmn_options_certificate_tab.php:124
593
- msgid "Save Certificate Options"
594
- msgstr "Gem Certificate indstillinger"
595
 
596
- #: php/qmn_options_certificate_tab.php:76
597
- msgid "Enable Certificates For This Quiz?"
598
- msgstr "Aktiver certifikater for denne quiz?"
599
 
600
- #: php/qmn_options_certificate_tab.php:84
601
- msgid "Certificate Title"
602
- msgstr "Certifikat Titel"
603
 
604
- #: php/qmn_options_certificate_tab.php:91
605
- msgid "Message Displayed On Certificate"
606
- msgstr "MeddelelseCertifikat"
607
 
608
- #: php/qmn_options_certificate_tab.php:111
609
- msgid "URL To Logo (Must be JPG, JPEG, PNG or GIF)"
610
- msgstr "URL til Logo (Skal være JPG, JPEG, PNG eller GIF)"
611
 
612
- #: php/qmn_options_certificate_tab.php:118
613
- msgid "URL To Background Img (Must be JPG, JPEG, PNG or GIF)"
614
- msgstr "URL til Baggrund Img (Skal være JPG, JPEG, PNG eller GIF)"
 
 
 
615
 
616
- #: php/qmn_quiz_options.php:52
617
- #, php-format
618
- msgid "Quiz Settings For %s"
619
- msgstr "Quiz indstillinger for %s"
 
620
 
621
- #: php/qmn_quiz_options.php:92
622
- msgid "Error!"
623
- msgstr "Fejl!"
 
 
624
 
625
- #: php/qmn_quiz_options.php:92
626
- msgid "Please go to the quizzes page and click on the Edit link from the quiz you wish to edit."
627
- msgstr "Go til quiz siden og klik på rediger linket på den quiz du ønsker at redigere"
628
 
629
- #: php/qmn_options_questions_tab.php:6
630
  msgid "Questions"
631
  msgstr "Spørgsmål"
632
 
633
- #: php/qmn_options_questions_tab.php:14
634
  msgid "Answer"
635
  msgstr "Svar:"
636
 
637
- #: php/qmn_options_questions_tab.php:112
638
  msgid "The question has been updated successfully."
639
  msgstr "Spørgsmålet er blevet opdateret."
640
 
641
- #: php/qmn_options_questions_tab.php:139
642
  msgid "The question has been deleted successfully."
643
  msgstr "Dine resultater er blevet slettet."
644
 
645
- #: php/qmn_options_questions_tab.php:223
646
  msgid "The question has been duplicated successfully."
647
  msgstr "Din Spørgsmål er blevet dublikeret."
648
 
649
- #: php/qmn_options_questions_tab.php:316
650
  msgid "The question has been created successfully."
651
  msgstr "Spørgsmålet er blevet oprettet."
652
 
653
- #: php/qmn_options_questions_tab.php:434
654
  msgid "Add Question"
655
  msgstr "Nyt spørgsmål"
656
 
657
- #: php/qmn_options_questions_tab.php:443
658
  #, php-format
659
  msgid "One question"
660
  msgid_plural "%s questions"
661
  msgstr[0] "Et spørgsmål"
662
  msgstr[1] "%s spørgsmål"
663
 
664
- #: php/qmn_options_questions_tab.php:449
665
- #: php/qmn_options_questions_tab.php:457
666
- #: php/qmn_options_questions_tab.php:582
667
  msgid "Question Order"
668
  msgstr "Rækkefølge spørgsmål"
669
 
670
- #: php/qmn_options_questions_tab.php:450
671
- #: php/qmn_options_questions_tab.php:458
672
- #: php/qmn_options_questions_tab.php:561
673
  msgid "Question Type"
674
  msgstr "Spørgsmål type"
675
 
676
- #: php/qmn_options_questions_tab.php:451
677
- #: php/qmn_options_questions_tab.php:459
678
- #: php/qmn_options_questions_tab.php:595
679
  msgid "Category"
680
  msgstr "Kategori"
681
 
682
- #: php/qmn_options_questions_tab.php:452
683
- #: php/qmn_options_questions_tab.php:460
684
  msgid "Question"
685
  msgstr "Spørgsmål"
686
 
687
- #: php/qmn_options_questions_tab.php:534
688
- msgid "For fill in the blank types, use %BLANK% to represent where to put the text box in your text."
 
 
689
  msgstr ""
690
 
691
- #: php/qmn_options_questions_tab.php:539
692
  msgid "Answers"
693
  msgstr "Svar"
694
 
695
- #: php/qmn_options_questions_tab.php:540
696
  msgid "Points Worth"
697
  msgstr "Værdi af point"
698
 
699
- #: php/qmn_options_questions_tab.php:541
700
  msgid "Correct Answer"
701
  msgstr "Korrekt svar"
702
 
703
- #: php/qmn_options_questions_tab.php:546
704
  msgid "Add New Answer!"
705
  msgstr "Tilføj nyt svar!"
706
 
707
- #: php/qmn_options_questions_tab.php:551
708
  msgid "Correct Answer Info"
709
  msgstr "Info for korrekt svar"
710
 
711
- #: php/qmn_options_questions_tab.php:573
 
 
 
 
712
  msgid "Comment Field"
713
  msgstr "KOmmentar felt"
714
 
715
- #: php/qmn_options_questions_tab.php:575
716
  msgid "Small Text Field"
717
  msgstr "Lille tekst felt"
718
 
719
- #: php/qmn_options_questions_tab.php:576
720
  msgid "Large Text Field"
721
  msgstr "Stort tekst felt"
722
 
723
- #: php/qmn_options_questions_tab.php:577
724
  msgid "None"
725
  msgstr "Ingen"
726
 
727
- #: php/qmn_options_questions_tab.php:587
728
  msgid "Required?"
729
  msgstr "Obligatorisk"
730
 
731
- #: php/qmn_options_questions_tab.php:618
732
  msgid "Create Question"
733
  msgstr "Opret spørgsmål"
734
 
735
- #: php/qmn_options_questions_tab.php:623
736
  msgid "Are you sure you want to delete this question?"
737
  msgstr "Er du sikker på du vil slette dette spørgsmål"
738
 
739
- #: php/qmn_options_questions_tab.php:628
740
  msgid "Delete Question"
741
  msgstr "Slet spørgsmål"
742
 
743
- #: php/qmn_options_questions_tab.php:633
744
  msgid "Are you sure you want to duplicate this question?"
745
  msgstr "Er du sikker på du vil kopiere dette spørgsmål?"
746
 
747
- #: php/qmn_options_questions_tab.php:638
748
  msgid "Duplicate Question"
749
  msgstr "Kopieret spørgsmål"
750
 
751
- #: php/qmn_results.php:23
752
- msgid "Your results has been deleted successfully."
753
- msgstr "Dine resultater er blevet slettet."
754
-
755
- #: php/qmn_results.php:161
756
- #, php-format
757
- msgid "One result"
758
- msgid_plural "%s results"
759
- msgstr[0] "Et resultat"
760
- msgstr[1] "%s resultater"
761
-
762
- #: php/qmn_results.php:208
763
- msgid "Actions"
764
- msgstr "Handlinger"
765
-
766
- #: php/qmn_results.php:209
767
- msgid "Quiz Name"
768
- msgstr "Quiz navn"
769
-
770
- #: php/qmn_results.php:210
771
- msgid "Score"
772
- msgstr "Skore"
773
-
774
- #: php/qmn_results.php:211
775
- msgid "Time To Complete"
776
- msgstr "Tid til at færdiggøre"
777
-
778
- #: php/qmn_results.php:212
779
- msgid "Name"
780
- msgstr "Navn"
781
-
782
- #: php/qmn_results.php:213
783
- msgid "Business"
784
- msgstr "Forretning"
785
-
786
- #: php/qmn_results.php:214
787
- msgid "Email"
788
- msgstr "Email"
789
-
790
- #: php/qmn_results.php:215
791
- msgid "Phone"
792
- msgstr "Telefon"
793
-
794
- #: php/qmn_results.php:216
795
- msgid "Time Taken"
796
- msgstr "Forbrugt tid"
797
-
798
- #: php/qmn_results.php:258
799
- #: php/qmn_options_option_tab.php:147
800
- msgid "Not Graded"
801
- msgstr "Ikke Graded"
802
-
803
- #: php/qmn_results.php:275
804
- msgid "Are you sure you want to delete these results?"
805
- msgstr "Er du sikker på at du vil slette disse resultater ?"
806
-
807
- #: php/qmn_results.php:280
808
- msgid "Delete Results"
809
- msgstr "Slet resultater"
810
-
811
- #: php/qmn_options_results_page_tab.php:6
812
  msgid "Results Pages"
813
  msgstr "Resultat sider"
814
 
815
- #: php/qmn_options_results_page_tab.php:41
816
  msgid "The results page has been added successfully."
817
  msgstr "Resultat siden er tilføjet"
818
 
819
- #: php/qmn_options_results_page_tab.php:81
820
  msgid "The results page has been saved successfully."
821
  msgstr "Resultatsiden er gemt"
822
 
823
- #: php/qmn_options_results_page_tab.php:191
 
 
 
 
 
 
 
 
824
  msgid "Displays button to share on Facebook."
825
  msgstr ""
826
 
827
- #: php/qmn_options_results_page_tab.php:194
828
  msgid "Displays button to share on Twitter."
829
  msgstr ""
830
 
831
- #: php/qmn_options_results_page_tab.php:199
832
- #: php/qmn_options_results_page_tab.php:280
833
  msgid "Save Results Pages"
834
  msgstr "Gem resultatsider"
835
 
836
- #: php/qmn_options_results_page_tab.php:200
837
- #: php/qmn_options_results_page_tab.php:285
838
  msgid "Add New Results Page"
839
- msgstr "Tilføj ny resultat side"
840
-
841
- #: php/qmn_options_results_page_tab.php:208
842
- #: php/qmn_options_results_page_tab.php:272
843
- msgid "Results Page Shown"
844
- msgstr "Resultat side vist"
845
-
846
- #: php/qmn_options_results_page_tab.php:209
847
- #: php/qmn_options_results_page_tab.php:273
848
- msgid "Redirect URL (Beta)"
849
- msgstr ""
850
-
851
- #: php/qmn_options_results_page_tab.php:247
852
- msgid "Delete"
853
- msgstr "Slet"
854
-
855
- #: php/qmn_options_results_page_tab.php:247
856
- msgid "Are you sure?"
857
- msgstr "Er du sikker?"
858
-
859
- #: php/qmn_options_preview_tab.php:6
860
- msgid "Preview"
861
- msgstr "Preview"
862
-
863
- #: php/qmn-stats-page.php:29
864
- msgid "Quiz Statistics"
865
- msgstr "Quiz statistik"
866
-
867
- #: php/qmn-stats-page.php:68
868
- #, fuzzy
869
- msgid "Quiz Taken Stats"
870
- msgstr "Total statistik"
871
-
872
- #: php/qmn_options_option_tab.php:6
873
- msgid "Options"
874
- msgstr "Indstillinger"
875
-
876
- #: php/qmn_options_option_tab.php:94
877
- msgid "The options has been updated successfully."
878
- msgstr "Indstillinger er gemt"
879
-
880
- #: php/qmn_options_option_tab.php:135
881
- #: php/qmn_options_option_tab.php:286
882
- msgid "Save Options"
883
- msgstr "Gem indstillinger"
884
-
885
- #: php/qmn_options_option_tab.php:143
886
- msgid "Which system is this quiz graded on?"
887
- msgstr "Hvilket system er denne quiz sorteres på?"
888
-
889
- #: php/qmn_options_option_tab.php:145
890
- msgid "Correct/Incorrect"
891
- msgstr "Korrekt / Ukorrekt"
892
-
893
- #: php/qmn_options_option_tab.php:146
894
- msgid "Points"
895
- msgstr "Point"
896
-
897
- #: php/qmn_options_option_tab.php:151
898
- msgid "Should the user be required to be logged in to take this quiz?"
899
- msgstr "Skal brugeren være logget ind for at svare på denne test?"
900
-
901
- #: php/qmn_options_option_tab.php:158
902
- msgid "How many questions per page would you like? (Leave 0 for all questions on one page)"
903
- msgstr "Hvor mange spørgsmål vil du have per side ? (0 for alle spørgsmål på samme side)."
904
-
905
- #: php/qmn_options_option_tab.php:164
906
- msgid "How many minutes does the user have to finish the quiz? (Leave 0 for no time limit)"
907
- msgstr "Hvor mange minutter har brugeren til at afslutte undersøgelsen? (0 for ingen tidsfrist)"
908
-
909
- #: php/qmn_options_option_tab.php:170
910
- msgid "How many times can a user take this quiz? (Leave 0 for as many times as the user wants to. Currently only works for registered users)"
911
- msgstr "Hvor mange gange kan en bruger tage denne quiz? (Lad 0 for så mange gange som brugeren ønsker at. I øjeblikket virker kun for registrerede brugere)"
912
-
913
- #: php/qmn_options_option_tab.php:176
914
- msgid "How many total entries can this quiz have? (Leave 0 for unlimited entries"
915
- msgstr "Hvor mange samlede poster kan denne quiz have? (Lad 0 for ubegrænset poster"
916
-
917
- #: php/qmn_options_option_tab.php:182
918
- msgid "How many questions should be loaded for quiz? (Leave 0 to load all questions)"
919
- msgstr "Hvor mange spørgsmål skal indlæses til quiz? (Lad 0 at indlæse alle spørgsmål)"
920
-
921
- #: php/qmn_options_option_tab.php:188
922
- msgid "What time-frame should the user be able to access the quiz? (Leave blank if the user can access anytime)"
923
- msgstr "Hvilken tidsperiode skal brugeren kunne få adgang quizzen? (Står tom, hvis brugeren kan få adgang til når som helst)"
924
-
925
- #: php/qmn_options_option_tab.php:190
926
- msgid "start date"
927
- msgstr "Start dato"
928
-
929
- #: php/qmn_options_option_tab.php:193
930
- msgid "end date"
931
- msgstr "Slut dato"
932
-
933
- #: php/qmn_options_option_tab.php:197
934
- msgid "Are the questions random? (Question Order will not apply if this is yes)"
935
- msgstr "Er spørgsmålene tilfældigt? (Spørgsmål Order gælder ikke, hvis det er ja)"
936
-
937
- #: php/qmn_options_option_tab.php:199
938
- msgid "Random Questions"
939
- msgstr "Tilfældige spørgsmål"
940
-
941
- #: php/qmn_options_option_tab.php:200
942
- msgid "Random Questions And Answers"
943
- msgstr "Tilfældige Spørgsmål og svar"
944
-
945
- #: php/qmn_options_option_tab.php:205
946
- msgid "Would you like to ask for the contact information at the beginning or at the end of the quiz?"
947
- msgstr "Vil du bede om kontaktoplysninger i begyndelsen eller slutningen af ​​quizzen?"
948
-
949
- #: php/qmn_options_option_tab.php:207
950
- msgid "Beginning"
951
- msgstr "Begyndelse"
952
-
953
- #: php/qmn_options_option_tab.php:208
954
- msgid "End"
955
- msgstr "Slut"
956
-
957
- #: php/qmn_options_option_tab.php:212
958
- msgid "If a logged-in user takes the quiz, would you like them to be able to edit contact information? If set to no, the fields will not show up for logged in users; however, the users information will be saved for the fields."
959
- msgstr "Hvis en indloggede bruger tager quizzen, vil du have dem til at være i stand til at redigere kontaktoplysninger? Hvis sat til nej, vil de områder ikke op til logget ind brugere; dog vil brugerne oplysninger gemmes til felterne."
960
-
961
- #: php/qmn_options_option_tab.php:219
962
- msgid "Should we ask for users name?"
963
- msgstr "Skal vi bede for brugere navn?"
964
-
965
- #: php/qmn_options_option_tab.php:222
966
- #: php/qmn_options_option_tab.php:230
967
- #: php/qmn_options_option_tab.php:238
968
- #: php/qmn_options_option_tab.php:246
969
- msgid "Require"
970
- msgstr "Obligatorisk"
971
-
972
- #: php/qmn_options_option_tab.php:227
973
- msgid "Should we ask for users business?"
974
- msgstr "Skal vi bede for brugere virksomhed?"
975
-
976
- #: php/qmn_options_option_tab.php:235
977
- msgid "Should we ask for users email?"
978
- msgstr "Skal vi bede for brugere email?"
979
-
980
- #: php/qmn_options_option_tab.php:243
981
- msgid "Should we ask for users phone number?"
982
- msgstr "Skal vi bede for brugere telefonnummer?"
983
-
984
- #: php/qmn_options_option_tab.php:251
985
- msgid "Would you like a place for the user to enter comments?"
986
- msgstr "Kunne du tænke dig et sted for brugeren at indtaste kommentarer?"
987
-
988
- #: php/qmn_options_option_tab.php:258
989
- msgid "Show question number on quiz?"
990
- msgstr "Vis spørgsmål nummer på quiz?"
991
 
992
- #: php/qmn_options_option_tab.php:265
993
- msgid "Show social media sharing buttons? (Twitter & Facebook)"
994
- msgstr "Vis sociale medier knapper deling? (Twitter & Facebook)"
 
995
 
996
- #: php/qmn_options_option_tab.php:265
997
- msgid "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!"
 
998
  msgstr ""
999
 
1000
- #: php/qmn_options_option_tab.php:272
1001
- msgid "Disable question once user selects answer? (Currently only work on multiple choice)"
1002
- msgstr ""
1003
 
1004
- #: php/qmn_options_option_tab.php:279
1005
- msgid "Dynamically add class for incorrect/correct answer after user selects answer? (Currently only works on multiple choice)"
1006
- msgstr ""
1007
 
1008
- #: php/qmn_options_style_tab.php:6
1009
  msgid "Style"
1010
  msgstr "Style"
1011
 
1012
- #: php/qmn_options_style_tab.php:26
1013
  msgid "The style has been saved successfully."
1014
  msgstr "Denne style er gemt"
1015
 
1016
- #: php/qmn_options_style_tab.php:65
1017
  msgid "Quiz Styles"
1018
  msgstr "Quiz styles"
1019
 
1020
- #: php/qmn_options_style_tab.php:66
1021
  msgid "Choose your style:"
1022
  msgstr "Vælg din style"
1023
 
1024
- #: php/qmn_options_style_tab.php:88
1025
  msgid "Custom"
1026
  msgstr "Custom"
1027
 
1028
- #: php/qmn_options_style_tab.php:94
1029
- #: php/qmn_options_style_tab.php:106
1030
  msgid "Save Quiz Style"
1031
  msgstr "Gem quiz style"
1032
 
1033
- #: php/qmn_options_style_tab.php:96
1034
  msgid "Custom Style CSS"
1035
  msgstr "Custom style CSS"
1036
 
1037
- #: php/qmn_options_style_tab.php:97
1038
- msgid "For detailed help and guidance along with a list of different classes used in this plugin, please visit the following link:"
1039
- msgstr "For detaljeret hjælp og instruktion sammen med en liste over de forskellige klasser benyttet i dette plugin, besøg følgende link:"
 
 
 
 
1040
 
1041
- #: php/qmn_results_details.php:117
1042
- msgid "Results"
1043
- msgstr "Resultater"
1044
 
1045
- #: php/qmn_results_details.php:196
1046
- msgid "Create Certificate"
1047
- msgstr "Opret certificat"
1048
 
1049
- #: php/qmn_results_details.php:201
1050
- msgid "Download Certificate Here"
1051
- msgstr "Download certificat her"
1052
 
1053
- #: php/qmn_results_details.php:208
1054
- msgid "Certificate"
1055
- msgstr "Certifikat"
1056
 
1057
- #: php/qmn_tools.php:90
1058
- msgid "There has been an error! Please try again."
1059
- msgstr "Der har været en fejl! Forsøg igen"
1060
 
1061
- #: php/qmn_tools.php:108
1062
- msgid "Quiz Has Been Restored!"
1063
- msgstr "Den pågældende quiz er gendannet"
1064
 
1065
- #: php/qmn_tools.php:113
1066
- msgid "Choose a quiz in the drop down and then click the button to restore a deleted quiz."
1067
- msgstr "Vælg en quiz i drop Down boksen og klik for at gendanne en slettet quiz."
1068
 
1069
- #: php/qmn_tools.php:123
1070
- msgid "Restore Quiz"
1071
- msgstr "Gendan Quiz"
 
1072
 
1073
- #: php/qmn_tools.php:152
1074
- #: php/qmn_tools.php:168
1075
- #, php-format
1076
- msgid "Previous %s Audits"
1077
- msgstr "Sidste %s Audits"
1078
 
1079
- #: php/qmn_tools.php:155
1080
- #: php/qmn_tools.php:162
1081
- #, php-format
1082
- msgid "Next %s Audits"
1083
- msgstr "Næste %s Audits"
 
1084
 
1085
- #: php/qmn_tools.php:175
1086
- msgid "User"
1087
- msgstr "Bruger"
1088
 
1089
- #: php/qmn_tools.php:176
1090
- msgid "Action"
1091
- msgstr "Aktion"
1092
 
1093
- #: php/qmn_tools.php:177
1094
- msgid "Time"
1095
- msgstr "Klokken"
1096
 
1097
- #: php/qmn_help.php:10
1098
- msgid "Need Help?"
1099
- msgstr "Brug for hjælp?"
1100
 
1101
- #: php/qmn_help.php:11
1102
- msgid "Support"
1103
- msgstr "Support"
1104
 
1105
- #: php/qmn_help.php:12
1106
- msgid "System Info"
1107
- msgstr "System Info"
1108
 
1109
- #: php/qmn_help.php:15
1110
- msgid "Help Page"
1111
- msgstr "Hjælp"
1112
 
1113
- #: php/qmn_help.php:38
1114
- msgid "Need help with the plugin? Try any of the following:"
1115
- msgstr "Har du brug for hjælp med dette plugin? Forsøg​følgende:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1116
 
1117
- #: php/qmn_question_types.php:7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1118
  msgid "Multiple Choice"
1119
  msgstr "Flere valgmuligheder"
1120
 
1121
- #: php/qmn_question_types.php:76
1122
  msgid "Horizontal Multiple Choice"
1123
  msgstr "Vandret Multiple Choice"
1124
 
1125
- #: php/qmn_question_types.php:144
1126
  msgid "Drop Down"
1127
  msgstr "Drop Down"
1128
 
1129
- #: php/qmn_question_types.php:209
1130
  msgid "Small Open Answer"
1131
  msgstr "Kort tekst svar"
1132
 
1133
- #: php/qmn_question_types.php:258
1134
  msgid "Multiple Response"
1135
  msgstr "Multiple svar"
1136
 
1137
- #: php/qmn_question_types.php:333
1138
  msgid "Large Open Answer"
1139
  msgstr "Stor åbent svar"
1140
 
1141
- #: php/qmn_question_types.php:382
1142
  msgid "Text Block"
1143
  msgstr "tekstblok"
1144
 
1145
- #: php/qmn_question_types.php:397
1146
  msgid "Number"
1147
  msgstr "Tal"
1148
 
1149
- #: php/qmn_question_types.php:446
1150
  msgid "Accept"
1151
  msgstr "Accepter"
1152
 
1153
- #: php/qmn_question_types.php:465
1154
  msgid "Captcha"
1155
  msgstr "CAPTCHA"
1156
 
1157
- #: php/qmn_question_types.php:506
1158
  msgid "Horizontal Multiple Response"
1159
  msgstr "Vandret Multiple svar"
1160
 
1161
- #: php/qmn_question_types.php:580
1162
  msgid "Fill In The Blank"
1163
  msgstr ""
1164
 
1165
- #: php/qmn_alerts.php:19
1166
- msgid "Success!"
1167
- msgstr "Succes"
 
 
 
 
 
 
 
 
 
 
 
 
1168
 
1169
- #: php/qmn_quiz_admin.php:189
1170
  msgid "Add New"
1171
  msgstr "Tilføj ny"
1172
 
1173
- #: php/qmn_quiz_admin.php:207
1174
  #, php-format
1175
  msgid "One quiz"
1176
  msgid_plural "%s quizzes"
1177
  msgstr[0] "En quiz"
1178
  msgstr[1] "%s quizzer"
1179
 
1180
- #: php/qmn_quiz_admin.php:253
1181
- #: php/qmn_quiz_admin.php:304
 
 
 
 
1182
  msgid "URL"
1183
  msgstr "URL"
1184
 
1185
- #: php/qmn_quiz_admin.php:254
1186
- #: php/qmn_quiz_admin.php:305
1187
  msgid "Quiz Shortcode"
1188
  msgstr "Quiz Shortcode"
1189
 
1190
- #: php/qmn_quiz_admin.php:255
1191
- #: php/qmn_quiz_admin.php:306
1192
  msgid "Leaderboard Shortcode"
1193
  msgstr "Lederboard Shortcode"
1194
 
1195
- #: php/qmn_quiz_admin.php:256
1196
- #: php/qmn_quiz_admin.php:307
1197
  msgid "Quiz Views"
1198
  msgstr "Quiz set"
1199
 
1200
- #: php/qmn_quiz_admin.php:257
1201
- #: php/qmn_quiz_admin.php:308
1202
  msgid "Quiz Taken"
1203
  msgstr "Quiz gennemført"
1204
 
1205
- #: php/qmn_quiz_admin.php:258
1206
- #: php/qmn_quiz_admin.php:309
1207
  msgid "Last Modified"
1208
  msgstr "Sidst ændret"
1209
 
1210
- #: php/qmn_quiz_admin.php:271
1211
  msgid "Edit Name"
1212
  msgstr "Ret navn"
1213
 
1214
- #: php/qmn_quiz_admin.php:273
1215
  msgid "Edit"
1216
  msgstr "Ret"
1217
 
1218
- #: php/qmn_quiz_admin.php:275
1219
- #: php/qmn_quiz_admin.php:404
 
 
 
1220
  msgid "Duplicate"
1221
  msgstr "Kopier"
1222
 
1223
- #: php/qmn_quiz_admin.php:366
1224
  msgid "Create New Quiz"
1225
  msgstr "Opret ny quiz"
1226
 
1227
- #: php/qmn_quiz_admin.php:380
1228
  msgid "Create Quiz"
1229
  msgstr "Opret quiz"
1230
 
1231
- #: php/qmn_quiz_admin.php:386
1232
  msgid "Quiz Name:"
1233
  msgstr "Quiz navn:"
1234
 
1235
- #: php/qmn_quiz_admin.php:397
1236
  msgid "Duplicate this quiz?"
1237
  msgstr "Kopier quiz"
1238
 
1239
- #: php/qmn_quiz_admin.php:399
1240
  msgid "Duplicate questions with quiz"
1241
  msgstr "Kopier spørgsmål"
1242
 
1243
- #: php/qmn_quiz_admin.php:401
1244
  msgid "Name Of New Quiz:"
1245
  msgstr "Navn på ny Quiz:"
1246
 
1247
- #: php/qmn_quiz_admin.php:410
1248
  msgid "Are you sure you want to delete this quiz?"
1249
  msgstr "Er du sikker på at du vil slette denne quiz?"
1250
 
1251
- #: php/qmn_quiz_admin.php:415
1252
  msgid "Delete Quiz"
1253
  msgstr "Slet Quiz"
1254
 
1255
- #: php/qmn_widgets.php:11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1256
  msgid "Quiz Master Next Leaderboard Widget"
1257
  msgstr "Quiz Master Next Styrings Widget"
1258
 
1259
- #: php/qmn_widgets.php:26
1260
  msgid "Widget Title"
1261
  msgstr "Widget titel"
1262
 
1263
- #: php/qmn_widgets.php:30
1264
  msgid "Quiz ID"
1265
  msgstr "Quiz ID"
1266
 
 
 
 
1267
  #~ msgid ""
1268
  #~ "Required currently only works on open answer, number, accept, and captcha "
1269
  #~ "question types"
1270
  #~ msgstr ""
1271
- #~ "Obligatorisk virker på nuværende tidspunkt kun på åbne svar, antal, "
1272
- #~ "accept og captcha spørgsmål"
1273
 
1274
  #~ msgid "Edit Question"
1275
  #~ msgstr "Ret spørgsmål"
5
  msgstr ""
6
  "Project-Id-Version: Quiz Master Next\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2015-06-11 16:16-0500\n"
9
  "PO-Revision-Date: \n"
10
  "Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
11
  "Language-Team: My Local Webstop <fpcorso@mylocalwebstop.com>\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.8.1\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
 
26
+ #: mlw_quizmaster2.php:217 php/qmn_quiz_admin.php:196
27
  msgid "Quizzes"
28
  msgstr "Quizzer"
29
 
31
  msgid "Quiz Settings"
32
  msgstr "Quiz indstillinger"
33
 
34
+ #: mlw_quizmaster2.php:219 php/qmn_results.php:159
35
+ #: php/qmn_results_details.php:20
36
  msgid "Quiz Results"
37
  msgstr "Quiz resultater"
38
 
44
  msgid "Settings"
45
  msgstr "Indstillinger"
46
 
47
+ #: mlw_quizmaster2.php:222 php/qmn_options_tools_tab.php:13
48
+ #: php/qmn_tools.php:65
49
  msgid "Tools"
50
  msgstr "Værktøjer"
51
 
61
  msgid "Help"
62
  msgstr "Hjælp"
63
 
64
+ #: mlw_quizmaster2.php:228 mlw_quizmaster2.php:229
 
65
  msgid "QMN About"
66
  msgstr "QMN Om"
67
 
68
+ #: php/qmn-stats-page.php:29
69
+ msgid "Quiz Statistics"
70
+ msgstr "Quiz statistik"
71
 
72
+ #: php/qmn-stats-page.php:68
73
+ #, fuzzy
74
+ msgid "Quiz Taken Stats"
75
+ msgstr "Total statistik"
76
 
77
+ #: php/qmn_addons.php:60
78
+ msgid "These addons extend the functionality of Quiz Master Next"
79
+ msgstr "Disse addons udvide funktionaliteten i Quiz Master Next"
80
+
81
+ #: php/qmn_addons.php:103
82
+ msgid "Browse All Addons"
83
+ msgstr "Gennemse alle Addons"
84
+
85
+ #: php/qmn_addons.php:117
86
+ msgid "Featured Addons"
87
+ msgstr "Udvalgte Addons"
88
+
89
+ #: php/qmn_alerts.php:37
90
+ msgid "Success!"
91
+ msgstr "Succes"
92
+
93
+ #: php/qmn_alerts.php:41 php/qmn_quiz_options.php:96
94
+ msgid "Error!"
95
+ msgstr "Fejl!"
96
+
97
+ #: php/qmn_credits.php:30
98
+ msgid "Welcome To Quiz Master Next"
99
+ msgstr "Velkommen til Quiz Master Next"
100
+
101
+ #: php/qmn_credits.php:31
102
+ msgid "Thank you for updating!"
103
+ msgstr "Tak for opdatering!"
104
+
105
+ #: php/qmn_credits.php:35
106
+ msgid "What's New!"
107
+ msgstr "Nyheder!"
108
+
109
+ #: php/qmn_credits.php:37
110
+ msgid "Changelog"
111
+ msgstr "Ændringslog"
112
+
113
+ #: php/qmn_dashboard_widgets.php:16
114
+ msgid "Quiz Master Next Snapshot"
115
+ msgstr "Quiz Master Next skærmdump"
116
+
117
+ #: php/qmn_dashboard_widgets.php:180
118
+ msgid "quizzes taken today"
119
+ msgstr "Spørgeskemaer udfyldt i dag"
120
+
121
+ #: php/qmn_dashboard_widgets.php:199
122
+ msgid "quizzes taken last 7 days"
123
+ msgstr "Spørgeskemaer udfyldt de sidste 7 dage"
124
+
125
+ #: php/qmn_dashboard_widgets.php:218
126
+ #, fuzzy
127
+ msgid "quizzes taken last 30 days"
128
+ msgstr "Spørgeskemaer udfyldt de sidste 7 dage"
129
+
130
+ #: php/qmn_dashboard_widgets.php:237
131
+ #, fuzzy
132
+ msgid "quizzes taken last 120 days"
133
+ msgstr "Spørgeskemaer udfyldt de sidste 7 dage"
134
+
135
+ #: php/qmn_dashboard_widgets.php:256
136
+ msgid "total active quizzes"
137
+ msgstr "Antal aktive spørgeskemaundersøgelser"
138
+
139
+ #: php/qmn_dashboard_widgets.php:262
140
+ msgid "total active questions"
141
+ msgstr "Antal aktive spørgsmål"
142
+
143
+ #: php/qmn_dashboard_widgets.php:268
144
+ msgid "most popular quiz"
145
+ msgstr "mest populære spørgeskemaundersøgelse"
146
+
147
+ #: php/qmn_dashboard_widgets.php:274
148
+ msgid "least popular quiz"
149
+ msgstr "mindst populære undersøgelse"
150
+
151
+ #: php/qmn_help.php:13
152
+ msgid "Need Help?"
153
+ msgstr "Brug for hjælp?"
154
+
155
+ #: php/qmn_help.php:14
156
+ msgid "Support"
157
+ msgstr "Support"
158
+
159
+ #: php/qmn_help.php:15
160
+ msgid "System Info"
161
+ msgstr "System Info"
162
+
163
+ #: php/qmn_help.php:18
164
+ msgid "Help Page"
165
+ msgstr "Hjælp"
166
+
167
+ #: php/qmn_help.php:48
168
+ msgid "Need help with the plugin? Try any of the following:"
169
+ msgstr "Har du brug for hjælp med dette plugin? Forsøg​følgende:"
170
+
171
+ #: php/qmn_options_certificate_tab.php:15
172
+ msgid "Certificate (Beta)"
173
+ msgstr "Certifikat"
174
+
175
+ #: php/qmn_options_certificate_tab.php:47
176
+ msgid "The certificate has been updated successfully."
177
+ msgstr "Certifikatet er blevet opdateret."
178
+
179
+ #: php/qmn_options_certificate_tab.php:60 php/qmn_options_email_tab.php:68
180
+ #: php/qmn_options_email_tab.php:127 php/qmn_options_email_tab.php:191
181
+ #: php/qmn_options_leaderboard_tab.php:52 php/qmn_options_option_tab.php:120
182
+ #: php/qmn_options_questions_tab.php:139 php/qmn_options_questions_tab.php:166
183
+ #: php/qmn_options_questions_tab.php:250 php/qmn_options_questions_tab.php:343
184
+ #: php/qmn_options_results_page_tab.php:68
185
+ #: php/qmn_options_results_page_tab.php:108 php/qmn_options_style_tab.php:52
186
+ #: php/qmn_options_text_tab.php:68 php/qmn_options_tools_tab.php:50
187
+ #: php/qmn_quiz_creator.php:385 php/qmn_quiz_creator.php:451
188
+ #: php/qmn_quiz_creator.php:493 php/qmn_quiz_creator.php:651
189
+ #: php/qmn_quiz_creator.php:716 php/qmn_results.php:43
190
  #, php-format
191
+ msgid ""
192
+ "There has been an error in this action. Please share this with the developer. "
193
+ "Error Code: %s"
194
  msgstr "Der har været en fejl. Venligst del dette med udvikleren . Fejlkode:% s"
195
 
196
+ #: php/qmn_options_certificate_tab.php:76
197
+ msgid "Enter title here"
198
+ msgstr "Indtast titel her"
199
+
200
+ #: php/qmn_options_certificate_tab.php:76 php/qmn_options_email_tab.php:86
201
+ #: php/qmn_options_email_tab.php:104
202
  msgid "Enter text here"
203
  msgstr "Indtast tekst her"
204
 
205
+ #: php/qmn_options_certificate_tab.php:80
206
+ msgid "Quiz Certificate (Beta)"
207
+ msgstr "Quiz Certificate (Beta)"
208
+
209
+ #: php/qmn_options_certificate_tab.php:81
210
+ msgid ""
211
+ "Enter in your text here to fill in the certificate for this quiz. Be sure to "
212
+ "enter in the link variable into the templates on the Quiz Text tab so the "
213
+ "user can access the certificate."
214
+ msgstr ""
215
+ "Indtast din tekst her for at udfylde attesten for denne quiz. Sørg for at "
216
+ "indtaste i linket variabel i skabelonerne under fanen Quiz tekst, så brugeren "
217
+ "kan få adgang til certifikatet."
218
+
219
+ #: php/qmn_options_certificate_tab.php:82
220
+ msgid "These fields cannot contain HTML."
221
+ msgstr "Disse felter kan ikke indeholde HTML."
222
+
223
+ #: php/qmn_options_certificate_tab.php:83
224
+ #: php/qmn_options_certificate_tab.php:139
225
+ msgid "Save Certificate Options"
226
+ msgstr "Gem Certificate indstillinger"
227
+
228
+ #: php/qmn_options_certificate_tab.php:91
229
+ msgid "Enable Certificates For This Quiz?"
230
+ msgstr "Aktiver certifikater for denne quiz?"
231
+
232
+ #: php/qmn_options_certificate_tab.php:93 php/qmn_options_email_tab.php:355
233
+ #: php/qmn_options_email_tab.php:362 php/qmn_options_option_tab.php:166
234
+ #: php/qmn_options_option_tab.php:227 php/qmn_options_option_tab.php:234
235
+ #: php/qmn_options_option_tab.php:242 php/qmn_options_option_tab.php:250
236
+ #: php/qmn_options_option_tab.php:258 php/qmn_options_option_tab.php:266
237
+ #: php/qmn_options_option_tab.php:273 php/qmn_options_option_tab.php:280
238
+ #: php/qmn_options_option_tab.php:287 php/qmn_options_option_tab.php:294
239
+ #: php/qmn_options_questions_tab.php:603
240
+ #: php/qmn_options_results_page_tab.php:264
241
+ msgid "Yes"
242
+ msgstr "Ja"
243
+
244
+ #: php/qmn_options_certificate_tab.php:94 php/qmn_options_email_tab.php:356
245
+ #: php/qmn_options_email_tab.php:363 php/qmn_options_option_tab.php:167
246
+ #: php/qmn_options_option_tab.php:214 php/qmn_options_option_tab.php:228
247
+ #: php/qmn_options_option_tab.php:236 php/qmn_options_option_tab.php:244
248
+ #: php/qmn_options_option_tab.php:252 php/qmn_options_option_tab.php:260
249
+ #: php/qmn_options_option_tab.php:267 php/qmn_options_option_tab.php:274
250
+ #: php/qmn_options_option_tab.php:281 php/qmn_options_option_tab.php:288
251
+ #: php/qmn_options_option_tab.php:295 php/qmn_options_questions_tab.php:604
252
+ #: php/qmn_options_results_page_tab.php:264
253
+ msgid "No"
254
+ msgstr "Nej"
255
+
256
+ #: php/qmn_options_certificate_tab.php:99
257
+ msgid "Certificate Title"
258
+ msgstr "Certifikat Titel"
259
+
260
+ #: php/qmn_options_certificate_tab.php:106
261
+ msgid "Message Displayed On Certificate"
262
+ msgstr "Meddelelse på Certifikat"
263
+
264
+ #: php/qmn_options_certificate_tab.php:108
265
+ #: php/qmn_options_leaderboard_tab.php:105 php/qmn_options_text_tab.php:199
266
+ #: php/qmn_options_text_tab.php:209 php/qmn_options_text_tab.php:219
267
+ #: php/qmn_options_text_tab.php:229 php/qmn_options_text_tab.php:239
268
+ #: php/qmn_options_text_tab.php:249 php/qmn_options_text_tab.php:259
269
+ #: php/qmn_options_text_tab.php:269 php/qmn_options_text_tab.php:282
270
+ #: php/qmn_options_text_tab.php:299
271
+ msgid "Allowed Variables:"
272
+ msgstr "Tilladte variable"
273
+
274
+ #: php/qmn_options_certificate_tab.php:126
275
+ msgid "URL To Logo (Must be JPG, JPEG, PNG or GIF)"
276
+ msgstr "URL til Logo (Skal være JPG, JPEG, PNG eller GIF)"
277
+
278
+ #: php/qmn_options_certificate_tab.php:133
279
+ msgid "URL To Background Img (Must be JPG, JPEG, PNG or GIF)"
280
+ msgstr "URL til Baggrund Img (Skal være JPG, JPEG, PNG eller GIF)"
281
+
282
+ #: php/qmn_options_email_tab.php:13
283
+ msgid "Emails"
284
+ msgstr "E-mails"
285
+
286
+ #: php/qmn_options_email_tab.php:55 php/qmn_options_email_tab.php:114
287
+ msgid "The email has been added successfully."
288
+ msgstr "E-mail er blevet tilføjet."
289
+
290
+ #: php/qmn_options_email_tab.php:178
291
  msgid "The email has been updated successfully."
292
  msgstr "E-mail er blevet opdateret."
293
 
294
+ #: php/qmn_options_email_tab.php:258 php/qmn_options_leaderboard_tab.php:63
295
+ #: php/qmn_options_results_page_tab.php:148 php/qmn_options_text_tab.php:105
296
  msgid "Template Variables"
297
  msgstr "Skabelon variable"
298
 
299
+ #: php/qmn_options_email_tab.php:261 php/qmn_options_results_page_tab.php:151
300
+ #: php/qmn_options_text_tab.php:108
301
  msgid "Score for the quiz when using points"
302
  msgstr "Score for quizzen, når du bruger point"
303
 
304
+ #: php/qmn_options_email_tab.php:264 php/qmn_options_results_page_tab.php:154
305
+ #: php/qmn_options_text_tab.php:111
306
  msgid "The average amount of points user had per question"
307
  msgstr "Det gennemsnitlige antal point bruger havde pr spørgsmål"
308
 
309
+ #: php/qmn_options_email_tab.php:267 php/qmn_options_results_page_tab.php:157
310
+ #: php/qmn_options_text_tab.php:114
311
  msgid "The number of correct answers the user had"
312
  msgstr "Antallet af korrekte svar brugeren havde"
313
 
314
+ #: php/qmn_options_email_tab.php:270 php/qmn_options_results_page_tab.php:160
315
+ #: php/qmn_options_text_tab.php:117
316
  msgid "The total number of questions in the quiz"
317
  msgstr "Det samlede antal spørgsmål i quizzen"
318
 
319
+ #: php/qmn_options_email_tab.php:273 php/qmn_options_results_page_tab.php:163
320
+ #: php/qmn_options_text_tab.php:120
321
  msgid "Score for the quiz when using correct answers"
322
  msgstr "Score for quizzen, når du bruger korrekte svar"
323
 
324
+ #: php/qmn_options_email_tab.php:276 php/qmn_options_results_page_tab.php:166
325
+ #: php/qmn_options_text_tab.php:123
326
  msgid "The name the user entered before the quiz"
327
  msgstr "Navnet brugeren indtastes, før quizzen"
328
 
329
+ #: php/qmn_options_email_tab.php:279 php/qmn_options_results_page_tab.php:169
330
+ #: php/qmn_options_text_tab.php:126
331
  msgid "The business the user entered before the quiz"
332
  msgstr "Forretningen brugeren indtastes, før quizzen"
333
 
334
+ #: php/qmn_options_email_tab.php:282 php/qmn_options_results_page_tab.php:172
335
+ #: php/qmn_options_text_tab.php:129
336
  msgid "The phone number the user entered before the quiz"
337
  msgstr "Telefonnummeret brugeren indtastede, før quizzen"
338
 
339
+ #: php/qmn_options_email_tab.php:285 php/qmn_options_results_page_tab.php:175
340
+ #: php/qmn_options_text_tab.php:132
341
  msgid "The email the user entered before the quiz"
342
  msgstr "Den e-mail brugeren indtastes, før quizzen"
343
 
344
+ #: php/qmn_options_email_tab.php:288 php/qmn_options_leaderboard_tab.php:91
345
+ #: php/qmn_options_results_page_tab.php:178 php/qmn_options_text_tab.php:135
346
  msgid "The name of the quiz"
347
  msgstr "Navn på Quiz:"
348
 
349
+ #: php/qmn_options_email_tab.php:291 php/qmn_options_results_page_tab.php:181
350
+ #: php/qmn_options_text_tab.php:138
351
  msgid "Shows the question, the answer the user provided, and the correct answer"
352
  msgstr "Viser brugers svar og det korrekte svar"
353
 
354
+ #: php/qmn_options_email_tab.php:294 php/qmn_options_results_page_tab.php:184
355
+ #: php/qmn_options_text_tab.php:141
356
  msgid "The comments the user entered into comment box if enabled"
357
  msgstr "Kommenar som brugeren har indtastet"
358
 
359
+ #: php/qmn_options_email_tab.php:297 php/qmn_options_text_tab.php:144
360
+ msgid "The amount of time user spent on quiz in seconds"
361
+ msgstr ""
362
+
363
+ #: php/qmn_options_email_tab.php:301 php/qmn_options_text_tab.php:147
364
+ msgid "The amount of time user spent on quiz in minutes"
365
+ msgstr ""
366
 
367
+ #: php/qmn_options_email_tab.php:304 php/qmn_options_results_page_tab.php:193
368
+ #: php/qmn_options_text_tab.php:151
369
  msgid "The link to the certificate after completing the quiz"
370
  msgstr "Link til certifikat - efter endt test"
371
 
372
+ #: php/qmn_options_email_tab.php:307 php/qmn_options_results_page_tab.php:196
373
+ #: php/qmn_options_text_tab.php:154
374
  msgid "The amount of points a specific category earned."
375
  msgstr "Antal point der er opnået i kategorien"
376
 
377
+ #: php/qmn_options_email_tab.php:310 php/qmn_options_results_page_tab.php:199
378
+ #: php/qmn_options_text_tab.php:157
379
  msgid "The score a specific category earned."
380
  msgstr "Skore for specifik kategori"
381
 
382
+ #: php/qmn_options_email_tab.php:313 php/qmn_options_results_page_tab.php:202
383
+ #: php/qmn_options_text_tab.php:160
384
  msgid "The average points from all categories."
385
  msgstr "Gennemsnit af point for alle kategorier"
386
 
387
+ #: php/qmn_options_email_tab.php:316 php/qmn_options_results_page_tab.php:205
388
+ #: php/qmn_options_text_tab.php:163
389
  msgid "The average score from all categories."
390
  msgstr "Gennemsnit skore for alle kategorier"
391
 
392
+ #: php/qmn_options_email_tab.php:319 php/qmn_options_text_tab.php:166
393
  msgid "The question that the user answered"
394
  msgstr "Spørgsmål brugeren besvarede"
395
 
396
+ #: php/qmn_options_email_tab.php:322 php/qmn_options_text_tab.php:169
397
  msgid "The answer the user gave for the question"
398
  msgstr "Brugerens svar på sprøgesmål"
399
 
400
+ #: php/qmn_options_email_tab.php:325 php/qmn_options_text_tab.php:172
401
  msgid "The correct answer for the question"
402
  msgstr "Korrekt svar på spørgsmål"
403
 
404
+ #: php/qmn_options_email_tab.php:328 php/qmn_options_text_tab.php:175
405
  msgid "The comments the user provided in the comment field for the question"
406
  msgstr "Kommentar til spørgsmål"
407
 
408
+ #: php/qmn_options_email_tab.php:331 php/qmn_options_text_tab.php:178
409
  msgid "Reason why the correct answer is the correct answer"
410
  msgstr "Årsag til at dette er det korrekte svar"
411
 
412
+ #: php/qmn_options_email_tab.php:334 php/qmn_options_text_tab.php:181
413
  msgid "The Current Date"
414
  msgstr "Dags dato"
415
 
416
+ #: php/qmn_options_email_tab.php:349 php/qmn_options_email_tab.php:548
 
417
  msgid "Save Email Templates And Settings"
418
  msgstr "Gem e-mail skabelon og opsætning"
419
 
420
+ #: php/qmn_options_email_tab.php:353
421
  msgid "Send user email upon completion?"
422
  msgstr "Send bruger mail ved afslutning"
423
 
424
+ #: php/qmn_options_email_tab.php:360
 
 
 
 
 
 
 
 
 
 
425
  msgid "Send admin email upon completion?"
426
  msgstr "Send e-mail til administrator ved afslutning?"
427
 
428
+ #: php/qmn_options_email_tab.php:367
429
+ msgid ""
430
+ "What emails should we send the admin email to? Separate emails with a comma."
431
  msgstr "E-mail som administrator e-mails skal sendes til? adskil med komma."
432
 
433
+ #: php/qmn_options_email_tab.php:371
434
  msgid "What is the From Name for the email sent to users and admin?"
435
  msgstr "Navn på afsender på e-mails til brugere og administrator?"
436
 
437
+ #: php/qmn_options_email_tab.php:377
438
  msgid "Email Sent To User"
439
  msgstr "E-mail til bruger"
440
 
441
+ #: php/qmn_options_email_tab.php:378 php/qmn_options_email_tab.php:456
 
442
  msgid "Add New User Email"
443
  msgstr "Tilføj ny bruger e-mail"
444
 
445
+ #: php/qmn_options_email_tab.php:383 php/qmn_options_email_tab.php:449
446
+ #: php/qmn_options_email_tab.php:470 php/qmn_options_email_tab.php:536
447
+ #: php/qmn_options_results_page_tab.php:223
448
+ #: php/qmn_options_results_page_tab.php:287
449
  msgid "Score Greater Than Or Equal To"
450
  msgstr "Skore større eller lig med"
451
 
452
+ #: php/qmn_options_email_tab.php:384 php/qmn_options_email_tab.php:450
453
+ #: php/qmn_options_email_tab.php:471 php/qmn_options_email_tab.php:537
454
+ #: php/qmn_options_results_page_tab.php:224
455
+ #: php/qmn_options_results_page_tab.php:288
456
  msgid "Score Less Than Or Equal To"
457
  msgstr "Skore mindre end eller lige med"
458
 
459
+ #: php/qmn_options_email_tab.php:385 php/qmn_options_email_tab.php:451
460
+ #: php/qmn_options_email_tab.php:472 php/qmn_options_email_tab.php:538
 
 
461
  msgid "Subject"
462
  msgstr "Emne"
463
 
464
+ #: php/qmn_options_email_tab.php:386 php/qmn_options_email_tab.php:452
465
+ #: php/qmn_options_email_tab.php:473 php/qmn_options_email_tab.php:539
 
 
466
  msgid "Email To Send"
467
  msgstr "E-mail der sendes"
468
 
469
+ #: php/qmn_options_email_tab.php:464
470
  msgid "Email Sent To Admin"
471
  msgstr "E-mail sendt til administrator"
472
 
473
+ #: php/qmn_options_email_tab.php:465 php/qmn_options_email_tab.php:543
 
474
  msgid "Add New Admin Email"
475
  msgstr "Tilføj ny administrator e-mail"
476
 
477
+ #: php/qmn_options_leaderboard_tab.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
478
  msgid "Leaderboard"
479
  msgstr "Leaderboard"
480
 
481
+ #: php/qmn_options_leaderboard_tab.php:39
482
  msgid "The leaderboards has been updated successfully."
483
  msgstr "Leaderboards er blevet opdateret"
484
 
485
+ #: php/qmn_options_leaderboard_tab.php:66
486
  msgid "The name of the user who is in first place"
487
  msgstr "Navn på bruger der er nummer et"
488
 
489
+ #: php/qmn_options_leaderboard_tab.php:67
490
  msgid "The score from the first place's quiz"
491
  msgstr "Skore på førstepladsen"
492
 
493
+ #: php/qmn_options_leaderboard_tab.php:71
494
  msgid "The name of the user who is in second place"
495
  msgstr "Navn på bruger som er nummer 2"
496
 
497
+ #: php/qmn_options_leaderboard_tab.php:72
498
  msgid "The score from the second place's quiz"
499
  msgstr "Andenpladsens skore"
500
 
501
+ #: php/qmn_options_leaderboard_tab.php:76
502
  msgid "The name of the user who is in third place"
503
  msgstr "Navn på bruger på trediepladsen"
504
 
505
+ #: php/qmn_options_leaderboard_tab.php:77
506
  msgid "The score from the third place's quiz"
507
  msgstr "Skore fra bruger på trediepladsen"
508
 
509
+ #: php/qmn_options_leaderboard_tab.php:81
510
  msgid "The name of the user who is in fourth place"
511
  msgstr "Navn på bruger på fjerdepladsen"
512
 
513
+ #: php/qmn_options_leaderboard_tab.php:82
514
  msgid "The score from the fourth place's quiz"
515
  msgstr "Skore fra bruger på fjerdepladsen"
516
 
517
+ #: php/qmn_options_leaderboard_tab.php:86
518
  msgid "The name of the user who is in fifth place"
519
  msgstr "Navn på bruger på femte pladsen"
520
 
521
+ #: php/qmn_options_leaderboard_tab.php:87
522
  msgid "The score from the fifth place's quiz"
523
  msgstr "Skore på 5 pladsens bruger"
524
 
525
+ #: php/qmn_options_leaderboard_tab.php:94
526
+ #: php/qmn_options_leaderboard_tab.php:122
527
  msgid "Save Leaderboard Options"
528
  msgstr "Gem leaderboard indstillinger"
529
 
530
+ #: php/qmn_options_leaderboard_tab.php:103
531
  msgid "Leaderboard Template"
532
  msgstr "Leaderboard skabelon"
533
 
534
+ #: php/qmn_options_option_tab.php:13
535
+ msgid "Options"
536
+ msgstr "Indstillinger"
537
 
538
+ #: php/qmn_options_option_tab.php:107
539
+ msgid "The options has been updated successfully."
540
+ msgstr "Indstillinger er gemt"
541
 
542
+ #: php/qmn_options_option_tab.php:148 php/qmn_options_option_tab.php:299
543
+ msgid "Save Options"
544
+ msgstr "Gem indstillinger"
545
 
546
+ #: php/qmn_options_option_tab.php:156
547
+ msgid "Which system is this quiz graded on?"
548
+ msgstr "Hvilket system er denne quiz sorteres på?"
549
 
550
+ #: php/qmn_options_option_tab.php:158
551
+ msgid "Correct/Incorrect"
552
+ msgstr "Korrekt / Ukorrekt"
553
 
554
+ #: php/qmn_options_option_tab.php:159
555
+ msgid "Points"
556
+ msgstr "Point"
557
 
558
+ #: php/qmn_options_option_tab.php:160 php/qmn_results.php:265
559
+ msgid "Not Graded"
560
+ msgstr "Ikke Graded"
 
561
 
562
+ #: php/qmn_options_option_tab.php:164
563
+ msgid "Should the user be required to be logged in to take this quiz?"
564
+ msgstr "Skal brugeren være logget ind for at svare på denne test?"
565
 
566
+ #: php/qmn_options_option_tab.php:171
567
+ msgid ""
568
+ "How many questions per page would you like? (Leave 0 for all questions on one "
569
+ "page)"
570
+ msgstr ""
571
+ "Hvor mange spørgsmål vil du have per side ? (0 for alle spørgsmål på samme "
572
+ "side)."
573
 
574
+ #: php/qmn_options_option_tab.php:177
575
+ msgid ""
576
+ "How many minutes does the user have to finish the quiz? (Leave 0 for no time "
577
+ "limit)"
578
+ msgstr ""
579
+ "Hvor mange minutter har brugeren til at afslutte undersøgelsen? (0 for ingen "
580
+ "tidsfrist)"
581
 
582
+ #: php/qmn_options_option_tab.php:183
583
+ msgid ""
584
+ "How many times can a user take this quiz? (Leave 0 for as many times as the "
585
+ "user wants to. Currently only works for registered users)"
586
+ msgstr ""
587
+ "Hvor mange gange kan en bruger tage denne quiz? (Lad 0 for så mange gange som "
588
+ "brugeren ønsker at. I øjeblikket virker kun for registrerede brugere)"
589
 
590
+ #: php/qmn_options_option_tab.php:189
591
+ msgid ""
592
+ "How many total entries can this quiz have? (Leave 0 for unlimited entries"
593
+ msgstr ""
594
+ "Hvor mange samlede poster kan denne quiz have? (Lad 0 for ubegrænset poster"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
595
 
596
+ #: php/qmn_options_option_tab.php:195
597
+ msgid ""
598
+ "How many questions should be loaded for quiz? (Leave 0 to load all questions)"
599
+ msgstr ""
600
+ "Hvor mange spørgsmål skal indlæses til quiz? (Lad 0 at indlæse alle spørgsmål)"
601
 
602
+ #: php/qmn_options_option_tab.php:201
603
+ msgid ""
604
+ "What time-frame should the user be able to access the quiz? (Leave blank if "
605
+ "the user can access anytime)"
606
+ msgstr ""
607
+ "Hvilken tidsperiode skal brugeren kunne få adgang quizzen? (Står tom, hvis "
608
+ "brugeren kan få adgang til når som helst)"
609
 
610
+ #: php/qmn_options_option_tab.php:203
611
+ msgid "start date"
612
+ msgstr "Start dato"
 
613
 
614
+ #: php/qmn_options_option_tab.php:206
615
+ msgid "end date"
616
+ msgstr "Slut dato"
 
617
 
618
+ #: php/qmn_options_option_tab.php:210
619
+ msgid "Are the questions random? (Question Order will not apply if this is yes)"
620
+ msgstr ""
621
+ "Er spørgsmålene tilfældigt? (Spørgsmål Order gælder ikke, hvis det er ja)"
622
 
623
+ #: php/qmn_options_option_tab.php:212
624
+ msgid "Random Questions"
625
+ msgstr "Tilfældige spørgsmål"
626
 
627
+ #: php/qmn_options_option_tab.php:213
628
+ msgid "Random Questions And Answers"
629
+ msgstr "Tilfældige Spørgsmål og svar"
630
 
631
+ #: php/qmn_options_option_tab.php:218
632
+ msgid ""
633
+ "Would you like to ask for the contact information at the beginning or at the "
634
+ "end of the quiz?"
635
+ msgstr ""
636
+ "Vil du bede om kontaktoplysninger i begyndelsen eller slutningen af ​​quizzen?"
637
 
638
+ #: php/qmn_options_option_tab.php:220
639
+ msgid "Beginning"
640
+ msgstr "Begyndelse"
641
 
642
+ #: php/qmn_options_option_tab.php:221
643
+ msgid "End"
644
+ msgstr "Slut"
645
 
646
+ #: php/qmn_options_option_tab.php:225
647
+ msgid ""
648
+ "If a logged-in user takes the quiz, would you like them to be able to edit "
649
+ "contact information? If set to no, the fields will not show up for logged in "
650
+ "users; however, the users information will be saved for the fields."
651
+ msgstr ""
652
+ "Hvis en indloggede bruger tager quizzen, vil du have dem til at være i stand "
653
+ "til at redigere kontaktoplysninger? Hvis sat til nej, vil de områder ikke op "
654
+ "til logget ind brugere; dog vil brugerne oplysninger gemmes til felterne."
655
 
656
+ #: php/qmn_options_option_tab.php:232
657
+ msgid "Should we ask for users name?"
658
+ msgstr "Skal vi bede for brugere navn?"
659
 
660
+ #: php/qmn_options_option_tab.php:235 php/qmn_options_option_tab.php:243
661
+ #: php/qmn_options_option_tab.php:251 php/qmn_options_option_tab.php:259
662
+ msgid "Require"
663
+ msgstr "Obligatorisk"
664
 
665
+ #: php/qmn_options_option_tab.php:240
666
+ msgid "Should we ask for users business?"
667
+ msgstr "Skal vi bede for brugere virksomhed?"
668
 
669
+ #: php/qmn_options_option_tab.php:248
670
+ msgid "Should we ask for users email?"
671
+ msgstr "Skal vi bede for brugere email?"
 
672
 
673
+ #: php/qmn_options_option_tab.php:256
674
+ msgid "Should we ask for users phone number?"
675
+ msgstr "Skal vi bede for brugere telefonnummer?"
676
 
677
+ #: php/qmn_options_option_tab.php:264
678
+ msgid "Would you like a place for the user to enter comments?"
679
+ msgstr "Kunne du tænke dig et sted for brugeren at indtaste kommentarer?"
680
 
681
+ #: php/qmn_options_option_tab.php:271
682
+ msgid "Show question number on quiz?"
683
+ msgstr "Vis spørgsmål nummer quiz?"
684
 
685
+ #: php/qmn_options_option_tab.php:278
686
+ msgid "Show social media sharing buttons? (Twitter & Facebook)"
687
+ msgstr "Vis sociale medier knapper deling? (Twitter & Facebook)"
688
 
689
+ #: php/qmn_options_option_tab.php:278
690
+ msgid ""
691
+ "This option is for here only for users of older versions. Please use the new "
692
+ "template variables %FACEBOOK_SHARE% %TWITTER_SHARE% on your results pages "
693
+ "instead of using this option!"
694
+ msgstr ""
695
 
696
+ #: php/qmn_options_option_tab.php:285
697
+ msgid ""
698
+ "Disable question once user selects answer? (Currently only work on multiple "
699
+ "choice)"
700
+ msgstr ""
701
 
702
+ #: php/qmn_options_option_tab.php:292
703
+ msgid ""
704
+ "Dynamically add class for incorrect/correct answer after user selects answer? "
705
+ "(Currently only works on multiple choice)"
706
+ msgstr ""
707
 
708
+ #: php/qmn_options_preview_tab.php:13
709
+ msgid "Preview"
710
+ msgstr "Preview"
711
 
712
+ #: php/qmn_options_questions_tab.php:13
713
  msgid "Questions"
714
  msgstr "Spørgsmål"
715
 
716
+ #: php/qmn_options_questions_tab.php:28
717
  msgid "Answer"
718
  msgstr "Svar:"
719
 
720
+ #: php/qmn_options_questions_tab.php:126
721
  msgid "The question has been updated successfully."
722
  msgstr "Spørgsmålet er blevet opdateret."
723
 
724
+ #: php/qmn_options_questions_tab.php:153
725
  msgid "The question has been deleted successfully."
726
  msgstr "Dine resultater er blevet slettet."
727
 
728
+ #: php/qmn_options_questions_tab.php:237
729
  msgid "The question has been duplicated successfully."
730
  msgstr "Din Spørgsmål er blevet dublikeret."
731
 
732
+ #: php/qmn_options_questions_tab.php:330
733
  msgid "The question has been created successfully."
734
  msgstr "Spørgsmålet er blevet oprettet."
735
 
736
+ #: php/qmn_options_questions_tab.php:448
737
  msgid "Add Question"
738
  msgstr "Nyt spørgsmål"
739
 
740
+ #: php/qmn_options_questions_tab.php:457
741
  #, php-format
742
  msgid "One question"
743
  msgid_plural "%s questions"
744
  msgstr[0] "Et spørgsmål"
745
  msgstr[1] "%s spørgsmål"
746
 
747
+ #: php/qmn_options_questions_tab.php:463 php/qmn_options_questions_tab.php:471
748
+ #: php/qmn_options_questions_tab.php:596
 
749
  msgid "Question Order"
750
  msgstr "Rækkefølge spørgsmål"
751
 
752
+ #: php/qmn_options_questions_tab.php:464 php/qmn_options_questions_tab.php:472
753
+ #: php/qmn_options_questions_tab.php:575
 
754
  msgid "Question Type"
755
  msgstr "Spørgsmål type"
756
 
757
+ #: php/qmn_options_questions_tab.php:465 php/qmn_options_questions_tab.php:473
758
+ #: php/qmn_options_questions_tab.php:609
 
759
  msgid "Category"
760
  msgstr "Kategori"
761
 
762
+ #: php/qmn_options_questions_tab.php:466 php/qmn_options_questions_tab.php:474
 
763
  msgid "Question"
764
  msgstr "Spørgsmål"
765
 
766
+ #: php/qmn_options_questions_tab.php:548
767
+ msgid ""
768
+ "For fill in the blank types, use %BLANK% to represent where to put the text "
769
+ "box in your text."
770
  msgstr ""
771
 
772
+ #: php/qmn_options_questions_tab.php:553
773
  msgid "Answers"
774
  msgstr "Svar"
775
 
776
+ #: php/qmn_options_questions_tab.php:554
777
  msgid "Points Worth"
778
  msgstr "Værdi af point"
779
 
780
+ #: php/qmn_options_questions_tab.php:555
781
  msgid "Correct Answer"
782
  msgstr "Korrekt svar"
783
 
784
+ #: php/qmn_options_questions_tab.php:560
785
  msgid "Add New Answer!"
786
  msgstr "Tilføj nyt svar!"
787
 
788
+ #: php/qmn_options_questions_tab.php:565
789
  msgid "Correct Answer Info"
790
  msgstr "Info for korrekt svar"
791
 
792
+ #: php/qmn_options_questions_tab.php:570 php/qmn_quiz.php:477
793
+ msgid "Hint"
794
+ msgstr "Hint"
795
+
796
+ #: php/qmn_options_questions_tab.php:587
797
  msgid "Comment Field"
798
  msgstr "KOmmentar felt"
799
 
800
+ #: php/qmn_options_questions_tab.php:589
801
  msgid "Small Text Field"
802
  msgstr "Lille tekst felt"
803
 
804
+ #: php/qmn_options_questions_tab.php:590
805
  msgid "Large Text Field"
806
  msgstr "Stort tekst felt"
807
 
808
+ #: php/qmn_options_questions_tab.php:591
809
  msgid "None"
810
  msgstr "Ingen"
811
 
812
+ #: php/qmn_options_questions_tab.php:601
813
  msgid "Required?"
814
  msgstr "Obligatorisk"
815
 
816
+ #: php/qmn_options_questions_tab.php:632
817
  msgid "Create Question"
818
  msgstr "Opret spørgsmål"
819
 
820
+ #: php/qmn_options_questions_tab.php:637
821
  msgid "Are you sure you want to delete this question?"
822
  msgstr "Er du sikker på du vil slette dette spørgsmål"
823
 
824
+ #: php/qmn_options_questions_tab.php:642
825
  msgid "Delete Question"
826
  msgstr "Slet spørgsmål"
827
 
828
+ #: php/qmn_options_questions_tab.php:647
829
  msgid "Are you sure you want to duplicate this question?"
830
  msgstr "Er du sikker på du vil kopiere dette spørgsmål?"
831
 
832
+ #: php/qmn_options_questions_tab.php:652
833
  msgid "Duplicate Question"
834
  msgstr "Kopieret spørgsmål"
835
 
836
+ #: php/qmn_options_results_page_tab.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
837
  msgid "Results Pages"
838
  msgstr "Resultat sider"
839
 
840
+ #: php/qmn_options_results_page_tab.php:55
841
  msgid "The results page has been added successfully."
842
  msgstr "Resultat siden er tilføjet"
843
 
844
+ #: php/qmn_options_results_page_tab.php:95
845
  msgid "The results page has been saved successfully."
846
  msgstr "Resultatsiden er gemt"
847
 
848
+ #: php/qmn_options_results_page_tab.php:187
849
+ msgid "The amount of time user spent taking quiz in minutes"
850
+ msgstr ""
851
+
852
+ #: php/qmn_options_results_page_tab.php:190
853
+ msgid "The amount of time user spent taking quiz in seconds"
854
+ msgstr ""
855
+
856
+ #: php/qmn_options_results_page_tab.php:208
857
  msgid "Displays button to share on Facebook."
858
  msgstr ""
859
 
860
+ #: php/qmn_options_results_page_tab.php:211
861
  msgid "Displays button to share on Twitter."
862
  msgstr ""
863
 
864
+ #: php/qmn_options_results_page_tab.php:216
865
+ #: php/qmn_options_results_page_tab.php:297
866
  msgid "Save Results Pages"
867
  msgstr "Gem resultatsider"
868
 
869
+ #: php/qmn_options_results_page_tab.php:217
870
+ #: php/qmn_options_results_page_tab.php:302
871
  msgid "Add New Results Page"
872
+ msgstr "Tilføj ny resultat side"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
873
 
874
+ #: php/qmn_options_results_page_tab.php:225
875
+ #: php/qmn_options_results_page_tab.php:289
876
+ msgid "Results Page Shown"
877
+ msgstr "Resultat side vist"
878
 
879
+ #: php/qmn_options_results_page_tab.php:226
880
+ #: php/qmn_options_results_page_tab.php:290
881
+ msgid "Redirect URL (Beta)"
882
  msgstr ""
883
 
884
+ #: php/qmn_options_results_page_tab.php:264 php/qmn_quiz_admin.php:283
885
+ msgid "Delete"
886
+ msgstr "Slet"
887
 
888
+ #: php/qmn_options_results_page_tab.php:264
889
+ msgid "Are you sure?"
890
+ msgstr "Er du sikker?"
891
 
892
+ #: php/qmn_options_style_tab.php:13
893
  msgid "Style"
894
  msgstr "Style"
895
 
896
+ #: php/qmn_options_style_tab.php:39
897
  msgid "The style has been saved successfully."
898
  msgstr "Denne style er gemt"
899
 
900
+ #: php/qmn_options_style_tab.php:78
901
  msgid "Quiz Styles"
902
  msgstr "Quiz styles"
903
 
904
+ #: php/qmn_options_style_tab.php:79
905
  msgid "Choose your style:"
906
  msgstr "Vælg din style"
907
 
908
+ #: php/qmn_options_style_tab.php:101
909
  msgid "Custom"
910
  msgstr "Custom"
911
 
912
+ #: php/qmn_options_style_tab.php:107 php/qmn_options_style_tab.php:119
 
913
  msgid "Save Quiz Style"
914
  msgstr "Gem quiz style"
915
 
916
+ #: php/qmn_options_style_tab.php:109
917
  msgid "Custom Style CSS"
918
  msgstr "Custom style CSS"
919
 
920
+ #: php/qmn_options_style_tab.php:110
921
+ msgid ""
922
+ "For detailed help and guidance along with a list of different classes used in "
923
+ "this plugin, please visit the following link:"
924
+ msgstr ""
925
+ "For detaljeret hjælp og instruktion sammen med en liste over de forskellige "
926
+ "klasser benyttet i dette plugin, besøg følgende link:"
927
 
928
+ #: php/qmn_options_text_tab.php:13
929
+ msgid "Text"
930
+ msgstr "Tekst"
931
 
932
+ #: php/qmn_options_text_tab.php:55
933
+ msgid "The templates has been updated successfully."
934
+ msgstr "Skabelonerne er blevet opdateret"
935
 
936
+ #: php/qmn_options_text_tab.php:86 php/qmn_quiz.php:1259
937
+ msgid "Previous"
938
+ msgstr "Tidligere"
939
 
940
+ #: php/qmn_options_text_tab.php:187 php/qmn_options_text_tab.php:347
941
+ msgid "Save Templates"
942
+ msgstr "Gem skabeloner"
943
 
944
+ #: php/qmn_options_text_tab.php:193
945
+ msgid "Message Templates"
946
+ msgstr "Besked skabeloner"
947
 
948
+ #: php/qmn_options_text_tab.php:197
949
+ msgid "Message Displayed Before Quiz"
950
+ msgstr "Besked vist før Quiz"
951
 
952
+ #: php/qmn_options_text_tab.php:207
953
+ msgid "Message Displayed Before Comments Box If Enabled"
954
+ msgstr "Besked vist før kommentar boksen hvis aktiv"
955
 
956
+ #: php/qmn_options_text_tab.php:217
957
+ msgid "Message Displayed At End Of Quiz (Leave Blank To Omit Text Section)"
958
+ msgstr ""
959
+ "Besked vist ved slutningen af Quizzen (Vis blank for at undlade tekst sektion)"
960
 
961
+ #: php/qmn_options_text_tab.php:227
962
+ msgid "Message Displayed If User Has Tried Quiz Too Many Times"
963
+ msgstr "Besked vist hvis brugeren har deltaget for mange gange"
 
 
964
 
965
+ #: php/qmn_options_text_tab.php:237
966
+ msgid ""
967
+ "Message Displayed If User Is Not Logged In And Quiz Requires Users To Be "
968
+ "Logged In"
969
+ msgstr ""
970
+ "Besked vist, hvis brugeren skal være logget ind for at besvare denne Quiz"
971
 
972
+ #: php/qmn_options_text_tab.php:247
973
+ msgid "Message Displayed If Date Is Outside Scheduled Timeframe"
974
+ msgstr "Besked hvis dato er udenfor planlagt Tidsramme"
975
 
976
+ #: php/qmn_options_text_tab.php:257
977
+ msgid "Message Displayed If The Limit Of Total Entries Has Been Reached"
978
+ msgstr "Besked Hvis grænsen på indtastninger er nået"
979
 
980
+ #: php/qmn_options_text_tab.php:267
981
+ msgid "%QUESTIONS_ANSWERS% Text"
982
+ msgstr "% QUESTIONS_ANSWERS% Tekst"
983
 
984
+ #: php/qmn_options_text_tab.php:280
985
+ msgid "Twitter Sharing Text"
986
+ msgstr "Twitter Deling tekst"
987
 
988
+ #: php/qmn_options_text_tab.php:297
989
+ msgid "Facebook Sharing Text"
990
+ msgstr "Facebook Deling tekst"
991
 
992
+ #: php/qmn_options_text_tab.php:312
993
+ msgid "Other Templates"
994
+ msgstr "Andre skabeloner"
995
 
996
+ #: php/qmn_options_text_tab.php:315
997
+ msgid "Text for submit button"
998
+ msgstr "Tekst for send-knappen"
999
 
1000
+ #: php/qmn_options_text_tab.php:319
1001
+ msgid "Text for name field"
1002
+ msgstr "Tekst til navnefeltet"
1003
+
1004
+ #: php/qmn_options_text_tab.php:323
1005
+ msgid "Text for business field"
1006
+ msgstr "Tekst til firma felt"
1007
+
1008
+ #: php/qmn_options_text_tab.php:327
1009
+ msgid "Text for email field"
1010
+ msgstr "Tekst til e-mail-feltet"
1011
+
1012
+ #: php/qmn_options_text_tab.php:331
1013
+ msgid "Text for phone number field"
1014
+ msgstr "Tekst til telefon nummer felt"
1015
+
1016
+ #: php/qmn_options_text_tab.php:335
1017
+ msgid "Text for comments field"
1018
+ msgstr "Tekst for kommentarer felt"
1019
+
1020
+ #: php/qmn_options_text_tab.php:339
1021
+ msgid "Text for previous button"
1022
+ msgstr "Tekst til forrige knap"
1023
+
1024
+ #: php/qmn_options_text_tab.php:343
1025
+ msgid "Text for next button"
1026
+ msgstr "Tekst til næste knap"
1027
+
1028
+ #: php/qmn_options_tools_tab.php:37
1029
+ msgid "The stats has been reset successfully."
1030
+ msgstr "De statistikker er blevet nulstillet korrekt."
1031
+
1032
+ #: php/qmn_options_tools_tab.php:89
1033
+ msgid ""
1034
+ "Use this button to reset all the stats collected for this quiz (Quiz Views "
1035
+ "and Times Quiz Has Been Taken)."
1036
+ msgstr ""
1037
+ "Brug denne knap til at nulstille alle indsamlet til denne quiz statistik "
1038
+ "(Quiz Views og Times Quiz er taget)."
1039
 
1040
+ #: php/qmn_options_tools_tab.php:90
1041
+ msgid "Reset Quiz Views And Taken Stats"
1042
+ msgstr "Nulstil Quiz Views og oprettede statistikker"
1043
+
1044
+ #: php/qmn_options_tools_tab.php:101
1045
+ msgid ""
1046
+ "Are you sure you want to reset the stats to 0? All views and taken stats for "
1047
+ "this quiz will be reset. This is permanent and cannot be undone."
1048
+ msgstr ""
1049
+ "Er du sikker på du vil nulstille statistik til 0? Alle synspunkter og taget "
1050
+ "statistik for denne quiz vil blive nulstillet. Det er permanent og kan ikke "
1051
+ "fortrydes."
1052
+
1053
+ #: php/qmn_options_tools_tab.php:105
1054
+ msgid "Reset All Stats For Quiz"
1055
+ msgstr "Nulstil alle Stats for Quiz"
1056
+
1057
+ #: php/qmn_question_types.php:14
1058
  msgid "Multiple Choice"
1059
  msgstr "Flere valgmuligheder"
1060
 
1061
+ #: php/qmn_question_types.php:108
1062
  msgid "Horizontal Multiple Choice"
1063
  msgstr "Vandret Multiple Choice"
1064
 
1065
+ #: php/qmn_question_types.php:201
1066
  msgid "Drop Down"
1067
  msgstr "Drop Down"
1068
 
1069
+ #: php/qmn_question_types.php:291
1070
  msgid "Small Open Answer"
1071
  msgstr "Kort tekst svar"
1072
 
1073
+ #: php/qmn_question_types.php:365
1074
  msgid "Multiple Response"
1075
  msgstr "Multiple svar"
1076
 
1077
+ #: php/qmn_question_types.php:464
1078
  msgid "Large Open Answer"
1079
  msgstr "Stor åbent svar"
1080
 
1081
+ #: php/qmn_question_types.php:538
1082
  msgid "Text Block"
1083
  msgstr "tekstblok"
1084
 
1085
+ #: php/qmn_question_types.php:573
1086
  msgid "Number"
1087
  msgstr "Tal"
1088
 
1089
+ #: php/qmn_question_types.php:649
1090
  msgid "Accept"
1091
  msgstr "Accepter"
1092
 
1093
+ #: php/qmn_question_types.php:684
1094
  msgid "Captcha"
1095
  msgstr "CAPTCHA"
1096
 
1097
+ #: php/qmn_question_types.php:742
1098
  msgid "Horizontal Multiple Response"
1099
  msgstr "Vandret Multiple svar"
1100
 
1101
+ #: php/qmn_question_types.php:843
1102
  msgid "Fill In The Blank"
1103
  msgstr ""
1104
 
1105
+ #: php/qmn_quiz.php:350
1106
+ msgid "Not a valid e-mail address!"
1107
+ msgstr "Ikke en gyldig e-mail-adresse!"
1108
+
1109
+ #: php/qmn_quiz.php:351
1110
+ msgid "This field must be a number!"
1111
+ msgstr "Dette felt skal være et tal!"
1112
+
1113
+ #: php/qmn_quiz.php:352
1114
+ msgid "The entered text is not correct!"
1115
+ msgstr "Den indtastede tekst er ikke korrekt!"
1116
+
1117
+ #: php/qmn_quiz.php:353
1118
+ msgid "Please complete all required fields!"
1119
+ msgstr "Venligst udfyld alle obligatoriske felter"
1120
 
1121
+ #: php/qmn_quiz_admin.php:196
1122
  msgid "Add New"
1123
  msgstr "Tilføj ny"
1124
 
1125
+ #: php/qmn_quiz_admin.php:214
1126
  #, php-format
1127
  msgid "One quiz"
1128
  msgid_plural "%s quizzes"
1129
  msgstr[0] "En quiz"
1130
  msgstr[1] "%s quizzer"
1131
 
1132
+ #: php/qmn_quiz_admin.php:259 php/qmn_quiz_admin.php:310
1133
+ #: php/qmn_quiz_admin.php:378 php/qmn_results.php:216
1134
+ msgid "Quiz Name"
1135
+ msgstr "Quiz navn"
1136
+
1137
+ #: php/qmn_quiz_admin.php:260 php/qmn_quiz_admin.php:311
1138
  msgid "URL"
1139
  msgstr "URL"
1140
 
1141
+ #: php/qmn_quiz_admin.php:261 php/qmn_quiz_admin.php:312
 
1142
  msgid "Quiz Shortcode"
1143
  msgstr "Quiz Shortcode"
1144
 
1145
+ #: php/qmn_quiz_admin.php:262 php/qmn_quiz_admin.php:313
 
1146
  msgid "Leaderboard Shortcode"
1147
  msgstr "Lederboard Shortcode"
1148
 
1149
+ #: php/qmn_quiz_admin.php:263 php/qmn_quiz_admin.php:314
 
1150
  msgid "Quiz Views"
1151
  msgstr "Quiz set"
1152
 
1153
+ #: php/qmn_quiz_admin.php:264 php/qmn_quiz_admin.php:315
 
1154
  msgid "Quiz Taken"
1155
  msgstr "Quiz gennemført"
1156
 
1157
+ #: php/qmn_quiz_admin.php:265 php/qmn_quiz_admin.php:316
 
1158
  msgid "Last Modified"
1159
  msgstr "Sidst ændret"
1160
 
1161
+ #: php/qmn_quiz_admin.php:278
1162
  msgid "Edit Name"
1163
  msgstr "Ret navn"
1164
 
1165
+ #: php/qmn_quiz_admin.php:280
1166
  msgid "Edit"
1167
  msgstr "Ret"
1168
 
1169
+ #: php/qmn_quiz_admin.php:281 php/qmn_results_details.php:135
1170
+ msgid "Results"
1171
+ msgstr "Resultater"
1172
+
1173
+ #: php/qmn_quiz_admin.php:282 php/qmn_quiz_admin.php:411
1174
  msgid "Duplicate"
1175
  msgstr "Kopier"
1176
 
1177
+ #: php/qmn_quiz_admin.php:373
1178
  msgid "Create New Quiz"
1179
  msgstr "Opret ny quiz"
1180
 
1181
+ #: php/qmn_quiz_admin.php:387
1182
  msgid "Create Quiz"
1183
  msgstr "Opret quiz"
1184
 
1185
+ #: php/qmn_quiz_admin.php:393
1186
  msgid "Quiz Name:"
1187
  msgstr "Quiz navn:"
1188
 
1189
+ #: php/qmn_quiz_admin.php:404
1190
  msgid "Duplicate this quiz?"
1191
  msgstr "Kopier quiz"
1192
 
1193
+ #: php/qmn_quiz_admin.php:406
1194
  msgid "Duplicate questions with quiz"
1195
  msgstr "Kopier spørgsmål"
1196
 
1197
+ #: php/qmn_quiz_admin.php:408
1198
  msgid "Name Of New Quiz:"
1199
  msgstr "Navn på ny Quiz:"
1200
 
1201
+ #: php/qmn_quiz_admin.php:417
1202
  msgid "Are you sure you want to delete this quiz?"
1203
  msgstr "Er du sikker på at du vil slette denne quiz?"
1204
 
1205
+ #: php/qmn_quiz_admin.php:422
1206
  msgid "Delete Quiz"
1207
  msgstr "Slet Quiz"
1208
 
1209
+ #: php/qmn_quiz_creator.php:372
1210
+ msgid ""
1211
+ "Your new quiz has been created successfully. To begin editing your quiz, "
1212
+ "click the Edit link on the new quiz."
1213
+ msgstr ""
1214
+ "Din nye quiz er blevet oprettet. For at edigere din quiz, klik på linket "
1215
+ "Rediger ved den nye quiz"
1216
+
1217
+ #: php/qmn_quiz_creator.php:438
1218
+ msgid "Your quiz has been deleted successfully."
1219
+ msgstr "Din Quiz er blevet slettet."
1220
+
1221
+ #: php/qmn_quiz_creator.php:480
1222
+ msgid "Your quiz name has been updated successfully."
1223
+ msgstr "Dit quiz navn er blevet opdateret."
1224
+
1225
+ #: php/qmn_quiz_creator.php:637
1226
+ msgid "Your quiz has been duplicated successfully."
1227
+ msgstr "Din Quiz er blevet dublikeret."
1228
+
1229
+ #: php/qmn_quiz_options.php:56
1230
+ #, php-format
1231
+ msgid "Quiz Settings For %s"
1232
+ msgstr "Quiz indstillinger for %s"
1233
+
1234
+ #: php/qmn_quiz_options.php:96
1235
+ msgid ""
1236
+ "Please go to the quizzes page and click on the Edit link from the quiz you "
1237
+ "wish to edit."
1238
+ msgstr ""
1239
+ "Go til quiz siden og klik på rediger linket på den quiz du ønsker at redigere"
1240
+
1241
+ #: php/qmn_results.php:30
1242
+ msgid "Your results has been deleted successfully."
1243
+ msgstr "Dine resultater er blevet slettet."
1244
+
1245
+ #: php/qmn_results.php:168
1246
+ #, php-format
1247
+ msgid "One result"
1248
+ msgid_plural "%s results"
1249
+ msgstr[0] "Et resultat"
1250
+ msgstr[1] "%s resultater"
1251
+
1252
+ #: php/qmn_results.php:215
1253
+ msgid "Actions"
1254
+ msgstr "Handlinger"
1255
+
1256
+ #: php/qmn_results.php:217
1257
+ msgid "Score"
1258
+ msgstr "Skore"
1259
+
1260
+ #: php/qmn_results.php:218
1261
+ msgid "Time To Complete"
1262
+ msgstr "Tid til at færdiggøre"
1263
+
1264
+ #: php/qmn_results.php:219
1265
+ msgid "Name"
1266
+ msgstr "Navn"
1267
+
1268
+ #: php/qmn_results.php:220
1269
+ msgid "Business"
1270
+ msgstr "Forretning"
1271
+
1272
+ #: php/qmn_results.php:221
1273
+ msgid "Email"
1274
+ msgstr "Email"
1275
+
1276
+ #: php/qmn_results.php:222
1277
+ msgid "Phone"
1278
+ msgstr "Telefon"
1279
+
1280
+ #: php/qmn_results.php:223
1281
+ msgid "Time Taken"
1282
+ msgstr "Forbrugt tid"
1283
+
1284
+ #: php/qmn_results.php:282
1285
+ msgid "Are you sure you want to delete these results?"
1286
+ msgstr "Er du sikker på at du vil slette disse resultater ?"
1287
+
1288
+ #: php/qmn_results.php:287
1289
+ msgid "Delete Results"
1290
+ msgstr "Slet resultater"
1291
+
1292
+ #: php/qmn_results_details.php:221
1293
+ msgid "Create Certificate"
1294
+ msgstr "Opret certificat"
1295
+
1296
+ #: php/qmn_results_details.php:226
1297
+ msgid "Download Certificate Here"
1298
+ msgstr "Download certificat her"
1299
+
1300
+ #: php/qmn_results_details.php:240
1301
+ msgid "Certificate"
1302
+ msgstr "Certifikat"
1303
+
1304
+ #: php/qmn_tools.php:107
1305
+ msgid "There has been an error! Please try again."
1306
+ msgstr "Der har været en fejl! Forsøg igen"
1307
+
1308
+ #: php/qmn_tools.php:125
1309
+ msgid "Quiz Has Been Restored!"
1310
+ msgstr "Den pågældende quiz er gendannet"
1311
+
1312
+ #: php/qmn_tools.php:130
1313
+ msgid ""
1314
+ "Choose a quiz in the drop down and then click the button to restore a deleted "
1315
+ "quiz."
1316
+ msgstr ""
1317
+ "Vælg en quiz i drop Down boksen og klik for at gendanne en slettet quiz."
1318
+
1319
+ #: php/qmn_tools.php:140
1320
+ msgid "Restore Quiz"
1321
+ msgstr "Gendan Quiz"
1322
+
1323
+ #: php/qmn_tools.php:176 php/qmn_tools.php:192
1324
+ #, php-format
1325
+ msgid "Previous %s Audits"
1326
+ msgstr "Sidste %s Audits"
1327
+
1328
+ #: php/qmn_tools.php:179 php/qmn_tools.php:186
1329
+ #, php-format
1330
+ msgid "Next %s Audits"
1331
+ msgstr "Næste %s Audits"
1332
+
1333
+ #: php/qmn_tools.php:199
1334
+ msgid "User"
1335
+ msgstr "Bruger"
1336
+
1337
+ #: php/qmn_tools.php:200
1338
+ msgid "Action"
1339
+ msgstr "Aktion"
1340
+
1341
+ #: php/qmn_tools.php:201
1342
+ msgid "Time"
1343
+ msgstr "Klokken"
1344
+
1345
+ #: php/qmn_usage_tracking.php:193
1346
+ msgid ""
1347
+ "Allow Quiz Master Next to anonymously track this plugin's usage and help us "
1348
+ "make this plugin better? No sensitive data is tracked."
1349
+ msgstr ""
1350
+ "Tillad Quiz Master Next at følge brugen af dette plugin for at forbedre "
1351
+ "kvaliteten - ingen følsomme data overvåges."
1352
+
1353
+ #: php/qmn_usage_tracking.php:194
1354
+ msgid "Allow"
1355
+ msgstr "Tillad"
1356
+
1357
+ #: php/qmn_usage_tracking.php:195
1358
+ msgid "Do not allow"
1359
+ msgstr "Tillad ikke"
1360
+
1361
+ #: php/qmn_widgets.php:14
1362
  msgid "Quiz Master Next Leaderboard Widget"
1363
  msgstr "Quiz Master Next Styrings Widget"
1364
 
1365
+ #: php/qmn_widgets.php:29
1366
  msgid "Widget Title"
1367
  msgstr "Widget titel"
1368
 
1369
+ #: php/qmn_widgets.php:33
1370
  msgid "Quiz ID"
1371
  msgstr "Quiz ID"
1372
 
1373
+ #~ msgid "The amount of time user spent of quiz"
1374
+ #~ msgstr "Tid brugeren brugte på undersøgelsen"
1375
+
1376
  #~ msgid ""
1377
  #~ "Required currently only works on open answer, number, accept, and captcha "
1378
  #~ "question types"
1379
  #~ msgstr ""
1380
+ #~ "Obligatorisk virker på nuværende tidspunkt kun på åbne svar, antal, accept "
1381
+ #~ "og captcha spørgsmål"
1382
 
1383
  #~ msgid "Edit Question"
1384
  #~ msgstr "Ret spørgsmål"
languages/quiz-master-next-es_ES.mo CHANGED
Binary file
languages/quiz-master-next-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Quiz Master Next\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-04-20 01:12-0500\n"
6
- "PO-Revision-Date: 2015-04-20 01:13-0500\n"
7
  "Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
8
  "Language-Team: My Local Webstop <fpcorso@mylocalwebstop.com>\n"
9
  "Language: es_ES\n"
@@ -13,13 +13,17 @@ msgstr ""
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;__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
 
 
 
 
17
  "X-Poedit-Basepath: ../\n"
18
- "X-Generator: Poedit 1.7.3\n"
19
  "X-Loco-Target-Locale: es_ES\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
- #: mlw_quizmaster2.php:217
23
  msgid "Quizzes"
24
  msgstr "Cuestionarios"
25
 
@@ -27,7 +31,8 @@ msgstr "Cuestionarios"
27
  msgid "Quiz Settings"
28
  msgstr "Configuración de la encuesta"
29
 
30
- #: mlw_quizmaster2.php:219
 
31
  msgid "Quiz Results"
32
  msgstr "Resultados de la encuesta."
33
 
@@ -39,7 +44,8 @@ msgstr "Detalle de resultados del cuestionario"
39
  msgid "Settings"
40
  msgstr "Configuración"
41
 
42
- #: mlw_quizmaster2.php:222
 
43
  msgid "Tools"
44
  msgstr "Herramientas"
45
 
@@ -55,1226 +61,1353 @@ msgstr "Configuración de Addon"
55
  msgid "Help"
56
  msgstr "Ayuda"
57
 
58
- #: mlw_quizmaster2.php:228
59
- #: mlw_quizmaster2.php:229
60
  msgid "QMN About"
61
  msgstr "Sobre QMN"
62
 
63
- #: php/qmn_options_email_tab.php:6
64
- msgid "Emails"
65
- msgstr "Emails"
66
 
67
- #: php/qmn_options_email_tab.php:42
68
- #: php/qmn_options_email_tab.php:101
69
- msgid "The email has been added successfully."
70
- msgstr "El email ha sido añadido correctamente"
71
 
72
- #: php/qmn_options_email_tab.php:55
73
- #: php/qmn_options_email_tab.php:114
74
- #: php/qmn_options_email_tab.php:178
75
- #: php/qmn_quiz_creator.php:382
76
- #: php/qmn_quiz_creator.php:448
77
- #: php/qmn_quiz_creator.php:490
78
- #: php/qmn_quiz_creator.php:648
79
- #: php/qmn_quiz_creator.php:713
80
- #: php/qmn_options_leaderboard_tab.php:38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  #, php-format
82
- msgid "There has been an error in this action. Please share this with the developer. Error Code: %s"
 
 
83
  msgstr ""
84
- "Existe un error en esta acción. Por favor comparta esto con el desarrollador. El código de error es: \n"
 
85
  "%s"
86
 
87
- #: php/qmn_options_email_tab.php:73
88
- #: php/qmn_options_email_tab.php:91
 
 
 
 
89
  msgid "Enter text here"
90
  msgstr "Escriba el texto aquí"
91
 
92
- #: php/qmn_options_email_tab.php:165
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
  msgid "The email has been updated successfully."
94
  msgstr "El email ha sido actualizado correctamente"
95
 
96
- #: php/qmn_options_email_tab.php:232
97
- #: php/qmn_options_leaderboard_tab.php:49
98
  msgid "Template Variables"
99
  msgstr "Variables de la plantilla"
100
 
101
- #: php/qmn_options_email_tab.php:235
 
102
  msgid "Score for the quiz when using points"
103
  msgstr "Puntuación de la encuesta cuando se usan puntos"
104
 
105
- #: php/qmn_options_email_tab.php:238
 
106
  msgid "The average amount of points user had per question"
107
  msgstr "Media de puntos por usuario por pregunta"
108
 
109
- #: php/qmn_options_email_tab.php:241
 
110
  msgid "The number of correct answers the user had"
111
  msgstr "Número de respuestas correctas que obtuvo el usuario"
112
 
113
- #: php/qmn_options_email_tab.php:244
 
114
  msgid "The total number of questions in the quiz"
115
  msgstr "Número de preguntas totales en la encuesta"
116
 
117
- #: php/qmn_options_email_tab.php:247
 
118
  msgid "Score for the quiz when using correct answers"
119
  msgstr "Puntuación de la encuesta basada en las respuestas correctas"
120
 
121
- #: php/qmn_options_email_tab.php:250
 
122
  msgid "The name the user entered before the quiz"
123
  msgstr "Nombre que el usuario introdujo antes de la encuesta"
124
 
125
- #: php/qmn_options_email_tab.php:253
 
126
  msgid "The business the user entered before the quiz"
127
  msgstr "El asunto que el usuario introdujo antes de la encuesta."
128
 
129
- #: php/qmn_options_email_tab.php:256
 
130
  msgid "The phone number the user entered before the quiz"
131
  msgstr "El número de teléfono que el usuario introdujo antes de la encuesta"
132
 
133
- #: php/qmn_options_email_tab.php:259
 
134
  msgid "The email the user entered before the quiz"
135
  msgstr "El email que el usuario introdujo antes de la encuesta"
136
 
137
- #: php/qmn_options_email_tab.php:262
138
- #: php/qmn_options_leaderboard_tab.php:77
139
  msgid "The name of the quiz"
140
  msgstr "El nombre de la encuesta"
141
 
142
- #: php/qmn_options_email_tab.php:265
143
- msgid "Shows the question, the answer the user provided, and the correct answer"
 
 
144
  msgstr "Muestra la pregunta, la respuesta del usuario y la respuesta correcta"
145
 
146
- #: php/qmn_options_email_tab.php:268
 
147
  msgid "The comments the user entered into comment box if enabled"
148
- msgstr "Los comentarios que el usuario introdujo en la caja de comentarios si esta está habilitada"
 
 
 
 
 
 
149
 
150
- #: php/qmn_options_email_tab.php:271
151
- msgid "The amount of time user spent of quiz"
152
- msgstr "Tiempo empleado por el usuario en responder el cuestionario"
153
 
154
- #: php/qmn_options_email_tab.php:274
 
155
  msgid "The link to the certificate after completing the quiz"
156
  msgstr "El enlace hacia el certificado después de completar la encuesta"
157
 
158
- #: php/qmn_options_email_tab.php:277
 
159
  msgid "The amount of points a specific category earned."
160
  msgstr "El total de puntos obtenidos en una categoría específica"
161
 
162
- #: php/qmn_options_email_tab.php:280
 
163
  msgid "The score a specific category earned."
164
  msgstr "La puntuación obtenida en una categoría específica."
165
 
166
- #: php/qmn_options_email_tab.php:283
 
167
  msgid "The average points from all categories."
168
  msgstr "La media de puntos contando todas las categorías."
169
 
170
- #: php/qmn_options_email_tab.php:286
 
171
  msgid "The average score from all categories."
172
  msgstr "La puntuación media contando todas las categorías."
173
 
174
- #: php/qmn_options_email_tab.php:289
175
  msgid "The question that the user answered"
176
  msgstr "La pregunta que el usuario respondió"
177
 
178
- #: php/qmn_options_email_tab.php:292
179
  msgid "The answer the user gave for the question"
180
  msgstr "La respuesta del usuario a la pregunta"
181
 
182
- #: php/qmn_options_email_tab.php:295
183
  msgid "The correct answer for the question"
184
  msgstr "La contestación correcta a la pregunta"
185
 
186
- #: php/qmn_options_email_tab.php:298
187
  msgid "The comments the user provided in the comment field for the question"
188
- msgstr "Los comentarios que el usuario indicó en el campo de comentarios de la pregunta."
 
 
189
 
190
- #: php/qmn_options_email_tab.php:301
191
  msgid "Reason why the correct answer is the correct answer"
192
  msgstr "La razón por qué la respuesta correcta es la respuesta correcta"
193
 
194
- #: php/qmn_options_email_tab.php:304
195
  msgid "The Current Date"
196
  msgstr "La fecha actual"
197
 
198
- #: php/qmn_options_email_tab.php:319
199
- #: php/qmn_options_email_tab.php:518
200
  msgid "Save Email Templates And Settings"
201
  msgstr "Guardar email, plantillas y preferencias"
202
 
203
- #: php/qmn_options_email_tab.php:323
204
  msgid "Send user email upon completion?"
205
  msgstr "¿Enviar un email al usuario al finalizar?"
206
 
207
- #: php/qmn_options_email_tab.php:325
208
- #: php/qmn_options_email_tab.php:332
209
- msgid "Yes"
210
- msgstr "sí"
211
-
212
- #: php/qmn_options_email_tab.php:326
213
- #: php/qmn_options_email_tab.php:333
214
- msgid "No"
215
- msgstr "No"
216
-
217
- #: php/qmn_options_email_tab.php:330
218
  msgid "Send admin email upon completion?"
219
  msgstr "¿Enviar un email al administrador al finalizar?"
220
 
221
- #: php/qmn_options_email_tab.php:337
222
- msgid "What emails should we send the admin email to? Separate emails with a comma."
223
- msgstr "¿Qué emails deberíamos enviar al administrador?. Separar los emails con una coma."
 
 
 
224
 
225
- #: php/qmn_options_email_tab.php:341
226
  msgid "What is the From Name for the email sent to users and admin?"
227
- msgstr "¿Cual es el nombre desde el cual se enviarán el email a los usuarios y administrador?"
 
 
228
 
229
- #: php/qmn_options_email_tab.php:347
230
  msgid "Email Sent To User"
231
  msgstr "Email enviado al usuario"
232
 
233
- #: php/qmn_options_email_tab.php:348
234
- #: php/qmn_options_email_tab.php:426
235
  msgid "Add New User Email"
236
  msgstr "Añadir un nuevo email de usuario "
237
 
238
- #: php/qmn_options_email_tab.php:353
239
- #: php/qmn_options_email_tab.php:419
240
- #: php/qmn_options_email_tab.php:440
241
- #: php/qmn_options_email_tab.php:506
242
  msgid "Score Greater Than Or Equal To"
243
  msgstr "Puntuación 'mayor que' o 'igual que'"
244
 
245
- #: php/qmn_options_email_tab.php:354
246
- #: php/qmn_options_email_tab.php:420
247
- #: php/qmn_options_email_tab.php:441
248
- #: php/qmn_options_email_tab.php:507
249
  msgid "Score Less Than Or Equal To"
250
  msgstr "Puntuación 'menor que' o 'igual que'"
251
 
252
- #: php/qmn_options_email_tab.php:355
253
- #: php/qmn_options_email_tab.php:421
254
- #: php/qmn_options_email_tab.php:442
255
- #: php/qmn_options_email_tab.php:508
256
  msgid "Subject"
257
  msgstr "Asunto"
258
 
259
- #: php/qmn_options_email_tab.php:356
260
- #: php/qmn_options_email_tab.php:422
261
- #: php/qmn_options_email_tab.php:443
262
- #: php/qmn_options_email_tab.php:509
263
  msgid "Email To Send"
264
  msgstr "Email a enviar"
265
 
266
- #: php/qmn_options_email_tab.php:434
267
  msgid "Email Sent To Admin"
268
  msgstr "Email enviado a administrador"
269
 
270
- #: php/qmn_options_email_tab.php:435
271
- #: php/qmn_options_email_tab.php:513
272
  msgid "Add New Admin Email"
273
  msgstr "Añadir nuevo email de administrador"
274
 
275
- #: php/qmn_quiz_creator.php:369
276
- msgid "Your new quiz has been created successfully. To begin editing your quiz, click the Edit link on the new quiz."
277
- msgstr "Su cuestionario ha sido creado correctamente. Para empezar a editar su cuestionario haga click en Edit en el nuevo cuestionario."
278
-
279
- #: php/qmn_quiz_creator.php:435
280
- msgid "Your quiz has been deleted successfully."
281
- msgstr "Su cuestionario ha sido eliminado correctamente."
282
-
283
- #: php/qmn_quiz_creator.php:477
284
- msgid "Your quiz name has been updated successfully."
285
- msgstr "Su cuestionario ha sido actualizado correctamente."
286
-
287
- #: php/qmn_quiz_creator.php:634
288
- msgid "Your quiz has been duplicated successfully."
289
- msgstr "Su cuestionario ha sido duplicado correctamente."
290
-
291
- #: php/qmn_quiz.php:350
292
- msgid "Not a valid e-mail address!"
293
- msgstr "E-mail no válido!!"
294
-
295
- #: php/qmn_quiz.php:351
296
- msgid "This field must be a number!"
297
- msgstr "Este campo debe ser númerico!"
298
-
299
- #: php/qmn_quiz.php:352
300
- msgid "The entered text is not correct!"
301
- msgstr "El texto introducido no es correcto!"
302
-
303
- #: php/qmn_quiz.php:353
304
- msgid "Please complete all required fields!"
305
- msgstr "Por favor, complete todas los campos obligatorios!"
306
-
307
- #: php/qmn_quiz.php:465
308
- msgid "Hint"
309
- msgstr "Indicación"
310
-
311
- #: php/qmn_quiz.php:1254
312
- msgid "Previous"
313
- msgstr "Anterior"
314
-
315
- #: php/qmn_credits.php:27
316
- msgid "Welcome To Quiz Master Next"
317
- msgstr "Bienvenido a Quiz Master Next"
318
-
319
- #: php/qmn_credits.php:28
320
- msgid "Thank you for updating!"
321
- msgstr "Gracias por actualizar!"
322
-
323
- #: php/qmn_credits.php:32
324
- msgid "What's New!"
325
- msgstr "Novedades!"
326
-
327
- #: php/qmn_credits.php:34
328
- msgid "Changelog"
329
- msgstr "Historial de modificaciones"
330
-
331
- #: php/qmn_usage_tracking.php:193
332
- msgid "Allow Quiz Master Next to anonymously track this plugin's usage and help us make this plugin better? No sensitive data is tracked."
333
- msgstr ""
334
- "¿Permite a \n"
335
- "Quiz Master Next el envío de información acerca del uso de este plugin con el fín de ayudarnos a mejorar este plugin? No se hará seguimiento sobre información privada."
336
-
337
- #: php/qmn_usage_tracking.php:194
338
- msgid "Allow"
339
- msgstr "Permitir"
340
-
341
- #: php/qmn_usage_tracking.php:195
342
- msgid "Do not allow"
343
- msgstr "No permitir"
344
-
345
- #: php/qmn_options_leaderboard_tab.php:6
346
  msgid "Leaderboard"
347
  msgstr "Clasificación"
348
 
349
- #: php/qmn_options_leaderboard_tab.php:25
350
  msgid "The leaderboards has been updated successfully."
351
  msgstr "Las tablas de clasificación han sido actualizadas correctamente."
352
 
353
- #: php/qmn_options_leaderboard_tab.php:52
354
  msgid "The name of the user who is in first place"
355
  msgstr "El nombre del usuario que está en el primer puesto"
356
 
357
- #: php/qmn_options_leaderboard_tab.php:53
358
  msgid "The score from the first place's quiz"
359
  msgstr "La puntuación del usuario que está en el primer puesto"
360
 
361
- #: php/qmn_options_leaderboard_tab.php:57
362
  msgid "The name of the user who is in second place"
363
  msgstr "El nombre del usuario que está en segundo puesto"
364
 
365
- #: php/qmn_options_leaderboard_tab.php:58
366
  msgid "The score from the second place's quiz"
367
  msgstr "La puntuación del usuario que está en el segundo puesto"
368
 
369
- #: php/qmn_options_leaderboard_tab.php:62
370
  msgid "The name of the user who is in third place"
371
  msgstr "El nombre del usuario que está en el tercer puesto"
372
 
373
- #: php/qmn_options_leaderboard_tab.php:63
374
  msgid "The score from the third place's quiz"
375
  msgstr "La puntuación del usuario que está en el tercer puesto"
376
 
377
- #: php/qmn_options_leaderboard_tab.php:67
378
  msgid "The name of the user who is in fourth place"
379
  msgstr "El nombre del usuario que está en el cuarto puesto"
380
 
381
- #: php/qmn_options_leaderboard_tab.php:68
382
  msgid "The score from the fourth place's quiz"
383
  msgstr "La puntuación del usuario que está en el cuarto puesto"
384
 
385
- #: php/qmn_options_leaderboard_tab.php:72
386
  msgid "The name of the user who is in fifth place"
387
  msgstr "El nombre del usuario que está en el quinto puesto"
388
 
389
- #: php/qmn_options_leaderboard_tab.php:73
390
  msgid "The score from the fifth place's quiz"
391
  msgstr "La puntuación del usuario que está en el quinto puesto"
392
 
393
- #: php/qmn_options_leaderboard_tab.php:80
394
- #: php/qmn_options_leaderboard_tab.php:108
395
  msgid "Save Leaderboard Options"
396
  msgstr "Guardar las opciones de clasificación"
397
 
398
- #: php/qmn_options_leaderboard_tab.php:89
399
  msgid "Leaderboard Template"
400
  msgstr "Plantilla de clasificación"
401
 
402
- #: php/qmn_options_leaderboard_tab.php:91
403
- msgid "Allowed Variables:"
404
- msgstr "Variables permitidas:"
405
-
406
- #: php/qmn_addons.php:48
407
- msgid "These addons extend the functionality of Quiz Master Next"
408
- msgstr ""
409
- "Estos complementos adicionales \n"
410
- "(addons) \n"
411
- "amplían las funciones de Quiz Master Next."
412
 
413
- #: php/qmn_addons.php:91
414
- msgid "Browse All Addons"
415
- msgstr "ver todos los complementos (addons)"
416
 
417
- #: php/qmn_addons.php:98
418
- msgid "Featured Addons"
419
- msgstr "Complementos (addons) destacados"
420
 
421
- #: php/qmn_options_text_tab.php:6
422
- msgid "Text"
423
- msgstr "Texto"
424
 
425
- #: php/qmn_options_text_tab.php:42
426
- msgid "The templates has been updated successfully."
427
- msgstr "La plantilla ha sido actualizada correctamente."
428
 
429
- #: php/qmn_options_text_tab.php:170
430
- #: php/qmn_options_text_tab.php:330
431
- msgid "Save Templates"
432
- msgstr "Guardar Plantillas"
433
 
434
- #: php/qmn_options_text_tab.php:176
435
- msgid "Message Templates"
436
- msgstr "Plantillas de Mensaje"
437
 
438
- #: php/qmn_options_text_tab.php:180
439
- msgid "Message Displayed Before Quiz"
440
- msgstr "Mensaje Mostrado Antes del Cuestionario"
441
-
442
- #: php/qmn_options_text_tab.php:190
443
- msgid "Message Displayed Before Comments Box If Enabled"
444
- msgstr "Mensaje Mostrado Antes del campo de Comentarios si está activado."
445
-
446
- #: php/qmn_options_text_tab.php:200
447
- msgid "Message Displayed At End Of Quiz (Leave Blank To Omit Text Section)"
448
- msgstr "Mensaje Mostrado al final de la encuesta (Dejar en blanco para omitir sección de texto)"
449
-
450
- #: php/qmn_options_text_tab.php:210
451
- msgid "Message Displayed If User Has Tried Quiz Too Many Times"
452
- msgstr "Mensaje Mostrado si el usuario ha intentando entrar demasiadas veces."
453
-
454
- #: php/qmn_options_text_tab.php:220
455
- msgid "Message Displayed If User Is Not Logged In And Quiz Requires Users To Be Logged In"
456
- msgstr "Mensaje Mostrado si el usuario no ha iniciado sesión en un cuestionario que requería iniciar sesión."
457
-
458
- #: php/qmn_options_text_tab.php:230
459
- msgid "Message Displayed If Date Is Outside Scheduled Timeframe"
460
- msgstr "Mensaje Mostrado si la fecha está fuera del calendario."
461
-
462
- #: php/qmn_options_text_tab.php:240
463
- msgid "Message Displayed If The Limit Of Total Entries Has Been Reached"
464
- msgstr "Mensaje mostrado si el límite total de entradas ha sido superado."
465
-
466
- #: php/qmn_options_text_tab.php:250
467
- msgid "%QUESTIONS_ANSWERS% Text"
468
- msgstr "%QUESTIONS_ANSWERS% Texto"
469
-
470
- #: php/qmn_options_text_tab.php:263
471
- msgid "Twitter Sharing Text"
472
- msgstr "Texto para compartir en Twitter"
473
-
474
- #: php/qmn_options_text_tab.php:280
475
- msgid "Facebook Sharing Text"
476
- msgstr "Texto para compartir en Facebook"
477
-
478
- #: php/qmn_options_text_tab.php:295
479
- msgid "Other Templates"
480
- msgstr "Otras plantillas"
481
-
482
- #: php/qmn_options_text_tab.php:298
483
- msgid "Text for submit button"
484
- msgstr "Texto para el botón de envío."
485
-
486
- #: php/qmn_options_text_tab.php:302
487
- msgid "Text for name field"
488
- msgstr "Texto para el nombre del campo"
489
-
490
- #: php/qmn_options_text_tab.php:306
491
- msgid "Text for business field"
492
- msgstr "Texto para el campo asunto."
493
-
494
- #: php/qmn_options_text_tab.php:310
495
- msgid "Text for email field"
496
- msgstr "Texto para el campo email"
497
-
498
- #: php/qmn_options_text_tab.php:314
499
- msgid "Text for phone number field"
500
- msgstr "Texto para el campo número de teléfono"
501
-
502
- #: php/qmn_options_text_tab.php:318
503
- msgid "Text for comments field"
504
- msgstr "Texto para el campo Comentarios"
505
-
506
- #: php/qmn_options_text_tab.php:322
507
- msgid "Text for previous button"
508
- msgstr "Texto para el botón Anterior"
509
-
510
- #: php/qmn_options_text_tab.php:326
511
- msgid "Text for next button"
512
- msgstr "Texto para el botón Siguiente"
513
-
514
- #: php/qmn_options_tools_tab.php:23
515
- msgid "The stats has been reset successfully."
516
- msgstr "Las estadísticas han sido reseteadas correctamente."
517
-
518
- #: php/qmn_options_tools_tab.php:75
519
- msgid "Use this button to reset all the stats collected for this quiz (Quiz Views and Times Quiz Has Been Taken)."
520
- msgstr "Las estadísticas han sido reseteadas correctamente."
521
 
522
- #: php/qmn_options_tools_tab.php:76
523
- msgid "Reset Quiz Views And Taken Stats"
524
- msgstr "Resetear Encuesta y Estadísticas Guardadas"
 
 
 
 
525
 
526
- #: php/qmn_options_tools_tab.php:87
527
- msgid "Are you sure you want to reset the stats to 0? All views and taken stats for this quiz will be reset. This is permanent and cannot be undone."
528
- msgstr "¿Está seguro que desea resetear las estadísticas a 0? Todas las vistas y estadísticas guardadas para este cuestionario serán eliminadas. Esto es permanente y no se puede deshacer."
 
 
 
 
529
 
530
- #: php/qmn_options_tools_tab.php:91
531
- msgid "Reset All Stats For Quiz"
532
- msgstr "Resetear todas las estadísticas para de un Cuestionario"
 
 
 
 
 
533
 
534
- #: php/qmn_dashboard_widgets.php:9
535
- msgid "Quiz Master Next Snapshot"
536
- msgstr "Quiz Master Next Snapshot"
 
 
 
537
 
538
- #: php/qmn_dashboard_widgets.php:166
539
- msgid "quizzes taken today"
540
- msgstr "encuestas completadas hoy"
 
 
 
541
 
542
- #: php/qmn_dashboard_widgets.php:185
543
- msgid "quizzes taken last 7 days"
544
- msgstr "encuestas completadas los últimos 7 días"
 
 
 
 
545
 
546
- #: php/qmn_dashboard_widgets.php:204
547
- #, fuzzy
548
- msgid "quizzes taken last 30 days"
549
- msgstr "encuestas completadas los últimos 7 días"
550
 
551
- #: php/qmn_dashboard_widgets.php:223
552
- #, fuzzy
553
- msgid "quizzes taken last 120 days"
554
- msgstr "encuestas completadas los últimos 7 días"
555
 
556
- #: php/qmn_dashboard_widgets.php:242
557
- msgid "total active quizzes"
558
- msgstr "total encuestas activas"
 
 
 
559
 
560
- #: php/qmn_dashboard_widgets.php:248
561
- msgid "total active questions"
562
- msgstr "total preguntas activas"
563
 
564
- #: php/qmn_dashboard_widgets.php:254
565
- msgid "most popular quiz"
566
- msgstr "encuesta más popular"
567
 
568
- #: php/qmn_dashboard_widgets.php:260
569
- msgid "least popular quiz"
570
- msgstr "encuesta menos popular"
 
 
 
 
571
 
572
- #: php/qmn_options_certificate_tab.php:6
573
- msgid "Certificate (Beta)"
574
- msgstr "Certificado (Beta)"
575
 
576
- #: php/qmn_options_certificate_tab.php:32
577
- msgid "The certificate has been updated successfully."
578
- msgstr "El certificado ha sido actualizado correctamente."
579
 
580
- #: php/qmn_options_certificate_tab.php:61
581
- msgid "Enter title here"
582
- msgstr "Escriba el título aquí"
 
 
 
 
 
 
 
583
 
584
- #: php/qmn_options_certificate_tab.php:65
585
- msgid "Quiz Certificate (Beta)"
586
- msgstr "Certificado de encuesta (Beta)"
587
 
588
- #: php/qmn_options_certificate_tab.php:66
589
- msgid "Enter in your text here to fill in the certificate for this quiz. Be sure to enter in the link variable into the templates on the Quiz Text tab so the user can access the certificate."
590
- msgstr "Escriba aquí el texto que aparecerá como certificado de esta encuesta. Asegúrese de introducir su enlace dentro de las plantillas en la pestaña Quiz Text para que el usuario pueda acceder a su certificado."
 
591
 
592
- #: php/qmn_options_certificate_tab.php:67
593
- msgid "These fields cannot contain HTML."
594
- msgstr "Estos campos no pueden contener HTML."
595
 
596
- #: php/qmn_options_certificate_tab.php:68
597
- #: php/qmn_options_certificate_tab.php:124
598
- msgid "Save Certificate Options"
599
- msgstr "Guardas Opciones de Certificado"
600
 
601
- #: php/qmn_options_certificate_tab.php:76
602
- msgid "Enable Certificates For This Quiz?"
603
- msgstr "¿Permitir Certificados para esta Encuesta?"
604
 
605
- #: php/qmn_options_certificate_tab.php:84
606
- msgid "Certificate Title"
607
- msgstr "Título del certificado"
 
608
 
609
- #: php/qmn_options_certificate_tab.php:91
610
- msgid "Message Displayed On Certificate"
611
- msgstr "Mensaje mostrado en el Certificado"
612
 
613
- #: php/qmn_options_certificate_tab.php:111
614
- msgid "URL To Logo (Must be JPG, JPEG, PNG or GIF)"
615
- msgstr "URL del logo (debe estar en formato JPG, JPEG, PNG o GIF)"
 
616
 
617
- #: php/qmn_options_certificate_tab.php:118
618
- msgid "URL To Background Img (Must be JPG, JPEG, PNG or GIF)"
619
- msgstr "URL de la imagen de fondo (debe estar en formato JPG, JPEG, PNG o GIF)"
 
 
 
620
 
621
- #: php/qmn_quiz_options.php:52
622
- #, php-format
623
- msgid "Quiz Settings For %s"
624
- msgstr "Configuración para el cuestionario %s"
 
625
 
626
- #: php/qmn_quiz_options.php:92
627
- msgid "Error!"
628
- msgstr "Error!"
 
 
629
 
630
- #: php/qmn_quiz_options.php:92
631
- msgid "Please go to the quizzes page and click on the Edit link from the quiz you wish to edit."
632
- msgstr "Por favor vaya a la página de cuestionarios y haga click sobre el botón Editar en el cuestionario que desee editar."
633
 
634
- #: php/qmn_options_questions_tab.php:6
635
  msgid "Questions"
636
  msgstr "Preguntas"
637
 
638
- #: php/qmn_options_questions_tab.php:14
639
  msgid "Answer"
640
  msgstr "Respuesta"
641
 
642
- #: php/qmn_options_questions_tab.php:112
643
  msgid "The question has been updated successfully."
644
  msgstr "La pregunta ha sido actualizada correctamente."
645
 
646
- #: php/qmn_options_questions_tab.php:139
647
  msgid "The question has been deleted successfully."
648
  msgstr "La pregunta ha sido eliminada correctamente."
649
 
650
- #: php/qmn_options_questions_tab.php:223
651
  msgid "The question has been duplicated successfully."
652
  msgstr "La pregunta ha sido duplicada correctamente."
653
 
654
- #: php/qmn_options_questions_tab.php:316
655
  msgid "The question has been created successfully."
656
  msgstr "La pregunta ha sido creada correctamente."
657
 
658
- #: php/qmn_options_questions_tab.php:434
659
  msgid "Add Question"
660
  msgstr "Añadir pregunta"
661
 
662
- #: php/qmn_options_questions_tab.php:443
663
  #, php-format
664
  msgid "One question"
665
  msgid_plural "%s questions"
666
  msgstr[0] "Una pregunta"
667
  msgstr[1] "%s preguntas"
668
 
669
- #: php/qmn_options_questions_tab.php:449
670
- #: php/qmn_options_questions_tab.php:457
671
- #: php/qmn_options_questions_tab.php:582
672
  msgid "Question Order"
673
  msgstr "Orden de preguntas"
674
 
675
- #: php/qmn_options_questions_tab.php:450
676
- #: php/qmn_options_questions_tab.php:458
677
- #: php/qmn_options_questions_tab.php:561
678
  msgid "Question Type"
679
  msgstr "Tipo de pregunta"
680
 
681
- #: php/qmn_options_questions_tab.php:451
682
- #: php/qmn_options_questions_tab.php:459
683
- #: php/qmn_options_questions_tab.php:595
684
  msgid "Category"
685
  msgstr "Categoria"
686
 
687
- #: php/qmn_options_questions_tab.php:452
688
- #: php/qmn_options_questions_tab.php:460
689
  msgid "Question"
690
  msgstr "Pregunta"
691
 
692
- #: php/qmn_options_questions_tab.php:534
693
- msgid "For fill in the blank types, use %BLANK% to represent where to put the text box in your text."
 
 
694
  msgstr ""
695
 
696
- #: php/qmn_options_questions_tab.php:539
697
  msgid "Answers"
698
  msgstr "Respuestas"
699
 
700
- #: php/qmn_options_questions_tab.php:540
701
  msgid "Points Worth"
702
  msgstr "Puntuación"
703
 
704
- #: php/qmn_options_questions_tab.php:541
705
  msgid "Correct Answer"
706
  msgstr "Respuesta correcta"
707
 
708
- #: php/qmn_options_questions_tab.php:546
709
  msgid "Add New Answer!"
710
  msgstr "Añada nueva respuesta!"
711
 
712
- #: php/qmn_options_questions_tab.php:551
713
  msgid "Correct Answer Info"
714
  msgstr "Información acerca de la respuesta correcta"
715
 
716
- #: php/qmn_options_questions_tab.php:573
 
 
 
 
717
  msgid "Comment Field"
718
  msgstr "Campo de Comentario"
719
 
720
- #: php/qmn_options_questions_tab.php:575
721
  msgid "Small Text Field"
722
  msgstr "Campo de texto corto"
723
 
724
- #: php/qmn_options_questions_tab.php:576
725
  msgid "Large Text Field"
726
  msgstr "Campo de texto largo"
727
 
728
- #: php/qmn_options_questions_tab.php:577
729
  msgid "None"
730
  msgstr "Ninguna"
731
 
732
- #: php/qmn_options_questions_tab.php:587
733
  msgid "Required?"
734
  msgstr "¿Obligatorio?"
735
 
736
- #: php/qmn_options_questions_tab.php:618
737
  msgid "Create Question"
738
  msgstr "Crear Pregunta"
739
 
740
- #: php/qmn_options_questions_tab.php:623
741
  msgid "Are you sure you want to delete this question?"
742
  msgstr "¿Está seguro que desea eliminar esta pregunta?"
743
 
744
- #: php/qmn_options_questions_tab.php:628
745
  msgid "Delete Question"
746
  msgstr "Eliminar pregunta"
747
 
748
- #: php/qmn_options_questions_tab.php:633
749
  msgid "Are you sure you want to duplicate this question?"
750
  msgstr "¿Está seguro que desea duplicar esta pregunta?"
751
 
752
- #: php/qmn_options_questions_tab.php:638
753
  msgid "Duplicate Question"
754
  msgstr "Duplicar Pregunta"
755
 
756
- #: php/qmn_results.php:23
757
- msgid "Your results has been deleted successfully."
758
- msgstr "Sus resultados han sido eliminados correctamente."
759
-
760
- #: php/qmn_results.php:161
761
- #, php-format
762
- msgid "One result"
763
- msgid_plural "%s results"
764
- msgstr[0] "Un resultado"
765
- msgstr[1] "%s resultados"
766
-
767
- #: php/qmn_results.php:208
768
- msgid "Actions"
769
- msgstr "Acciones"
770
-
771
- #: php/qmn_results.php:209
772
- msgid "Quiz Name"
773
- msgstr "Nombre del Cuestionario"
774
-
775
- #: php/qmn_results.php:210
776
- msgid "Score"
777
- msgstr "Puntuación"
778
-
779
- #: php/qmn_results.php:211
780
- msgid "Time To Complete"
781
- msgstr "Tiempo para completar"
782
-
783
- #: php/qmn_results.php:212
784
- msgid "Name"
785
- msgstr "Nombre"
786
-
787
- #: php/qmn_results.php:213
788
- msgid "Business"
789
- msgstr "Asunto"
790
-
791
- #: php/qmn_results.php:214
792
- msgid "Email"
793
- msgstr "Email"
794
-
795
- #: php/qmn_results.php:215
796
- msgid "Phone"
797
- msgstr "Teléfono"
798
-
799
- #: php/qmn_results.php:216
800
- msgid "Time Taken"
801
- msgstr "Tiempo empleado"
802
-
803
- #: php/qmn_results.php:258
804
- #: php/qmn_options_option_tab.php:147
805
- msgid "Not Graded"
806
- msgstr "No clasificada"
807
-
808
- #: php/qmn_results.php:275
809
- msgid "Are you sure you want to delete these results?"
810
- msgstr "¿Está seguro de que desea eliminar estos resultados?"
811
-
812
- #: php/qmn_results.php:280
813
- msgid "Delete Results"
814
- msgstr "Eliminar resultados"
815
-
816
- #: php/qmn_options_results_page_tab.php:6
817
  msgid "Results Pages"
818
  msgstr "Página de Resultados"
819
 
820
- #: php/qmn_options_results_page_tab.php:41
821
  msgid "The results page has been added successfully."
822
  msgstr "Los resultados han sido añadidos correctamente."
823
 
824
- #: php/qmn_options_results_page_tab.php:81
825
  msgid "The results page has been saved successfully."
826
  msgstr "La página de resultados ha sido guardada correctamente."
827
 
828
- #: php/qmn_options_results_page_tab.php:191
 
 
 
 
 
 
 
 
829
  msgid "Displays button to share on Facebook."
830
  msgstr ""
831
 
832
- #: php/qmn_options_results_page_tab.php:194
833
  msgid "Displays button to share on Twitter."
834
  msgstr ""
835
 
836
- #: php/qmn_options_results_page_tab.php:199
837
- #: php/qmn_options_results_page_tab.php:280
838
  msgid "Save Results Pages"
839
  msgstr "Guardar Página de Resultados"
840
 
841
- #: php/qmn_options_results_page_tab.php:200
842
- #: php/qmn_options_results_page_tab.php:285
843
  msgid "Add New Results Page"
844
  msgstr "Añadir Nueva Página de Resultados"
845
 
846
- #: php/qmn_options_results_page_tab.php:208
847
- #: php/qmn_options_results_page_tab.php:272
848
- msgid "Results Page Shown"
849
- msgstr "Mostrar Página de Resultados"
850
-
851
- #: php/qmn_options_results_page_tab.php:209
852
- #: php/qmn_options_results_page_tab.php:273
853
- msgid "Redirect URL (Beta)"
854
- msgstr ""
855
-
856
- #: php/qmn_options_results_page_tab.php:247
857
- msgid "Delete"
858
- msgstr "Eliminar"
859
-
860
- #: php/qmn_options_results_page_tab.php:247
861
- msgid "Are you sure?"
862
- msgstr "¿Está seguro?"
863
-
864
- #: php/qmn_options_preview_tab.php:6
865
- msgid "Preview"
866
- msgstr "Presentación"
867
-
868
- #: php/qmn-stats-page.php:29
869
- msgid "Quiz Statistics"
870
- msgstr "Estadísticas de la encuesta"
871
-
872
- #: php/qmn-stats-page.php:68
873
- #, fuzzy
874
- msgid "Quiz Taken Stats"
875
- msgstr "Estadísticas TOTALES de la Encuesta"
876
-
877
- #: php/qmn_options_option_tab.php:6
878
- msgid "Options"
879
- msgstr "Opciones"
880
-
881
- #: php/qmn_options_option_tab.php:94
882
- msgid "The options has been updated successfully."
883
- msgstr "Las opciones han sido actualizadas correctamente."
884
-
885
- #: php/qmn_options_option_tab.php:135
886
- #: php/qmn_options_option_tab.php:286
887
- msgid "Save Options"
888
- msgstr "Guardar opciones"
889
-
890
- #: php/qmn_options_option_tab.php:143
891
- msgid "Which system is this quiz graded on?"
892
- msgstr "¿Cual es el sistema de clasificación?"
893
-
894
- #: php/qmn_options_option_tab.php:145
895
- msgid "Correct/Incorrect"
896
- msgstr "Correcto/Incorrecto"
897
-
898
- #: php/qmn_options_option_tab.php:146
899
- msgid "Points"
900
- msgstr "Puntos"
901
-
902
- #: php/qmn_options_option_tab.php:151
903
- msgid "Should the user be required to be logged in to take this quiz?"
904
- msgstr "¿Es necesario que el usuario inicie sesión para rellenar este cuestionario?"
905
-
906
- #: php/qmn_options_option_tab.php:158
907
- msgid "How many questions per page would you like? (Leave 0 for all questions on one page)"
908
- msgstr "¿Cuantas preguntas por página desea? (Deje 0 para que todas las preguntas aparezcan en una misma página)"
909
-
910
- #: php/qmn_options_option_tab.php:164
911
- msgid "How many minutes does the user have to finish the quiz? (Leave 0 for no time limit)"
912
- msgstr "¿Cuantos minutos tiene el usuario para realizar la encuesta? (Deje 0 sino tiene límite de tiempo)"
913
-
914
- #: php/qmn_options_option_tab.php:170
915
- msgid "How many times can a user take this quiz? (Leave 0 for as many times as the user wants to. Currently only works for registered users)"
916
- msgstr "¿Cuantas veces puede el usuario rellenar este cuestionario? (Deje 0 para tantas veces como el usuario quiera. Actualmente sólo funciona para usuarios registrados)"
917
-
918
- #: php/qmn_options_option_tab.php:176
919
- msgid "How many total entries can this quiz have? (Leave 0 for unlimited entries"
920
- msgstr "¿Cuantas veces en total puede ser rellenado este cuestionario? (Deje 0 para entradas ilimitadas)"
921
-
922
- #: php/qmn_options_option_tab.php:182
923
- msgid "How many questions should be loaded for quiz? (Leave 0 to load all questions)"
924
- msgstr "¿Cuantas preguntas deben ser cargadas por cuestionario? (Deje 0 para cargar todas las preguntas)"
925
-
926
- #: php/qmn_options_option_tab.php:188
927
- msgid "What time-frame should the user be able to access the quiz? (Leave blank if the user can access anytime)"
928
- msgstr "¿En qué periodo de tiempo puede el usuario acceder a la encuesta? (Déjelo en blanco si el usuario puede acceder en cualquier momento)"
929
-
930
- #: php/qmn_options_option_tab.php:190
931
- msgid "start date"
932
- msgstr "fecha de inicio"
933
-
934
- #: php/qmn_options_option_tab.php:193
935
- msgid "end date"
936
- msgstr "fecha de finalización"
937
-
938
- #: php/qmn_options_option_tab.php:197
939
- msgid "Are the questions random? (Question Order will not apply if this is yes)"
940
- msgstr "¿Son preguntas aleatorias? (El orden de las preguntas no se aplicará si contesta que SÍ)"
941
-
942
- #: php/qmn_options_option_tab.php:199
943
- msgid "Random Questions"
944
- msgstr "Preguntas aleatorias"
945
-
946
- #: php/qmn_options_option_tab.php:200
947
- msgid "Random Questions And Answers"
948
- msgstr "Preguntas y respuestas aleatorias"
949
-
950
- #: php/qmn_options_option_tab.php:205
951
- msgid "Would you like to ask for the contact information at the beginning or at the end of the quiz?"
952
- msgstr "¿Le gustaría pedir la información de contacto al principio o final de la encuesta?"
953
-
954
- #: php/qmn_options_option_tab.php:207
955
- msgid "Beginning"
956
- msgstr "Principio"
957
-
958
- #: php/qmn_options_option_tab.php:208
959
- msgid "End"
960
- msgstr "Fin"
961
-
962
- #: php/qmn_options_option_tab.php:212
963
- msgid "If a logged-in user takes the quiz, would you like them to be able to edit contact information? If set to no, the fields will not show up for logged in users; however, the users information will be saved for the fields."
964
- msgstr "Si un usuario que ha iniciado sesión, ¿le gustaría que pudiera editar la información de contacto? Si contesta que NO, los campos no se mostrarán a los usuarios conectados, sin embargo, la información sobre el usuario sería registrada en los campos."
965
-
966
- #: php/qmn_options_option_tab.php:219
967
- msgid "Should we ask for users name?"
968
- msgstr "¿Se debería pedir el nombre de los usuarios?"
969
-
970
- #: php/qmn_options_option_tab.php:222
971
- #: php/qmn_options_option_tab.php:230
972
- #: php/qmn_options_option_tab.php:238
973
- #: php/qmn_options_option_tab.php:246
974
- msgid "Require"
975
- msgstr "Obligatorio"
976
-
977
- #: php/qmn_options_option_tab.php:227
978
- msgid "Should we ask for users business?"
979
- msgstr "¿Se debería pedir el empleo del usuario?"
980
-
981
- #: php/qmn_options_option_tab.php:235
982
- msgid "Should we ask for users email?"
983
- msgstr "¿Se debería pedir el email al usuario?"
984
-
985
- #: php/qmn_options_option_tab.php:243
986
- msgid "Should we ask for users phone number?"
987
- msgstr "¿Se debería pedir al usuario el número de teléfono?"
988
-
989
- #: php/qmn_options_option_tab.php:251
990
- msgid "Would you like a place for the user to enter comments?"
991
- msgstr "¿Le gustaría un espacio para que el usuario pudiera dejar sus comentarios?"
992
-
993
- #: php/qmn_options_option_tab.php:258
994
- msgid "Show question number on quiz?"
995
- msgstr "¿Mostrar el número de pregunta en la encuesta?"
996
-
997
- #: php/qmn_options_option_tab.php:265
998
- msgid "Show social media sharing buttons? (Twitter & Facebook)"
999
- msgstr "¿Mostrar botones para compartir en medios sociales? (Twitter & Facebook)"
1000
 
1001
- #: php/qmn_options_option_tab.php:265
1002
- msgid "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!"
 
1003
  msgstr ""
1004
 
1005
- #: php/qmn_options_option_tab.php:272
1006
- msgid "Disable question once user selects answer? (Currently only work on multiple choice)"
1007
- msgstr ""
1008
 
1009
- #: php/qmn_options_option_tab.php:279
1010
- msgid "Dynamically add class for incorrect/correct answer after user selects answer? (Currently only works on multiple choice)"
1011
- msgstr ""
1012
 
1013
- #: php/qmn_options_style_tab.php:6
1014
  msgid "Style"
1015
  msgstr "Estilo"
1016
 
1017
- #: php/qmn_options_style_tab.php:26
1018
  msgid "The style has been saved successfully."
1019
  msgstr "El estilo ha sido guardado correctamente."
1020
 
1021
- #: php/qmn_options_style_tab.php:65
1022
  msgid "Quiz Styles"
1023
  msgstr "Estilos de Cuestionario."
1024
 
1025
- #: php/qmn_options_style_tab.php:66
1026
  msgid "Choose your style:"
1027
  msgstr "Elija su estilo:"
1028
 
1029
- #: php/qmn_options_style_tab.php:88
1030
  msgid "Custom"
1031
  msgstr "Personalizado"
1032
 
1033
- #: php/qmn_options_style_tab.php:94
1034
- #: php/qmn_options_style_tab.php:106
1035
  msgid "Save Quiz Style"
1036
  msgstr "Guardar Estilo de Cuestionario"
1037
 
1038
- #: php/qmn_options_style_tab.php:96
1039
  msgid "Custom Style CSS"
1040
  msgstr "Personalizar Estilo CSS"
1041
 
1042
- #: php/qmn_options_style_tab.php:97
1043
- msgid "For detailed help and guidance along with a list of different classes used in this plugin, please visit the following link:"
1044
- msgstr "Para una ayuda detallada y guía acerca de las diferentes classes usadas en este plugin, por favor visite el siguiente enlace:"
 
 
 
 
1045
 
1046
- #: php/qmn_results_details.php:117
1047
- msgid "Results"
1048
- msgstr "Resultados"
1049
 
1050
- #: php/qmn_results_details.php:196
1051
- msgid "Create Certificate"
1052
- msgstr "Crear Certificado"
1053
 
1054
- #: php/qmn_results_details.php:201
1055
- msgid "Download Certificate Here"
1056
- msgstr "Descargar Certificado Aquí"
1057
 
1058
- #: php/qmn_results_details.php:208
1059
- msgid "Certificate"
1060
- msgstr "Cerificado"
1061
 
1062
- #: php/qmn_tools.php:90
1063
- msgid "There has been an error! Please try again."
1064
- msgstr "Ha habido un error! Por favor, inténtelo de nuevo."
1065
 
1066
- #: php/qmn_tools.php:108
1067
- msgid "Quiz Has Been Restored!"
1068
- msgstr "El cuestionario ha sido restaurado!"
1069
 
1070
- #: php/qmn_tools.php:113
1071
- msgid "Choose a quiz in the drop down and then click the button to restore a deleted quiz."
1072
- msgstr "Escoja un cuestionario en la lista desplegable y después haga click en el botón para restaurar una encuesta eliminada."
1073
 
1074
- #: php/qmn_tools.php:123
1075
- msgid "Restore Quiz"
1076
- msgstr "Restaurar la encuesta"
 
 
1077
 
1078
- #: php/qmn_tools.php:152
1079
- #: php/qmn_tools.php:168
1080
- #, php-format
1081
- msgid "Previous %s Audits"
 
 
 
 
1082
  msgstr ""
1083
- "Auditoria \n"
1084
- "%s Anterior"
1085
 
1086
- #: php/qmn_tools.php:155
1087
- #: php/qmn_tools.php:162
1088
- #, php-format
1089
- msgid "Next %s Audits"
1090
- msgstr "Próxima %s Auditoria"
1091
 
1092
- #: php/qmn_tools.php:175
1093
- msgid "User"
1094
- msgstr "Usuario"
1095
 
1096
- #: php/qmn_tools.php:176
1097
- msgid "Action"
1098
- msgstr "Acción"
1099
 
1100
- #: php/qmn_tools.php:177
1101
- msgid "Time"
1102
- msgstr "Tiempo"
1103
 
1104
- #: php/qmn_help.php:10
1105
- msgid "Need Help?"
1106
- msgstr "¿Necesita ayuda?"
1107
 
1108
- #: php/qmn_help.php:11
1109
- msgid "Support"
1110
- msgstr "Ayuda"
1111
 
1112
- #: php/qmn_help.php:12
1113
- msgid "System Info"
1114
- msgstr "Información de sistema"
1115
 
1116
- #: php/qmn_help.php:15
1117
- msgid "Help Page"
1118
- msgstr "Página de ayuda"
1119
 
1120
- #: php/qmn_help.php:38
1121
- msgid "Need help with the plugin? Try any of the following:"
1122
- msgstr "¿Necesita ayuda con el plugin? Pruebe algo de lo siguiente:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1123
 
1124
- #: php/qmn_question_types.php:7
 
 
 
 
 
 
 
 
 
 
 
 
 
1125
  msgid "Multiple Choice"
1126
  msgstr "Opción Múltiple"
1127
 
1128
- #: php/qmn_question_types.php:76
1129
  msgid "Horizontal Multiple Choice"
1130
  msgstr "Opción múltiple horizontal."
1131
 
1132
- #: php/qmn_question_types.php:144
1133
  msgid "Drop Down"
1134
  msgstr "Desplegable"
1135
 
1136
- #: php/qmn_question_types.php:209
1137
  msgid "Small Open Answer"
1138
  msgstr "Abrir Respuesta Corta"
1139
 
1140
- #: php/qmn_question_types.php:258
1141
  msgid "Multiple Response"
1142
  msgstr "Respuesta Múltiple"
1143
 
1144
- #: php/qmn_question_types.php:333
1145
  msgid "Large Open Answer"
1146
  msgstr "Abrir Respuesta Larga"
1147
 
1148
- #: php/qmn_question_types.php:382
1149
  msgid "Text Block"
1150
  msgstr "Bloque de Texto"
1151
 
1152
- #: php/qmn_question_types.php:397
1153
  msgid "Number"
1154
  msgstr "Número"
1155
 
1156
- #: php/qmn_question_types.php:446
1157
  msgid "Accept"
1158
  msgstr "Aceptar"
1159
 
1160
- #: php/qmn_question_types.php:465
1161
  msgid "Captcha"
1162
  msgstr ""
1163
  "Source text:\n"
1164
  "Captcha"
1165
 
1166
- #: php/qmn_question_types.php:506
1167
  msgid "Horizontal Multiple Response"
1168
  msgstr "Múltiples Respuestas Horizontal"
1169
 
1170
- #: php/qmn_question_types.php:580
1171
  msgid "Fill In The Blank"
1172
  msgstr ""
1173
 
1174
- #: php/qmn_alerts.php:19
1175
- msgid "Success!"
1176
- msgstr "Hecho!"
 
 
 
 
 
 
 
 
 
 
 
 
1177
 
1178
- #: php/qmn_quiz_admin.php:189
1179
  msgid "Add New"
1180
  msgstr "Añadir Nuevo"
1181
 
1182
- #: php/qmn_quiz_admin.php:207
1183
  #, php-format
1184
  msgid "One quiz"
1185
  msgid_plural "%s quizzes"
1186
  msgstr[0] "Un cuestionarios"
1187
  msgstr[1] "%s cuestionarios"
1188
 
1189
- #: php/qmn_quiz_admin.php:253
1190
- #: php/qmn_quiz_admin.php:304
 
 
 
 
1191
  msgid "URL"
1192
  msgstr "URL"
1193
 
1194
- #: php/qmn_quiz_admin.php:254
1195
- #: php/qmn_quiz_admin.php:305
1196
  msgid "Quiz Shortcode"
1197
  msgstr "Código Corto de la Encuesta"
1198
 
1199
- #: php/qmn_quiz_admin.php:255
1200
- #: php/qmn_quiz_admin.php:306
1201
  msgid "Leaderboard Shortcode"
1202
  msgstr "Código Corto del Panel de Puntuaciones"
1203
 
1204
- #: php/qmn_quiz_admin.php:256
1205
- #: php/qmn_quiz_admin.php:307
1206
  msgid "Quiz Views"
1207
  msgstr "Vistas del Cuestionario"
1208
 
1209
- #: php/qmn_quiz_admin.php:257
1210
- #: php/qmn_quiz_admin.php:308
1211
  msgid "Quiz Taken"
1212
  msgstr "Cuestionario Completado"
1213
 
1214
- #: php/qmn_quiz_admin.php:258
1215
- #: php/qmn_quiz_admin.php:309
1216
  msgid "Last Modified"
1217
  msgstr "Última Modificación"
1218
 
1219
- #: php/qmn_quiz_admin.php:271
1220
  msgid "Edit Name"
1221
  msgstr "Editar Nombre"
1222
 
1223
- #: php/qmn_quiz_admin.php:273
1224
  msgid "Edit"
1225
  msgstr "Editar"
1226
 
1227
- #: php/qmn_quiz_admin.php:275
1228
- #: php/qmn_quiz_admin.php:404
 
 
 
1229
  msgid "Duplicate"
1230
  msgstr "Duplicar"
1231
 
1232
- #: php/qmn_quiz_admin.php:366
1233
  msgid "Create New Quiz"
1234
  msgstr "Crear un Nuevo Cuestionario"
1235
 
1236
- #: php/qmn_quiz_admin.php:380
1237
  msgid "Create Quiz"
1238
  msgstr "Crear Cuestionario"
1239
 
1240
- #: php/qmn_quiz_admin.php:386
1241
  msgid "Quiz Name:"
1242
  msgstr "Nombre del Cuestionario:"
1243
 
1244
- #: php/qmn_quiz_admin.php:397
1245
  msgid "Duplicate this quiz?"
1246
  msgstr "¿Duplicar este cuestionario?"
1247
 
1248
- #: php/qmn_quiz_admin.php:399
1249
  msgid "Duplicate questions with quiz"
1250
  msgstr "Duplicar preguntar con Cuestinario"
1251
 
1252
- #: php/qmn_quiz_admin.php:401
1253
  msgid "Name Of New Quiz:"
1254
  msgstr "Nombre del Nuevo Cuestionario:"
1255
 
1256
- #: php/qmn_quiz_admin.php:410
1257
  msgid "Are you sure you want to delete this quiz?"
1258
  msgstr "¿Está seguro que desea eliminar este cuestionario?"
1259
 
1260
- #: php/qmn_quiz_admin.php:415
1261
  msgid "Delete Quiz"
1262
  msgstr "Eliminar Cuestionario"
1263
 
1264
- #: php/qmn_widgets.php:11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1265
  msgid "Quiz Master Next Leaderboard Widget"
1266
  msgstr ""
1267
  "Widget de Puntuaciones de \n"
1268
  "Quiz Master Next"
1269
 
1270
- #: php/qmn_widgets.php:26
1271
  msgid "Widget Title"
1272
  msgstr "Título del Widget"
1273
 
1274
- #: php/qmn_widgets.php:30
1275
  msgid "Quiz ID"
1276
  msgstr "ID del cuestionario"
1277
 
 
 
 
1278
  #~ msgid ""
1279
  #~ "Required currently only works on open answer, number, accept, and captcha "
1280
  #~ "question types"
2
  msgstr ""
3
  "Project-Id-Version: Quiz Master Next\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-11 16:17-0500\n"
6
+ "PO-Revision-Date: 2015-06-11 16:17-0500\n"
7
  "Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
8
  "Language-Team: My Local Webstop <fpcorso@mylocalwebstop.com>\n"
9
  "Language: es_ES\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.8.1\n"
23
  "X-Loco-Target-Locale: es_ES\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
 
26
+ #: mlw_quizmaster2.php:217 php/qmn_quiz_admin.php:196
27
  msgid "Quizzes"
28
  msgstr "Cuestionarios"
29
 
31
  msgid "Quiz Settings"
32
  msgstr "Configuración de la encuesta"
33
 
34
+ #: mlw_quizmaster2.php:219 php/qmn_results.php:159
35
+ #: php/qmn_results_details.php:20
36
  msgid "Quiz Results"
37
  msgstr "Resultados de la encuesta."
38
 
44
  msgid "Settings"
45
  msgstr "Configuración"
46
 
47
+ #: mlw_quizmaster2.php:222 php/qmn_options_tools_tab.php:13
48
+ #: php/qmn_tools.php:65
49
  msgid "Tools"
50
  msgstr "Herramientas"
51
 
61
  msgid "Help"
62
  msgstr "Ayuda"
63
 
64
+ #: mlw_quizmaster2.php:228 mlw_quizmaster2.php:229
 
65
  msgid "QMN About"
66
  msgstr "Sobre QMN"
67
 
68
+ #: php/qmn-stats-page.php:29
69
+ msgid "Quiz Statistics"
70
+ msgstr "Estadísticas de la encuesta"
71
 
72
+ #: php/qmn-stats-page.php:68
73
+ #, fuzzy
74
+ msgid "Quiz Taken Stats"
75
+ msgstr "Estadísticas TOTALES de la Encuesta"
76
 
77
+ #: php/qmn_addons.php:60
78
+ msgid "These addons extend the functionality of Quiz Master Next"
79
+ msgstr ""
80
+ "Estos complementos adicionales \n"
81
+ "(addons) \n"
82
+ "amplían las funciones de Quiz Master Next."
83
+
84
+ #: php/qmn_addons.php:103
85
+ msgid "Browse All Addons"
86
+ msgstr "ver todos los complementos (addons)"
87
+
88
+ #: php/qmn_addons.php:117
89
+ msgid "Featured Addons"
90
+ msgstr "Complementos (addons) destacados"
91
+
92
+ #: php/qmn_alerts.php:37
93
+ msgid "Success!"
94
+ msgstr "Hecho!"
95
+
96
+ #: php/qmn_alerts.php:41 php/qmn_quiz_options.php:96
97
+ msgid "Error!"
98
+ msgstr "Error!"
99
+
100
+ #: php/qmn_credits.php:30
101
+ msgid "Welcome To Quiz Master Next"
102
+ msgstr "Bienvenido a Quiz Master Next"
103
+
104
+ #: php/qmn_credits.php:31
105
+ msgid "Thank you for updating!"
106
+ msgstr "Gracias por actualizar!"
107
+
108
+ #: php/qmn_credits.php:35
109
+ msgid "What's New!"
110
+ msgstr "Novedades!"
111
+
112
+ #: php/qmn_credits.php:37
113
+ msgid "Changelog"
114
+ msgstr "Historial de modificaciones"
115
+
116
+ #: php/qmn_dashboard_widgets.php:16
117
+ msgid "Quiz Master Next Snapshot"
118
+ msgstr "Quiz Master Next Snapshot"
119
+
120
+ #: php/qmn_dashboard_widgets.php:180
121
+ msgid "quizzes taken today"
122
+ msgstr "encuestas completadas hoy"
123
+
124
+ #: php/qmn_dashboard_widgets.php:199
125
+ msgid "quizzes taken last 7 days"
126
+ msgstr "encuestas completadas los últimos 7 días"
127
+
128
+ #: php/qmn_dashboard_widgets.php:218
129
+ #, fuzzy
130
+ msgid "quizzes taken last 30 days"
131
+ msgstr "encuestas completadas los últimos 7 días"
132
+
133
+ #: php/qmn_dashboard_widgets.php:237
134
+ #, fuzzy
135
+ msgid "quizzes taken last 120 days"
136
+ msgstr "encuestas completadas los últimos 7 días"
137
+
138
+ #: php/qmn_dashboard_widgets.php:256
139
+ msgid "total active quizzes"
140
+ msgstr "total encuestas activas"
141
+
142
+ #: php/qmn_dashboard_widgets.php:262
143
+ msgid "total active questions"
144
+ msgstr "total preguntas activas"
145
+
146
+ #: php/qmn_dashboard_widgets.php:268
147
+ msgid "most popular quiz"
148
+ msgstr "encuesta más popular"
149
+
150
+ #: php/qmn_dashboard_widgets.php:274
151
+ msgid "least popular quiz"
152
+ msgstr "encuesta menos popular"
153
+
154
+ #: php/qmn_help.php:13
155
+ msgid "Need Help?"
156
+ msgstr "¿Necesita ayuda?"
157
+
158
+ #: php/qmn_help.php:14
159
+ msgid "Support"
160
+ msgstr "Ayuda"
161
+
162
+ #: php/qmn_help.php:15
163
+ msgid "System Info"
164
+ msgstr "Información de sistema"
165
+
166
+ #: php/qmn_help.php:18
167
+ msgid "Help Page"
168
+ msgstr "Página de ayuda"
169
+
170
+ #: php/qmn_help.php:48
171
+ msgid "Need help with the plugin? Try any of the following:"
172
+ msgstr "¿Necesita ayuda con el plugin? Pruebe algo de lo siguiente:"
173
+
174
+ #: php/qmn_options_certificate_tab.php:15
175
+ msgid "Certificate (Beta)"
176
+ msgstr "Certificado (Beta)"
177
+
178
+ #: php/qmn_options_certificate_tab.php:47
179
+ msgid "The certificate has been updated successfully."
180
+ msgstr "El certificado ha sido actualizado correctamente."
181
+
182
+ #: php/qmn_options_certificate_tab.php:60 php/qmn_options_email_tab.php:68
183
+ #: php/qmn_options_email_tab.php:127 php/qmn_options_email_tab.php:191
184
+ #: php/qmn_options_leaderboard_tab.php:52 php/qmn_options_option_tab.php:120
185
+ #: php/qmn_options_questions_tab.php:139 php/qmn_options_questions_tab.php:166
186
+ #: php/qmn_options_questions_tab.php:250 php/qmn_options_questions_tab.php:343
187
+ #: php/qmn_options_results_page_tab.php:68
188
+ #: php/qmn_options_results_page_tab.php:108 php/qmn_options_style_tab.php:52
189
+ #: php/qmn_options_text_tab.php:68 php/qmn_options_tools_tab.php:50
190
+ #: php/qmn_quiz_creator.php:385 php/qmn_quiz_creator.php:451
191
+ #: php/qmn_quiz_creator.php:493 php/qmn_quiz_creator.php:651
192
+ #: php/qmn_quiz_creator.php:716 php/qmn_results.php:43
193
  #, php-format
194
+ msgid ""
195
+ "There has been an error in this action. Please share this with the "
196
+ "developer. Error Code: %s"
197
  msgstr ""
198
+ "Existe un error en esta acción. Por favor comparta esto con el "
199
+ "desarrollador. El código de error es: \n"
200
  "%s"
201
 
202
+ #: php/qmn_options_certificate_tab.php:76
203
+ msgid "Enter title here"
204
+ msgstr "Escriba el título aquí"
205
+
206
+ #: php/qmn_options_certificate_tab.php:76 php/qmn_options_email_tab.php:86
207
+ #: php/qmn_options_email_tab.php:104
208
  msgid "Enter text here"
209
  msgstr "Escriba el texto aquí"
210
 
211
+ #: php/qmn_options_certificate_tab.php:80
212
+ msgid "Quiz Certificate (Beta)"
213
+ msgstr "Certificado de encuesta (Beta)"
214
+
215
+ #: php/qmn_options_certificate_tab.php:81
216
+ msgid ""
217
+ "Enter in your text here to fill in the certificate for this quiz. Be sure to "
218
+ "enter in the link variable into the templates on the Quiz Text tab so the "
219
+ "user can access the certificate."
220
+ msgstr ""
221
+ "Escriba aquí el texto que aparecerá como certificado de esta encuesta. "
222
+ "Asegúrese de introducir su enlace dentro de las plantillas en la pestaña "
223
+ "Quiz Text para que el usuario pueda acceder a su certificado."
224
+
225
+ #: php/qmn_options_certificate_tab.php:82
226
+ msgid "These fields cannot contain HTML."
227
+ msgstr "Estos campos no pueden contener HTML."
228
+
229
+ #: php/qmn_options_certificate_tab.php:83
230
+ #: php/qmn_options_certificate_tab.php:139
231
+ msgid "Save Certificate Options"
232
+ msgstr "Guardas Opciones de Certificado"
233
+
234
+ #: php/qmn_options_certificate_tab.php:91
235
+ msgid "Enable Certificates For This Quiz?"
236
+ msgstr "¿Permitir Certificados para esta Encuesta?"
237
+
238
+ #: php/qmn_options_certificate_tab.php:93 php/qmn_options_email_tab.php:355
239
+ #: php/qmn_options_email_tab.php:362 php/qmn_options_option_tab.php:166
240
+ #: php/qmn_options_option_tab.php:227 php/qmn_options_option_tab.php:234
241
+ #: php/qmn_options_option_tab.php:242 php/qmn_options_option_tab.php:250
242
+ #: php/qmn_options_option_tab.php:258 php/qmn_options_option_tab.php:266
243
+ #: php/qmn_options_option_tab.php:273 php/qmn_options_option_tab.php:280
244
+ #: php/qmn_options_option_tab.php:287 php/qmn_options_option_tab.php:294
245
+ #: php/qmn_options_questions_tab.php:603
246
+ #: php/qmn_options_results_page_tab.php:264
247
+ msgid "Yes"
248
+ msgstr "sí"
249
+
250
+ #: php/qmn_options_certificate_tab.php:94 php/qmn_options_email_tab.php:356
251
+ #: php/qmn_options_email_tab.php:363 php/qmn_options_option_tab.php:167
252
+ #: php/qmn_options_option_tab.php:214 php/qmn_options_option_tab.php:228
253
+ #: php/qmn_options_option_tab.php:236 php/qmn_options_option_tab.php:244
254
+ #: php/qmn_options_option_tab.php:252 php/qmn_options_option_tab.php:260
255
+ #: php/qmn_options_option_tab.php:267 php/qmn_options_option_tab.php:274
256
+ #: php/qmn_options_option_tab.php:281 php/qmn_options_option_tab.php:288
257
+ #: php/qmn_options_option_tab.php:295 php/qmn_options_questions_tab.php:604
258
+ #: php/qmn_options_results_page_tab.php:264
259
+ msgid "No"
260
+ msgstr "No"
261
+
262
+ #: php/qmn_options_certificate_tab.php:99
263
+ msgid "Certificate Title"
264
+ msgstr "Título del certificado"
265
+
266
+ #: php/qmn_options_certificate_tab.php:106
267
+ msgid "Message Displayed On Certificate"
268
+ msgstr "Mensaje mostrado en el Certificado"
269
+
270
+ #: php/qmn_options_certificate_tab.php:108
271
+ #: php/qmn_options_leaderboard_tab.php:105 php/qmn_options_text_tab.php:199
272
+ #: php/qmn_options_text_tab.php:209 php/qmn_options_text_tab.php:219
273
+ #: php/qmn_options_text_tab.php:229 php/qmn_options_text_tab.php:239
274
+ #: php/qmn_options_text_tab.php:249 php/qmn_options_text_tab.php:259
275
+ #: php/qmn_options_text_tab.php:269 php/qmn_options_text_tab.php:282
276
+ #: php/qmn_options_text_tab.php:299
277
+ msgid "Allowed Variables:"
278
+ msgstr "Variables permitidas:"
279
+
280
+ #: php/qmn_options_certificate_tab.php:126
281
+ msgid "URL To Logo (Must be JPG, JPEG, PNG or GIF)"
282
+ msgstr "URL del logo (debe estar en formato JPG, JPEG, PNG o GIF)"
283
+
284
+ #: php/qmn_options_certificate_tab.php:133
285
+ msgid "URL To Background Img (Must be JPG, JPEG, PNG or GIF)"
286
+ msgstr "URL de la imagen de fondo (debe estar en formato JPG, JPEG, PNG o GIF)"
287
+
288
+ #: php/qmn_options_email_tab.php:13
289
+ msgid "Emails"
290
+ msgstr "Emails"
291
+
292
+ #: php/qmn_options_email_tab.php:55 php/qmn_options_email_tab.php:114
293
+ msgid "The email has been added successfully."
294
+ msgstr "El email ha sido añadido correctamente"
295
+
296
+ #: php/qmn_options_email_tab.php:178
297
  msgid "The email has been updated successfully."
298
  msgstr "El email ha sido actualizado correctamente"
299
 
300
+ #: php/qmn_options_email_tab.php:258 php/qmn_options_leaderboard_tab.php:63
301
+ #: php/qmn_options_results_page_tab.php:148 php/qmn_options_text_tab.php:105
302
  msgid "Template Variables"
303
  msgstr "Variables de la plantilla"
304
 
305
+ #: php/qmn_options_email_tab.php:261 php/qmn_options_results_page_tab.php:151
306
+ #: php/qmn_options_text_tab.php:108
307
  msgid "Score for the quiz when using points"
308
  msgstr "Puntuación de la encuesta cuando se usan puntos"
309
 
310
+ #: php/qmn_options_email_tab.php:264 php/qmn_options_results_page_tab.php:154
311
+ #: php/qmn_options_text_tab.php:111
312
  msgid "The average amount of points user had per question"
313
  msgstr "Media de puntos por usuario por pregunta"
314
 
315
+ #: php/qmn_options_email_tab.php:267 php/qmn_options_results_page_tab.php:157
316
+ #: php/qmn_options_text_tab.php:114
317
  msgid "The number of correct answers the user had"
318
  msgstr "Número de respuestas correctas que obtuvo el usuario"
319
 
320
+ #: php/qmn_options_email_tab.php:270 php/qmn_options_results_page_tab.php:160
321
+ #: php/qmn_options_text_tab.php:117
322
  msgid "The total number of questions in the quiz"
323
  msgstr "Número de preguntas totales en la encuesta"
324
 
325
+ #: php/qmn_options_email_tab.php:273 php/qmn_options_results_page_tab.php:163
326
+ #: php/qmn_options_text_tab.php:120
327
  msgid "Score for the quiz when using correct answers"
328
  msgstr "Puntuación de la encuesta basada en las respuestas correctas"
329
 
330
+ #: php/qmn_options_email_tab.php:276 php/qmn_options_results_page_tab.php:166
331
+ #: php/qmn_options_text_tab.php:123
332
  msgid "The name the user entered before the quiz"
333
  msgstr "Nombre que el usuario introdujo antes de la encuesta"
334
 
335
+ #: php/qmn_options_email_tab.php:279 php/qmn_options_results_page_tab.php:169
336
+ #: php/qmn_options_text_tab.php:126
337
  msgid "The business the user entered before the quiz"
338
  msgstr "El asunto que el usuario introdujo antes de la encuesta."
339
 
340
+ #: php/qmn_options_email_tab.php:282 php/qmn_options_results_page_tab.php:172
341
+ #: php/qmn_options_text_tab.php:129
342
  msgid "The phone number the user entered before the quiz"
343
  msgstr "El número de teléfono que el usuario introdujo antes de la encuesta"
344
 
345
+ #: php/qmn_options_email_tab.php:285 php/qmn_options_results_page_tab.php:175
346
+ #: php/qmn_options_text_tab.php:132
347
  msgid "The email the user entered before the quiz"
348
  msgstr "El email que el usuario introdujo antes de la encuesta"
349
 
350
+ #: php/qmn_options_email_tab.php:288 php/qmn_options_leaderboard_tab.php:91
351
+ #: php/qmn_options_results_page_tab.php:178 php/qmn_options_text_tab.php:135
352
  msgid "The name of the quiz"
353
  msgstr "El nombre de la encuesta"
354
 
355
+ #: php/qmn_options_email_tab.php:291 php/qmn_options_results_page_tab.php:181
356
+ #: php/qmn_options_text_tab.php:138
357
+ msgid ""
358
+ "Shows the question, the answer the user provided, and the correct answer"
359
  msgstr "Muestra la pregunta, la respuesta del usuario y la respuesta correcta"
360
 
361
+ #: php/qmn_options_email_tab.php:294 php/qmn_options_results_page_tab.php:184
362
+ #: php/qmn_options_text_tab.php:141
363
  msgid "The comments the user entered into comment box if enabled"
364
+ msgstr ""
365
+ "Los comentarios que el usuario introdujo en la caja de comentarios si esta "
366
+ "está habilitada"
367
+
368
+ #: php/qmn_options_email_tab.php:297 php/qmn_options_text_tab.php:144
369
+ msgid "The amount of time user spent on quiz in seconds"
370
+ msgstr ""
371
 
372
+ #: php/qmn_options_email_tab.php:301 php/qmn_options_text_tab.php:147
373
+ msgid "The amount of time user spent on quiz in minutes"
374
+ msgstr ""
375
 
376
+ #: php/qmn_options_email_tab.php:304 php/qmn_options_results_page_tab.php:193
377
+ #: php/qmn_options_text_tab.php:151
378
  msgid "The link to the certificate after completing the quiz"
379
  msgstr "El enlace hacia el certificado después de completar la encuesta"
380
 
381
+ #: php/qmn_options_email_tab.php:307 php/qmn_options_results_page_tab.php:196
382
+ #: php/qmn_options_text_tab.php:154
383
  msgid "The amount of points a specific category earned."
384
  msgstr "El total de puntos obtenidos en una categoría específica"
385
 
386
+ #: php/qmn_options_email_tab.php:310 php/qmn_options_results_page_tab.php:199
387
+ #: php/qmn_options_text_tab.php:157
388
  msgid "The score a specific category earned."
389
  msgstr "La puntuación obtenida en una categoría específica."
390
 
391
+ #: php/qmn_options_email_tab.php:313 php/qmn_options_results_page_tab.php:202
392
+ #: php/qmn_options_text_tab.php:160
393
  msgid "The average points from all categories."
394
  msgstr "La media de puntos contando todas las categorías."
395
 
396
+ #: php/qmn_options_email_tab.php:316 php/qmn_options_results_page_tab.php:205
397
+ #: php/qmn_options_text_tab.php:163
398
  msgid "The average score from all categories."
399
  msgstr "La puntuación media contando todas las categorías."
400
 
401
+ #: php/qmn_options_email_tab.php:319 php/qmn_options_text_tab.php:166
402
  msgid "The question that the user answered"
403
  msgstr "La pregunta que el usuario respondió"
404
 
405
+ #: php/qmn_options_email_tab.php:322 php/qmn_options_text_tab.php:169
406
  msgid "The answer the user gave for the question"
407
  msgstr "La respuesta del usuario a la pregunta"
408
 
409
+ #: php/qmn_options_email_tab.php:325 php/qmn_options_text_tab.php:172
410
  msgid "The correct answer for the question"
411
  msgstr "La contestación correcta a la pregunta"
412
 
413
+ #: php/qmn_options_email_tab.php:328 php/qmn_options_text_tab.php:175
414
  msgid "The comments the user provided in the comment field for the question"
415
+ msgstr ""
416
+ "Los comentarios que el usuario indicó en el campo de comentarios de la "
417
+ "pregunta."
418
 
419
+ #: php/qmn_options_email_tab.php:331 php/qmn_options_text_tab.php:178
420
  msgid "Reason why the correct answer is the correct answer"
421
  msgstr "La razón por qué la respuesta correcta es la respuesta correcta"
422
 
423
+ #: php/qmn_options_email_tab.php:334 php/qmn_options_text_tab.php:181
424
  msgid "The Current Date"
425
  msgstr "La fecha actual"
426
 
427
+ #: php/qmn_options_email_tab.php:349 php/qmn_options_email_tab.php:548
 
428
  msgid "Save Email Templates And Settings"
429
  msgstr "Guardar email, plantillas y preferencias"
430
 
431
+ #: php/qmn_options_email_tab.php:353
432
  msgid "Send user email upon completion?"
433
  msgstr "¿Enviar un email al usuario al finalizar?"
434
 
435
+ #: php/qmn_options_email_tab.php:360
 
 
 
 
 
 
 
 
 
 
436
  msgid "Send admin email upon completion?"
437
  msgstr "¿Enviar un email al administrador al finalizar?"
438
 
439
+ #: php/qmn_options_email_tab.php:367
440
+ msgid ""
441
+ "What emails should we send the admin email to? Separate emails with a comma."
442
+ msgstr ""
443
+ "¿Qué emails deberíamos enviar al administrador?. Separar los emails con una "
444
+ "coma."
445
 
446
+ #: php/qmn_options_email_tab.php:371
447
  msgid "What is the From Name for the email sent to users and admin?"
448
+ msgstr ""
449
+ "¿Cual es el nombre desde el cual se enviarán el email a los usuarios y "
450
+ "administrador?"
451
 
452
+ #: php/qmn_options_email_tab.php:377
453
  msgid "Email Sent To User"
454
  msgstr "Email enviado al usuario"
455
 
456
+ #: php/qmn_options_email_tab.php:378 php/qmn_options_email_tab.php:456
 
457
  msgid "Add New User Email"
458
  msgstr "Añadir un nuevo email de usuario "
459
 
460
+ #: php/qmn_options_email_tab.php:383 php/qmn_options_email_tab.php:449
461
+ #: php/qmn_options_email_tab.php:470 php/qmn_options_email_tab.php:536
462
+ #: php/qmn_options_results_page_tab.php:223
463
+ #: php/qmn_options_results_page_tab.php:287
464
  msgid "Score Greater Than Or Equal To"
465
  msgstr "Puntuación 'mayor que' o 'igual que'"
466
 
467
+ #: php/qmn_options_email_tab.php:384 php/qmn_options_email_tab.php:450
468
+ #: php/qmn_options_email_tab.php:471 php/qmn_options_email_tab.php:537
469
+ #: php/qmn_options_results_page_tab.php:224
470
+ #: php/qmn_options_results_page_tab.php:288
471
  msgid "Score Less Than Or Equal To"
472
  msgstr "Puntuación 'menor que' o 'igual que'"
473
 
474
+ #: php/qmn_options_email_tab.php:385 php/qmn_options_email_tab.php:451
475
+ #: php/qmn_options_email_tab.php:472 php/qmn_options_email_tab.php:538
 
 
476
  msgid "Subject"
477
  msgstr "Asunto"
478
 
479
+ #: php/qmn_options_email_tab.php:386 php/qmn_options_email_tab.php:452
480
+ #: php/qmn_options_email_tab.php:473 php/qmn_options_email_tab.php:539
 
 
481
  msgid "Email To Send"
482
  msgstr "Email a enviar"
483
 
484
+ #: php/qmn_options_email_tab.php:464
485
  msgid "Email Sent To Admin"
486
  msgstr "Email enviado a administrador"
487
 
488
+ #: php/qmn_options_email_tab.php:465 php/qmn_options_email_tab.php:543
 
489
  msgid "Add New Admin Email"
490
  msgstr "Añadir nuevo email de administrador"
491
 
492
+ #: php/qmn_options_leaderboard_tab.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
493
  msgid "Leaderboard"
494
  msgstr "Clasificación"
495
 
496
+ #: php/qmn_options_leaderboard_tab.php:39
497
  msgid "The leaderboards has been updated successfully."
498
  msgstr "Las tablas de clasificación han sido actualizadas correctamente."
499
 
500
+ #: php/qmn_options_leaderboard_tab.php:66
501
  msgid "The name of the user who is in first place"
502
  msgstr "El nombre del usuario que está en el primer puesto"
503
 
504
+ #: php/qmn_options_leaderboard_tab.php:67
505
  msgid "The score from the first place's quiz"
506
  msgstr "La puntuación del usuario que está en el primer puesto"
507
 
508
+ #: php/qmn_options_leaderboard_tab.php:71
509
  msgid "The name of the user who is in second place"
510
  msgstr "El nombre del usuario que está en segundo puesto"
511
 
512
+ #: php/qmn_options_leaderboard_tab.php:72
513
  msgid "The score from the second place's quiz"
514
  msgstr "La puntuación del usuario que está en el segundo puesto"
515
 
516
+ #: php/qmn_options_leaderboard_tab.php:76
517
  msgid "The name of the user who is in third place"
518
  msgstr "El nombre del usuario que está en el tercer puesto"
519
 
520
+ #: php/qmn_options_leaderboard_tab.php:77
521
  msgid "The score from the third place's quiz"
522
  msgstr "La puntuación del usuario que está en el tercer puesto"
523
 
524
+ #: php/qmn_options_leaderboard_tab.php:81
525
  msgid "The name of the user who is in fourth place"
526
  msgstr "El nombre del usuario que está en el cuarto puesto"
527
 
528
+ #: php/qmn_options_leaderboard_tab.php:82
529
  msgid "The score from the fourth place's quiz"
530
  msgstr "La puntuación del usuario que está en el cuarto puesto"
531
 
532
+ #: php/qmn_options_leaderboard_tab.php:86
533
  msgid "The name of the user who is in fifth place"
534
  msgstr "El nombre del usuario que está en el quinto puesto"
535
 
536
+ #: php/qmn_options_leaderboard_tab.php:87
537
  msgid "The score from the fifth place's quiz"
538
  msgstr "La puntuación del usuario que está en el quinto puesto"
539
 
540
+ #: php/qmn_options_leaderboard_tab.php:94
541
+ #: php/qmn_options_leaderboard_tab.php:122
542
  msgid "Save Leaderboard Options"
543
  msgstr "Guardar las opciones de clasificación"
544
 
545
+ #: php/qmn_options_leaderboard_tab.php:103
546
  msgid "Leaderboard Template"
547
  msgstr "Plantilla de clasificación"
548
 
549
+ #: php/qmn_options_option_tab.php:13
550
+ msgid "Options"
551
+ msgstr "Opciones"
 
 
 
 
 
 
 
552
 
553
+ #: php/qmn_options_option_tab.php:107
554
+ msgid "The options has been updated successfully."
555
+ msgstr "Las opciones han sido actualizadas correctamente."
556
 
557
+ #: php/qmn_options_option_tab.php:148 php/qmn_options_option_tab.php:299
558
+ msgid "Save Options"
559
+ msgstr "Guardar opciones"
560
 
561
+ #: php/qmn_options_option_tab.php:156
562
+ msgid "Which system is this quiz graded on?"
563
+ msgstr "¿Cual es el sistema de clasificación?"
564
 
565
+ #: php/qmn_options_option_tab.php:158
566
+ msgid "Correct/Incorrect"
567
+ msgstr "Correcto/Incorrecto"
568
 
569
+ #: php/qmn_options_option_tab.php:159
570
+ msgid "Points"
571
+ msgstr "Puntos"
 
572
 
573
+ #: php/qmn_options_option_tab.php:160 php/qmn_results.php:265
574
+ msgid "Not Graded"
575
+ msgstr "No clasificada"
576
 
577
+ #: php/qmn_options_option_tab.php:164
578
+ msgid "Should the user be required to be logged in to take this quiz?"
579
+ msgstr ""
580
+ "¿Es necesario que el usuario inicie sesión para rellenar este cuestionario?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
581
 
582
+ #: php/qmn_options_option_tab.php:171
583
+ msgid ""
584
+ "How many questions per page would you like? (Leave 0 for all questions on "
585
+ "one page)"
586
+ msgstr ""
587
+ "¿Cuantas preguntas por página desea? (Deje 0 para que todas las preguntas "
588
+ "aparezcan en una misma página)"
589
 
590
+ #: php/qmn_options_option_tab.php:177
591
+ msgid ""
592
+ "How many minutes does the user have to finish the quiz? (Leave 0 for no time "
593
+ "limit)"
594
+ msgstr ""
595
+ "¿Cuantos minutos tiene el usuario para realizar la encuesta? (Deje 0 sino "
596
+ "tiene límite de tiempo)"
597
 
598
+ #: php/qmn_options_option_tab.php:183
599
+ msgid ""
600
+ "How many times can a user take this quiz? (Leave 0 for as many times as the "
601
+ "user wants to. Currently only works for registered users)"
602
+ msgstr ""
603
+ "¿Cuantas veces puede el usuario rellenar este cuestionario? (Deje 0 para "
604
+ "tantas veces como el usuario quiera. Actualmente sólo funciona para usuarios "
605
+ "registrados)"
606
 
607
+ #: php/qmn_options_option_tab.php:189
608
+ msgid ""
609
+ "How many total entries can this quiz have? (Leave 0 for unlimited entries"
610
+ msgstr ""
611
+ "¿Cuantas veces en total puede ser rellenado este cuestionario? (Deje 0 para "
612
+ "entradas ilimitadas)"
613
 
614
+ #: php/qmn_options_option_tab.php:195
615
+ msgid ""
616
+ "How many questions should be loaded for quiz? (Leave 0 to load all questions)"
617
+ msgstr ""
618
+ "¿Cuantas preguntas deben ser cargadas por cuestionario? (Deje 0 para cargar "
619
+ "todas las preguntas)"
620
 
621
+ #: php/qmn_options_option_tab.php:201
622
+ msgid ""
623
+ "What time-frame should the user be able to access the quiz? (Leave blank if "
624
+ "the user can access anytime)"
625
+ msgstr ""
626
+ "¿En qué periodo de tiempo puede el usuario acceder a la encuesta? (Déjelo en "
627
+ "blanco si el usuario puede acceder en cualquier momento)"
628
 
629
+ #: php/qmn_options_option_tab.php:203
630
+ msgid "start date"
631
+ msgstr "fecha de inicio"
 
632
 
633
+ #: php/qmn_options_option_tab.php:206
634
+ msgid "end date"
635
+ msgstr "fecha de finalización"
 
636
 
637
+ #: php/qmn_options_option_tab.php:210
638
+ msgid ""
639
+ "Are the questions random? (Question Order will not apply if this is yes)"
640
+ msgstr ""
641
+ "¿Son preguntas aleatorias? (El orden de las preguntas no se aplicará si "
642
+ "contesta que SÍ)"
643
 
644
+ #: php/qmn_options_option_tab.php:212
645
+ msgid "Random Questions"
646
+ msgstr "Preguntas aleatorias"
647
 
648
+ #: php/qmn_options_option_tab.php:213
649
+ msgid "Random Questions And Answers"
650
+ msgstr "Preguntas y respuestas aleatorias"
651
 
652
+ #: php/qmn_options_option_tab.php:218
653
+ msgid ""
654
+ "Would you like to ask for the contact information at the beginning or at the "
655
+ "end of the quiz?"
656
+ msgstr ""
657
+ "¿Le gustaría pedir la información de contacto al principio o final de la "
658
+ "encuesta?"
659
 
660
+ #: php/qmn_options_option_tab.php:220
661
+ msgid "Beginning"
662
+ msgstr "Principio"
663
 
664
+ #: php/qmn_options_option_tab.php:221
665
+ msgid "End"
666
+ msgstr "Fin"
667
 
668
+ #: php/qmn_options_option_tab.php:225
669
+ msgid ""
670
+ "If a logged-in user takes the quiz, would you like them to be able to edit "
671
+ "contact information? If set to no, the fields will not show up for logged in "
672
+ "users; however, the users information will be saved for the fields."
673
+ msgstr ""
674
+ "Si un usuario que ha iniciado sesión, ¿le gustaría que pudiera editar la "
675
+ "información de contacto? Si contesta que NO, los campos no se mostrarán a "
676
+ "los usuarios conectados, sin embargo, la información sobre el usuario sería "
677
+ "registrada en los campos."
678
 
679
+ #: php/qmn_options_option_tab.php:232
680
+ msgid "Should we ask for users name?"
681
+ msgstr "¿Se debería pedir el nombre de los usuarios?"
682
 
683
+ #: php/qmn_options_option_tab.php:235 php/qmn_options_option_tab.php:243
684
+ #: php/qmn_options_option_tab.php:251 php/qmn_options_option_tab.php:259
685
+ msgid "Require"
686
+ msgstr "Obligatorio"
687
 
688
+ #: php/qmn_options_option_tab.php:240
689
+ msgid "Should we ask for users business?"
690
+ msgstr "¿Se debería pedir el empleo del usuario?"
691
 
692
+ #: php/qmn_options_option_tab.php:248
693
+ msgid "Should we ask for users email?"
694
+ msgstr "¿Se debería pedir el email al usuario?"
 
695
 
696
+ #: php/qmn_options_option_tab.php:256
697
+ msgid "Should we ask for users phone number?"
698
+ msgstr "¿Se debería pedir al usuario el número de teléfono?"
699
 
700
+ #: php/qmn_options_option_tab.php:264
701
+ msgid "Would you like a place for the user to enter comments?"
702
+ msgstr ""
703
+ "¿Le gustaría un espacio para que el usuario pudiera dejar sus comentarios?"
704
 
705
+ #: php/qmn_options_option_tab.php:271
706
+ msgid "Show question number on quiz?"
707
+ msgstr "¿Mostrar el número de pregunta en la encuesta?"
708
 
709
+ #: php/qmn_options_option_tab.php:278
710
+ msgid "Show social media sharing buttons? (Twitter & Facebook)"
711
+ msgstr ""
712
+ "¿Mostrar botones para compartir en medios sociales? (Twitter & Facebook)"
713
 
714
+ #: php/qmn_options_option_tab.php:278
715
+ msgid ""
716
+ "This option is for here only for users of older versions. Please use the new "
717
+ "template variables %FACEBOOK_SHARE% %TWITTER_SHARE% on your results pages "
718
+ "instead of using this option!"
719
+ msgstr ""
720
 
721
+ #: php/qmn_options_option_tab.php:285
722
+ msgid ""
723
+ "Disable question once user selects answer? (Currently only work on multiple "
724
+ "choice)"
725
+ msgstr ""
726
 
727
+ #: php/qmn_options_option_tab.php:292
728
+ msgid ""
729
+ "Dynamically add class for incorrect/correct answer after user selects "
730
+ "answer? (Currently only works on multiple choice)"
731
+ msgstr ""
732
 
733
+ #: php/qmn_options_preview_tab.php:13
734
+ msgid "Preview"
735
+ msgstr "Presentación"
736
 
737
+ #: php/qmn_options_questions_tab.php:13
738
  msgid "Questions"
739
  msgstr "Preguntas"
740
 
741
+ #: php/qmn_options_questions_tab.php:28
742
  msgid "Answer"
743
  msgstr "Respuesta"
744
 
745
+ #: php/qmn_options_questions_tab.php:126
746
  msgid "The question has been updated successfully."
747
  msgstr "La pregunta ha sido actualizada correctamente."
748
 
749
+ #: php/qmn_options_questions_tab.php:153
750
  msgid "The question has been deleted successfully."
751
  msgstr "La pregunta ha sido eliminada correctamente."
752
 
753
+ #: php/qmn_options_questions_tab.php:237
754
  msgid "The question has been duplicated successfully."
755
  msgstr "La pregunta ha sido duplicada correctamente."
756
 
757
+ #: php/qmn_options_questions_tab.php:330
758
  msgid "The question has been created successfully."
759
  msgstr "La pregunta ha sido creada correctamente."
760
 
761
+ #: php/qmn_options_questions_tab.php:448
762
  msgid "Add Question"
763
  msgstr "Añadir pregunta"
764
 
765
+ #: php/qmn_options_questions_tab.php:457
766
  #, php-format
767
  msgid "One question"
768
  msgid_plural "%s questions"
769
  msgstr[0] "Una pregunta"
770
  msgstr[1] "%s preguntas"
771
 
772
+ #: php/qmn_options_questions_tab.php:463 php/qmn_options_questions_tab.php:471
773
+ #: php/qmn_options_questions_tab.php:596
 
774
  msgid "Question Order"
775
  msgstr "Orden de preguntas"
776
 
777
+ #: php/qmn_options_questions_tab.php:464 php/qmn_options_questions_tab.php:472
778
+ #: php/qmn_options_questions_tab.php:575
 
779
  msgid "Question Type"
780
  msgstr "Tipo de pregunta"
781
 
782
+ #: php/qmn_options_questions_tab.php:465 php/qmn_options_questions_tab.php:473
783
+ #: php/qmn_options_questions_tab.php:609
 
784
  msgid "Category"
785
  msgstr "Categoria"
786
 
787
+ #: php/qmn_options_questions_tab.php:466 php/qmn_options_questions_tab.php:474
 
788
  msgid "Question"
789
  msgstr "Pregunta"
790
 
791
+ #: php/qmn_options_questions_tab.php:548
792
+ msgid ""
793
+ "For fill in the blank types, use %BLANK% to represent where to put the text "
794
+ "box in your text."
795
  msgstr ""
796
 
797
+ #: php/qmn_options_questions_tab.php:553
798
  msgid "Answers"
799
  msgstr "Respuestas"
800
 
801
+ #: php/qmn_options_questions_tab.php:554
802
  msgid "Points Worth"
803
  msgstr "Puntuación"
804
 
805
+ #: php/qmn_options_questions_tab.php:555
806
  msgid "Correct Answer"
807
  msgstr "Respuesta correcta"
808
 
809
+ #: php/qmn_options_questions_tab.php:560
810
  msgid "Add New Answer!"
811
  msgstr "Añada nueva respuesta!"
812
 
813
+ #: php/qmn_options_questions_tab.php:565
814
  msgid "Correct Answer Info"
815
  msgstr "Información acerca de la respuesta correcta"
816
 
817
+ #: php/qmn_options_questions_tab.php:570 php/qmn_quiz.php:477
818
+ msgid "Hint"
819
+ msgstr "Indicación"
820
+
821
+ #: php/qmn_options_questions_tab.php:587
822
  msgid "Comment Field"
823
  msgstr "Campo de Comentario"
824
 
825
+ #: php/qmn_options_questions_tab.php:589
826
  msgid "Small Text Field"
827
  msgstr "Campo de texto corto"
828
 
829
+ #: php/qmn_options_questions_tab.php:590
830
  msgid "Large Text Field"
831
  msgstr "Campo de texto largo"
832
 
833
+ #: php/qmn_options_questions_tab.php:591
834
  msgid "None"
835
  msgstr "Ninguna"
836
 
837
+ #: php/qmn_options_questions_tab.php:601
838
  msgid "Required?"
839
  msgstr "¿Obligatorio?"
840
 
841
+ #: php/qmn_options_questions_tab.php:632
842
  msgid "Create Question"
843
  msgstr "Crear Pregunta"
844
 
845
+ #: php/qmn_options_questions_tab.php:637
846
  msgid "Are you sure you want to delete this question?"
847
  msgstr "¿Está seguro que desea eliminar esta pregunta?"
848
 
849
+ #: php/qmn_options_questions_tab.php:642
850
  msgid "Delete Question"
851
  msgstr "Eliminar pregunta"
852
 
853
+ #: php/qmn_options_questions_tab.php:647
854
  msgid "Are you sure you want to duplicate this question?"
855
  msgstr "¿Está seguro que desea duplicar esta pregunta?"
856
 
857
+ #: php/qmn_options_questions_tab.php:652
858
  msgid "Duplicate Question"
859
  msgstr "Duplicar Pregunta"
860
 
861
+ #: php/qmn_options_results_page_tab.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
862
  msgid "Results Pages"
863
  msgstr "Página de Resultados"
864
 
865
+ #: php/qmn_options_results_page_tab.php:55
866
  msgid "The results page has been added successfully."
867
  msgstr "Los resultados han sido añadidos correctamente."
868
 
869
+ #: php/qmn_options_results_page_tab.php:95
870
  msgid "The results page has been saved successfully."
871
  msgstr "La página de resultados ha sido guardada correctamente."
872
 
873
+ #: php/qmn_options_results_page_tab.php:187
874
+ msgid "The amount of time user spent taking quiz in minutes"
875
+ msgstr ""
876
+
877
+ #: php/qmn_options_results_page_tab.php:190
878
+ msgid "The amount of time user spent taking quiz in seconds"
879
+ msgstr ""
880
+
881
+ #: php/qmn_options_results_page_tab.php:208
882
  msgid "Displays button to share on Facebook."
883
  msgstr ""
884
 
885
+ #: php/qmn_options_results_page_tab.php:211
886
  msgid "Displays button to share on Twitter."
887
  msgstr ""
888
 
889
+ #: php/qmn_options_results_page_tab.php:216
890
+ #: php/qmn_options_results_page_tab.php:297
891
  msgid "Save Results Pages"
892
  msgstr "Guardar Página de Resultados"
893
 
894
+ #: php/qmn_options_results_page_tab.php:217
895
+ #: php/qmn_options_results_page_tab.php:302
896
  msgid "Add New Results Page"
897
  msgstr "Añadir Nueva Página de Resultados"
898
 
899
+ #: php/qmn_options_results_page_tab.php:225
900
+ #: php/qmn_options_results_page_tab.php:289
901
+ msgid "Results Page Shown"
902
+ msgstr "Mostrar Página de Resultados"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
903
 
904
+ #: php/qmn_options_results_page_tab.php:226
905
+ #: php/qmn_options_results_page_tab.php:290
906
+ msgid "Redirect URL (Beta)"
907
  msgstr ""
908
 
909
+ #: php/qmn_options_results_page_tab.php:264 php/qmn_quiz_admin.php:283
910
+ msgid "Delete"
911
+ msgstr "Eliminar"
912
 
913
+ #: php/qmn_options_results_page_tab.php:264
914
+ msgid "Are you sure?"
915
+ msgstr "¿Está seguro?"
916
 
917
+ #: php/qmn_options_style_tab.php:13
918
  msgid "Style"
919
  msgstr "Estilo"
920
 
921
+ #: php/qmn_options_style_tab.php:39
922
  msgid "The style has been saved successfully."
923
  msgstr "El estilo ha sido guardado correctamente."
924
 
925
+ #: php/qmn_options_style_tab.php:78
926
  msgid "Quiz Styles"
927
  msgstr "Estilos de Cuestionario."
928
 
929
+ #: php/qmn_options_style_tab.php:79
930
  msgid "Choose your style:"
931
  msgstr "Elija su estilo:"
932
 
933
+ #: php/qmn_options_style_tab.php:101
934
  msgid "Custom"
935
  msgstr "Personalizado"
936
 
937
+ #: php/qmn_options_style_tab.php:107 php/qmn_options_style_tab.php:119
 
938
  msgid "Save Quiz Style"
939
  msgstr "Guardar Estilo de Cuestionario"
940
 
941
+ #: php/qmn_options_style_tab.php:109
942
  msgid "Custom Style CSS"
943
  msgstr "Personalizar Estilo CSS"
944
 
945
+ #: php/qmn_options_style_tab.php:110
946
+ msgid ""
947
+ "For detailed help and guidance along with a list of different classes used "
948
+ "in this plugin, please visit the following link:"
949
+ msgstr ""
950
+ "Para una ayuda detallada y guía acerca de las diferentes classes usadas en "
951
+ "este plugin, por favor visite el siguiente enlace:"
952
 
953
+ #: php/qmn_options_text_tab.php:13
954
+ msgid "Text"
955
+ msgstr "Texto"
956
 
957
+ #: php/qmn_options_text_tab.php:55
958
+ msgid "The templates has been updated successfully."
959
+ msgstr "La plantilla ha sido actualizada correctamente."
960
 
961
+ #: php/qmn_options_text_tab.php:86 php/qmn_quiz.php:1259
962
+ msgid "Previous"
963
+ msgstr "Anterior"
964
 
965
+ #: php/qmn_options_text_tab.php:187 php/qmn_options_text_tab.php:347
966
+ msgid "Save Templates"
967
+ msgstr "Guardar Plantillas"
968
 
969
+ #: php/qmn_options_text_tab.php:193
970
+ msgid "Message Templates"
971
+ msgstr "Plantillas de Mensaje"
972
 
973
+ #: php/qmn_options_text_tab.php:197
974
+ msgid "Message Displayed Before Quiz"
975
+ msgstr "Mensaje Mostrado Antes del Cuestionario"
976
 
977
+ #: php/qmn_options_text_tab.php:207
978
+ msgid "Message Displayed Before Comments Box If Enabled"
979
+ msgstr "Mensaje Mostrado Antes del campo de Comentarios si está activado."
980
 
981
+ #: php/qmn_options_text_tab.php:217
982
+ msgid "Message Displayed At End Of Quiz (Leave Blank To Omit Text Section)"
983
+ msgstr ""
984
+ "Mensaje Mostrado al final de la encuesta (Dejar en blanco para omitir "
985
+ "sección de texto)"
986
 
987
+ #: php/qmn_options_text_tab.php:227
988
+ msgid "Message Displayed If User Has Tried Quiz Too Many Times"
989
+ msgstr "Mensaje Mostrado si el usuario ha intentando entrar demasiadas veces."
990
+
991
+ #: php/qmn_options_text_tab.php:237
992
+ msgid ""
993
+ "Message Displayed If User Is Not Logged In And Quiz Requires Users To Be "
994
+ "Logged In"
995
  msgstr ""
996
+ "Mensaje Mostrado si el usuario no ha iniciado sesión en un cuestionario que "
997
+ "requería iniciar sesión."
998
 
999
+ #: php/qmn_options_text_tab.php:247
1000
+ msgid "Message Displayed If Date Is Outside Scheduled Timeframe"
1001
+ msgstr "Mensaje Mostrado si la fecha está fuera del calendario."
 
 
1002
 
1003
+ #: php/qmn_options_text_tab.php:257
1004
+ msgid "Message Displayed If The Limit Of Total Entries Has Been Reached"
1005
+ msgstr "Mensaje mostrado si el límite total de entradas ha sido superado."
1006
 
1007
+ #: php/qmn_options_text_tab.php:267
1008
+ msgid "%QUESTIONS_ANSWERS% Text"
1009
+ msgstr "%QUESTIONS_ANSWERS% Texto"
1010
 
1011
+ #: php/qmn_options_text_tab.php:280
1012
+ msgid "Twitter Sharing Text"
1013
+ msgstr "Texto para compartir en Twitter"
1014
 
1015
+ #: php/qmn_options_text_tab.php:297
1016
+ msgid "Facebook Sharing Text"
1017
+ msgstr "Texto para compartir en Facebook"
1018
 
1019
+ #: php/qmn_options_text_tab.php:312
1020
+ msgid "Other Templates"
1021
+ msgstr "Otras plantillas"
1022
 
1023
+ #: php/qmn_options_text_tab.php:315
1024
+ msgid "Text for submit button"
1025
+ msgstr "Texto para el botón de envío."
1026
 
1027
+ #: php/qmn_options_text_tab.php:319
1028
+ msgid "Text for name field"
1029
+ msgstr "Texto para el nombre del campo"
1030
 
1031
+ #: php/qmn_options_text_tab.php:323
1032
+ msgid "Text for business field"
1033
+ msgstr "Texto para el campo asunto."
1034
+
1035
+ #: php/qmn_options_text_tab.php:327
1036
+ msgid "Text for email field"
1037
+ msgstr "Texto para el campo email"
1038
+
1039
+ #: php/qmn_options_text_tab.php:331
1040
+ msgid "Text for phone number field"
1041
+ msgstr "Texto para el campo número de teléfono"
1042
+
1043
+ #: php/qmn_options_text_tab.php:335
1044
+ msgid "Text for comments field"
1045
+ msgstr "Texto para el campo Comentarios"
1046
+
1047
+ #: php/qmn_options_text_tab.php:339
1048
+ msgid "Text for previous button"
1049
+ msgstr "Texto para el botón Anterior"
1050
+
1051
+ #: php/qmn_options_text_tab.php:343
1052
+ msgid "Text for next button"
1053
+ msgstr "Texto para el botón Siguiente"
1054
+
1055
+ #: php/qmn_options_tools_tab.php:37
1056
+ msgid "The stats has been reset successfully."
1057
+ msgstr "Las estadísticas han sido reseteadas correctamente."
1058
+
1059
+ #: php/qmn_options_tools_tab.php:89
1060
+ msgid ""
1061
+ "Use this button to reset all the stats collected for this quiz (Quiz Views "
1062
+ "and Times Quiz Has Been Taken)."
1063
+ msgstr "Las estadísticas han sido reseteadas correctamente."
1064
+
1065
+ #: php/qmn_options_tools_tab.php:90
1066
+ msgid "Reset Quiz Views And Taken Stats"
1067
+ msgstr "Resetear Encuesta y Estadísticas Guardadas"
1068
 
1069
+ #: php/qmn_options_tools_tab.php:101
1070
+ msgid ""
1071
+ "Are you sure you want to reset the stats to 0? All views and taken stats for "
1072
+ "this quiz will be reset. This is permanent and cannot be undone."
1073
+ msgstr ""
1074
+ "¿Está seguro que desea resetear las estadísticas a 0? Todas las vistas y "
1075
+ "estadísticas guardadas para este cuestionario serán eliminadas. Esto es "
1076
+ "permanente y no se puede deshacer."
1077
+
1078
+ #: php/qmn_options_tools_tab.php:105
1079
+ msgid "Reset All Stats For Quiz"
1080
+ msgstr "Resetear todas las estadísticas para de un Cuestionario"
1081
+
1082
+ #: php/qmn_question_types.php:14
1083
  msgid "Multiple Choice"
1084
  msgstr "Opción Múltiple"
1085
 
1086
+ #: php/qmn_question_types.php:108
1087
  msgid "Horizontal Multiple Choice"
1088
  msgstr "Opción múltiple horizontal."
1089
 
1090
+ #: php/qmn_question_types.php:201
1091
  msgid "Drop Down"
1092
  msgstr "Desplegable"
1093
 
1094
+ #: php/qmn_question_types.php:291
1095
  msgid "Small Open Answer"
1096
  msgstr "Abrir Respuesta Corta"
1097
 
1098
+ #: php/qmn_question_types.php:365
1099
  msgid "Multiple Response"
1100
  msgstr "Respuesta Múltiple"
1101
 
1102
+ #: php/qmn_question_types.php:464
1103
  msgid "Large Open Answer"
1104
  msgstr "Abrir Respuesta Larga"
1105
 
1106
+ #: php/qmn_question_types.php:538
1107
  msgid "Text Block"
1108
  msgstr "Bloque de Texto"
1109
 
1110
+ #: php/qmn_question_types.php:573
1111
  msgid "Number"
1112
  msgstr "Número"
1113
 
1114
+ #: php/qmn_question_types.php:649
1115
  msgid "Accept"
1116
  msgstr "Aceptar"
1117
 
1118
+ #: php/qmn_question_types.php:684
1119
  msgid "Captcha"
1120
  msgstr ""
1121
  "Source text:\n"
1122
  "Captcha"
1123
 
1124
+ #: php/qmn_question_types.php:742
1125
  msgid "Horizontal Multiple Response"
1126
  msgstr "Múltiples Respuestas Horizontal"
1127
 
1128
+ #: php/qmn_question_types.php:843
1129
  msgid "Fill In The Blank"
1130
  msgstr ""
1131
 
1132
+ #: php/qmn_quiz.php:350
1133
+ msgid "Not a valid e-mail address!"
1134
+ msgstr "E-mail no válido!!"
1135
+
1136
+ #: php/qmn_quiz.php:351
1137
+ msgid "This field must be a number!"
1138
+ msgstr "Este campo debe ser númerico!"
1139
+
1140
+ #: php/qmn_quiz.php:352
1141
+ msgid "The entered text is not correct!"
1142
+ msgstr "El texto introducido no es correcto!"
1143
+
1144
+ #: php/qmn_quiz.php:353
1145
+ msgid "Please complete all required fields!"
1146
+ msgstr "Por favor, complete todas los campos obligatorios!"
1147
 
1148
+ #: php/qmn_quiz_admin.php:196
1149
  msgid "Add New"
1150
  msgstr "Añadir Nuevo"
1151
 
1152
+ #: php/qmn_quiz_admin.php:214
1153
  #, php-format
1154
  msgid "One quiz"
1155
  msgid_plural "%s quizzes"
1156
  msgstr[0] "Un cuestionarios"
1157
  msgstr[1] "%s cuestionarios"
1158
 
1159
+ #: php/qmn_quiz_admin.php:259 php/qmn_quiz_admin.php:310
1160
+ #: php/qmn_quiz_admin.php:378 php/qmn_results.php:216
1161
+ msgid "Quiz Name"
1162
+ msgstr "Nombre del Cuestionario"
1163
+
1164
+ #: php/qmn_quiz_admin.php:260 php/qmn_quiz_admin.php:311
1165
  msgid "URL"
1166
  msgstr "URL"
1167
 
1168
+ #: php/qmn_quiz_admin.php:261 php/qmn_quiz_admin.php:312
 
1169
  msgid "Quiz Shortcode"
1170
  msgstr "Código Corto de la Encuesta"
1171
 
1172
+ #: php/qmn_quiz_admin.php:262 php/qmn_quiz_admin.php:313
 
1173
  msgid "Leaderboard Shortcode"
1174
  msgstr "Código Corto del Panel de Puntuaciones"
1175
 
1176
+ #: php/qmn_quiz_admin.php:263 php/qmn_quiz_admin.php:314
 
1177
  msgid "Quiz Views"
1178
  msgstr "Vistas del Cuestionario"
1179
 
1180
+ #: php/qmn_quiz_admin.php:264 php/qmn_quiz_admin.php:315
 
1181
  msgid "Quiz Taken"
1182
  msgstr "Cuestionario Completado"
1183
 
1184
+ #: php/qmn_quiz_admin.php:265 php/qmn_quiz_admin.php:316
 
1185
  msgid "Last Modified"
1186
  msgstr "Última Modificación"
1187
 
1188
+ #: php/qmn_quiz_admin.php:278
1189
  msgid "Edit Name"
1190
  msgstr "Editar Nombre"
1191
 
1192
+ #: php/qmn_quiz_admin.php:280
1193
  msgid "Edit"
1194
  msgstr "Editar"
1195
 
1196
+ #: php/qmn_quiz_admin.php:281 php/qmn_results_details.php:135
1197
+ msgid "Results"
1198
+ msgstr "Resultados"
1199
+
1200
+ #: php/qmn_quiz_admin.php:282 php/qmn_quiz_admin.php:411
1201
  msgid "Duplicate"
1202
  msgstr "Duplicar"
1203
 
1204
+ #: php/qmn_quiz_admin.php:373
1205
  msgid "Create New Quiz"
1206
  msgstr "Crear un Nuevo Cuestionario"
1207
 
1208
+ #: php/qmn_quiz_admin.php:387
1209
  msgid "Create Quiz"
1210
  msgstr "Crear Cuestionario"
1211
 
1212
+ #: php/qmn_quiz_admin.php:393
1213
  msgid "Quiz Name:"
1214
  msgstr "Nombre del Cuestionario:"
1215
 
1216
+ #: php/qmn_quiz_admin.php:404
1217
  msgid "Duplicate this quiz?"
1218
  msgstr "¿Duplicar este cuestionario?"
1219
 
1220
+ #: php/qmn_quiz_admin.php:406
1221
  msgid "Duplicate questions with quiz"
1222
  msgstr "Duplicar preguntar con Cuestinario"
1223
 
1224
+ #: php/qmn_quiz_admin.php:408
1225
  msgid "Name Of New Quiz:"
1226
  msgstr "Nombre del Nuevo Cuestionario:"
1227
 
1228
+ #: php/qmn_quiz_admin.php:417
1229
  msgid "Are you sure you want to delete this quiz?"
1230
  msgstr "¿Está seguro que desea eliminar este cuestionario?"
1231
 
1232
+ #: php/qmn_quiz_admin.php:422
1233
  msgid "Delete Quiz"
1234
  msgstr "Eliminar Cuestionario"
1235
 
1236
+ #: php/qmn_quiz_creator.php:372
1237
+ msgid ""
1238
+ "Your new quiz has been created successfully. To begin editing your quiz, "
1239
+ "click the Edit link on the new quiz."
1240
+ msgstr ""
1241
+ "Su cuestionario ha sido creado correctamente. Para empezar a editar su "
1242
+ "cuestionario haga click en Edit en el nuevo cuestionario."
1243
+
1244
+ #: php/qmn_quiz_creator.php:438
1245
+ msgid "Your quiz has been deleted successfully."
1246
+ msgstr "Su cuestionario ha sido eliminado correctamente."
1247
+
1248
+ #: php/qmn_quiz_creator.php:480
1249
+ msgid "Your quiz name has been updated successfully."
1250
+ msgstr "Su cuestionario ha sido actualizado correctamente."
1251
+
1252
+ #: php/qmn_quiz_creator.php:637
1253
+ msgid "Your quiz has been duplicated successfully."
1254
+ msgstr "Su cuestionario ha sido duplicado correctamente."
1255
+
1256
+ #: php/qmn_quiz_options.php:56
1257
+ #, php-format
1258
+ msgid "Quiz Settings For %s"
1259
+ msgstr "Configuración para el cuestionario %s"
1260
+
1261
+ #: php/qmn_quiz_options.php:96
1262
+ msgid ""
1263
+ "Please go to the quizzes page and click on the Edit link from the quiz you "
1264
+ "wish to edit."
1265
+ msgstr ""
1266
+ "Por favor vaya a la página de cuestionarios y haga click sobre el botón "
1267
+ "Editar en el cuestionario que desee editar."
1268
+
1269
+ #: php/qmn_results.php:30
1270
+ msgid "Your results has been deleted successfully."
1271
+ msgstr "Sus resultados han sido eliminados correctamente."
1272
+
1273
+ #: php/qmn_results.php:168
1274
+ #, php-format
1275
+ msgid "One result"
1276
+ msgid_plural "%s results"
1277
+ msgstr[0] "Un resultado"
1278
+ msgstr[1] "%s resultados"
1279
+
1280
+ #: php/qmn_results.php:215
1281
+ msgid "Actions"
1282
+ msgstr "Acciones"
1283
+
1284
+ #: php/qmn_results.php:217
1285
+ msgid "Score"
1286
+ msgstr "Puntuación"
1287
+
1288
+ #: php/qmn_results.php:218
1289
+ msgid "Time To Complete"
1290
+ msgstr "Tiempo para completar"
1291
+
1292
+ #: php/qmn_results.php:219
1293
+ msgid "Name"
1294
+ msgstr "Nombre"
1295
+
1296
+ #: php/qmn_results.php:220
1297
+ msgid "Business"
1298
+ msgstr "Asunto"
1299
+
1300
+ #: php/qmn_results.php:221
1301
+ msgid "Email"
1302
+ msgstr "Email"
1303
+
1304
+ #: php/qmn_results.php:222
1305
+ msgid "Phone"
1306
+ msgstr "Teléfono"
1307
+
1308
+ #: php/qmn_results.php:223
1309
+ msgid "Time Taken"
1310
+ msgstr "Tiempo empleado"
1311
+
1312
+ #: php/qmn_results.php:282
1313
+ msgid "Are you sure you want to delete these results?"
1314
+ msgstr "¿Está seguro de que desea eliminar estos resultados?"
1315
+
1316
+ #: php/qmn_results.php:287
1317
+ msgid "Delete Results"
1318
+ msgstr "Eliminar resultados"
1319
+
1320
+ #: php/qmn_results_details.php:221
1321
+ msgid "Create Certificate"
1322
+ msgstr "Crear Certificado"
1323
+
1324
+ #: php/qmn_results_details.php:226
1325
+ msgid "Download Certificate Here"
1326
+ msgstr "Descargar Certificado Aquí"
1327
+
1328
+ #: php/qmn_results_details.php:240
1329
+ msgid "Certificate"
1330
+ msgstr "Cerificado"
1331
+
1332
+ #: php/qmn_tools.php:107
1333
+ msgid "There has been an error! Please try again."
1334
+ msgstr "Ha habido un error! Por favor, inténtelo de nuevo."
1335
+
1336
+ #: php/qmn_tools.php:125
1337
+ msgid "Quiz Has Been Restored!"
1338
+ msgstr "El cuestionario ha sido restaurado!"
1339
+
1340
+ #: php/qmn_tools.php:130
1341
+ msgid ""
1342
+ "Choose a quiz in the drop down and then click the button to restore a "
1343
+ "deleted quiz."
1344
+ msgstr ""
1345
+ "Escoja un cuestionario en la lista desplegable y después haga click en el "
1346
+ "botón para restaurar una encuesta eliminada."
1347
+
1348
+ #: php/qmn_tools.php:140
1349
+ msgid "Restore Quiz"
1350
+ msgstr "Restaurar la encuesta"
1351
+
1352
+ #: php/qmn_tools.php:176 php/qmn_tools.php:192
1353
+ #, php-format
1354
+ msgid "Previous %s Audits"
1355
+ msgstr ""
1356
+ "Auditoria \n"
1357
+ "%s Anterior"
1358
+
1359
+ #: php/qmn_tools.php:179 php/qmn_tools.php:186
1360
+ #, php-format
1361
+ msgid "Next %s Audits"
1362
+ msgstr "Próxima %s Auditoria"
1363
+
1364
+ #: php/qmn_tools.php:199
1365
+ msgid "User"
1366
+ msgstr "Usuario"
1367
+
1368
+ #: php/qmn_tools.php:200
1369
+ msgid "Action"
1370
+ msgstr "Acción"
1371
+
1372
+ #: php/qmn_tools.php:201
1373
+ msgid "Time"
1374
+ msgstr "Tiempo"
1375
+
1376
+ #: php/qmn_usage_tracking.php:193
1377
+ msgid ""
1378
+ "Allow Quiz Master Next to anonymously track this plugin's usage and help us "
1379
+ "make this plugin better? No sensitive data is tracked."
1380
+ msgstr ""
1381
+ "¿Permite a \n"
1382
+ "Quiz Master Next el envío de información acerca del uso de este plugin con "
1383
+ "el fín de ayudarnos a mejorar este plugin? No se hará seguimiento sobre "
1384
+ "información privada."
1385
+
1386
+ #: php/qmn_usage_tracking.php:194
1387
+ msgid "Allow"
1388
+ msgstr "Permitir"
1389
+
1390
+ #: php/qmn_usage_tracking.php:195
1391
+ msgid "Do not allow"
1392
+ msgstr "No permitir"
1393
+
1394
+ #: php/qmn_widgets.php:14
1395
  msgid "Quiz Master Next Leaderboard Widget"
1396
  msgstr ""
1397
  "Widget de Puntuaciones de \n"
1398
  "Quiz Master Next"
1399
 
1400
+ #: php/qmn_widgets.php:29
1401
  msgid "Widget Title"
1402
  msgstr "Título del Widget"
1403
 
1404
+ #: php/qmn_widgets.php:33
1405
  msgid "Quiz ID"
1406
  msgstr "ID del cuestionario"
1407
 
1408
+ #~ msgid "The amount of time user spent of quiz"
1409
+ #~ msgstr "Tiempo empleado por el usuario en responder el cuestionario"
1410
+
1411
  #~ msgid ""
1412
  #~ "Required currently only works on open answer, number, accept, and captcha "
1413
  #~ "question types"
languages/quiz-master-next-it_IT.mo CHANGED
Binary file
languages/quiz-master-next-it_IT.po CHANGED
@@ -5,7 +5,7 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Quiz Master Next\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2015-04-20 01:13-0500\n"
9
  "PO-Revision-Date: \n"
10
  "Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
11
  "Language-Team: My Local Webstop <fpcorso@mylocalwebstop.com>\n"
@@ -16,12 +16,14 @@ msgstr ""
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;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;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
 
 
20
  "X-Poedit-Basepath: ../\n"
21
- "X-Generator: Poedit 1.7.5\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
- #: mlw_quizmaster2.php:217
25
  msgid "Quizzes"
26
  msgstr "Quiz"
27
 
@@ -29,7 +31,8 @@ msgstr "Quiz"
29
  msgid "Quiz Settings"
30
  msgstr "Impostazioni Quiz"
31
 
32
- #: mlw_quizmaster2.php:219
 
33
  msgid "Quiz Results"
34
  msgstr "Risultati Quiz"
35
 
@@ -41,7 +44,8 @@ msgstr "Dettagli Risultati del Quiz"
41
  msgid "Settings"
42
  msgstr "Impostazioni"
43
 
44
- #: mlw_quizmaster2.php:222
 
45
  msgid "Tools"
46
  msgstr "Strumenti"
47
 
@@ -57,1213 +61,1335 @@ msgstr "Impostazioni Addon"
57
  msgid "Help"
58
  msgstr "Aiuto"
59
 
60
- #: mlw_quizmaster2.php:228
61
- #: mlw_quizmaster2.php:229
62
  msgid "QMN About"
63
  msgstr "QMN About"
64
 
65
- #: php/qmn_options_email_tab.php:6
66
- msgid "Emails"
67
- msgstr "Emails"
68
 
69
- #: php/qmn_options_email_tab.php:42
70
- #: php/qmn_options_email_tab.php:101
71
- msgid "The email has been added successfully."
72
- msgstr "L'email è stata aggiunta con successo."
73
 
74
- #: php/qmn_options_email_tab.php:55
75
- #: php/qmn_options_email_tab.php:114
76
- #: php/qmn_options_email_tab.php:178
77
- #: php/qmn_quiz_creator.php:382
78
- #: php/qmn_quiz_creator.php:448
79
- #: php/qmn_quiz_creator.php:490
80
- #: php/qmn_quiz_creator.php:648
81
- #: php/qmn_quiz_creator.php:713
82
- #: php/qmn_options_leaderboard_tab.php:38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  #, php-format
84
- msgid "There has been an error in this action. Please share this with the developer. Error Code: %s"
85
- msgstr "C'è stato un errore durante l'azione. Per favore, riportalo allo sviluppatore. Codice Errore: %s"
 
 
 
 
 
 
 
 
86
 
87
- #: php/qmn_options_email_tab.php:73
88
- #: php/qmn_options_email_tab.php:91
89
  msgid "Enter text here"
90
  msgstr "Inserisci qui il testo"
91
 
92
- #: php/qmn_options_email_tab.php:165
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
  msgid "The email has been updated successfully."
94
  msgstr "L'email è stata aggiornata con successo."
95
 
96
- #: php/qmn_options_email_tab.php:232
97
- #: php/qmn_options_leaderboard_tab.php:49
98
  msgid "Template Variables"
99
  msgstr "Variabili di Template"
100
 
101
- #: php/qmn_options_email_tab.php:235
 
102
  msgid "Score for the quiz when using points"
103
  msgstr "Punteggio del quiz quando si usano punti"
104
 
105
- #: php/qmn_options_email_tab.php:238
 
106
  msgid "The average amount of points user had per question"
107
  msgstr "Quantità media di punti che l'utente ha guadagnato per domanda"
108
 
109
- #: php/qmn_options_email_tab.php:241
 
110
  msgid "The number of correct answers the user had"
111
  msgstr "Numero di risposte a cui l'utente ha risposto correttamente"
112
 
113
- #: php/qmn_options_email_tab.php:244
 
114
  msgid "The total number of questions in the quiz"
115
  msgstr "Numero totale di domande nel quiz"
116
 
117
- #: php/qmn_options_email_tab.php:247
 
118
  msgid "Score for the quiz when using correct answers"
119
  msgstr "Punteggio massimo per il quiz rispondendo correttamente"
120
 
121
- #: php/qmn_options_email_tab.php:250
 
122
  msgid "The name the user entered before the quiz"
123
  msgstr "Nome inserito dall'utente prima del quiz"
124
 
125
- #: php/qmn_options_email_tab.php:253
 
126
  msgid "The business the user entered before the quiz"
127
  msgstr "Azienda inserita dall'utente prima del quiz"
128
 
129
- #: php/qmn_options_email_tab.php:256
 
130
  msgid "The phone number the user entered before the quiz"
131
  msgstr "Numero di telefono inserito dall'utente prima del quiz"
132
 
133
- #: php/qmn_options_email_tab.php:259
 
134
  msgid "The email the user entered before the quiz"
135
  msgstr "Email inserita dall'utente prima del quiz"
136
 
137
- #: php/qmn_options_email_tab.php:262
138
- #: php/qmn_options_leaderboard_tab.php:77
139
  msgid "The name of the quiz"
140
  msgstr "Nome del quiz"
141
 
142
- #: php/qmn_options_email_tab.php:265
143
- msgid "Shows the question, the answer the user provided, and the correct answer"
144
- msgstr "Mostra la domanda, la risposta data dall'utente, e la risposta corretta"
 
 
 
145
 
146
- #: php/qmn_options_email_tab.php:268
 
147
  msgid "The comments the user entered into comment box if enabled"
148
  msgstr "Commenti inseriti dall'utente nel box commenti, se abilitati"
149
 
150
- #: php/qmn_options_email_tab.php:271
151
- msgid "The amount of time user spent of quiz"
152
- msgstr "Tempo impiegato dall'utente per il quiz"
 
 
 
 
153
 
154
- #: php/qmn_options_email_tab.php:274
 
155
  msgid "The link to the certificate after completing the quiz"
156
  msgstr "Il link al certificato dopo aver completato il quiz"
157
 
158
- #: php/qmn_options_email_tab.php:277
 
159
  msgid "The amount of points a specific category earned."
160
  msgstr "I punti totali guadagnati in una specifica categoria."
161
 
162
- #: php/qmn_options_email_tab.php:280
 
163
  msgid "The score a specific category earned."
164
  msgstr "Il punteggio guadagnato in una specifica categoria."
165
 
166
- #: php/qmn_options_email_tab.php:283
 
167
  msgid "The average points from all categories."
168
  msgstr "La media dei punti in tutte le categorie."
169
 
170
- #: php/qmn_options_email_tab.php:286
 
171
  msgid "The average score from all categories."
172
  msgstr "La media del punteggio in tutte le categorie."
173
 
174
- #: php/qmn_options_email_tab.php:289
175
  msgid "The question that the user answered"
176
  msgstr "La domanda a cui l'utente ha risposto"
177
 
178
- #: php/qmn_options_email_tab.php:292
179
  msgid "The answer the user gave for the question"
180
  msgstr "La risposta fornita dall'utente per la domanda"
181
 
182
- #: php/qmn_options_email_tab.php:295
183
  msgid "The correct answer for the question"
184
  msgstr "La risposta corretta per la domanda"
185
 
186
- #: php/qmn_options_email_tab.php:298
187
  msgid "The comments the user provided in the comment field for the question"
188
  msgstr "I commenti scritti dall'utente nel campo dei commenti sulla domanda"
189
 
190
- #: php/qmn_options_email_tab.php:301
191
  msgid "Reason why the correct answer is the correct answer"
192
  msgstr "Motivo per cui la risposta corretta è la risposta corretta"
193
 
194
- #: php/qmn_options_email_tab.php:304
195
  msgid "The Current Date"
196
  msgstr "Data Corrente"
197
 
198
- #: php/qmn_options_email_tab.php:319
199
- #: php/qmn_options_email_tab.php:518
200
  msgid "Save Email Templates And Settings"
201
  msgstr "Salva Template e Impostazioni Email"
202
 
203
- #: php/qmn_options_email_tab.php:323
204
  msgid "Send user email upon completion?"
205
  msgstr "Invia un'email all'utente dopo il completamento del quiz?"
206
 
207
- #: php/qmn_options_email_tab.php:325
208
- #: php/qmn_options_email_tab.php:332
209
- msgid "Yes"
210
- msgstr "Sì"
211
-
212
- #: php/qmn_options_email_tab.php:326
213
- #: php/qmn_options_email_tab.php:333
214
- msgid "No"
215
- msgstr "No"
216
-
217
- #: php/qmn_options_email_tab.php:330
218
  msgid "Send admin email upon completion?"
219
  msgstr "Invia un'email all'amministratore dopo il completamento del quiz?"
220
 
221
- #: php/qmn_options_email_tab.php:337
222
- msgid "What emails should we send the admin email to? Separate emails with a comma."
223
- msgstr "A quali indirizzi vuoi inviare l'email da amministratori? Separa gli indirizzi email con una virgola."
 
 
 
224
 
225
- #: php/qmn_options_email_tab.php:341
226
  msgid "What is the From Name for the email sent to users and admin?"
227
  msgstr "Qual è il Nome Mittente per l'email inviata a utenti e amministratori?"
228
 
229
- #: php/qmn_options_email_tab.php:347
230
  msgid "Email Sent To User"
231
  msgstr "Email Inviata All'Utente"
232
 
233
- #: php/qmn_options_email_tab.php:348
234
- #: php/qmn_options_email_tab.php:426
235
  msgid "Add New User Email"
236
  msgstr "Aggiungi Nuova Email Utente"
237
 
238
- #: php/qmn_options_email_tab.php:353
239
- #: php/qmn_options_email_tab.php:419
240
- #: php/qmn_options_email_tab.php:440
241
- #: php/qmn_options_email_tab.php:506
242
  msgid "Score Greater Than Or Equal To"
243
  msgstr "Punteggio Maggiore o Uguale a"
244
 
245
- #: php/qmn_options_email_tab.php:354
246
- #: php/qmn_options_email_tab.php:420
247
- #: php/qmn_options_email_tab.php:441
248
- #: php/qmn_options_email_tab.php:507
249
  msgid "Score Less Than Or Equal To"
250
  msgstr "Punteggio Minore o Uguale a"
251
 
252
- #: php/qmn_options_email_tab.php:355
253
- #: php/qmn_options_email_tab.php:421
254
- #: php/qmn_options_email_tab.php:442
255
- #: php/qmn_options_email_tab.php:508
256
  msgid "Subject"
257
  msgstr "Oggetto"
258
 
259
- #: php/qmn_options_email_tab.php:356
260
- #: php/qmn_options_email_tab.php:422
261
- #: php/qmn_options_email_tab.php:443
262
- #: php/qmn_options_email_tab.php:509
263
  msgid "Email To Send"
264
  msgstr "Email Da Inviare"
265
 
266
- #: php/qmn_options_email_tab.php:434
267
  msgid "Email Sent To Admin"
268
  msgstr "Email Inviata All'Amministratore"
269
 
270
- #: php/qmn_options_email_tab.php:435
271
- #: php/qmn_options_email_tab.php:513
272
  msgid "Add New Admin Email"
273
  msgstr "Aggiungi Nuova Email Amministratore"
274
 
275
- #: php/qmn_quiz_creator.php:369
276
- msgid "Your new quiz has been created successfully. To begin editing your quiz, click the Edit link on the new quiz."
277
- msgstr "Il tuo nuovo quiz è stato creato con successo. Per iniziare a modificarlo, clicca sul link Modifica nel nuovo quiz."
278
-
279
- #: php/qmn_quiz_creator.php:435
280
- msgid "Your quiz has been deleted successfully."
281
- msgstr "Il tuo quiz è stato cancellato con successo."
282
-
283
- #: php/qmn_quiz_creator.php:477
284
- msgid "Your quiz name has been updated successfully."
285
- msgstr "Il nome del tuo quiz è stato aggiornato con successo."
286
-
287
- #: php/qmn_quiz_creator.php:634
288
- msgid "Your quiz has been duplicated successfully."
289
- msgstr "Il tuo quiz è stato duplicato con successo."
290
-
291
- #: php/qmn_quiz.php:350
292
- msgid "Not a valid e-mail address!"
293
- msgstr "Indirizzo e-mail non valido!"
294
-
295
- #: php/qmn_quiz.php:351
296
- msgid "This field must be a number!"
297
- msgstr "Questo campo deve essere numerico!"
298
-
299
- #: php/qmn_quiz.php:352
300
- msgid "The entered text is not correct!"
301
- msgstr "Il testo inserito non è corretto!"
302
-
303
- #: php/qmn_quiz.php:353
304
- msgid "Please complete all required fields!"
305
- msgstr "Per favore completa tutti i campi richiesti!"
306
-
307
- #: php/qmn_quiz.php:465
308
- msgid "Hint"
309
- msgstr "Indizio"
310
-
311
- #: php/qmn_quiz.php:1254
312
- msgid "Previous"
313
- msgstr "Precedente"
314
-
315
- #: php/qmn_credits.php:27
316
- msgid "Welcome To Quiz Master Next"
317
- msgstr "Benvenuto su Quiz Master Next"
318
-
319
- #: php/qmn_credits.php:28
320
- msgid "Thank you for updating!"
321
- msgstr "Grazie per l'aggiornamento!"
322
-
323
- #: php/qmn_credits.php:32
324
- msgid "What's New!"
325
- msgstr "Novità!"
326
-
327
- #: php/qmn_credits.php:34
328
- msgid "Changelog"
329
- msgstr "Changelog"
330
-
331
- #: php/qmn_usage_tracking.php:193
332
- msgid "Allow Quiz Master Next to anonymously track this plugin's usage and help us make this plugin better? No sensitive data is tracked."
333
- msgstr "Consenti a Quiz Master Next di tenere traccia in modo anonimo dell'uso di questo plugin, per aiutarci a migliorarlo? Non monitoriamo dati sensibili."
334
-
335
- #: php/qmn_usage_tracking.php:194
336
- msgid "Allow"
337
- msgstr "Consento"
338
-
339
- #: php/qmn_usage_tracking.php:195
340
- msgid "Do not allow"
341
- msgstr "Non consento"
342
-
343
- #: php/qmn_options_leaderboard_tab.php:6
344
  msgid "Leaderboard"
345
  msgstr "Classifica"
346
 
347
- #: php/qmn_options_leaderboard_tab.php:25
348
  msgid "The leaderboards has been updated successfully."
349
  msgstr "La classifica è stata aggiornata con successo."
350
 
351
- #: php/qmn_options_leaderboard_tab.php:52
352
  msgid "The name of the user who is in first place"
353
  msgstr "Il nome dell'utente al primo posto"
354
 
355
- #: php/qmn_options_leaderboard_tab.php:53
356
  msgid "The score from the first place's quiz"
357
  msgstr "Il punteggio del quiz al primo posto"
358
 
359
- #: php/qmn_options_leaderboard_tab.php:57
360
  msgid "The name of the user who is in second place"
361
  msgstr "Il nome dell'utente al secondo posto"
362
 
363
- #: php/qmn_options_leaderboard_tab.php:58
364
  msgid "The score from the second place's quiz"
365
  msgstr "Il punteggio del quiz al secondo posto"
366
 
367
- #: php/qmn_options_leaderboard_tab.php:62
368
  msgid "The name of the user who is in third place"
369
  msgstr "Il nome dell'utente al terzo posto"
370
 
371
- #: php/qmn_options_leaderboard_tab.php:63
372
  msgid "The score from the third place's quiz"
373
  msgstr "Il punteggio del quiz al terzo posto"
374
 
375
- #: php/qmn_options_leaderboard_tab.php:67
376
  msgid "The name of the user who is in fourth place"
377
  msgstr "Il nome dell'utente al quarto posto"
378
 
379
- #: php/qmn_options_leaderboard_tab.php:68
380
  msgid "The score from the fourth place's quiz"
381
  msgstr "Il punteggio del quiz al quarto posto"
382
 
383
- #: php/qmn_options_leaderboard_tab.php:72
384
  msgid "The name of the user who is in fifth place"
385
  msgstr "Il nome dell'utente al quinto posto"
386
 
387
- #: php/qmn_options_leaderboard_tab.php:73
388
  msgid "The score from the fifth place's quiz"
389
  msgstr "Il punteggio del quiz al quinto posto"
390
 
391
- #: php/qmn_options_leaderboard_tab.php:80
392
- #: php/qmn_options_leaderboard_tab.php:108
393
  msgid "Save Leaderboard Options"
394
  msgstr "Salva Opzioni Classifica"
395
 
396
- #: php/qmn_options_leaderboard_tab.php:89
397
  msgid "Leaderboard Template"
398
  msgstr "Template Classifica"
399
 
400
- #: php/qmn_options_leaderboard_tab.php:91
401
- msgid "Allowed Variables:"
402
- msgstr "Variabili Consentite:"
403
-
404
- #: php/qmn_addons.php:48
405
- msgid "These addons extend the functionality of Quiz Master Next"
406
- msgstr "Questi addons estendono la funzionalità di Quiz Master Next"
407
 
408
- #: php/qmn_addons.php:91
409
- msgid "Browse All Addons"
410
- msgstr "Esplora tutti gli addons"
411
 
412
- #: php/qmn_addons.php:98
413
- msgid "Featured Addons"
414
- msgstr "Addons in evidenza"
415
 
416
- #: php/qmn_options_text_tab.php:6
417
- msgid "Text"
418
- msgstr "Testo"
419
 
420
- #: php/qmn_options_text_tab.php:42
421
- msgid "The templates has been updated successfully."
422
- msgstr "I template sono stati aggiornati con successo."
423
 
424
- #: php/qmn_options_text_tab.php:170
425
- #: php/qmn_options_text_tab.php:330
426
- msgid "Save Templates"
427
- msgstr "Salva Template"
428
 
429
- #: php/qmn_options_text_tab.php:176
430
- msgid "Message Templates"
431
- msgstr "Messaggio Template"
432
 
433
- #: php/qmn_options_text_tab.php:180
434
- msgid "Message Displayed Before Quiz"
435
- msgstr "Messaggio Mostrato Prima del Quiz"
436
 
437
- #: php/qmn_options_text_tab.php:190
438
- msgid "Message Displayed Before Comments Box If Enabled"
439
- msgstr "Messaggio Mostrato Prima Del Box Commenti (se attivo)"
 
 
 
 
440
 
441
- #: php/qmn_options_text_tab.php:200
442
- msgid "Message Displayed At End Of Quiz (Leave Blank To Omit Text Section)"
443
- msgstr "Messaggio Mostrato Alla Fine Del Quiz (lascia vuoto per omettere la sezione testo)"
444
-
445
- #: php/qmn_options_text_tab.php:210
446
- msgid "Message Displayed If User Has Tried Quiz Too Many Times"
447
- msgstr "Messaggio Mostrato Se l'Utente Ha Provato Il Quiz Troppe Volte"
448
-
449
- #: php/qmn_options_text_tab.php:220
450
- msgid "Message Displayed If User Is Not Logged In And Quiz Requires Users To Be Logged In"
451
- msgstr "Messaggio Mostrato Se l'Utente Non E' Loggato E Il Quiz Richiede Che Lo Sia"
452
-
453
- #: php/qmn_options_text_tab.php:230
454
- msgid "Message Displayed If Date Is Outside Scheduled Timeframe"
455
- msgstr "Messaggio Mostrato Se La Data E' Fuori Dall'Intervallo Previsto"
456
-
457
- #: php/qmn_options_text_tab.php:240
458
- msgid "Message Displayed If The Limit Of Total Entries Has Been Reached"
459
- msgstr "Messaggio Mostrato Se Viene Raggiunto Il Limite Delle Voci Totali"
460
-
461
- #: php/qmn_options_text_tab.php:250
462
- msgid "%QUESTIONS_ANSWERS% Text"
463
- msgstr "%QUESTIONS_ANSWERS% Testo"
464
-
465
- #: php/qmn_options_text_tab.php:263
466
- msgid "Twitter Sharing Text"
467
- msgstr "Testo Di Condivisione Su Twitter"
468
-
469
- #: php/qmn_options_text_tab.php:280
470
- msgid "Facebook Sharing Text"
471
- msgstr "Testo di Condivisione Su Facebook"
472
-
473
- #: php/qmn_options_text_tab.php:295
474
- msgid "Other Templates"
475
- msgstr "Altri Template"
476
-
477
- #: php/qmn_options_text_tab.php:298
478
- msgid "Text for submit button"
479
- msgstr "Testo per il pulsante di invio"
480
-
481
- #: php/qmn_options_text_tab.php:302
482
- msgid "Text for name field"
483
- msgstr "Testo per il campo del nome"
484
-
485
- #: php/qmn_options_text_tab.php:306
486
- msgid "Text for business field"
487
- msgstr "Testo per il campo dell'azienda"
488
-
489
- #: php/qmn_options_text_tab.php:310
490
- msgid "Text for email field"
491
- msgstr "Testo per il campo dell'email"
492
-
493
- #: php/qmn_options_text_tab.php:314
494
- msgid "Text for phone number field"
495
- msgstr "Testo per il campo del telefono"
496
-
497
- #: php/qmn_options_text_tab.php:318
498
- msgid "Text for comments field"
499
- msgstr "Testo per il campo commenti"
500
-
501
- #: php/qmn_options_text_tab.php:322
502
- msgid "Text for previous button"
503
- msgstr "Testo per il pulsante \"precedente\""
504
-
505
- #: php/qmn_options_text_tab.php:326
506
- msgid "Text for next button"
507
- msgstr "Testo per il pulsante \"successivo\""
508
-
509
- #: php/qmn_options_tools_tab.php:23
510
- msgid "The stats has been reset successfully."
511
- msgstr "Le statistiche sono state azzerate con successo."
512
-
513
- #: php/qmn_options_tools_tab.php:75
514
- msgid "Use this button to reset all the stats collected for this quiz (Quiz Views and Times Quiz Has Been Taken)."
515
- msgstr "Seleziona questo pulsante per azzerare tutte le statistiche relative a questo quiz (Visualizzazioni Quiz e Numero Di Volte In Cui Il Quiz E' Stato Svolto)"
516
-
517
- #: php/qmn_options_tools_tab.php:76
518
- msgid "Reset Quiz Views And Taken Stats"
519
- msgstr "Azzera Statistiche Su Visualizzazioni E Numero Svolgimenti Del Quiz"
520
-
521
- #: php/qmn_options_tools_tab.php:87
522
- msgid "Are you sure you want to reset the stats to 0? All views and taken stats for this quiz will be reset. This is permanent and cannot be undone."
523
- msgstr "Sei sicuro di voler azzerare le statistiche? Tutte le statistiche sulle visualizzazioni e gli svolgimenti saranno azzerate. Questo passo è permanente e non può essere revocato."
524
 
525
- #: php/qmn_options_tools_tab.php:91
526
- msgid "Reset All Stats For Quiz"
527
- msgstr "Azzera Tutte Le Statistiche Del Quiz"
 
 
 
 
 
528
 
529
- #: php/qmn_dashboard_widgets.php:9
530
- msgid "Quiz Master Next Snapshot"
531
- msgstr "Prossima Anteprima Di Quiz Master"
 
 
 
532
 
533
- #: php/qmn_dashboard_widgets.php:166
534
- msgid "quizzes taken today"
535
- msgstr "quiz svolti oggi"
 
 
 
536
 
537
- #: php/qmn_dashboard_widgets.php:185
538
- msgid "quizzes taken last 7 days"
539
- msgstr "quiz svolti negli ultimi 7 giorni"
 
 
 
 
540
 
541
- #: php/qmn_dashboard_widgets.php:204
542
- #, fuzzy
543
- msgid "quizzes taken last 30 days"
544
- msgstr "quiz svolti negli ultimi 7 giorni"
545
 
546
- #: php/qmn_dashboard_widgets.php:223
547
- #, fuzzy
548
- msgid "quizzes taken last 120 days"
549
- msgstr "quiz svolti negli ultimi 7 giorni"
550
 
551
- #: php/qmn_dashboard_widgets.php:242
552
- msgid "total active quizzes"
553
- msgstr "totale quiz attivi"
 
 
554
 
555
- #: php/qmn_dashboard_widgets.php:248
556
- msgid "total active questions"
557
- msgstr "totale domande attive"
558
 
559
- #: php/qmn_dashboard_widgets.php:254
560
- msgid "most popular quiz"
561
- msgstr "quiz più popolare"
562
 
563
- #: php/qmn_dashboard_widgets.php:260
564
- msgid "least popular quiz"
565
- msgstr "quiz meno popolare"
 
 
 
 
566
 
567
- #: php/qmn_options_certificate_tab.php:6
568
- msgid "Certificate (Beta)"
569
- msgstr "Certificato (Beta)"
570
 
571
- #: php/qmn_options_certificate_tab.php:32
572
- msgid "The certificate has been updated successfully."
573
- msgstr "Il certificato è stato aggiornato con successo."
574
 
575
- #: php/qmn_options_certificate_tab.php:61
576
- msgid "Enter title here"
577
- msgstr "Inserisci qui un titolo"
 
 
 
 
 
 
 
578
 
579
- #: php/qmn_options_certificate_tab.php:65
580
- msgid "Quiz Certificate (Beta)"
581
- msgstr "Certificato del Quiz (Beta)"
582
 
583
- #: php/qmn_options_certificate_tab.php:66
584
- msgid "Enter in your text here to fill in the certificate for this quiz. Be sure to enter in the link variable into the templates on the Quiz Text tab so the user can access the certificate."
585
- msgstr "Inserisci qui il testo per compilare il certificato di questo quiz. Assicurati di inserire la variabile del link nel template nella sezione Testo Quiz, in modo che l'utente possa accedere al certificato."
 
586
 
587
- #: php/qmn_options_certificate_tab.php:67
588
- msgid "These fields cannot contain HTML."
589
- msgstr "Questi campi non possono contenere HTML."
590
 
591
- #: php/qmn_options_certificate_tab.php:68
592
- #: php/qmn_options_certificate_tab.php:124
593
- msgid "Save Certificate Options"
594
- msgstr "Salva Opzioni Certificato"
595
 
596
- #: php/qmn_options_certificate_tab.php:76
597
- msgid "Enable Certificates For This Quiz?"
598
- msgstr "Attiva i Certificati per Questo Quiz?"
599
 
600
- #: php/qmn_options_certificate_tab.php:84
601
- msgid "Certificate Title"
602
- msgstr "Titolo Certificato"
 
603
 
604
- #: php/qmn_options_certificate_tab.php:91
605
- msgid "Message Displayed On Certificate"
606
- msgstr "Messaggio Mostrato nel Certificato"
607
 
608
- #: php/qmn_options_certificate_tab.php:111
609
- msgid "URL To Logo (Must be JPG, JPEG, PNG or GIF)"
610
- msgstr "URL al Logo (deve essere JPG, JPEG, PNG o GIF)"
611
 
612
- #: php/qmn_options_certificate_tab.php:118
613
- msgid "URL To Background Img (Must be JPG, JPEG, PNG or GIF)"
614
- msgstr "URL all'Immagine di Sfondo (deve Essere JPG, JPEG, PNG, GIF)"
 
 
 
615
 
616
- #: php/qmn_quiz_options.php:52
617
- #, php-format
618
- msgid "Quiz Settings For %s"
619
- msgstr "Impostazioni Quiz Per %s"
 
620
 
621
- #: php/qmn_quiz_options.php:92
622
- msgid "Error!"
623
- msgstr "Errore!"
 
 
624
 
625
- #: php/qmn_quiz_options.php:92
626
- msgid "Please go to the quizzes page and click on the Edit link from the quiz you wish to edit."
627
- msgstr "Per favore vai alla pagina dei quiz e clicca sul link Modifica del quiz che vuoi modificare."
628
 
629
- #: php/qmn_options_questions_tab.php:6
630
  msgid "Questions"
631
  msgstr "Domande"
632
 
633
- #: php/qmn_options_questions_tab.php:14
634
  msgid "Answer"
635
  msgstr "Risposta"
636
 
637
- #: php/qmn_options_questions_tab.php:112
638
  msgid "The question has been updated successfully."
639
  msgstr "La domanda è stata aggiornata con successo."
640
 
641
- #: php/qmn_options_questions_tab.php:139
642
  msgid "The question has been deleted successfully."
643
  msgstr "La domanda è stata cancellata con successo."
644
 
645
- #: php/qmn_options_questions_tab.php:223
646
  msgid "The question has been duplicated successfully."
647
  msgstr "La domanda è stata duplicata con successo."
648
 
649
- #: php/qmn_options_questions_tab.php:316
650
  msgid "The question has been created successfully."
651
  msgstr "La domanda è stata creata con successo."
652
 
653
- #: php/qmn_options_questions_tab.php:434
654
  msgid "Add Question"
655
  msgstr "Aggiungi Domanda"
656
 
657
- #: php/qmn_options_questions_tab.php:443
658
  #, php-format
659
  msgid "One question"
660
  msgid_plural "%s questions"
661
  msgstr[0] "Una domanda"
662
  msgstr[1] "%s domande"
663
 
664
- #: php/qmn_options_questions_tab.php:449
665
- #: php/qmn_options_questions_tab.php:457
666
- #: php/qmn_options_questions_tab.php:582
667
  msgid "Question Order"
668
  msgstr "Ordine Domanda"
669
 
670
- #: php/qmn_options_questions_tab.php:450
671
- #: php/qmn_options_questions_tab.php:458
672
- #: php/qmn_options_questions_tab.php:561
673
  msgid "Question Type"
674
  msgstr "Tipo di Domanda"
675
 
676
- #: php/qmn_options_questions_tab.php:451
677
- #: php/qmn_options_questions_tab.php:459
678
- #: php/qmn_options_questions_tab.php:595
679
  msgid "Category"
680
  msgstr "Categoria"
681
 
682
- #: php/qmn_options_questions_tab.php:452
683
- #: php/qmn_options_questions_tab.php:460
684
  msgid "Question"
685
  msgstr "Domanda"
686
 
687
- #: php/qmn_options_questions_tab.php:534
688
- msgid "For fill in the blank types, use %BLANK% to represent where to put the text box in your text."
 
 
689
  msgstr ""
690
 
691
- #: php/qmn_options_questions_tab.php:539
692
  msgid "Answers"
693
  msgstr "Risposte"
694
 
695
- #: php/qmn_options_questions_tab.php:540
696
  msgid "Points Worth"
697
  msgstr "Valore in Punti"
698
 
699
- #: php/qmn_options_questions_tab.php:541
700
  msgid "Correct Answer"
701
  msgstr "Risposta Corretta"
702
 
703
- #: php/qmn_options_questions_tab.php:546
704
  msgid "Add New Answer!"
705
  msgstr "Aggiungi una Nuova Risposta!"
706
 
707
- #: php/qmn_options_questions_tab.php:551
708
  msgid "Correct Answer Info"
709
  msgstr "Informazioni Risposta Corretta"
710
 
711
- #: php/qmn_options_questions_tab.php:573
 
 
 
 
712
  msgid "Comment Field"
713
  msgstr "Campo Commenti"
714
 
715
- #: php/qmn_options_questions_tab.php:575
716
  msgid "Small Text Field"
717
  msgstr "Campo Testo Piccolo"
718
 
719
- #: php/qmn_options_questions_tab.php:576
720
  msgid "Large Text Field"
721
  msgstr "Campo Testo Grande"
722
 
723
- #: php/qmn_options_questions_tab.php:577
724
  msgid "None"
725
  msgstr "No"
726
 
727
- #: php/qmn_options_questions_tab.php:587
728
  msgid "Required?"
729
  msgstr "Obbligatoria?"
730
 
731
- #: php/qmn_options_questions_tab.php:618
732
  msgid "Create Question"
733
  msgstr "Crea Una Domanda"
734
 
735
- #: php/qmn_options_questions_tab.php:623
736
  msgid "Are you sure you want to delete this question?"
737
  msgstr "Sei sicuro di voler cancellare questa domanda?"
738
 
739
- #: php/qmn_options_questions_tab.php:628
740
  msgid "Delete Question"
741
  msgstr "Cancella Domanda"
742
 
743
- #: php/qmn_options_questions_tab.php:633
744
  msgid "Are you sure you want to duplicate this question?"
745
  msgstr "Sei sicuro di voler duplicare questa domanda?"
746
 
747
- #: php/qmn_options_questions_tab.php:638
748
  msgid "Duplicate Question"
749
  msgstr "Duplica Domanda"
750
 
751
- #: php/qmn_results.php:23
752
- msgid "Your results has been deleted successfully."
753
- msgstr "I tuoi risultati sono stati cancellati con successo."
754
-
755
- #: php/qmn_results.php:161
756
- #, php-format
757
- msgid "One result"
758
- msgid_plural "%s results"
759
- msgstr[0] "Un risultato"
760
- msgstr[1] "%s risultati"
761
-
762
- #: php/qmn_results.php:208
763
- msgid "Actions"
764
- msgstr "Azioni"
765
-
766
- #: php/qmn_results.php:209
767
- msgid "Quiz Name"
768
- msgstr "Nome Quiz"
769
-
770
- #: php/qmn_results.php:210
771
- msgid "Score"
772
- msgstr "Punteggio"
773
-
774
- #: php/qmn_results.php:211
775
- msgid "Time To Complete"
776
- msgstr "Tempo Impiegato"
777
-
778
- #: php/qmn_results.php:212
779
- msgid "Name"
780
- msgstr "Nome"
781
-
782
- #: php/qmn_results.php:213
783
- msgid "Business"
784
- msgstr "Azienda"
785
-
786
- #: php/qmn_results.php:214
787
- msgid "Email"
788
- msgstr "Email"
789
-
790
- #: php/qmn_results.php:215
791
- msgid "Phone"
792
- msgstr "Telefono"
793
-
794
- #: php/qmn_results.php:216
795
- msgid "Time Taken"
796
- msgstr "Data"
797
-
798
- #: php/qmn_results.php:258
799
- #: php/qmn_options_option_tab.php:147
800
- msgid "Not Graded"
801
- msgstr "Non valutato"
802
-
803
- #: php/qmn_results.php:275
804
- msgid "Are you sure you want to delete these results?"
805
- msgstr "Sicuro di voler eliminare questi risultati?"
806
-
807
- #: php/qmn_results.php:280
808
- msgid "Delete Results"
809
- msgstr "Elimina Risultati"
810
-
811
- #: php/qmn_options_results_page_tab.php:6
812
  msgid "Results Pages"
813
  msgstr "Pagine dei Risultati"
814
 
815
- #: php/qmn_options_results_page_tab.php:41
816
  msgid "The results page has been added successfully."
817
  msgstr "La pagina dei risultati è stata aggiunta con successo."
818
 
819
- #: php/qmn_options_results_page_tab.php:81
820
  msgid "The results page has been saved successfully."
821
  msgstr "La pagina dei risultati è stata salvata con successo."
822
 
823
- #: php/qmn_options_results_page_tab.php:191
 
 
 
 
 
 
 
 
824
  msgid "Displays button to share on Facebook."
825
  msgstr ""
826
 
827
- #: php/qmn_options_results_page_tab.php:194
828
  msgid "Displays button to share on Twitter."
829
  msgstr ""
830
 
831
- #: php/qmn_options_results_page_tab.php:199
832
- #: php/qmn_options_results_page_tab.php:280
833
  msgid "Save Results Pages"
834
  msgstr "Salva Pagina Risultati"
835
 
836
- #: php/qmn_options_results_page_tab.php:200
837
- #: php/qmn_options_results_page_tab.php:285
838
  msgid "Add New Results Page"
839
  msgstr "Aggiungi Nuova Pagina Risultati"
840
 
841
- #: php/qmn_options_results_page_tab.php:208
842
- #: php/qmn_options_results_page_tab.php:272
843
  msgid "Results Page Shown"
844
  msgstr "Pagina Risultati Mostrata"
845
 
846
- #: php/qmn_options_results_page_tab.php:209
847
- #: php/qmn_options_results_page_tab.php:273
848
  msgid "Redirect URL (Beta)"
849
  msgstr ""
850
 
851
- #: php/qmn_options_results_page_tab.php:247
852
  msgid "Delete"
853
  msgstr "Cancella"
854
 
855
- #: php/qmn_options_results_page_tab.php:247
856
  msgid "Are you sure?"
857
  msgstr "Sei sicuro?"
858
 
859
- #: php/qmn_options_preview_tab.php:6
860
- msgid "Preview"
861
- msgstr "Anteprima"
862
-
863
- #: php/qmn-stats-page.php:29
864
- msgid "Quiz Statistics"
865
- msgstr "Statistiche Quiz"
866
 
867
- #: php/qmn-stats-page.php:68
868
- #, fuzzy
869
- msgid "Quiz Taken Stats"
870
- msgstr "Statistiche Totali Quiz"
871
 
872
- #: php/qmn_options_option_tab.php:6
873
- msgid "Options"
874
- msgstr "Opzioni"
875
 
876
- #: php/qmn_options_option_tab.php:94
877
- msgid "The options has been updated successfully."
878
- msgstr "Le opzioni sono state aggiornate con successo."
879
 
880
- #: php/qmn_options_option_tab.php:135
881
- #: php/qmn_options_option_tab.php:286
882
- msgid "Save Options"
883
- msgstr "Salva Opzioni"
884
 
885
- #: php/qmn_options_option_tab.php:143
886
- msgid "Which system is this quiz graded on?"
887
- msgstr "Con quale metodo viene valutato questo quiz?"
888
 
889
- #: php/qmn_options_option_tab.php:145
890
- msgid "Correct/Incorrect"
891
- msgstr "Giuste/Sbagliate"
892
 
893
- #: php/qmn_options_option_tab.php:146
894
- msgid "Points"
895
- msgstr "Punti"
896
-
897
- #: php/qmn_options_option_tab.php:151
898
- msgid "Should the user be required to be logged in to take this quiz?"
899
- msgstr "E' richiesto all'utente di fare login per svolgere questo quiz?"
900
-
901
- #: php/qmn_options_option_tab.php:158
902
- msgid "How many questions per page would you like? (Leave 0 for all questions on one page)"
903
- msgstr "Quante domande vorresti mostrare in ogni pagina? (Lascia 0 per avere tutte le domande in una pagina)"
904
-
905
- #: php/qmn_options_option_tab.php:164
906
- msgid "How many minutes does the user have to finish the quiz? (Leave 0 for no time limit)"
907
- msgstr "Quanto tempo ha a disposizione l'utente per terminare il quiz? (Lascia 0 per non dare limiti di tempo)"
908
-
909
- #: php/qmn_options_option_tab.php:170
910
- msgid "How many times can a user take this quiz? (Leave 0 for as many times as the user wants to. Currently only works for registered users)"
911
- msgstr "Quante volte un utente può fare questo quiz? (Lascia 0 per permettere che l'utente faccia il quiz quante volte desidera. Al momento funziona solo per utenti registrati)"
912
-
913
- #: php/qmn_options_option_tab.php:176
914
- msgid "How many total entries can this quiz have? (Leave 0 for unlimited entries"
915
- msgstr "Quante voci può avere in totale questo quiz? (Lascia 0 per indicare un numero illimitato di voci)"
916
-
917
- #: php/qmn_options_option_tab.php:182
918
- msgid "How many questions should be loaded for quiz? (Leave 0 to load all questions)"
919
- msgstr "Quante domande devono essere caricate per questo quiz? (Lascia 0 per caricare tutte le domande)"
920
-
921
- #: php/qmn_options_option_tab.php:188
922
- msgid "What time-frame should the user be able to access the quiz? (Leave blank if the user can access anytime)"
923
- msgstr "In che finestra temporale l'utente può accedere al quiz? (Lascia vuoto se l'utente può accedere in qualsiasi momento)"
924
-
925
- #: php/qmn_options_option_tab.php:190
926
- msgid "start date"
927
- msgstr "data inizio"
928
-
929
- #: php/qmn_options_option_tab.php:193
930
- msgid "end date"
931
- msgstr "data fine"
932
-
933
- #: php/qmn_options_option_tab.php:197
934
- msgid "Are the questions random? (Question Order will not apply if this is yes)"
935
- msgstr "Le domande sono casuali? (Se sì, l'Ordine Delle Domande non verrà applicato)"
936
-
937
- #: php/qmn_options_option_tab.php:199
938
- msgid "Random Questions"
939
- msgstr "Domande Casuali"
940
-
941
- #: php/qmn_options_option_tab.php:200
942
- msgid "Random Questions And Answers"
943
- msgstr "Domande e Risposte Casuali"
944
-
945
- #: php/qmn_options_option_tab.php:205
946
- msgid "Would you like to ask for the contact information at the beginning or at the end of the quiz?"
947
- msgstr "Preferisci richiedere le informazioni di contatto all'inizio o alla fine del quiz?"
948
-
949
- #: php/qmn_options_option_tab.php:207
950
- msgid "Beginning"
951
- msgstr "All'inizio"
952
-
953
- #: php/qmn_options_option_tab.php:208
954
- msgid "End"
955
- msgstr "Alla fine"
956
-
957
- #: php/qmn_options_option_tab.php:212
958
- msgid "If a logged-in user takes the quiz, would you like them to be able to edit contact information? If set to no, the fields will not show up for logged in users; however, the users information will be saved for the fields."
959
- msgstr "Se un utente che ha fatto login svolge il quiz, vuoi dargli la possibilità di modificare le informazioni di contatto? Se imposti NO, i campi non verranno mostrati per utenti loggati; tuttavia, le informazioni degli utenti verranno salvate per i campi."
960
-
961
- #: php/qmn_options_option_tab.php:219
962
- msgid "Should we ask for users name?"
963
- msgstr "E' richiesto il nome utente^"
964
 
965
- #: php/qmn_options_option_tab.php:222
966
- #: php/qmn_options_option_tab.php:230
967
- #: php/qmn_options_option_tab.php:238
968
- #: php/qmn_options_option_tab.php:246
969
- msgid "Require"
970
- msgstr "Obbligatorio"
971
 
972
- #: php/qmn_options_option_tab.php:227
973
- msgid "Should we ask for users business?"
974
- msgstr "E' richiesta l'azienda dell'utente?"
975
 
976
- #: php/qmn_options_option_tab.php:235
977
- msgid "Should we ask for users email?"
978
- msgstr "E' richiesta l'email dell'utente?"
979
 
980
- #: php/qmn_options_option_tab.php:243
981
- msgid "Should we ask for users phone number?"
982
- msgstr "E' richiesto il numeri di telefono dell'utente?"
983
 
984
- #: php/qmn_options_option_tab.php:251
985
- msgid "Would you like a place for the user to enter comments?"
986
- msgstr "Vuoi che ci sia un posto dove gli utenti possano scrivere i loro commenti?"
987
 
988
- #: php/qmn_options_option_tab.php:258
989
- msgid "Show question number on quiz?"
990
- msgstr "Il numero della domanda è visibile nel quiz?"
991
 
992
- #: php/qmn_options_option_tab.php:265
993
- msgid "Show social media sharing buttons? (Twitter & Facebook)"
994
- msgstr "Mostra i bottoni di condivisione sui social? (Twitter e Facebook)"
995
 
996
- #: php/qmn_options_option_tab.php:265
997
- msgid "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!"
998
  msgstr ""
 
 
999
 
1000
- #: php/qmn_options_option_tab.php:272
1001
- msgid "Disable question once user selects answer? (Currently only work on multiple choice)"
1002
- msgstr ""
1003
 
1004
- #: php/qmn_options_option_tab.php:279
1005
- msgid "Dynamically add class for incorrect/correct answer after user selects answer? (Currently only works on multiple choice)"
 
 
1006
  msgstr ""
 
1007
 
1008
- #: php/qmn_options_style_tab.php:6
1009
- msgid "Style"
1010
- msgstr "Stile"
1011
-
1012
- #: php/qmn_options_style_tab.php:26
1013
- msgid "The style has been saved successfully."
1014
- msgstr "Lo stile è stato salvato con successo."
1015
-
1016
- #: php/qmn_options_style_tab.php:65
1017
- msgid "Quiz Styles"
1018
- msgstr "Stili Quiz"
1019
-
1020
- #: php/qmn_options_style_tab.php:66
1021
- msgid "Choose your style:"
1022
- msgstr "Scegli lo stile:"
1023
-
1024
- #: php/qmn_options_style_tab.php:88
1025
- msgid "Custom"
1026
- msgstr "Personalizzato"
1027
-
1028
- #: php/qmn_options_style_tab.php:94
1029
- #: php/qmn_options_style_tab.php:106
1030
- msgid "Save Quiz Style"
1031
- msgstr "Salva Stile Quiz"
1032
-
1033
- #: php/qmn_options_style_tab.php:96
1034
- msgid "Custom Style CSS"
1035
- msgstr "Stile CSS Personalizzato"
1036
-
1037
- #: php/qmn_options_style_tab.php:97
1038
- msgid "For detailed help and guidance along with a list of different classes used in this plugin, please visit the following link:"
1039
- msgstr "Per un aiuto e una guida dettagliati accompagnati da una lista delle diverse classi usate in questo plugin, per favore visita il seguente link:"
1040
 
1041
- #: php/qmn_results_details.php:117
1042
- msgid "Results"
1043
- msgstr "Risultati"
1044
 
1045
- #: php/qmn_results_details.php:196
1046
- msgid "Create Certificate"
1047
- msgstr "Crea Certificato"
1048
 
1049
- #: php/qmn_results_details.php:201
1050
- msgid "Download Certificate Here"
1051
- msgstr "Scarica qui il certificato"
1052
 
1053
- #: php/qmn_results_details.php:208
1054
- msgid "Certificate"
1055
- msgstr "Certificato"
1056
 
1057
- #: php/qmn_tools.php:90
1058
- msgid "There has been an error! Please try again."
1059
- msgstr "C'è stato un errore! Per favore, prova di nuovo."
1060
 
1061
- #: php/qmn_tools.php:108
1062
- msgid "Quiz Has Been Restored!"
1063
- msgstr "Il Quiz E' Stato Ripristinato!"
1064
 
1065
- #: php/qmn_tools.php:113
1066
- msgid "Choose a quiz in the drop down and then click the button to restore a deleted quiz."
1067
- msgstr "Scegli un quiz dal menu a tendina e poi clicca sul pulsante apposito per ripristinare un quiz eliminato."
1068
 
1069
- #: php/qmn_tools.php:123
1070
- msgid "Restore Quiz"
1071
- msgstr "Ripristina Quiz"
1072
 
1073
- #: php/qmn_tools.php:152
1074
- #: php/qmn_tools.php:168
1075
- #, php-format
1076
- msgid "Previous %s Audits"
1077
- msgstr "Audit Precedente %s"
1078
 
1079
- #: php/qmn_tools.php:155
1080
- #: php/qmn_tools.php:162
1081
- #, php-format
1082
- msgid "Next %s Audits"
1083
- msgstr "Audit Successivo %s"
1084
 
1085
- #: php/qmn_tools.php:175
1086
- msgid "User"
1087
- msgstr "Utente"
1088
 
1089
- #: php/qmn_tools.php:176
1090
- msgid "Action"
1091
- msgstr "Azione"
1092
 
1093
- #: php/qmn_tools.php:177
1094
- msgid "Time"
1095
- msgstr "Tempo"
1096
 
1097
- #: php/qmn_help.php:10
1098
- msgid "Need Help?"
1099
- msgstr "Serve Aiuto?"
1100
 
1101
- #: php/qmn_help.php:11
1102
- msgid "Support"
1103
- msgstr "Supporto"
 
 
 
 
 
1104
 
1105
- #: php/qmn_help.php:12
1106
- msgid "System Info"
1107
- msgstr "Informazioni di Sistema"
1108
 
1109
- #: php/qmn_help.php:15
1110
- msgid "Help Page"
1111
- msgstr "Pagina di Aiuto"
 
 
 
 
 
1112
 
1113
- #: php/qmn_help.php:38
1114
- msgid "Need help with the plugin? Try any of the following:"
1115
- msgstr "Serve aiuto con il plugin?"
1116
 
1117
- #: php/qmn_question_types.php:7
1118
  msgid "Multiple Choice"
1119
  msgstr "Scelta Multipla"
1120
 
1121
- #: php/qmn_question_types.php:76
1122
  msgid "Horizontal Multiple Choice"
1123
  msgstr "Scelta Multipla Orizzontale"
1124
 
1125
- #: php/qmn_question_types.php:144
1126
  msgid "Drop Down"
1127
  msgstr "A Tendina"
1128
 
1129
- #: php/qmn_question_types.php:209
1130
  msgid "Small Open Answer"
1131
  msgstr "Risposta Aperta Breve"
1132
 
1133
- #: php/qmn_question_types.php:258
1134
  msgid "Multiple Response"
1135
  msgstr "Risposte Multiple"
1136
 
1137
- #: php/qmn_question_types.php:333
1138
  msgid "Large Open Answer"
1139
  msgstr "Risposta Aperta Lunga"
1140
 
1141
- #: php/qmn_question_types.php:382
1142
  msgid "Text Block"
1143
  msgstr "Blocco Testo"
1144
 
1145
- #: php/qmn_question_types.php:397
1146
  msgid "Number"
1147
  msgstr "Numero"
1148
 
1149
- #: php/qmn_question_types.php:446
1150
  msgid "Accept"
1151
  msgstr "Casella da spuntare"
1152
 
1153
- #: php/qmn_question_types.php:465
1154
  msgid "Captcha"
1155
  msgstr "Captcha"
1156
 
1157
- #: php/qmn_question_types.php:506
1158
  msgid "Horizontal Multiple Response"
1159
  msgstr "Risposte Multiple Orizzontali"
1160
 
1161
- #: php/qmn_question_types.php:580
1162
  msgid "Fill In The Blank"
1163
  msgstr ""
1164
 
1165
- #: php/qmn_alerts.php:19
1166
- msgid "Success!"
1167
- msgstr "Fatto!"
 
 
 
 
1168
 
1169
- #: php/qmn_quiz_admin.php:189
 
 
 
 
 
 
 
 
1170
  msgid "Add New"
1171
  msgstr "Aggiungi Nuovo"
1172
 
1173
- #: php/qmn_quiz_admin.php:207
1174
  #, php-format
1175
  msgid "One quiz"
1176
  msgid_plural "%s quizzes"
1177
  msgstr[0] "Un quiz"
1178
  msgstr[1] "%s quiz"
1179
 
1180
- #: php/qmn_quiz_admin.php:253
1181
- #: php/qmn_quiz_admin.php:304
 
 
 
 
1182
  msgid "URL"
1183
  msgstr "URL"
1184
 
1185
- #: php/qmn_quiz_admin.php:254
1186
- #: php/qmn_quiz_admin.php:305
1187
  msgid "Quiz Shortcode"
1188
  msgstr "Codice Breve Quiz"
1189
 
1190
- #: php/qmn_quiz_admin.php:255
1191
- #: php/qmn_quiz_admin.php:306
1192
  msgid "Leaderboard Shortcode"
1193
  msgstr "Codice Breve Classifica"
1194
 
1195
- #: php/qmn_quiz_admin.php:256
1196
- #: php/qmn_quiz_admin.php:307
1197
  msgid "Quiz Views"
1198
  msgstr "Visualizzazioni Quiz"
1199
 
1200
- #: php/qmn_quiz_admin.php:257
1201
- #: php/qmn_quiz_admin.php:308
1202
  msgid "Quiz Taken"
1203
  msgstr "Prove Svolte"
1204
 
1205
- #: php/qmn_quiz_admin.php:258
1206
- #: php/qmn_quiz_admin.php:309
1207
  msgid "Last Modified"
1208
  msgstr "Ultima Modifica"
1209
 
1210
- #: php/qmn_quiz_admin.php:271
1211
  msgid "Edit Name"
1212
  msgstr "Modifica Nome"
1213
 
1214
- #: php/qmn_quiz_admin.php:273
1215
  msgid "Edit"
1216
  msgstr "Modifica"
1217
 
1218
- #: php/qmn_quiz_admin.php:275
1219
- #: php/qmn_quiz_admin.php:404
 
 
 
1220
  msgid "Duplicate"
1221
  msgstr "Duplica"
1222
 
1223
- #: php/qmn_quiz_admin.php:366
1224
  msgid "Create New Quiz"
1225
  msgstr "Crea Nuovo Quiz"
1226
 
1227
- #: php/qmn_quiz_admin.php:380
1228
  msgid "Create Quiz"
1229
  msgstr "Crea Quiz"
1230
 
1231
- #: php/qmn_quiz_admin.php:386
1232
  msgid "Quiz Name:"
1233
  msgstr "Nome Quiz:"
1234
 
1235
- #: php/qmn_quiz_admin.php:397
1236
  msgid "Duplicate this quiz?"
1237
  msgstr "Duplica questo quiz?"
1238
 
1239
- #: php/qmn_quiz_admin.php:399
1240
  msgid "Duplicate questions with quiz"
1241
  msgstr "Duplica domande del quiz"
1242
 
1243
- #: php/qmn_quiz_admin.php:401
1244
  msgid "Name Of New Quiz:"
1245
  msgstr "Nome Del Nuovo Quiz:"
1246
 
1247
- #: php/qmn_quiz_admin.php:410
1248
  msgid "Are you sure you want to delete this quiz?"
1249
  msgstr "Sei sicuro di voler cancellare questo quiz?"
1250
 
1251
- #: php/qmn_quiz_admin.php:415
1252
  msgid "Delete Quiz"
1253
  msgstr "Cancella Quiz"
1254
 
1255
- #: php/qmn_widgets.php:11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1256
  msgid "Quiz Master Next Leaderboard Widget"
1257
  msgstr "Widget Classifica Quiz Master Next"
1258
 
1259
- #: php/qmn_widgets.php:26
1260
  msgid "Widget Title"
1261
  msgstr "Titolo Widget"
1262
 
1263
- #: php/qmn_widgets.php:30
1264
  msgid "Quiz ID"
1265
  msgstr "ID Quiz"
1266
 
 
 
 
1267
  #~ msgid ""
1268
  #~ "Required currently only works on open answer, number, accept, and captcha "
1269
  #~ "question types"
5
  msgstr ""
6
  "Project-Id-Version: Quiz Master Next\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2015-06-11 16:18-0500\n"
9
  "PO-Revision-Date: \n"
10
  "Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
11
  "Language-Team: My Local Webstop <fpcorso@mylocalwebstop.com>\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.8.1\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
 
26
+ #: mlw_quizmaster2.php:217 php/qmn_quiz_admin.php:196
27
  msgid "Quizzes"
28
  msgstr "Quiz"
29
 
31
  msgid "Quiz Settings"
32
  msgstr "Impostazioni Quiz"
33
 
34
+ #: mlw_quizmaster2.php:219 php/qmn_results.php:159
35
+ #: php/qmn_results_details.php:20
36
  msgid "Quiz Results"
37
  msgstr "Risultati Quiz"
38
 
44
  msgid "Settings"
45
  msgstr "Impostazioni"
46
 
47
+ #: mlw_quizmaster2.php:222 php/qmn_options_tools_tab.php:13
48
+ #: php/qmn_tools.php:65
49
  msgid "Tools"
50
  msgstr "Strumenti"
51
 
61
  msgid "Help"
62
  msgstr "Aiuto"
63
 
64
+ #: mlw_quizmaster2.php:228 mlw_quizmaster2.php:229
 
65
  msgid "QMN About"
66
  msgstr "QMN About"
67
 
68
+ #: php/qmn-stats-page.php:29
69
+ msgid "Quiz Statistics"
70
+ msgstr "Statistiche Quiz"
71
 
72
+ #: php/qmn-stats-page.php:68
73
+ #, fuzzy
74
+ msgid "Quiz Taken Stats"
75
+ msgstr "Statistiche Totali Quiz"
76
 
77
+ #: php/qmn_addons.php:60
78
+ msgid "These addons extend the functionality of Quiz Master Next"
79
+ msgstr "Questi addons estendono la funzionalità di Quiz Master Next"
80
+
81
+ #: php/qmn_addons.php:103
82
+ msgid "Browse All Addons"
83
+ msgstr "Esplora tutti gli addons"
84
+
85
+ #: php/qmn_addons.php:117
86
+ msgid "Featured Addons"
87
+ msgstr "Addons in evidenza"
88
+
89
+ #: php/qmn_alerts.php:37
90
+ msgid "Success!"
91
+ msgstr "Fatto!"
92
+
93
+ #: php/qmn_alerts.php:41 php/qmn_quiz_options.php:96
94
+ msgid "Error!"
95
+ msgstr "Errore!"
96
+
97
+ #: php/qmn_credits.php:30
98
+ msgid "Welcome To Quiz Master Next"
99
+ msgstr "Benvenuto su Quiz Master Next"
100
+
101
+ #: php/qmn_credits.php:31
102
+ msgid "Thank you for updating!"
103
+ msgstr "Grazie per l'aggiornamento!"
104
+
105
+ #: php/qmn_credits.php:35
106
+ msgid "What's New!"
107
+ msgstr "Novità!"
108
+
109
+ #: php/qmn_credits.php:37
110
+ msgid "Changelog"
111
+ msgstr "Changelog"
112
+
113
+ #: php/qmn_dashboard_widgets.php:16
114
+ msgid "Quiz Master Next Snapshot"
115
+ msgstr "Prossima Anteprima Di Quiz Master"
116
+
117
+ #: php/qmn_dashboard_widgets.php:180
118
+ msgid "quizzes taken today"
119
+ msgstr "quiz svolti oggi"
120
+
121
+ #: php/qmn_dashboard_widgets.php:199
122
+ msgid "quizzes taken last 7 days"
123
+ msgstr "quiz svolti negli ultimi 7 giorni"
124
+
125
+ #: php/qmn_dashboard_widgets.php:218
126
+ #, fuzzy
127
+ msgid "quizzes taken last 30 days"
128
+ msgstr "quiz svolti negli ultimi 7 giorni"
129
+
130
+ #: php/qmn_dashboard_widgets.php:237
131
+ #, fuzzy
132
+ msgid "quizzes taken last 120 days"
133
+ msgstr "quiz svolti negli ultimi 7 giorni"
134
+
135
+ #: php/qmn_dashboard_widgets.php:256
136
+ msgid "total active quizzes"
137
+ msgstr "totale quiz attivi"
138
+
139
+ #: php/qmn_dashboard_widgets.php:262
140
+ msgid "total active questions"
141
+ msgstr "totale domande attive"
142
+
143
+ #: php/qmn_dashboard_widgets.php:268
144
+ msgid "most popular quiz"
145
+ msgstr "quiz più popolare"
146
+
147
+ #: php/qmn_dashboard_widgets.php:274
148
+ msgid "least popular quiz"
149
+ msgstr "quiz meno popolare"
150
+
151
+ #: php/qmn_help.php:13
152
+ msgid "Need Help?"
153
+ msgstr "Serve Aiuto?"
154
+
155
+ #: php/qmn_help.php:14
156
+ msgid "Support"
157
+ msgstr "Supporto"
158
+
159
+ #: php/qmn_help.php:15
160
+ msgid "System Info"
161
+ msgstr "Informazioni di Sistema"
162
+
163
+ #: php/qmn_help.php:18
164
+ msgid "Help Page"
165
+ msgstr "Pagina di Aiuto"
166
+
167
+ #: php/qmn_help.php:48
168
+ msgid "Need help with the plugin? Try any of the following:"
169
+ msgstr "Serve aiuto con il plugin?"
170
+
171
+ #: php/qmn_options_certificate_tab.php:15
172
+ msgid "Certificate (Beta)"
173
+ msgstr "Certificato (Beta)"
174
+
175
+ #: php/qmn_options_certificate_tab.php:47
176
+ msgid "The certificate has been updated successfully."
177
+ msgstr "Il certificato è stato aggiornato con successo."
178
+
179
+ #: php/qmn_options_certificate_tab.php:60 php/qmn_options_email_tab.php:68
180
+ #: php/qmn_options_email_tab.php:127 php/qmn_options_email_tab.php:191
181
+ #: php/qmn_options_leaderboard_tab.php:52 php/qmn_options_option_tab.php:120
182
+ #: php/qmn_options_questions_tab.php:139 php/qmn_options_questions_tab.php:166
183
+ #: php/qmn_options_questions_tab.php:250 php/qmn_options_questions_tab.php:343
184
+ #: php/qmn_options_results_page_tab.php:68
185
+ #: php/qmn_options_results_page_tab.php:108 php/qmn_options_style_tab.php:52
186
+ #: php/qmn_options_text_tab.php:68 php/qmn_options_tools_tab.php:50
187
+ #: php/qmn_quiz_creator.php:385 php/qmn_quiz_creator.php:451
188
+ #: php/qmn_quiz_creator.php:493 php/qmn_quiz_creator.php:651
189
+ #: php/qmn_quiz_creator.php:716 php/qmn_results.php:43
190
  #, php-format
191
+ msgid ""
192
+ "There has been an error in this action. Please share this with the "
193
+ "developer. Error Code: %s"
194
+ msgstr ""
195
+ "C'è stato un errore durante l'azione. Per favore, riportalo allo "
196
+ "sviluppatore. Codice Errore: %s"
197
+
198
+ #: php/qmn_options_certificate_tab.php:76
199
+ msgid "Enter title here"
200
+ msgstr "Inserisci qui un titolo"
201
 
202
+ #: php/qmn_options_certificate_tab.php:76 php/qmn_options_email_tab.php:86
203
+ #: php/qmn_options_email_tab.php:104
204
  msgid "Enter text here"
205
  msgstr "Inserisci qui il testo"
206
 
207
+ #: php/qmn_options_certificate_tab.php:80
208
+ msgid "Quiz Certificate (Beta)"
209
+ msgstr "Certificato del Quiz (Beta)"
210
+
211
+ #: php/qmn_options_certificate_tab.php:81
212
+ msgid ""
213
+ "Enter in your text here to fill in the certificate for this quiz. Be sure to "
214
+ "enter in the link variable into the templates on the Quiz Text tab so the "
215
+ "user can access the certificate."
216
+ msgstr ""
217
+ "Inserisci qui il testo per compilare il certificato di questo quiz. "
218
+ "Assicurati di inserire la variabile del link nel template nella sezione "
219
+ "Testo Quiz, in modo che l'utente possa accedere al certificato."
220
+
221
+ #: php/qmn_options_certificate_tab.php:82
222
+ msgid "These fields cannot contain HTML."
223
+ msgstr "Questi campi non possono contenere HTML."
224
+
225
+ #: php/qmn_options_certificate_tab.php:83
226
+ #: php/qmn_options_certificate_tab.php:139
227
+ msgid "Save Certificate Options"
228
+ msgstr "Salva Opzioni Certificato"
229
+
230
+ #: php/qmn_options_certificate_tab.php:91
231
+ msgid "Enable Certificates For This Quiz?"
232
+ msgstr "Attiva i Certificati per Questo Quiz?"
233
+
234
+ #: php/qmn_options_certificate_tab.php:93 php/qmn_options_email_tab.php:355
235
+ #: php/qmn_options_email_tab.php:362 php/qmn_options_option_tab.php:166
236
+ #: php/qmn_options_option_tab.php:227 php/qmn_options_option_tab.php:234
237
+ #: php/qmn_options_option_tab.php:242 php/qmn_options_option_tab.php:250
238
+ #: php/qmn_options_option_tab.php:258 php/qmn_options_option_tab.php:266
239
+ #: php/qmn_options_option_tab.php:273 php/qmn_options_option_tab.php:280
240
+ #: php/qmn_options_option_tab.php:287 php/qmn_options_option_tab.php:294
241
+ #: php/qmn_options_questions_tab.php:603
242
+ #: php/qmn_options_results_page_tab.php:264
243
+ msgid "Yes"
244
+ msgstr "Sì"
245
+
246
+ #: php/qmn_options_certificate_tab.php:94 php/qmn_options_email_tab.php:356
247
+ #: php/qmn_options_email_tab.php:363 php/qmn_options_option_tab.php:167
248
+ #: php/qmn_options_option_tab.php:214 php/qmn_options_option_tab.php:228
249
+ #: php/qmn_options_option_tab.php:236 php/qmn_options_option_tab.php:244
250
+ #: php/qmn_options_option_tab.php:252 php/qmn_options_option_tab.php:260
251
+ #: php/qmn_options_option_tab.php:267 php/qmn_options_option_tab.php:274
252
+ #: php/qmn_options_option_tab.php:281 php/qmn_options_option_tab.php:288
253
+ #: php/qmn_options_option_tab.php:295 php/qmn_options_questions_tab.php:604
254
+ #: php/qmn_options_results_page_tab.php:264
255
+ msgid "No"
256
+ msgstr "No"
257
+
258
+ #: php/qmn_options_certificate_tab.php:99
259
+ msgid "Certificate Title"
260
+ msgstr "Titolo Certificato"
261
+
262
+ #: php/qmn_options_certificate_tab.php:106
263
+ msgid "Message Displayed On Certificate"
264
+ msgstr "Messaggio Mostrato nel Certificato"
265
+
266
+ #: php/qmn_options_certificate_tab.php:108
267
+ #: php/qmn_options_leaderboard_tab.php:105 php/qmn_options_text_tab.php:199
268
+ #: php/qmn_options_text_tab.php:209 php/qmn_options_text_tab.php:219
269
+ #: php/qmn_options_text_tab.php:229 php/qmn_options_text_tab.php:239
270
+ #: php/qmn_options_text_tab.php:249 php/qmn_options_text_tab.php:259
271
+ #: php/qmn_options_text_tab.php:269 php/qmn_options_text_tab.php:282
272
+ #: php/qmn_options_text_tab.php:299
273
+ msgid "Allowed Variables:"
274
+ msgstr "Variabili Consentite:"
275
+
276
+ #: php/qmn_options_certificate_tab.php:126
277
+ msgid "URL To Logo (Must be JPG, JPEG, PNG or GIF)"
278
+ msgstr "URL al Logo (deve essere JPG, JPEG, PNG o GIF)"
279
+
280
+ #: php/qmn_options_certificate_tab.php:133
281
+ msgid "URL To Background Img (Must be JPG, JPEG, PNG or GIF)"
282
+ msgstr "URL all'Immagine di Sfondo (deve Essere JPG, JPEG, PNG, GIF)"
283
+
284
+ #: php/qmn_options_email_tab.php:13
285
+ msgid "Emails"
286
+ msgstr "Emails"
287
+
288
+ #: php/qmn_options_email_tab.php:55 php/qmn_options_email_tab.php:114
289
+ msgid "The email has been added successfully."
290
+ msgstr "L'email è stata aggiunta con successo."
291
+
292
+ #: php/qmn_options_email_tab.php:178
293
  msgid "The email has been updated successfully."
294
  msgstr "L'email è stata aggiornata con successo."
295
 
296
+ #: php/qmn_options_email_tab.php:258 php/qmn_options_leaderboard_tab.php:63
297
+ #: php/qmn_options_results_page_tab.php:148 php/qmn_options_text_tab.php:105
298
  msgid "Template Variables"
299
  msgstr "Variabili di Template"
300
 
301
+ #: php/qmn_options_email_tab.php:261 php/qmn_options_results_page_tab.php:151
302
+ #: php/qmn_options_text_tab.php:108
303
  msgid "Score for the quiz when using points"
304
  msgstr "Punteggio del quiz quando si usano punti"
305
 
306
+ #: php/qmn_options_email_tab.php:264 php/qmn_options_results_page_tab.php:154
307
+ #: php/qmn_options_text_tab.php:111
308
  msgid "The average amount of points user had per question"
309
  msgstr "Quantità media di punti che l'utente ha guadagnato per domanda"
310
 
311
+ #: php/qmn_options_email_tab.php:267 php/qmn_options_results_page_tab.php:157
312
+ #: php/qmn_options_text_tab.php:114
313
  msgid "The number of correct answers the user had"
314
  msgstr "Numero di risposte a cui l'utente ha risposto correttamente"
315
 
316
+ #: php/qmn_options_email_tab.php:270 php/qmn_options_results_page_tab.php:160
317
+ #: php/qmn_options_text_tab.php:117
318
  msgid "The total number of questions in the quiz"
319
  msgstr "Numero totale di domande nel quiz"
320
 
321
+ #: php/qmn_options_email_tab.php:273 php/qmn_options_results_page_tab.php:163
322
+ #: php/qmn_options_text_tab.php:120
323
  msgid "Score for the quiz when using correct answers"
324
  msgstr "Punteggio massimo per il quiz rispondendo correttamente"
325
 
326
+ #: php/qmn_options_email_tab.php:276 php/qmn_options_results_page_tab.php:166
327
+ #: php/qmn_options_text_tab.php:123
328
  msgid "The name the user entered before the quiz"
329
  msgstr "Nome inserito dall'utente prima del quiz"
330
 
331
+ #: php/qmn_options_email_tab.php:279 php/qmn_options_results_page_tab.php:169
332
+ #: php/qmn_options_text_tab.php:126
333
  msgid "The business the user entered before the quiz"
334
  msgstr "Azienda inserita dall'utente prima del quiz"
335
 
336
+ #: php/qmn_options_email_tab.php:282 php/qmn_options_results_page_tab.php:172
337
+ #: php/qmn_options_text_tab.php:129
338
  msgid "The phone number the user entered before the quiz"
339
  msgstr "Numero di telefono inserito dall'utente prima del quiz"
340
 
341
+ #: php/qmn_options_email_tab.php:285 php/qmn_options_results_page_tab.php:175
342
+ #: php/qmn_options_text_tab.php:132
343
  msgid "The email the user entered before the quiz"
344
  msgstr "Email inserita dall'utente prima del quiz"
345
 
346
+ #: php/qmn_options_email_tab.php:288 php/qmn_options_leaderboard_tab.php:91
347
+ #: php/qmn_options_results_page_tab.php:178 php/qmn_options_text_tab.php:135
348
  msgid "The name of the quiz"
349
  msgstr "Nome del quiz"
350
 
351
+ #: php/qmn_options_email_tab.php:291 php/qmn_options_results_page_tab.php:181
352
+ #: php/qmn_options_text_tab.php:138
353
+ msgid ""
354
+ "Shows the question, the answer the user provided, and the correct answer"
355
+ msgstr ""
356
+ "Mostra la domanda, la risposta data dall'utente, e la risposta corretta"
357
 
358
+ #: php/qmn_options_email_tab.php:294 php/qmn_options_results_page_tab.php:184
359
+ #: php/qmn_options_text_tab.php:141
360
  msgid "The comments the user entered into comment box if enabled"
361
  msgstr "Commenti inseriti dall'utente nel box commenti, se abilitati"
362
 
363
+ #: php/qmn_options_email_tab.php:297 php/qmn_options_text_tab.php:144
364
+ msgid "The amount of time user spent on quiz in seconds"
365
+ msgstr ""
366
+
367
+ #: php/qmn_options_email_tab.php:301 php/qmn_options_text_tab.php:147
368
+ msgid "The amount of time user spent on quiz in minutes"
369
+ msgstr ""
370
 
371
+ #: php/qmn_options_email_tab.php:304 php/qmn_options_results_page_tab.php:193
372
+ #: php/qmn_options_text_tab.php:151
373
  msgid "The link to the certificate after completing the quiz"
374
  msgstr "Il link al certificato dopo aver completato il quiz"
375
 
376
+ #: php/qmn_options_email_tab.php:307 php/qmn_options_results_page_tab.php:196
377
+ #: php/qmn_options_text_tab.php:154
378
  msgid "The amount of points a specific category earned."
379
  msgstr "I punti totali guadagnati in una specifica categoria."
380
 
381
+ #: php/qmn_options_email_tab.php:310 php/qmn_options_results_page_tab.php:199
382
+ #: php/qmn_options_text_tab.php:157
383
  msgid "The score a specific category earned."
384
  msgstr "Il punteggio guadagnato in una specifica categoria."
385
 
386
+ #: php/qmn_options_email_tab.php:313 php/qmn_options_results_page_tab.php:202
387
+ #: php/qmn_options_text_tab.php:160
388
  msgid "The average points from all categories."
389
  msgstr "La media dei punti in tutte le categorie."
390
 
391
+ #: php/qmn_options_email_tab.php:316 php/qmn_options_results_page_tab.php:205
392
+ #: php/qmn_options_text_tab.php:163
393
  msgid "The average score from all categories."
394
  msgstr "La media del punteggio in tutte le categorie."
395
 
396
+ #: php/qmn_options_email_tab.php:319 php/qmn_options_text_tab.php:166
397
  msgid "The question that the user answered"
398
  msgstr "La domanda a cui l'utente ha risposto"
399
 
400
+ #: php/qmn_options_email_tab.php:322 php/qmn_options_text_tab.php:169
401
  msgid "The answer the user gave for the question"
402
  msgstr "La risposta fornita dall'utente per la domanda"
403
 
404
+ #: php/qmn_options_email_tab.php:325 php/qmn_options_text_tab.php:172
405
  msgid "The correct answer for the question"
406
  msgstr "La risposta corretta per la domanda"
407
 
408
+ #: php/qmn_options_email_tab.php:328 php/qmn_options_text_tab.php:175
409
  msgid "The comments the user provided in the comment field for the question"
410
  msgstr "I commenti scritti dall'utente nel campo dei commenti sulla domanda"
411
 
412
+ #: php/qmn_options_email_tab.php:331 php/qmn_options_text_tab.php:178
413
  msgid "Reason why the correct answer is the correct answer"
414
  msgstr "Motivo per cui la risposta corretta è la risposta corretta"
415
 
416
+ #: php/qmn_options_email_tab.php:334 php/qmn_options_text_tab.php:181
417
  msgid "The Current Date"
418
  msgstr "Data Corrente"
419
 
420
+ #: php/qmn_options_email_tab.php:349 php/qmn_options_email_tab.php:548
 
421
  msgid "Save Email Templates And Settings"
422
  msgstr "Salva Template e Impostazioni Email"
423
 
424
+ #: php/qmn_options_email_tab.php:353
425
  msgid "Send user email upon completion?"
426
  msgstr "Invia un'email all'utente dopo il completamento del quiz?"
427
 
428
+ #: php/qmn_options_email_tab.php:360
 
 
 
 
 
 
 
 
 
 
429
  msgid "Send admin email upon completion?"
430
  msgstr "Invia un'email all'amministratore dopo il completamento del quiz?"
431
 
432
+ #: php/qmn_options_email_tab.php:367
433
+ msgid ""
434
+ "What emails should we send the admin email to? Separate emails with a comma."
435
+ msgstr ""
436
+ "A quali indirizzi vuoi inviare l'email da amministratori? Separa gli "
437
+ "indirizzi email con una virgola."
438
 
439
+ #: php/qmn_options_email_tab.php:371
440
  msgid "What is the From Name for the email sent to users and admin?"
441
  msgstr "Qual è il Nome Mittente per l'email inviata a utenti e amministratori?"
442
 
443
+ #: php/qmn_options_email_tab.php:377
444
  msgid "Email Sent To User"
445
  msgstr "Email Inviata All'Utente"
446
 
447
+ #: php/qmn_options_email_tab.php:378 php/qmn_options_email_tab.php:456
 
448
  msgid "Add New User Email"
449
  msgstr "Aggiungi Nuova Email Utente"
450
 
451
+ #: php/qmn_options_email_tab.php:383 php/qmn_options_email_tab.php:449
452
+ #: php/qmn_options_email_tab.php:470 php/qmn_options_email_tab.php:536
453
+ #: php/qmn_options_results_page_tab.php:223
454
+ #: php/qmn_options_results_page_tab.php:287
455
  msgid "Score Greater Than Or Equal To"
456
  msgstr "Punteggio Maggiore o Uguale a"
457
 
458
+ #: php/qmn_options_email_tab.php:384 php/qmn_options_email_tab.php:450
459
+ #: php/qmn_options_email_tab.php:471 php/qmn_options_email_tab.php:537
460
+ #: php/qmn_options_results_page_tab.php:224
461
+ #: php/qmn_options_results_page_tab.php:288
462
  msgid "Score Less Than Or Equal To"
463
  msgstr "Punteggio Minore o Uguale a"
464
 
465
+ #: php/qmn_options_email_tab.php:385 php/qmn_options_email_tab.php:451
466
+ #: php/qmn_options_email_tab.php:472 php/qmn_options_email_tab.php:538
 
 
467
  msgid "Subject"
468
  msgstr "Oggetto"
469
 
470
+ #: php/qmn_options_email_tab.php:386 php/qmn_options_email_tab.php:452
471
+ #: php/qmn_options_email_tab.php:473 php/qmn_options_email_tab.php:539
 
 
472
  msgid "Email To Send"
473
  msgstr "Email Da Inviare"
474
 
475
+ #: php/qmn_options_email_tab.php:464
476
  msgid "Email Sent To Admin"
477
  msgstr "Email Inviata All'Amministratore"
478
 
479
+ #: php/qmn_options_email_tab.php:465 php/qmn_options_email_tab.php:543
 
480
  msgid "Add New Admin Email"
481
  msgstr "Aggiungi Nuova Email Amministratore"
482
 
483
+ #: php/qmn_options_leaderboard_tab.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
484
  msgid "Leaderboard"
485
  msgstr "Classifica"
486
 
487
+ #: php/qmn_options_leaderboard_tab.php:39
488
  msgid "The leaderboards has been updated successfully."
489
  msgstr "La classifica è stata aggiornata con successo."
490
 
491
+ #: php/qmn_options_leaderboard_tab.php:66
492
  msgid "The name of the user who is in first place"
493
  msgstr "Il nome dell'utente al primo posto"
494
 
495
+ #: php/qmn_options_leaderboard_tab.php:67
496
  msgid "The score from the first place's quiz"
497
  msgstr "Il punteggio del quiz al primo posto"
498
 
499
+ #: php/qmn_options_leaderboard_tab.php:71
500
  msgid "The name of the user who is in second place"
501
  msgstr "Il nome dell'utente al secondo posto"
502
 
503
+ #: php/qmn_options_leaderboard_tab.php:72
504
  msgid "The score from the second place's quiz"
505
  msgstr "Il punteggio del quiz al secondo posto"
506
 
507
+ #: php/qmn_options_leaderboard_tab.php:76
508
  msgid "The name of the user who is in third place"
509
  msgstr "Il nome dell'utente al terzo posto"
510
 
511
+ #: php/qmn_options_leaderboard_tab.php:77
512
  msgid "The score from the third place's quiz"
513
  msgstr "Il punteggio del quiz al terzo posto"
514
 
515
+ #: php/qmn_options_leaderboard_tab.php:81
516
  msgid "The name of the user who is in fourth place"
517
  msgstr "Il nome dell'utente al quarto posto"
518
 
519
+ #: php/qmn_options_leaderboard_tab.php:82
520
  msgid "The score from the fourth place's quiz"
521
  msgstr "Il punteggio del quiz al quarto posto"
522
 
523
+ #: php/qmn_options_leaderboard_tab.php:86
524
  msgid "The name of the user who is in fifth place"
525
  msgstr "Il nome dell'utente al quinto posto"
526
 
527
+ #: php/qmn_options_leaderboard_tab.php:87
528
  msgid "The score from the fifth place's quiz"
529
  msgstr "Il punteggio del quiz al quinto posto"
530
 
531
+ #: php/qmn_options_leaderboard_tab.php:94
532
+ #: php/qmn_options_leaderboard_tab.php:122
533
  msgid "Save Leaderboard Options"
534
  msgstr "Salva Opzioni Classifica"
535
 
536
+ #: php/qmn_options_leaderboard_tab.php:103
537
  msgid "Leaderboard Template"
538
  msgstr "Template Classifica"
539
 
540
+ #: php/qmn_options_option_tab.php:13
541
+ msgid "Options"
542
+ msgstr "Opzioni"
 
 
 
 
543
 
544
+ #: php/qmn_options_option_tab.php:107
545
+ msgid "The options has been updated successfully."
546
+ msgstr "Le opzioni sono state aggiornate con successo."
547
 
548
+ #: php/qmn_options_option_tab.php:148 php/qmn_options_option_tab.php:299
549
+ msgid "Save Options"
550
+ msgstr "Salva Opzioni"
551
 
552
+ #: php/qmn_options_option_tab.php:156
553
+ msgid "Which system is this quiz graded on?"
554
+ msgstr "Con quale metodo viene valutato questo quiz?"
555
 
556
+ #: php/qmn_options_option_tab.php:158
557
+ msgid "Correct/Incorrect"
558
+ msgstr "Giuste/Sbagliate"
559
 
560
+ #: php/qmn_options_option_tab.php:159
561
+ msgid "Points"
562
+ msgstr "Punti"
 
563
 
564
+ #: php/qmn_options_option_tab.php:160 php/qmn_results.php:265
565
+ msgid "Not Graded"
566
+ msgstr "Non valutato"
567
 
568
+ #: php/qmn_options_option_tab.php:164
569
+ msgid "Should the user be required to be logged in to take this quiz?"
570
+ msgstr "E' richiesto all'utente di fare login per svolgere questo quiz?"
571
 
572
+ #: php/qmn_options_option_tab.php:171
573
+ msgid ""
574
+ "How many questions per page would you like? (Leave 0 for all questions on "
575
+ "one page)"
576
+ msgstr ""
577
+ "Quante domande vorresti mostrare in ogni pagina? (Lascia 0 per avere tutte "
578
+ "le domande in una pagina)"
579
 
580
+ #: php/qmn_options_option_tab.php:177
581
+ msgid ""
582
+ "How many minutes does the user have to finish the quiz? (Leave 0 for no time "
583
+ "limit)"
584
+ msgstr ""
585
+ "Quanto tempo ha a disposizione l'utente per terminare il quiz? (Lascia 0 per "
586
+ "non dare limiti di tempo)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
587
 
588
+ #: php/qmn_options_option_tab.php:183
589
+ msgid ""
590
+ "How many times can a user take this quiz? (Leave 0 for as many times as the "
591
+ "user wants to. Currently only works for registered users)"
592
+ msgstr ""
593
+ "Quante volte un utente può fare questo quiz? (Lascia 0 per permettere che "
594
+ "l'utente faccia il quiz quante volte desidera. Al momento funziona solo per "
595
+ "utenti registrati)"
596
 
597
+ #: php/qmn_options_option_tab.php:189
598
+ msgid ""
599
+ "How many total entries can this quiz have? (Leave 0 for unlimited entries"
600
+ msgstr ""
601
+ "Quante voci può avere in totale questo quiz? (Lascia 0 per indicare un "
602
+ "numero illimitato di voci)"
603
 
604
+ #: php/qmn_options_option_tab.php:195
605
+ msgid ""
606
+ "How many questions should be loaded for quiz? (Leave 0 to load all questions)"
607
+ msgstr ""
608
+ "Quante domande devono essere caricate per questo quiz? (Lascia 0 per "
609
+ "caricare tutte le domande)"
610
 
611
+ #: php/qmn_options_option_tab.php:201
612
+ msgid ""
613
+ "What time-frame should the user be able to access the quiz? (Leave blank if "
614
+ "the user can access anytime)"
615
+ msgstr ""
616
+ "In che finestra temporale l'utente può accedere al quiz? (Lascia vuoto se "
617
+ "l'utente può accedere in qualsiasi momento)"
618
 
619
+ #: php/qmn_options_option_tab.php:203
620
+ msgid "start date"
621
+ msgstr "data inizio"
 
622
 
623
+ #: php/qmn_options_option_tab.php:206
624
+ msgid "end date"
625
+ msgstr "data fine"
 
626
 
627
+ #: php/qmn_options_option_tab.php:210
628
+ msgid ""
629
+ "Are the questions random? (Question Order will not apply if this is yes)"
630
+ msgstr ""
631
+ "Le domande sono casuali? (Se sì, l'Ordine Delle Domande non verrà applicato)"
632
 
633
+ #: php/qmn_options_option_tab.php:212
634
+ msgid "Random Questions"
635
+ msgstr "Domande Casuali"
636
 
637
+ #: php/qmn_options_option_tab.php:213
638
+ msgid "Random Questions And Answers"
639
+ msgstr "Domande e Risposte Casuali"
640
 
641
+ #: php/qmn_options_option_tab.php:218
642
+ msgid ""
643
+ "Would you like to ask for the contact information at the beginning or at the "
644
+ "end of the quiz?"
645
+ msgstr ""
646
+ "Preferisci richiedere le informazioni di contatto all'inizio o alla fine del "
647
+ "quiz?"
648
 
649
+ #: php/qmn_options_option_tab.php:220
650
+ msgid "Beginning"
651
+ msgstr "All'inizio"
652
 
653
+ #: php/qmn_options_option_tab.php:221
654
+ msgid "End"
655
+ msgstr "Alla fine"
656
 
657
+ #: php/qmn_options_option_tab.php:225
658
+ msgid ""
659
+ "If a logged-in user takes the quiz, would you like them to be able to edit "
660
+ "contact information? If set to no, the fields will not show up for logged in "
661
+ "users; however, the users information will be saved for the fields."
662
+ msgstr ""
663
+ "Se un utente che ha fatto login svolge il quiz, vuoi dargli la possibilità "
664
+ "di modificare le informazioni di contatto? Se imposti NO, i campi non "
665
+ "verranno mostrati per utenti loggati; tuttavia, le informazioni degli utenti "
666
+ "verranno salvate per i campi."
667
 
668
+ #: php/qmn_options_option_tab.php:232
669
+ msgid "Should we ask for users name?"
670
+ msgstr "E' richiesto il nome utente^"
671
 
672
+ #: php/qmn_options_option_tab.php:235 php/qmn_options_option_tab.php:243
673
+ #: php/qmn_options_option_tab.php:251 php/qmn_options_option_tab.php:259
674
+ msgid "Require"
675
+ msgstr "Obbligatorio"
676
 
677
+ #: php/qmn_options_option_tab.php:240
678
+ msgid "Should we ask for users business?"
679
+ msgstr "E' richiesta l'azienda dell'utente?"
680
 
681
+ #: php/qmn_options_option_tab.php:248
682
+ msgid "Should we ask for users email?"
683
+ msgstr "E' richiesta l'email dell'utente?"
 
684
 
685
+ #: php/qmn_options_option_tab.php:256
686
+ msgid "Should we ask for users phone number?"
687
+ msgstr "E' richiesto il numeri di telefono dell'utente?"
688
 
689
+ #: php/qmn_options_option_tab.php:264
690
+ msgid "Would you like a place for the user to enter comments?"
691
+ msgstr ""
692
+ "Vuoi che ci sia un posto dove gli utenti possano scrivere i loro commenti?"
693
 
694
+ #: php/qmn_options_option_tab.php:271
695
+ msgid "Show question number on quiz?"
696
+ msgstr "Il numero della domanda è visibile nel quiz?"
697
 
698
+ #: php/qmn_options_option_tab.php:278
699
+ msgid "Show social media sharing buttons? (Twitter & Facebook)"
700
+ msgstr "Mostra i bottoni di condivisione sui social? (Twitter e Facebook)"
701
 
702
+ #: php/qmn_options_option_tab.php:278
703
+ msgid ""
704
+ "This option is for here only for users of older versions. Please use the new "
705
+ "template variables %FACEBOOK_SHARE% %TWITTER_SHARE% on your results pages "
706
+ "instead of using this option!"
707
+ msgstr ""
708
 
709
+ #: php/qmn_options_option_tab.php:285
710
+ msgid ""
711
+ "Disable question once user selects answer? (Currently only work on multiple "
712
+ "choice)"
713
+ msgstr ""
714
 
715
+ #: php/qmn_options_option_tab.php:292
716
+ msgid ""
717
+ "Dynamically add class for incorrect/correct answer after user selects "
718
+ "answer? (Currently only works on multiple choice)"
719
+ msgstr ""
720
 
721
+ #: php/qmn_options_preview_tab.php:13
722
+ msgid "Preview"
723
+ msgstr "Anteprima"
724
 
725
+ #: php/qmn_options_questions_tab.php:13
726
  msgid "Questions"
727
  msgstr "Domande"
728
 
729
+ #: php/qmn_options_questions_tab.php:28
730
  msgid "Answer"
731
  msgstr "Risposta"
732
 
733
+ #: php/qmn_options_questions_tab.php:126
734
  msgid "The question has been updated successfully."
735
  msgstr "La domanda è stata aggiornata con successo."
736
 
737
+ #: php/qmn_options_questions_tab.php:153
738
  msgid "The question has been deleted successfully."
739
  msgstr "La domanda è stata cancellata con successo."
740
 
741
+ #: php/qmn_options_questions_tab.php:237
742
  msgid "The question has been duplicated successfully."
743
  msgstr "La domanda è stata duplicata con successo."
744
 
745
+ #: php/qmn_options_questions_tab.php:330
746
  msgid "The question has been created successfully."
747
  msgstr "La domanda è stata creata con successo."
748
 
749
+ #: php/qmn_options_questions_tab.php:448
750
  msgid "Add Question"
751
  msgstr "Aggiungi Domanda"
752
 
753
+ #: php/qmn_options_questions_tab.php:457
754
  #, php-format
755
  msgid "One question"
756
  msgid_plural "%s questions"
757
  msgstr[0] "Una domanda"
758
  msgstr[1] "%s domande"
759
 
760
+ #: php/qmn_options_questions_tab.php:463 php/qmn_options_questions_tab.php:471
761
+ #: php/qmn_options_questions_tab.php:596
 
762
  msgid "Question Order"
763
  msgstr "Ordine Domanda"
764
 
765
+ #: php/qmn_options_questions_tab.php:464 php/qmn_options_questions_tab.php:472
766
+ #: php/qmn_options_questions_tab.php:575
 
767
  msgid "Question Type"
768
  msgstr "Tipo di Domanda"
769
 
770
+ #: php/qmn_options_questions_tab.php:465 php/qmn_options_questions_tab.php:473
771
+ #: php/qmn_options_questions_tab.php:609
 
772
  msgid "Category"
773
  msgstr "Categoria"
774
 
775
+ #: php/qmn_options_questions_tab.php:466 php/qmn_options_questions_tab.php:474
 
776
  msgid "Question"
777
  msgstr "Domanda"
778
 
779
+ #: php/qmn_options_questions_tab.php:548
780
+ msgid ""
781
+ "For fill in the blank types, use %BLANK% to represent where to put the text "
782
+ "box in your text."
783
  msgstr ""
784
 
785
+ #: php/qmn_options_questions_tab.php:553
786
  msgid "Answers"
787
  msgstr "Risposte"
788
 
789
+ #: php/qmn_options_questions_tab.php:554
790
  msgid "Points Worth"
791
  msgstr "Valore in Punti"
792
 
793
+ #: php/qmn_options_questions_tab.php:555
794
  msgid "Correct Answer"
795
  msgstr "Risposta Corretta"
796
 
797
+ #: php/qmn_options_questions_tab.php:560
798
  msgid "Add New Answer!"
799
  msgstr "Aggiungi una Nuova Risposta!"
800
 
801
+ #: php/qmn_options_questions_tab.php:565
802
  msgid "Correct Answer Info"
803
  msgstr "Informazioni Risposta Corretta"
804
 
805
+ #: php/qmn_options_questions_tab.php:570 php/qmn_quiz.php:477
806
+ msgid "Hint"
807
+ msgstr "Indizio"
808
+
809
+ #: php/qmn_options_questions_tab.php:587
810
  msgid "Comment Field"
811
  msgstr "Campo Commenti"
812
 
813
+ #: php/qmn_options_questions_tab.php:589
814
  msgid "Small Text Field"
815
  msgstr "Campo Testo Piccolo"
816
 
817
+ #: php/qmn_options_questions_tab.php:590
818
  msgid "Large Text Field"
819
  msgstr "Campo Testo Grande"
820
 
821
+ #: php/qmn_options_questions_tab.php:591
822
  msgid "None"
823
  msgstr "No"
824
 
825
+ #: php/qmn_options_questions_tab.php:601
826
  msgid "Required?"
827
  msgstr "Obbligatoria?"
828
 
829
+ #: php/qmn_options_questions_tab.php:632
830
  msgid "Create Question"
831
  msgstr "Crea Una Domanda"
832
 
833
+ #: php/qmn_options_questions_tab.php:637
834
  msgid "Are you sure you want to delete this question?"
835
  msgstr "Sei sicuro di voler cancellare questa domanda?"
836
 
837
+ #: php/qmn_options_questions_tab.php:642
838
  msgid "Delete Question"
839
  msgstr "Cancella Domanda"
840
 
841
+ #: php/qmn_options_questions_tab.php:647
842
  msgid "Are you sure you want to duplicate this question?"
843
  msgstr "Sei sicuro di voler duplicare questa domanda?"
844
 
845
+ #: php/qmn_options_questions_tab.php:652
846
  msgid "Duplicate Question"
847
  msgstr "Duplica Domanda"
848
 
849
+ #: php/qmn_options_results_page_tab.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
850
  msgid "Results Pages"
851
  msgstr "Pagine dei Risultati"
852
 
853
+ #: php/qmn_options_results_page_tab.php:55
854
  msgid "The results page has been added successfully."
855
  msgstr "La pagina dei risultati è stata aggiunta con successo."
856
 
857
+ #: php/qmn_options_results_page_tab.php:95
858
  msgid "The results page has been saved successfully."
859
  msgstr "La pagina dei risultati è stata salvata con successo."
860
 
861
+ #: php/qmn_options_results_page_tab.php:187
862
+ msgid "The amount of time user spent taking quiz in minutes"
863
+ msgstr ""
864
+
865
+ #: php/qmn_options_results_page_tab.php:190
866
+ msgid "The amount of time user spent taking quiz in seconds"
867
+ msgstr ""
868
+
869
+ #: php/qmn_options_results_page_tab.php:208
870
  msgid "Displays button to share on Facebook."
871
  msgstr ""
872
 
873
+ #: php/qmn_options_results_page_tab.php:211
874
  msgid "Displays button to share on Twitter."
875
  msgstr ""
876
 
877
+ #: php/qmn_options_results_page_tab.php:216
878
+ #: php/qmn_options_results_page_tab.php:297
879
  msgid "Save Results Pages"
880
  msgstr "Salva Pagina Risultati"
881
 
882
+ #: php/qmn_options_results_page_tab.php:217
883
+ #: php/qmn_options_results_page_tab.php:302
884
  msgid "Add New Results Page"
885
  msgstr "Aggiungi Nuova Pagina Risultati"
886
 
887
+ #: php/qmn_options_results_page_tab.php:225
888
+ #: php/qmn_options_results_page_tab.php:289
889
  msgid "Results Page Shown"
890
  msgstr "Pagina Risultati Mostrata"
891
 
892
+ #: php/qmn_options_results_page_tab.php:226
893
+ #: php/qmn_options_results_page_tab.php:290
894
  msgid "Redirect URL (Beta)"
895
  msgstr ""
896
 
897
+ #: php/qmn_options_results_page_tab.php:264 php/qmn_quiz_admin.php:283
898
  msgid "Delete"
899
  msgstr "Cancella"
900
 
901
+ #: php/qmn_options_results_page_tab.php:264
902
  msgid "Are you sure?"
903
  msgstr "Sei sicuro?"
904
 
905
+ #: php/qmn_options_style_tab.php:13
906
+ msgid "Style"
907
+ msgstr "Stile"
 
 
 
 
908
 
909
+ #: php/qmn_options_style_tab.php:39
910
+ msgid "The style has been saved successfully."
911
+ msgstr "Lo stile è stato salvato con successo."
 
912
 
913
+ #: php/qmn_options_style_tab.php:78
914
+ msgid "Quiz Styles"
915
+ msgstr "Stili Quiz"
916
 
917
+ #: php/qmn_options_style_tab.php:79
918
+ msgid "Choose your style:"
919
+ msgstr "Scegli lo stile:"
920
 
921
+ #: php/qmn_options_style_tab.php:101
922
+ msgid "Custom"
923
+ msgstr "Personalizzato"
 
924
 
925
+ #: php/qmn_options_style_tab.php:107 php/qmn_options_style_tab.php:119
926
+ msgid "Save Quiz Style"
927
+ msgstr "Salva Stile Quiz"
928
 
929
+ #: php/qmn_options_style_tab.php:109
930
+ msgid "Custom Style CSS"
931
+ msgstr "Stile CSS Personalizzato"
932
 
933
+ #: php/qmn_options_style_tab.php:110
934
+ msgid ""
935
+ "For detailed help and guidance along with a list of different classes used "
936
+ "in this plugin, please visit the following link:"
937
+ msgstr ""
938
+ "Per un aiuto e una guida dettagliati accompagnati da una lista delle diverse "
939
+ "classi usate in questo plugin, per favore visita il seguente link:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
940
 
941
+ #: php/qmn_options_text_tab.php:13
942
+ msgid "Text"
943
+ msgstr "Testo"
 
 
 
944
 
945
+ #: php/qmn_options_text_tab.php:55
946
+ msgid "The templates has been updated successfully."
947
+ msgstr "I template sono stati aggiornati con successo."
948
 
949
+ #: php/qmn_options_text_tab.php:86 php/qmn_quiz.php:1259
950
+ msgid "Previous"
951
+ msgstr "Precedente"
952
 
953
+ #: php/qmn_options_text_tab.php:187 php/qmn_options_text_tab.php:347
954
+ msgid "Save Templates"
955
+ msgstr "Salva Template"
956
 
957
+ #: php/qmn_options_text_tab.php:193
958
+ msgid "Message Templates"
959
+ msgstr "Messaggio Template"
960
 
961
+ #: php/qmn_options_text_tab.php:197
962
+ msgid "Message Displayed Before Quiz"
963
+ msgstr "Messaggio Mostrato Prima del Quiz"
964
 
965
+ #: php/qmn_options_text_tab.php:207
966
+ msgid "Message Displayed Before Comments Box If Enabled"
967
+ msgstr "Messaggio Mostrato Prima Del Box Commenti (se attivo)"
968
 
969
+ #: php/qmn_options_text_tab.php:217
970
+ msgid "Message Displayed At End Of Quiz (Leave Blank To Omit Text Section)"
971
  msgstr ""
972
+ "Messaggio Mostrato Alla Fine Del Quiz (lascia vuoto per omettere la sezione "
973
+ "testo)"
974
 
975
+ #: php/qmn_options_text_tab.php:227
976
+ msgid "Message Displayed If User Has Tried Quiz Too Many Times"
977
+ msgstr "Messaggio Mostrato Se l'Utente Ha Provato Il Quiz Troppe Volte"
978
 
979
+ #: php/qmn_options_text_tab.php:237
980
+ msgid ""
981
+ "Message Displayed If User Is Not Logged In And Quiz Requires Users To Be "
982
+ "Logged In"
983
  msgstr ""
984
+ "Messaggio Mostrato Se l'Utente Non E' Loggato E Il Quiz Richiede Che Lo Sia"
985
 
986
+ #: php/qmn_options_text_tab.php:247
987
+ msgid "Message Displayed If Date Is Outside Scheduled Timeframe"
988
+ msgstr "Messaggio Mostrato Se La Data E' Fuori Dall'Intervallo Previsto"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
989
 
990
+ #: php/qmn_options_text_tab.php:257
991
+ msgid "Message Displayed If The Limit Of Total Entries Has Been Reached"
992
+ msgstr "Messaggio Mostrato Se Viene Raggiunto Il Limite Delle Voci Totali"
993
 
994
+ #: php/qmn_options_text_tab.php:267
995
+ msgid "%QUESTIONS_ANSWERS% Text"
996
+ msgstr "%QUESTIONS_ANSWERS% Testo"
997
 
998
+ #: php/qmn_options_text_tab.php:280
999
+ msgid "Twitter Sharing Text"
1000
+ msgstr "Testo Di Condivisione Su Twitter"
1001
 
1002
+ #: php/qmn_options_text_tab.php:297
1003
+ msgid "Facebook Sharing Text"
1004
+ msgstr "Testo di Condivisione Su Facebook"
1005
 
1006
+ #: php/qmn_options_text_tab.php:312
1007
+ msgid "Other Templates"
1008
+ msgstr "Altri Template"
1009
 
1010
+ #: php/qmn_options_text_tab.php:315
1011
+ msgid "Text for submit button"
1012
+ msgstr "Testo per il pulsante di invio"
1013
 
1014
+ #: php/qmn_options_text_tab.php:319
1015
+ msgid "Text for name field"
1016
+ msgstr "Testo per il campo del nome"
1017
 
1018
+ #: php/qmn_options_text_tab.php:323
1019
+ msgid "Text for business field"
1020
+ msgstr "Testo per il campo dell'azienda"
1021
 
1022
+ #: php/qmn_options_text_tab.php:327
1023
+ msgid "Text for email field"
1024
+ msgstr "Testo per il campo dell'email"
 
 
1025
 
1026
+ #: php/qmn_options_text_tab.php:331
1027
+ msgid "Text for phone number field"
1028
+ msgstr "Testo per il campo del telefono"
 
 
1029
 
1030
+ #: php/qmn_options_text_tab.php:335
1031
+ msgid "Text for comments field"
1032
+ msgstr "Testo per il campo commenti"
1033
 
1034
+ #: php/qmn_options_text_tab.php:339
1035
+ msgid "Text for previous button"
1036
+ msgstr "Testo per il pulsante \"precedente\""
1037
 
1038
+ #: php/qmn_options_text_tab.php:343
1039
+ msgid "Text for next button"
1040
+ msgstr "Testo per il pulsante \"successivo\""
1041
 
1042
+ #: php/qmn_options_tools_tab.php:37
1043
+ msgid "The stats has been reset successfully."
1044
+ msgstr "Le statistiche sono state azzerate con successo."
1045
 
1046
+ #: php/qmn_options_tools_tab.php:89
1047
+ msgid ""
1048
+ "Use this button to reset all the stats collected for this quiz (Quiz Views "
1049
+ "and Times Quiz Has Been Taken)."
1050
+ msgstr ""
1051
+ "Seleziona questo pulsante per azzerare tutte le statistiche relative a "
1052
+ "questo quiz (Visualizzazioni Quiz e Numero Di Volte In Cui Il Quiz E' Stato "
1053
+ "Svolto)"
1054
 
1055
+ #: php/qmn_options_tools_tab.php:90
1056
+ msgid "Reset Quiz Views And Taken Stats"
1057
+ msgstr "Azzera Statistiche Su Visualizzazioni E Numero Svolgimenti Del Quiz"
1058
 
1059
+ #: php/qmn_options_tools_tab.php:101
1060
+ msgid ""
1061
+ "Are you sure you want to reset the stats to 0? All views and taken stats for "
1062
+ "this quiz will be reset. This is permanent and cannot be undone."
1063
+ msgstr ""
1064
+ "Sei sicuro di voler azzerare le statistiche? Tutte le statistiche sulle "
1065
+ "visualizzazioni e gli svolgimenti saranno azzerate. Questo passo è "
1066
+ "permanente e non può essere revocato."
1067
 
1068
+ #: php/qmn_options_tools_tab.php:105
1069
+ msgid "Reset All Stats For Quiz"
1070
+ msgstr "Azzera Tutte Le Statistiche Del Quiz"
1071
 
1072
+ #: php/qmn_question_types.php:14
1073
  msgid "Multiple Choice"
1074
  msgstr "Scelta Multipla"
1075
 
1076
+ #: php/qmn_question_types.php:108
1077
  msgid "Horizontal Multiple Choice"
1078
  msgstr "Scelta Multipla Orizzontale"
1079
 
1080
+ #: php/qmn_question_types.php:201
1081
  msgid "Drop Down"
1082
  msgstr "A Tendina"
1083
 
1084
+ #: php/qmn_question_types.php:291
1085
  msgid "Small Open Answer"
1086
  msgstr "Risposta Aperta Breve"
1087
 
1088
+ #: php/qmn_question_types.php:365
1089
  msgid "Multiple Response"
1090
  msgstr "Risposte Multiple"
1091
 
1092
+ #: php/qmn_question_types.php:464
1093
  msgid "Large Open Answer"
1094
  msgstr "Risposta Aperta Lunga"
1095
 
1096
+ #: php/qmn_question_types.php:538
1097
  msgid "Text Block"
1098
  msgstr "Blocco Testo"
1099
 
1100
+ #: php/qmn_question_types.php:573
1101
  msgid "Number"
1102
  msgstr "Numero"
1103
 
1104
+ #: php/qmn_question_types.php:649
1105
  msgid "Accept"
1106
  msgstr "Casella da spuntare"
1107
 
1108
+ #: php/qmn_question_types.php:684
1109
  msgid "Captcha"
1110
  msgstr "Captcha"
1111
 
1112
+ #: php/qmn_question_types.php:742
1113
  msgid "Horizontal Multiple Response"
1114
  msgstr "Risposte Multiple Orizzontali"
1115
 
1116
+ #: php/qmn_question_types.php:843
1117
  msgid "Fill In The Blank"
1118
  msgstr ""
1119
 
1120
+ #: php/qmn_quiz.php:350
1121
+ msgid "Not a valid e-mail address!"
1122
+ msgstr "Indirizzo e-mail non valido!"
1123
+
1124
+ #: php/qmn_quiz.php:351
1125
+ msgid "This field must be a number!"
1126
+ msgstr "Questo campo deve essere numerico!"
1127
 
1128
+ #: php/qmn_quiz.php:352
1129
+ msgid "The entered text is not correct!"
1130
+ msgstr "Il testo inserito non è corretto!"
1131
+
1132
+ #: php/qmn_quiz.php:353
1133
+ msgid "Please complete all required fields!"
1134
+ msgstr "Per favore completa tutti i campi richiesti!"
1135
+
1136
+ #: php/qmn_quiz_admin.php:196
1137
  msgid "Add New"
1138
  msgstr "Aggiungi Nuovo"
1139
 
1140
+ #: php/qmn_quiz_admin.php:214
1141
  #, php-format
1142
  msgid "One quiz"
1143
  msgid_plural "%s quizzes"
1144
  msgstr[0] "Un quiz"
1145
  msgstr[1] "%s quiz"
1146
 
1147
+ #: php/qmn_quiz_admin.php:259 php/qmn_quiz_admin.php:310
1148
+ #: php/qmn_quiz_admin.php:378 php/qmn_results.php:216
1149
+ msgid "Quiz Name"
1150
+ msgstr "Nome Quiz"
1151
+
1152
+ #: php/qmn_quiz_admin.php:260 php/qmn_quiz_admin.php:311
1153
  msgid "URL"
1154
  msgstr "URL"
1155
 
1156
+ #: php/qmn_quiz_admin.php:261 php/qmn_quiz_admin.php:312
 
1157
  msgid "Quiz Shortcode"
1158
  msgstr "Codice Breve Quiz"
1159
 
1160
+ #: php/qmn_quiz_admin.php:262 php/qmn_quiz_admin.php:313
 
1161
  msgid "Leaderboard Shortcode"
1162
  msgstr "Codice Breve Classifica"
1163
 
1164
+ #: php/qmn_quiz_admin.php:263 php/qmn_quiz_admin.php:314
 
1165
  msgid "Quiz Views"
1166
  msgstr "Visualizzazioni Quiz"
1167
 
1168
+ #: php/qmn_quiz_admin.php:264 php/qmn_quiz_admin.php:315
 
1169
  msgid "Quiz Taken"
1170
  msgstr "Prove Svolte"
1171
 
1172
+ #: php/qmn_quiz_admin.php:265 php/qmn_quiz_admin.php:316
 
1173
  msgid "Last Modified"
1174
  msgstr "Ultima Modifica"
1175
 
1176
+ #: php/qmn_quiz_admin.php:278
1177
  msgid "Edit Name"
1178
  msgstr "Modifica Nome"
1179
 
1180
+ #: php/qmn_quiz_admin.php:280
1181
  msgid "Edit"
1182
  msgstr "Modifica"
1183
 
1184
+ #: php/qmn_quiz_admin.php:281 php/qmn_results_details.php:135
1185
+ msgid "Results"
1186
+ msgstr "Risultati"
1187
+
1188
+ #: php/qmn_quiz_admin.php:282 php/qmn_quiz_admin.php:411
1189
  msgid "Duplicate"
1190
  msgstr "Duplica"
1191
 
1192
+ #: php/qmn_quiz_admin.php:373
1193
  msgid "Create New Quiz"
1194
  msgstr "Crea Nuovo Quiz"
1195
 
1196
+ #: php/qmn_quiz_admin.php:387
1197
  msgid "Create Quiz"
1198
  msgstr "Crea Quiz"
1199
 
1200
+ #: php/qmn_quiz_admin.php:393
1201
  msgid "Quiz Name:"
1202
  msgstr "Nome Quiz:"
1203
 
1204
+ #: php/qmn_quiz_admin.php:404
1205
  msgid "Duplicate this quiz?"
1206
  msgstr "Duplica questo quiz?"
1207
 
1208
+ #: php/qmn_quiz_admin.php:406
1209
  msgid "Duplicate questions with quiz"
1210
  msgstr "Duplica domande del quiz"
1211
 
1212
+ #: php/qmn_quiz_admin.php:408
1213
  msgid "Name Of New Quiz:"
1214
  msgstr "Nome Del Nuovo Quiz:"
1215
 
1216
+ #: php/qmn_quiz_admin.php:417
1217
  msgid "Are you sure you want to delete this quiz?"
1218
  msgstr "Sei sicuro di voler cancellare questo quiz?"
1219
 
1220
+ #: php/qmn_quiz_admin.php:422
1221
  msgid "Delete Quiz"
1222
  msgstr "Cancella Quiz"
1223
 
1224
+ #: php/qmn_quiz_creator.php:372
1225
+ msgid ""
1226
+ "Your new quiz has been created successfully. To begin editing your quiz, "
1227
+ "click the Edit link on the new quiz."
1228
+ msgstr ""
1229
+ "Il tuo nuovo quiz è stato creato con successo. Per iniziare a modificarlo, "
1230
+ "clicca sul link Modifica nel nuovo quiz."
1231
+
1232
+ #: php/qmn_quiz_creator.php:438
1233
+ msgid "Your quiz has been deleted successfully."
1234
+ msgstr "Il tuo quiz è stato cancellato con successo."
1235
+
1236
+ #: php/qmn_quiz_creator.php:480
1237
+ msgid "Your quiz name has been updated successfully."
1238
+ msgstr "Il nome del tuo quiz è stato aggiornato con successo."
1239
+
1240
+ #: php/qmn_quiz_creator.php:637
1241
+ msgid "Your quiz has been duplicated successfully."
1242
+ msgstr "Il tuo quiz è stato duplicato con successo."
1243
+
1244
+ #: php/qmn_quiz_options.php:56
1245
+ #, php-format
1246
+ msgid "Quiz Settings For %s"
1247
+ msgstr "Impostazioni Quiz Per %s"
1248
+
1249
+ #: php/qmn_quiz_options.php:96
1250
+ msgid ""
1251
+ "Please go to the quizzes page and click on the Edit link from the quiz you "
1252
+ "wish to edit."
1253
+ msgstr ""
1254
+ "Per favore vai alla pagina dei quiz e clicca sul link Modifica del quiz che "
1255
+ "vuoi modificare."
1256
+
1257
+ #: php/qmn_results.php:30
1258
+ msgid "Your results has been deleted successfully."
1259
+ msgstr "I tuoi risultati sono stati cancellati con successo."
1260
+
1261
+ #: php/qmn_results.php:168
1262
+ #, php-format
1263
+ msgid "One result"
1264
+ msgid_plural "%s results"
1265
+ msgstr[0] "Un risultato"
1266
+ msgstr[1] "%s risultati"
1267
+
1268
+ #: php/qmn_results.php:215
1269
+ msgid "Actions"
1270
+ msgstr "Azioni"
1271
+
1272
+ #: php/qmn_results.php:217
1273
+ msgid "Score"
1274
+ msgstr "Punteggio"
1275
+
1276
+ #: php/qmn_results.php:218
1277
+ msgid "Time To Complete"
1278
+ msgstr "Tempo Impiegato"
1279
+
1280
+ #: php/qmn_results.php:219
1281
+ msgid "Name"
1282
+ msgstr "Nome"
1283
+
1284
+ #: php/qmn_results.php:220
1285
+ msgid "Business"
1286
+ msgstr "Azienda"
1287
+
1288
+ #: php/qmn_results.php:221
1289
+ msgid "Email"
1290
+ msgstr "Email"
1291
+
1292
+ #: php/qmn_results.php:222
1293
+ msgid "Phone"
1294
+ msgstr "Telefono"
1295
+
1296
+ #: php/qmn_results.php:223
1297
+ msgid "Time Taken"
1298
+ msgstr "Data"
1299
+
1300
+ #: php/qmn_results.php:282
1301
+ msgid "Are you sure you want to delete these results?"
1302
+ msgstr "Sicuro di voler eliminare questi risultati?"
1303
+
1304
+ #: php/qmn_results.php:287
1305
+ msgid "Delete Results"
1306
+ msgstr "Elimina Risultati"
1307
+
1308
+ #: php/qmn_results_details.php:221
1309
+ msgid "Create Certificate"
1310
+ msgstr "Crea Certificato"
1311
+
1312
+ #: php/qmn_results_details.php:226
1313
+ msgid "Download Certificate Here"
1314
+ msgstr "Scarica qui il certificato"
1315
+
1316
+ #: php/qmn_results_details.php:240
1317
+ msgid "Certificate"
1318
+ msgstr "Certificato"
1319
+
1320
+ #: php/qmn_tools.php:107
1321
+ msgid "There has been an error! Please try again."
1322
+ msgstr "C'è stato un errore! Per favore, prova di nuovo."
1323
+
1324
+ #: php/qmn_tools.php:125
1325
+ msgid "Quiz Has Been Restored!"
1326
+ msgstr "Il Quiz E' Stato Ripristinato!"
1327
+
1328
+ #: php/qmn_tools.php:130
1329
+ msgid ""
1330
+ "Choose a quiz in the drop down and then click the button to restore a "
1331
+ "deleted quiz."
1332
+ msgstr ""
1333
+ "Scegli un quiz dal menu a tendina e poi clicca sul pulsante apposito per "
1334
+ "ripristinare un quiz eliminato."
1335
+
1336
+ #: php/qmn_tools.php:140
1337
+ msgid "Restore Quiz"
1338
+ msgstr "Ripristina Quiz"
1339
+
1340
+ #: php/qmn_tools.php:176 php/qmn_tools.php:192
1341
+ #, php-format
1342
+ msgid "Previous %s Audits"
1343
+ msgstr "Audit Precedente %s"
1344
+
1345
+ #: php/qmn_tools.php:179 php/qmn_tools.php:186
1346
+ #, php-format
1347
+ msgid "Next %s Audits"
1348
+ msgstr "Audit Successivo %s"
1349
+
1350
+ #: php/qmn_tools.php:199
1351
+ msgid "User"
1352
+ msgstr "Utente"
1353
+
1354
+ #: php/qmn_tools.php:200
1355
+ msgid "Action"
1356
+ msgstr "Azione"
1357
+
1358
+ #: php/qmn_tools.php:201
1359
+ msgid "Time"
1360
+ msgstr "Tempo"
1361
+
1362
+ #: php/qmn_usage_tracking.php:193
1363
+ msgid ""
1364
+ "Allow Quiz Master Next to anonymously track this plugin's usage and help us "
1365
+ "make this plugin better? No sensitive data is tracked."
1366
+ msgstr ""
1367
+ "Consenti a Quiz Master Next di tenere traccia in modo anonimo dell'uso di "
1368
+ "questo plugin, per aiutarci a migliorarlo? Non monitoriamo dati sensibili."
1369
+
1370
+ #: php/qmn_usage_tracking.php:194
1371
+ msgid "Allow"
1372
+ msgstr "Consento"
1373
+
1374
+ #: php/qmn_usage_tracking.php:195
1375
+ msgid "Do not allow"
1376
+ msgstr "Non consento"
1377
+
1378
+ #: php/qmn_widgets.php:14
1379
  msgid "Quiz Master Next Leaderboard Widget"
1380
  msgstr "Widget Classifica Quiz Master Next"
1381
 
1382
+ #: php/qmn_widgets.php:29
1383
  msgid "Widget Title"
1384
  msgstr "Titolo Widget"
1385
 
1386
+ #: php/qmn_widgets.php:33
1387
  msgid "Quiz ID"
1388
  msgstr "ID Quiz"
1389
 
1390
+ #~ msgid "The amount of time user spent of quiz"
1391
+ #~ msgstr "Tempo impiegato dall'utente per il quiz"
1392
+
1393
  #~ msgid ""
1394
  #~ "Required currently only works on open answer, number, accept, and captcha "
1395
  #~ "question types"
languages/quiz-master-next-nl-NL.mo CHANGED
Binary file
languages/quiz-master-next-nl-NL.po CHANGED
@@ -5,7 +5,7 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Quiz Master Next\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2015-04-20 01:13-0500\n"
9
  "PO-Revision-Date: \n"
10
  "Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
11
  "Language-Team: My Local Webstop <fpcorso@mylocalwebstop.com>\n"
@@ -16,12 +16,14 @@ msgstr ""
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;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;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
 
 
20
  "X-Poedit-Basepath: ../\n"
21
- "X-Generator: Poedit 1.7.5\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
- #: mlw_quizmaster2.php:217
25
  msgid "Quizzes"
26
  msgstr "Quizzen"
27
 
@@ -29,7 +31,8 @@ msgstr "Quizzen"
29
  msgid "Quiz Settings"
30
  msgstr "Quiz instellingen"
31
 
32
- #: mlw_quizmaster2.php:219
 
33
  msgid "Quiz Results"
34
  msgstr "Quiz resultaten"
35
 
@@ -41,7 +44,8 @@ msgstr "Details quiz resultaten"
41
  msgid "Settings"
42
  msgstr "Instellingen"
43
 
44
- #: mlw_quizmaster2.php:222
 
45
  msgid "Tools"
46
  msgstr "Gereedschap"
47
 
@@ -57,1213 +61,1346 @@ msgstr "Addon instellingen"
57
  msgid "Help"
58
  msgstr "Help"
59
 
60
- #: mlw_quizmaster2.php:228
61
- #: mlw_quizmaster2.php:229
62
  msgid "QMN About"
63
  msgstr "Over QMN"
64
 
65
- #: php/qmn_options_email_tab.php:6
66
- msgid "Emails"
67
- msgstr "Emails"
68
 
69
- #: php/qmn_options_email_tab.php:42
70
- #: php/qmn_options_email_tab.php:101
71
- msgid "The email has been added successfully."
72
- msgstr "De email is succesvol toegevoegd"
73
 
74
- #: php/qmn_options_email_tab.php:55
75
- #: php/qmn_options_email_tab.php:114
76
- #: php/qmn_options_email_tab.php:178
77
- #: php/qmn_quiz_creator.php:382
78
- #: php/qmn_quiz_creator.php:448
79
- #: php/qmn_quiz_creator.php:490
80
- #: php/qmn_quiz_creator.php:648
81
- #: php/qmn_quiz_creator.php:713
82
- #: php/qmn_options_leaderboard_tab.php:38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  #, php-format
84
- msgid "There has been an error in this action. Please share this with the developer. Error Code: %s"
85
- msgstr "Er is een fout opgetreden in deze actie. Deel dit met de ontwikkelaar. Foutcode: %s"
 
 
 
 
 
 
 
 
86
 
87
- #: php/qmn_options_email_tab.php:73
88
- #: php/qmn_options_email_tab.php:91
89
  msgid "Enter text here"
90
  msgstr "Hier tekst invoeren"
91
 
92
- #: php/qmn_options_email_tab.php:165
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
  msgid "The email has been updated successfully."
94
  msgstr "De email is succesvol bijgewerkt"
95
 
96
- #: php/qmn_options_email_tab.php:232
97
- #: php/qmn_options_leaderboard_tab.php:49
98
  msgid "Template Variables"
99
  msgstr "Template variabelen"
100
 
101
- #: php/qmn_options_email_tab.php:235
 
102
  msgid "Score for the quiz when using points"
103
  msgstr "Score voor de quiz bij gebruik van punten"
104
 
105
- #: php/qmn_options_email_tab.php:238
 
106
  msgid "The average amount of points user had per question"
107
  msgstr "Het gemiddelde aantal punten per vraag dat de gebruiker had"
108
 
109
- #: php/qmn_options_email_tab.php:241
 
110
  msgid "The number of correct answers the user had"
111
  msgstr "Het aantal correcte antwoorden dat de gebruiker had"
112
 
113
- #: php/qmn_options_email_tab.php:244
 
114
  msgid "The total number of questions in the quiz"
115
  msgstr "Het totaal aantal vragen in de quiz"
116
 
117
- #: php/qmn_options_email_tab.php:247
 
118
  msgid "Score for the quiz when using correct answers"
119
  msgstr "Score voor de quiz bij gebruik van goede antwoorden"
120
 
121
- #: php/qmn_options_email_tab.php:250
 
122
  msgid "The name the user entered before the quiz"
123
  msgstr "De naam die de gebruiker invoerde voor aanvang van de quiz"
124
 
125
- #: php/qmn_options_email_tab.php:253
 
126
  msgid "The business the user entered before the quiz"
127
  msgstr "Het bedrijf dat de gebruiker invoerde voor aanvang van de quiz"
128
 
129
- #: php/qmn_options_email_tab.php:256
 
130
  msgid "The phone number the user entered before the quiz"
131
  msgstr "Het telefoonnummer dat de gebruiker invoerde voor aanvang van de quiz"
132
 
133
- #: php/qmn_options_email_tab.php:259
 
134
  msgid "The email the user entered before the quiz"
135
  msgstr "De email die de gebruiker invoerde voor aanvang van de quiz"
136
 
137
- #: php/qmn_options_email_tab.php:262
138
- #: php/qmn_options_leaderboard_tab.php:77
139
  msgid "The name of the quiz"
140
  msgstr "De naam van de quiz"
141
 
142
- #: php/qmn_options_email_tab.php:265
143
- msgid "Shows the question, the answer the user provided, and the correct answer"
144
- msgstr "Laat de vragen zien, de gegeven antwoorden van de gebruiker en het juste antwoord"
 
 
 
 
145
 
146
- #: php/qmn_options_email_tab.php:268
 
147
  msgid "The comments the user entered into comment box if enabled"
148
- msgstr "De opmerkingen die de gebruiker invoerde in de opmerkingenbox, indien ingeschakeld"
 
 
149
 
150
- #: php/qmn_options_email_tab.php:271
151
- msgid "The amount of time user spent of quiz"
152
- msgstr "De hoeveelheid tijd die de gebruiker heeft besteedt aan de quiz"
 
 
 
 
153
 
154
- #: php/qmn_options_email_tab.php:274
 
155
  msgid "The link to the certificate after completing the quiz"
156
  msgstr "De link naar het certificaat na voltooiing van de quiz"
157
 
158
- #: php/qmn_options_email_tab.php:277
 
159
  msgid "The amount of points a specific category earned."
160
  msgstr "De hoeveelheid punten verdiend in een specifieke categorie."
161
 
162
- #: php/qmn_options_email_tab.php:280
 
163
  msgid "The score a specific category earned."
164
  msgstr "De score verdiend in een specifieke categorie."
165
 
166
- #: php/qmn_options_email_tab.php:283
 
167
  msgid "The average points from all categories."
168
  msgstr "De gemiddelde punten van alle categorieën."
169
 
170
- #: php/qmn_options_email_tab.php:286
 
171
  msgid "The average score from all categories."
172
  msgstr "De gemiddelde score van alle categorieën."
173
 
174
- #: php/qmn_options_email_tab.php:289
175
  msgid "The question that the user answered"
176
  msgstr "De vraag die de gebruiker beantwoordde"
177
 
178
- #: php/qmn_options_email_tab.php:292
179
  msgid "The answer the user gave for the question"
180
  msgstr "Het antwoord van de gebruiker op de vraag"
181
 
182
- #: php/qmn_options_email_tab.php:295
183
  msgid "The correct answer for the question"
184
  msgstr "Het juiste antwoord op de vraag"
185
 
186
- #: php/qmn_options_email_tab.php:298
187
  msgid "The comments the user provided in the comment field for the question"
188
- msgstr "De opmerkingen geplaatst door de gebruiker in het opmerkingenveld van de vraag."
 
 
189
 
190
- #: php/qmn_options_email_tab.php:301
191
  msgid "Reason why the correct answer is the correct answer"
192
  msgstr "Reden waarom het juiste antwoord het juiste antwoord is"
193
 
194
- #: php/qmn_options_email_tab.php:304
195
  msgid "The Current Date"
196
  msgstr "De huidige datum"
197
 
198
- #: php/qmn_options_email_tab.php:319
199
- #: php/qmn_options_email_tab.php:518
200
  msgid "Save Email Templates And Settings"
201
  msgstr "Bewaar email templates en instellingen"
202
 
203
- #: php/qmn_options_email_tab.php:323
204
  msgid "Send user email upon completion?"
205
  msgstr "Stuur de gebruiker een email na voltooiing van de quiz?"
206
 
207
- #: php/qmn_options_email_tab.php:325
208
- #: php/qmn_options_email_tab.php:332
209
- msgid "Yes"
210
- msgstr "Ja"
211
-
212
- #: php/qmn_options_email_tab.php:326
213
- #: php/qmn_options_email_tab.php:333
214
- msgid "No"
215
- msgstr "Nee"
216
-
217
- #: php/qmn_options_email_tab.php:330
218
  msgid "Send admin email upon completion?"
219
  msgstr "Stuur admin email na voltooiing?"
220
 
221
- #: php/qmn_options_email_tab.php:337
222
- msgid "What emails should we send the admin email to? Separate emails with a comma."
223
- msgstr "Wat voor emails moeten we naar de admin email sturen? Aparte emails met een komma."
 
 
 
224
 
225
- #: php/qmn_options_email_tab.php:341
226
  msgid "What is the From Name for the email sent to users and admin?"
227
- msgstr "Wat is de Van naam voor de email die naar gebruikers en de admin wordt gestuurd?"
 
 
228
 
229
- #: php/qmn_options_email_tab.php:347
230
  msgid "Email Sent To User"
231
  msgstr "Email naar gebruiker verstuurd"
232
 
233
- #: php/qmn_options_email_tab.php:348
234
- #: php/qmn_options_email_tab.php:426
235
  msgid "Add New User Email"
236
  msgstr "Voeg emailadres nieuwe gebruiker toe"
237
 
238
- #: php/qmn_options_email_tab.php:353
239
- #: php/qmn_options_email_tab.php:419
240
- #: php/qmn_options_email_tab.php:440
241
- #: php/qmn_options_email_tab.php:506
242
  msgid "Score Greater Than Or Equal To"
243
  msgstr "Score groter dan of gelijk aan"
244
 
245
- #: php/qmn_options_email_tab.php:354
246
- #: php/qmn_options_email_tab.php:420
247
- #: php/qmn_options_email_tab.php:441
248
- #: php/qmn_options_email_tab.php:507
249
  msgid "Score Less Than Or Equal To"
250
  msgstr "Score kleiner dan of gelijk aan"
251
 
252
- #: php/qmn_options_email_tab.php:355
253
- #: php/qmn_options_email_tab.php:421
254
- #: php/qmn_options_email_tab.php:442
255
- #: php/qmn_options_email_tab.php:508
256
  msgid "Subject"
257
  msgstr "Onderwerp"
258
 
259
- #: php/qmn_options_email_tab.php:356
260
- #: php/qmn_options_email_tab.php:422
261
- #: php/qmn_options_email_tab.php:443
262
- #: php/qmn_options_email_tab.php:509
263
  msgid "Email To Send"
264
  msgstr "Te versturen email"
265
 
266
- #: php/qmn_options_email_tab.php:434
267
  msgid "Email Sent To Admin"
268
  msgstr "Email naar Admin verstuurd"
269
 
270
- #: php/qmn_options_email_tab.php:435
271
- #: php/qmn_options_email_tab.php:513
272
  msgid "Add New Admin Email"
273
  msgstr "Voeg nieuwe Admin email toe"
274
 
275
- #: php/qmn_quiz_creator.php:369
276
- msgid "Your new quiz has been created successfully. To begin editing your quiz, click the Edit link on the new quiz."
277
- msgstr "Je nieuwe quiz is succesvol gemaakt. Klik op de Bewerken link in de nieuwe quiz om je quiz te gaan bewerken."
278
-
279
- #: php/qmn_quiz_creator.php:435
280
- msgid "Your quiz has been deleted successfully."
281
- msgstr "Je quiz is succesvol verwijderd."
282
-
283
- #: php/qmn_quiz_creator.php:477
284
- msgid "Your quiz name has been updated successfully."
285
- msgstr "Je quiz is succesvol bijgewerkt."
286
-
287
- #: php/qmn_quiz_creator.php:634
288
- msgid "Your quiz has been duplicated successfully."
289
- msgstr "Je quiz is succesvol gedupliceerd."
290
-
291
- #: php/qmn_quiz.php:350
292
- msgid "Not a valid e-mail address!"
293
- msgstr "Geen geldig email adres!"
294
-
295
- #: php/qmn_quiz.php:351
296
- msgid "This field must be a number!"
297
- msgstr "Dit veld moet een getal zijn!"
298
-
299
- #: php/qmn_quiz.php:352
300
- msgid "The entered text is not correct!"
301
- msgstr "De ingevoerde tekst is niet correct!"
302
-
303
- #: php/qmn_quiz.php:353
304
- msgid "Please complete all required fields!"
305
- msgstr "Vul alle verplichte velden in!"
306
-
307
- #: php/qmn_quiz.php:465
308
- msgid "Hint"
309
- msgstr "Aanwijzing"
310
-
311
- #: php/qmn_quiz.php:1254
312
- msgid "Previous"
313
- msgstr "Vorige"
314
-
315
- #: php/qmn_credits.php:27
316
- msgid "Welcome To Quiz Master Next"
317
- msgstr "Welkom bij Quizmaster Next"
318
-
319
- #: php/qmn_credits.php:28
320
- msgid "Thank you for updating!"
321
- msgstr "Dank je voor het bijwerken!"
322
-
323
- #: php/qmn_credits.php:32
324
- msgid "What's New!"
325
- msgstr "Wat is er nieuw!"
326
-
327
- #: php/qmn_credits.php:34
328
- msgid "Changelog"
329
- msgstr "Overzicht wijzigingen"
330
-
331
- #: php/qmn_usage_tracking.php:193
332
- msgid "Allow Quiz Master Next to anonymously track this plugin's usage and help us make this plugin better? No sensitive data is tracked."
333
- msgstr "Sta toe dat Quiz Master Next anonieme informatie over het gebruik van plugins verzameld om verbeteringen door te kunnen voeren. Er wordt geen gevoelige informatie verzameld."
334
-
335
- #: php/qmn_usage_tracking.php:194
336
- msgid "Allow"
337
- msgstr "Toestaan"
338
-
339
- #: php/qmn_usage_tracking.php:195
340
- msgid "Do not allow"
341
- msgstr "Niet toestaan"
342
-
343
- #: php/qmn_options_leaderboard_tab.php:6
344
  msgid "Leaderboard"
345
  msgstr "Klassement"
346
 
347
- #: php/qmn_options_leaderboard_tab.php:25
348
  msgid "The leaderboards has been updated successfully."
349
  msgstr "De klassementen zijn succesvol bijgewerkt"
350
 
351
- #: php/qmn_options_leaderboard_tab.php:52
352
  msgid "The name of the user who is in first place"
353
  msgstr "De naam van de gebruiker die eerste is"
354
 
355
- #: php/qmn_options_leaderboard_tab.php:53
356
  msgid "The score from the first place's quiz"
357
  msgstr "De score van de eerste plaats van de quiz"
358
 
359
- #: php/qmn_options_leaderboard_tab.php:57
360
  msgid "The name of the user who is in second place"
361
  msgstr "De score van de gebruiker die tweede is"
362
 
363
- #: php/qmn_options_leaderboard_tab.php:58
364
  msgid "The score from the second place's quiz"
365
  msgstr "De score van de tweede plaats in de quiz"
366
 
367
- #: php/qmn_options_leaderboard_tab.php:62
368
  msgid "The name of the user who is in third place"
369
  msgstr "De naam van de gebruiker die derde is"
370
 
371
- #: php/qmn_options_leaderboard_tab.php:63
372
  msgid "The score from the third place's quiz"
373
  msgstr "De score van de derde plaats in de quiz"
374
 
375
- #: php/qmn_options_leaderboard_tab.php:67
376
  msgid "The name of the user who is in fourth place"
377
  msgstr "De naam van de gebruiker die vierde is"
378
 
379
- #: php/qmn_options_leaderboard_tab.php:68
380
  msgid "The score from the fourth place's quiz"
381
  msgstr "De score van de vierde plaats in de quiz"
382
 
383
- #: php/qmn_options_leaderboard_tab.php:72
384
  msgid "The name of the user who is in fifth place"
385
  msgstr "De naam van de gebruiker die vijfde is"
386
 
387
- #: php/qmn_options_leaderboard_tab.php:73
388
  msgid "The score from the fifth place's quiz"
389
  msgstr "De score van de vijfde plaats in de quiz"
390
 
391
- #: php/qmn_options_leaderboard_tab.php:80
392
- #: php/qmn_options_leaderboard_tab.php:108
393
  msgid "Save Leaderboard Options"
394
  msgstr "Klassement opties bewaren"
395
 
396
- #: php/qmn_options_leaderboard_tab.php:89
397
  msgid "Leaderboard Template"
398
  msgstr "Klassement template"
399
 
400
- #: php/qmn_options_leaderboard_tab.php:91
401
- msgid "Allowed Variables:"
402
- msgstr "Toegestane variabelen:"
403
 
404
- #: php/qmn_addons.php:48
405
- msgid "These addons extend the functionality of Quiz Master Next"
406
- msgstr "Deze uitbreidingen verbeteren de functionaliteit van Quiz Master Next"
407
 
408
- #: php/qmn_addons.php:91
409
- msgid "Browse All Addons"
410
- msgstr "Doorzoek alle uitbreidingen"
411
 
412
- #: php/qmn_addons.php:98
413
- msgid "Featured Addons"
414
- msgstr "Aanbevolen uitbreidingen"
415
 
416
- #: php/qmn_options_text_tab.php:6
417
- msgid "Text"
418
- msgstr "Tekst"
419
 
420
- #: php/qmn_options_text_tab.php:42
421
- msgid "The templates has been updated successfully."
422
- msgstr "De templates zijn succesvol opgeslagen."
423
 
424
- #: php/qmn_options_text_tab.php:170
425
- #: php/qmn_options_text_tab.php:330
426
- msgid "Save Templates"
427
- msgstr "Bewaar teplates"
428
 
429
- #: php/qmn_options_text_tab.php:176
430
- msgid "Message Templates"
431
- msgstr "Bericht templates"
432
 
433
- #: php/qmn_options_text_tab.php:180
434
- msgid "Message Displayed Before Quiz"
435
- msgstr "Bericht getoond voor aanvang quiz"
 
 
 
436
 
437
- #: php/qmn_options_text_tab.php:190
438
- msgid "Message Displayed Before Comments Box If Enabled"
439
- msgstr "Bericht getoond voor opmerkingen box indien ingeschakeld"
440
-
441
- #: php/qmn_options_text_tab.php:200
442
- msgid "Message Displayed At End Of Quiz (Leave Blank To Omit Text Section)"
443
- msgstr "Bericht getoond aan het einde van de quiz (Laat leeg om de tekst sectie weg te laten)"
444
-
445
- #: php/qmn_options_text_tab.php:210
446
- msgid "Message Displayed If User Has Tried Quiz Too Many Times"
447
- msgstr "Bericht getoond indien de gebruiker de quiz te vaak heeft proberen te maken"
448
-
449
- #: php/qmn_options_text_tab.php:220
450
- msgid "Message Displayed If User Is Not Logged In And Quiz Requires Users To Be Logged In"
451
- msgstr "Bericht getoond indien de gebruiker niet is ingelogd en de quiz dit wel vereist"
452
-
453
- #: php/qmn_options_text_tab.php:230
454
- msgid "Message Displayed If Date Is Outside Scheduled Timeframe"
455
- msgstr "Bericht getoond indien de datum buiten het tijdspad is"
456
-
457
- #: php/qmn_options_text_tab.php:240
458
- msgid "Message Displayed If The Limit Of Total Entries Has Been Reached"
459
- msgstr "Bericht getoond indien de grens van het aantal invoeren is bereikt"
460
-
461
- #: php/qmn_options_text_tab.php:250
462
- msgid "%QUESTIONS_ANSWERS% Text"
463
- msgstr "%QUESTIONS_ANSWERS% Tekst"
464
-
465
- #: php/qmn_options_text_tab.php:263
466
- msgid "Twitter Sharing Text"
467
- msgstr "Twitter Delen tekst"
468
-
469
- #: php/qmn_options_text_tab.php:280
470
- msgid "Facebook Sharing Text"
471
- msgstr "Facebook Delen tekst"
472
-
473
- #: php/qmn_options_text_tab.php:295
474
- msgid "Other Templates"
475
- msgstr "Andere templates"
476
-
477
- #: php/qmn_options_text_tab.php:298
478
- msgid "Text for submit button"
479
- msgstr "Teskt voor verstuur knop"
480
-
481
- #: php/qmn_options_text_tab.php:302
482
- msgid "Text for name field"
483
- msgstr "Tekst voor naam veld"
484
-
485
- #: php/qmn_options_text_tab.php:306
486
- msgid "Text for business field"
487
- msgstr "Tekst voor bedrijfsveld"
488
-
489
- #: php/qmn_options_text_tab.php:310
490
- msgid "Text for email field"
491
- msgstr "Tekst voor email veld"
492
-
493
- #: php/qmn_options_text_tab.php:314
494
- msgid "Text for phone number field"
495
- msgstr "Tekst voor telefoonnummer veld"
496
-
497
- #: php/qmn_options_text_tab.php:318
498
- msgid "Text for comments field"
499
- msgstr "Tekst voor opmerkingen veld"
500
-
501
- #: php/qmn_options_text_tab.php:322
502
- msgid "Text for previous button"
503
- msgstr "Tekst voor vorige knop"
504
-
505
- #: php/qmn_options_text_tab.php:326
506
- msgid "Text for next button"
507
- msgstr "Tekst voor volgende knop"
508
-
509
- #: php/qmn_options_tools_tab.php:23
510
- msgid "The stats has been reset successfully."
511
- msgstr "De stats zijn succesvol gereset."
512
-
513
- #: php/qmn_options_tools_tab.php:75
514
- msgid "Use this button to reset all the stats collected for this quiz (Quiz Views and Times Quiz Has Been Taken)."
515
- msgstr "Gebruik deze knop om alle stats van deze quiz te resetten (Quiz weergaves en keren dat de quiz is afgenomen)."
516
-
517
- #: php/qmn_options_tools_tab.php:76
518
- msgid "Reset Quiz Views And Taken Stats"
519
- msgstr "Reset weergeven quiz en afgenomen quiz stats"
520
-
521
- #: php/qmn_options_tools_tab.php:87
522
- msgid "Are you sure you want to reset the stats to 0? All views and taken stats for this quiz will be reset. This is permanent and cannot be undone."
523
- msgstr "Weet je zeker dat je de stats naar 0 wil resetten? Alle weergave en afgenomen stats zullen gereset worden. Dit is permanent en kan niet ongedaan gemaakt worden."
524
 
525
- #: php/qmn_options_tools_tab.php:91
526
- msgid "Reset All Stats For Quiz"
527
- msgstr "Reset alle stats voor deze quiz"
 
 
 
 
528
 
529
- #: php/qmn_dashboard_widgets.php:9
530
- msgid "Quiz Master Next Snapshot"
531
- msgstr "Quiz Master Next momentopname"
 
 
 
532
 
533
- #: php/qmn_dashboard_widgets.php:166
534
- msgid "quizzes taken today"
535
- msgstr "quizzen afgenomen vandaag"
 
 
 
536
 
537
- #: php/qmn_dashboard_widgets.php:185
538
- msgid "quizzes taken last 7 days"
539
- msgstr "quizzen afgenomen de laatste 7 dagen"
 
 
 
 
540
 
541
- #: php/qmn_dashboard_widgets.php:204
542
- #, fuzzy
543
- msgid "quizzes taken last 30 days"
544
- msgstr "quizzen afgenomen de laatste 7 dagen"
545
 
546
- #: php/qmn_dashboard_widgets.php:223
547
- #, fuzzy
548
- msgid "quizzes taken last 120 days"
549
- msgstr "quizzen afgenomen de laatste 7 dagen"
550
 
551
- #: php/qmn_dashboard_widgets.php:242
552
- msgid "total active quizzes"
553
- msgstr "totaal actieve quizzen"
 
 
 
554
 
555
- #: php/qmn_dashboard_widgets.php:248
556
- msgid "total active questions"
557
- msgstr "totaal actieve vragen"
558
 
559
- #: php/qmn_dashboard_widgets.php:254
560
- msgid "most popular quiz"
561
- msgstr "meest populaire quiz"
562
 
563
- #: php/qmn_dashboard_widgets.php:260
564
- msgid "least popular quiz"
565
- msgstr "minst populaire quiz"
 
 
 
 
566
 
567
- #: php/qmn_options_certificate_tab.php:6
568
- msgid "Certificate (Beta)"
569
- msgstr "Certificaat (Beta)"
570
 
571
- #: php/qmn_options_certificate_tab.php:32
572
- msgid "The certificate has been updated successfully."
573
- msgstr "Het certificaat werd succesvol bijgewerkt."
574
 
575
- #: php/qmn_options_certificate_tab.php:61
576
- msgid "Enter title here"
577
- msgstr "Hier titel invoeren"
 
 
 
 
 
 
578
 
579
- #: php/qmn_options_certificate_tab.php:65
580
- msgid "Quiz Certificate (Beta)"
581
- msgstr "Quiz Certificaat (Beta)"
582
 
583
- #: php/qmn_options_certificate_tab.php:66
584
- msgid "Enter in your text here to fill in the certificate for this quiz. Be sure to enter in the link variable into the templates on the Quiz Text tab so the user can access the certificate."
585
- msgstr "Voer hier je tekst in voor het certificaat van deze quiz. Let er op om de linkvariabele in te voeren in de templates op de Quiz Next tab zodat de gebruiker toegang heeft tot het certificaat."
 
586
 
587
- #: php/qmn_options_certificate_tab.php:67
588
- msgid "These fields cannot contain HTML."
589
- msgstr "Deze velden kunnen geen HTML bevatten."
590
 
591
- #: php/qmn_options_certificate_tab.php:68
592
- #: php/qmn_options_certificate_tab.php:124
593
- msgid "Save Certificate Options"
594
- msgstr "Bewaar certificaat opties"
595
 
596
- #: php/qmn_options_certificate_tab.php:76
597
- msgid "Enable Certificates For This Quiz?"
598
- msgstr "Certificaat toestaan voor deze quiz?"
599
 
600
- #: php/qmn_options_certificate_tab.php:84
601
- msgid "Certificate Title"
602
- msgstr "Certificaat titel"
603
 
604
- #: php/qmn_options_certificate_tab.php:91
605
- msgid "Message Displayed On Certificate"
606
- msgstr "Bericht dat op certificaat staat"
607
 
608
- #: php/qmn_options_certificate_tab.php:111
609
- msgid "URL To Logo (Must be JPG, JPEG, PNG or GIF)"
610
- msgstr "URL naar logo (moet JPG, JPEG, PNG of GIF zijn)"
611
 
612
- #: php/qmn_options_certificate_tab.php:118
613
- msgid "URL To Background Img (Must be JPG, JPEG, PNG or GIF)"
614
- msgstr "URL naar achtergrond Img (moet JPG, JPEG, PNG of GIF zijn)"
 
 
 
 
 
 
615
 
616
- #: php/qmn_quiz_options.php:52
617
- #, php-format
618
- msgid "Quiz Settings For %s"
619
- msgstr "Quiz instellingen voor %s"
 
620
 
621
- #: php/qmn_quiz_options.php:92
622
- msgid "Error!"
623
- msgstr "Fout!"
 
 
624
 
625
- #: php/qmn_quiz_options.php:92
626
- msgid "Please go to the quizzes page and click on the Edit link from the quiz you wish to edit."
627
- msgstr "Ga naar de quizzen pagina en klik op de Bewerken link van de quiz die je wil gaan bewerken."
628
 
629
- #: php/qmn_options_questions_tab.php:6
630
  msgid "Questions"
631
  msgstr "Vragen"
632
 
633
- #: php/qmn_options_questions_tab.php:14
634
  msgid "Answer"
635
  msgstr "Antwoord"
636
 
637
- #: php/qmn_options_questions_tab.php:112
638
  msgid "The question has been updated successfully."
639
  msgstr "De vraag is succesvol bijgewerkt."
640
 
641
- #: php/qmn_options_questions_tab.php:139
642
  msgid "The question has been deleted successfully."
643
  msgstr "De vraag is succesvol verwijderd."
644
 
645
- #: php/qmn_options_questions_tab.php:223
646
  msgid "The question has been duplicated successfully."
647
  msgstr "De vraag is succesvol gedupliceerd."
648
 
649
- #: php/qmn_options_questions_tab.php:316
650
  msgid "The question has been created successfully."
651
  msgstr "De vraag is succesvol gemaakt."
652
 
653
- #: php/qmn_options_questions_tab.php:434
654
  msgid "Add Question"
655
  msgstr "Vraag toevoegen"
656
 
657
- #: php/qmn_options_questions_tab.php:443
658
  #, php-format
659
  msgid "One question"
660
  msgid_plural "%s questions"
661
  msgstr[0] "Een vraag"
662
  msgstr[1] "%s vragen"
663
 
664
- #: php/qmn_options_questions_tab.php:449
665
- #: php/qmn_options_questions_tab.php:457
666
- #: php/qmn_options_questions_tab.php:582
667
  msgid "Question Order"
668
  msgstr "Vraag volgorde"
669
 
670
- #: php/qmn_options_questions_tab.php:450
671
- #: php/qmn_options_questions_tab.php:458
672
- #: php/qmn_options_questions_tab.php:561
673
  msgid "Question Type"
674
  msgstr "Vraag type"
675
 
676
- #: php/qmn_options_questions_tab.php:451
677
- #: php/qmn_options_questions_tab.php:459
678
- #: php/qmn_options_questions_tab.php:595
679
  msgid "Category"
680
  msgstr "Categorie"
681
 
682
- #: php/qmn_options_questions_tab.php:452
683
- #: php/qmn_options_questions_tab.php:460
684
  msgid "Question"
685
  msgstr "Vraag"
686
 
687
- #: php/qmn_options_questions_tab.php:534
688
- msgid "For fill in the blank types, use %BLANK% to represent where to put the text box in your text."
689
- msgstr "Voor vul het lege veld in types, gebruik %BLANK% om aan te geven waar je in je tekst de tekstbox wil hebben."
 
 
 
 
690
 
691
- #: php/qmn_options_questions_tab.php:539
692
  msgid "Answers"
693
  msgstr "Antwoorden"
694
 
695
- #: php/qmn_options_questions_tab.php:540
696
  msgid "Points Worth"
697
  msgstr "Punten waard"
698
 
699
- #: php/qmn_options_questions_tab.php:541
700
  msgid "Correct Answer"
701
  msgstr "Goed antwoord"
702
 
703
- #: php/qmn_options_questions_tab.php:546
704
  msgid "Add New Answer!"
705
  msgstr "Voeg nieuw antwoord toe!"
706
 
707
- #: php/qmn_options_questions_tab.php:551
708
  msgid "Correct Answer Info"
709
  msgstr "Juiste antwoord informatie"
710
 
711
- #: php/qmn_options_questions_tab.php:573
 
 
 
 
712
  msgid "Comment Field"
713
  msgstr "Opmerkingenveld"
714
 
715
- #: php/qmn_options_questions_tab.php:575
716
  msgid "Small Text Field"
717
  msgstr "Klein tekstveld"
718
 
719
- #: php/qmn_options_questions_tab.php:576
720
  msgid "Large Text Field"
721
  msgstr "Groot tekstveld"
722
 
723
- #: php/qmn_options_questions_tab.php:577
724
  msgid "None"
725
  msgstr "Geen"
726
 
727
- #: php/qmn_options_questions_tab.php:587
728
  msgid "Required?"
729
  msgstr "Vereist?"
730
 
731
- #: php/qmn_options_questions_tab.php:618
732
  msgid "Create Question"
733
  msgstr "Maak vraag"
734
 
735
- #: php/qmn_options_questions_tab.php:623
736
  msgid "Are you sure you want to delete this question?"
737
  msgstr "Weet je zeker dat je deze vraag wil verwijderen?"
738
 
739
- #: php/qmn_options_questions_tab.php:628
740
  msgid "Delete Question"
741
  msgstr "Verwijder vraag"
742
 
743
- #: php/qmn_options_questions_tab.php:633
744
  msgid "Are you sure you want to duplicate this question?"
745
  msgstr "Weet je zeker dat je deze vraag wil dupliceren?"
746
 
747
- #: php/qmn_options_questions_tab.php:638
748
  msgid "Duplicate Question"
749
  msgstr "Dupliceer vraag"
750
 
751
- #: php/qmn_results.php:23
752
- msgid "Your results has been deleted successfully."
753
- msgstr "Je resultaten zijn succesvol verwijderd."
754
-
755
- #: php/qmn_results.php:161
756
- #, php-format
757
- msgid "One result"
758
- msgid_plural "%s results"
759
- msgstr[0] "Een resultaat"
760
- msgstr[1] "%s resultaten"
761
-
762
- #: php/qmn_results.php:208
763
- msgid "Actions"
764
- msgstr "Akties"
765
-
766
- #: php/qmn_results.php:209
767
- msgid "Quiz Name"
768
- msgstr "Quiz naam"
769
-
770
- #: php/qmn_results.php:210
771
- msgid "Score"
772
- msgstr "Score"
773
-
774
- #: php/qmn_results.php:211
775
- msgid "Time To Complete"
776
- msgstr "Gebruikte tijd"
777
-
778
- #: php/qmn_results.php:212
779
- msgid "Name"
780
- msgstr "Naam"
781
-
782
- #: php/qmn_results.php:213
783
- msgid "Business"
784
- msgstr "Bedrijf"
785
-
786
- #: php/qmn_results.php:214
787
- msgid "Email"
788
- msgstr "Email"
789
-
790
- #: php/qmn_results.php:215
791
- msgid "Phone"
792
- msgstr "Telefoon"
793
-
794
- #: php/qmn_results.php:216
795
- msgid "Time Taken"
796
- msgstr "Benodigde tijd"
797
-
798
- #: php/qmn_results.php:258
799
- #: php/qmn_options_option_tab.php:147
800
- msgid "Not Graded"
801
- msgstr "Niet ingedeeld"
802
-
803
- #: php/qmn_results.php:275
804
- msgid "Are you sure you want to delete these results?"
805
- msgstr "Weet je zeker dat je deze resultaten wil verwijderen?"
806
-
807
- #: php/qmn_results.php:280
808
- msgid "Delete Results"
809
- msgstr "Verwijder resultaten"
810
-
811
- #: php/qmn_options_results_page_tab.php:6
812
  msgid "Results Pages"
813
  msgstr "Resultaten pagina's"
814
 
815
- #: php/qmn_options_results_page_tab.php:41
816
  msgid "The results page has been added successfully."
817
  msgstr "De resultaten pagina is succesvol toegevoegd."
818
 
819
- #: php/qmn_options_results_page_tab.php:81
820
  msgid "The results page has been saved successfully."
821
  msgstr "De resultaten pagina is succesvol opgeslagen."
822
 
823
- #: php/qmn_options_results_page_tab.php:191
 
 
 
 
 
 
 
 
824
  msgid "Displays button to share on Facebook."
825
  msgstr "Geeft knop om op facebook te delen."
826
 
827
- #: php/qmn_options_results_page_tab.php:194
828
  msgid "Displays button to share on Twitter."
829
  msgstr "Geeft knop om op Twitter te delen."
830
 
831
- #: php/qmn_options_results_page_tab.php:199
832
- #: php/qmn_options_results_page_tab.php:280
833
  msgid "Save Results Pages"
834
  msgstr "Bewaar resultaten pagina's"
835
 
836
- #: php/qmn_options_results_page_tab.php:200
837
- #: php/qmn_options_results_page_tab.php:285
838
  msgid "Add New Results Page"
839
  msgstr "Voeg nieuwe resultaten pagina toe"
840
 
841
- #: php/qmn_options_results_page_tab.php:208
842
- #: php/qmn_options_results_page_tab.php:272
843
  msgid "Results Page Shown"
844
  msgstr "De resultaten pagina wordt getoond"
845
 
846
- #: php/qmn_options_results_page_tab.php:209
847
- #: php/qmn_options_results_page_tab.php:273
848
  msgid "Redirect URL (Beta)"
849
  msgstr "Redirect URL (Beta)"
850
 
851
- #: php/qmn_options_results_page_tab.php:247
852
  msgid "Delete"
853
  msgstr "Verwijder"
854
 
855
- #: php/qmn_options_results_page_tab.php:247
856
  msgid "Are you sure?"
857
  msgstr "Weet je het zeker?"
858
 
859
- #: php/qmn_options_preview_tab.php:6
860
- msgid "Preview"
861
- msgstr "Voorbeeld"
862
 
863
- #: php/qmn-stats-page.php:29
864
- msgid "Quiz Statistics"
865
- msgstr "Quiz statistieken"
866
 
867
- #: php/qmn-stats-page.php:68
868
- #, fuzzy
869
- msgid "Quiz Taken Stats"
870
- msgstr "Quiz totale stats"
871
 
872
- #: php/qmn_options_option_tab.php:6
873
- msgid "Options"
874
- msgstr "Opties"
875
 
876
- #: php/qmn_options_option_tab.php:94
877
- msgid "The options has been updated successfully."
878
- msgstr "De opties zijn succesvol bijgewerkt."
879
 
880
- #: php/qmn_options_option_tab.php:135
881
- #: php/qmn_options_option_tab.php:286
882
- msgid "Save Options"
883
- msgstr "Opties bewaren"
884
 
885
- #: php/qmn_options_option_tab.php:143
886
- msgid "Which system is this quiz graded on?"
887
- msgstr "Volgens welk systeem is deze quiz ingedeeld?"
888
 
889
- #: php/qmn_options_option_tab.php:145
890
- msgid "Correct/Incorrect"
891
- msgstr "Goed/Fout"
892
-
893
- #: php/qmn_options_option_tab.php:146
894
- msgid "Points"
895
- msgstr "Punten"
896
-
897
- #: php/qmn_options_option_tab.php:151
898
- msgid "Should the user be required to be logged in to take this quiz?"
899
- msgstr "Moet de gebruiker verplicht inloggen om een quiz te kunnen spelen?"
900
-
901
- #: php/qmn_options_option_tab.php:158
902
- msgid "How many questions per page would you like? (Leave 0 for all questions on one page)"
903
- msgstr "Hoeveel vragen per pagina wil je? (Laat 0 voor alle vragen op één pagina)"
904
-
905
- #: php/qmn_options_option_tab.php:164
906
- msgid "How many minutes does the user have to finish the quiz? (Leave 0 for no time limit)"
907
- msgstr "Hoeveel minuten krijgt de gebruiker om de quiz te doen? (Laat 0 voor geen tijdslimiet)"
908
-
909
- #: php/qmn_options_option_tab.php:170
910
- msgid "How many times can a user take this quiz? (Leave 0 for as many times as the user wants to. Currently only works for registered users)"
911
- msgstr "Hoe vaak kan een gebruiker een quiz doen? (Laat 0 voor ongelimiteerd. Dit werkt momenteel alleen voor geregistreerde gebruikers)"
912
-
913
- #: php/qmn_options_option_tab.php:176
914
- msgid "How many total entries can this quiz have? (Leave 0 for unlimited entries"
915
- msgstr "Hoeveel inzendingen kan deze quiz hebben? (Laat 0 voor een ongelimiteerd aantal inzendingen)"
916
-
917
- #: php/qmn_options_option_tab.php:182
918
- msgid "How many questions should be loaded for quiz? (Leave 0 to load all questions)"
919
- msgstr "Hoeveel vragen moeten er geladen worden voor deze quiz? (Laat 0 om alle vragen te laden)"
920
-
921
- #: php/qmn_options_option_tab.php:188
922
- msgid "What time-frame should the user be able to access the quiz? (Leave blank if the user can access anytime)"
923
- msgstr "Binnen welke termijn moet de gebruiker toegang kunnen hebben tot de quiz? (Laat blanco voor ongelimiteerde toegang)"
924
-
925
- #: php/qmn_options_option_tab.php:190
926
- msgid "start date"
927
- msgstr "start datum"
928
-
929
- #: php/qmn_options_option_tab.php:193
930
- msgid "end date"
931
- msgstr "eind datum"
932
-
933
- #: php/qmn_options_option_tab.php:197
934
- msgid "Are the questions random? (Question Order will not apply if this is yes)"
935
- msgstr "Zijn de vragen willekeurig? (de volgorde van de vragen zal niet worden toegepast indien ja)"
936
-
937
- #: php/qmn_options_option_tab.php:199
938
- msgid "Random Questions"
939
- msgstr "Willekeurige vragen"
940
-
941
- #: php/qmn_options_option_tab.php:200
942
- msgid "Random Questions And Answers"
943
- msgstr "Willekeurige vragen en antwoorden"
944
-
945
- #: php/qmn_options_option_tab.php:205
946
- msgid "Would you like to ask for the contact information at the beginning or at the end of the quiz?"
947
- msgstr "Wil je de contactinformatie aan het begin van de quiz of aan het eind van de quiz vragen?"
948
-
949
- #: php/qmn_options_option_tab.php:207
950
- msgid "Beginning"
951
- msgstr "Begin"
952
-
953
- #: php/qmn_options_option_tab.php:208
954
- msgid "End"
955
- msgstr "Einde"
956
-
957
- #: php/qmn_options_option_tab.php:212
958
- msgid "If a logged-in user takes the quiz, would you like them to be able to edit contact information? If set to no, the fields will not show up for logged in users; however, the users information will be saved for the fields."
959
- msgstr "Mag een ingelogde gebruiker zijn contact informatie bijwerken? Als dit op nee staat dan zullen de bijbehorende velden niet zichtbaar zijn voor ingelogde gebruikers echter de gebruikersinformatie zal worden bewaard."
960
-
961
- #: php/qmn_options_option_tab.php:219
962
- msgid "Should we ask for users name?"
963
- msgstr "Moeten we om de naam van de gebruiker vragen?"
964
-
965
- #: php/qmn_options_option_tab.php:222
966
- #: php/qmn_options_option_tab.php:230
967
- #: php/qmn_options_option_tab.php:238
968
- #: php/qmn_options_option_tab.php:246
969
- msgid "Require"
970
- msgstr "Vereist"
971
 
972
- #: php/qmn_options_option_tab.php:227
973
- msgid "Should we ask for users business?"
974
- msgstr "Moeten we vragen om het bedrijf van de gebruiker?"
975
 
976
- #: php/qmn_options_option_tab.php:235
977
- msgid "Should we ask for users email?"
978
- msgstr "Moeten we om het emailadres van de gebruiker vragen?"
979
 
980
- #: php/qmn_options_option_tab.php:243
981
- msgid "Should we ask for users phone number?"
982
- msgstr "Moeten we om het telefoonnummer van de gebruiker vragen?"
983
 
984
- #: php/qmn_options_option_tab.php:251
985
- msgid "Would you like a place for the user to enter comments?"
986
- msgstr "Wil je een plek voor de gebruiker om opmerkingen te plaatsen?"
987
 
988
- #: php/qmn_options_option_tab.php:258
989
- msgid "Show question number on quiz?"
990
- msgstr "Laat het nummer van de vraag zien in de quiz?"
991
 
992
- #: php/qmn_options_option_tab.php:265
993
- msgid "Show social media sharing buttons? (Twitter & Facebook)"
994
- msgstr "Laat social media knoppen zien (Twitter & Facebook)?"
995
 
996
- #: php/qmn_options_option_tab.php:265
997
- msgid "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!"
998
- msgstr "Deze optie is alleen voor gebruikers van oudere versies. Gebruik s.v.p. de nieuwe template variabelen %FACEBOOK_SHARE% %TWITTER_SHARE% op je resultatenpagina in plaats van deze optie te gebruiken!"
999
 
1000
- #: php/qmn_options_option_tab.php:272
1001
- msgid "Disable question once user selects answer? (Currently only work on multiple choice)"
1002
  msgstr ""
 
 
1003
 
1004
- #: php/qmn_options_option_tab.php:279
1005
- msgid "Dynamically add class for incorrect/correct answer after user selects answer? (Currently only works on multiple choice)"
1006
  msgstr ""
 
1007
 
1008
- #: php/qmn_options_style_tab.php:6
1009
- msgid "Style"
1010
- msgstr "Stijl"
1011
-
1012
- #: php/qmn_options_style_tab.php:26
1013
- msgid "The style has been saved successfully."
1014
- msgstr "De stijl is succesvol bewaard."
1015
-
1016
- #: php/qmn_options_style_tab.php:65
1017
- msgid "Quiz Styles"
1018
- msgstr "Quiz stijlen"
1019
-
1020
- #: php/qmn_options_style_tab.php:66
1021
- msgid "Choose your style:"
1022
- msgstr "Kies je stijl:"
1023
-
1024
- #: php/qmn_options_style_tab.php:88
1025
- msgid "Custom"
1026
- msgstr "Aangepast"
1027
-
1028
- #: php/qmn_options_style_tab.php:94
1029
- #: php/qmn_options_style_tab.php:106
1030
- msgid "Save Quiz Style"
1031
- msgstr "Bewaar quiz stijl"
1032
-
1033
- #: php/qmn_options_style_tab.php:96
1034
- msgid "Custom Style CSS"
1035
- msgstr "Eigen stijl CSS"
1036
 
1037
- #: php/qmn_options_style_tab.php:97
1038
- msgid "For detailed help and guidance along with a list of different classes used in this plugin, please visit the following link:"
1039
- msgstr "Bezoek de volgende link voor gedetailleerde help en begeleiding samen met een lijst van verschillende classes die gebruikt worden in deze plugin:"
1040
 
1041
- #: php/qmn_results_details.php:117
1042
- msgid "Results"
1043
- msgstr "Resultaten"
1044
 
1045
- #: php/qmn_results_details.php:196
1046
- msgid "Create Certificate"
1047
- msgstr "Maak certificaat"
1048
 
1049
- #: php/qmn_results_details.php:201
1050
- msgid "Download Certificate Here"
1051
- msgstr "Download hier het certificaat"
1052
 
1053
- #: php/qmn_results_details.php:208
1054
- msgid "Certificate"
1055
- msgstr "Certificaat"
1056
 
1057
- #: php/qmn_tools.php:90
1058
- msgid "There has been an error! Please try again."
1059
- msgstr "Er is een fout opgetreden. Probeer onieuw."
1060
 
1061
- #: php/qmn_tools.php:108
1062
- msgid "Quiz Has Been Restored!"
1063
- msgstr "Quiz is hersteld!"
1064
 
1065
- #: php/qmn_tools.php:113
1066
- msgid "Choose a quiz in the drop down and then click the button to restore a deleted quiz."
1067
- msgstr "Kies een quiz in het selectiemenu en klik dan op de knop om de verwijderde quiz te herstellen."
1068
 
1069
- #: php/qmn_tools.php:123
1070
- msgid "Restore Quiz"
1071
- msgstr "Herstel quiz"
1072
 
1073
- #: php/qmn_tools.php:152
1074
- #: php/qmn_tools.php:168
1075
- #, php-format
1076
- msgid "Previous %s Audits"
1077
- msgstr "Vorige %s controles"
1078
 
1079
- #: php/qmn_tools.php:155
1080
- #: php/qmn_tools.php:162
1081
- #, php-format
1082
- msgid "Next %s Audits"
1083
- msgstr "Volgende %s controles"
1084
 
1085
- #: php/qmn_tools.php:175
1086
- msgid "User"
1087
- msgstr "Gebruiker"
1088
 
1089
- #: php/qmn_tools.php:176
1090
- msgid "Action"
1091
- msgstr "Aktie"
1092
 
1093
- #: php/qmn_tools.php:177
1094
- msgid "Time"
1095
- msgstr "Tijd"
1096
 
1097
- #: php/qmn_help.php:10
1098
- msgid "Need Help?"
1099
- msgstr "Hulp nodig?"
1100
 
1101
- #: php/qmn_help.php:11
1102
- msgid "Support"
1103
- msgstr "Ondersteuning"
 
 
 
 
1104
 
1105
- #: php/qmn_help.php:12
1106
- msgid "System Info"
1107
- msgstr "Systeeminformatie"
1108
 
1109
- #: php/qmn_help.php:15
1110
- msgid "Help Page"
1111
- msgstr "Help pagina"
 
 
 
 
 
1112
 
1113
- #: php/qmn_help.php:38
1114
- msgid "Need help with the plugin? Try any of the following:"
1115
- msgstr "Hulp nodig met de plugin? Probeer één van de volgende:"
1116
 
1117
- #: php/qmn_question_types.php:7
1118
  msgid "Multiple Choice"
1119
  msgstr "Meerkeuze"
1120
 
1121
- #: php/qmn_question_types.php:76
1122
  msgid "Horizontal Multiple Choice"
1123
  msgstr "Horizontale meerkeuze"
1124
 
1125
- #: php/qmn_question_types.php:144
1126
  msgid "Drop Down"
1127
  msgstr "Vervolgkeuze"
1128
 
1129
- #: php/qmn_question_types.php:209
1130
  msgid "Small Open Answer"
1131
  msgstr "Klein open antwoord"
1132
 
1133
- #: php/qmn_question_types.php:258
1134
  msgid "Multiple Response"
1135
  msgstr "Meerdere antwoorden"
1136
 
1137
- #: php/qmn_question_types.php:333
1138
  msgid "Large Open Answer"
1139
  msgstr "Groot open antwoord"
1140
 
1141
- #: php/qmn_question_types.php:382
1142
  msgid "Text Block"
1143
  msgstr "Tekst blok"
1144
 
1145
- #: php/qmn_question_types.php:397
1146
  msgid "Number"
1147
  msgstr "Nummer"
1148
 
1149
- #: php/qmn_question_types.php:446
1150
  msgid "Accept"
1151
  msgstr "Accepteer"
1152
 
1153
- #: php/qmn_question_types.php:465
1154
  msgid "Captcha"
1155
  msgstr "Captcha"
1156
 
1157
- #: php/qmn_question_types.php:506
1158
  msgid "Horizontal Multiple Response"
1159
  msgstr "Horizontale meerdere antwoorden"
1160
 
1161
- #: php/qmn_question_types.php:580
1162
  msgid "Fill In The Blank"
1163
  msgstr "Vul het lege veld in"
1164
 
1165
- #: php/qmn_alerts.php:19
1166
- msgid "Success!"
1167
- msgstr "Succesvol!"
 
 
 
 
1168
 
1169
- #: php/qmn_quiz_admin.php:189
 
 
 
 
 
 
 
 
1170
  msgid "Add New"
1171
  msgstr "Voeg nieuwe toe"
1172
 
1173
- #: php/qmn_quiz_admin.php:207
1174
  #, php-format
1175
  msgid "One quiz"
1176
  msgid_plural "%s quizzes"
1177
  msgstr[0] "Een quiz"
1178
  msgstr[1] "%s quizzen"
1179
 
1180
- #: php/qmn_quiz_admin.php:253
1181
- #: php/qmn_quiz_admin.php:304
 
 
 
 
1182
  msgid "URL"
1183
  msgstr "URL"
1184
 
1185
- #: php/qmn_quiz_admin.php:254
1186
- #: php/qmn_quiz_admin.php:305
1187
  msgid "Quiz Shortcode"
1188
  msgstr "Quiz shortcode"
1189
 
1190
- #: php/qmn_quiz_admin.php:255
1191
- #: php/qmn_quiz_admin.php:306
1192
  msgid "Leaderboard Shortcode"
1193
  msgstr "Klassement shortcode"
1194
 
1195
- #: php/qmn_quiz_admin.php:256
1196
- #: php/qmn_quiz_admin.php:307
1197
  msgid "Quiz Views"
1198
  msgstr "Quiz weergaves"
1199
 
1200
- #: php/qmn_quiz_admin.php:257
1201
- #: php/qmn_quiz_admin.php:308
1202
  msgid "Quiz Taken"
1203
  msgstr "Afgenomen quizzen"
1204
 
1205
- #: php/qmn_quiz_admin.php:258
1206
- #: php/qmn_quiz_admin.php:309
1207
  msgid "Last Modified"
1208
  msgstr "Laatst aangepast"
1209
 
1210
- #: php/qmn_quiz_admin.php:271
1211
  msgid "Edit Name"
1212
  msgstr "Bewerk naam"
1213
 
1214
- #: php/qmn_quiz_admin.php:273
1215
  msgid "Edit"
1216
  msgstr "Bewerk"
1217
 
1218
- #: php/qmn_quiz_admin.php:275
1219
- #: php/qmn_quiz_admin.php:404
 
 
 
1220
  msgid "Duplicate"
1221
  msgstr "Dupliceer"
1222
 
1223
- #: php/qmn_quiz_admin.php:366
1224
  msgid "Create New Quiz"
1225
  msgstr "Maak nieuwe quiz"
1226
 
1227
- #: php/qmn_quiz_admin.php:380
1228
  msgid "Create Quiz"
1229
  msgstr "Maak quiz"
1230
 
1231
- #: php/qmn_quiz_admin.php:386
1232
  msgid "Quiz Name:"
1233
  msgstr "Quiz naam:"
1234
 
1235
- #: php/qmn_quiz_admin.php:397
1236
  msgid "Duplicate this quiz?"
1237
  msgstr "Dupliceer deze quiz?"
1238
 
1239
- #: php/qmn_quiz_admin.php:399
1240
  msgid "Duplicate questions with quiz"
1241
  msgstr "Dupliceer vragen met quiz"
1242
 
1243
- #: php/qmn_quiz_admin.php:401
1244
  msgid "Name Of New Quiz:"
1245
  msgstr "Naam van de nieuwe quiz"
1246
 
1247
- #: php/qmn_quiz_admin.php:410
1248
  msgid "Are you sure you want to delete this quiz?"
1249
  msgstr "Weet je zeker dat je deze quiz wil verwijderen?"
1250
 
1251
- #: php/qmn_quiz_admin.php:415
1252
  msgid "Delete Quiz"
1253
  msgstr "Verwijder quiz"
1254
 
1255
- #: php/qmn_widgets.php:11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1256
  msgid "Quiz Master Next Leaderboard Widget"
1257
  msgstr "Quiz Master Next klassementswidget"
1258
 
1259
- #: php/qmn_widgets.php:26
1260
  msgid "Widget Title"
1261
  msgstr "Widget titel"
1262
 
1263
- #: php/qmn_widgets.php:30
1264
  msgid "Quiz ID"
1265
  msgstr "Quiz ID"
1266
 
 
 
 
1267
  #~ msgid ""
1268
  #~ "Required currently only works on open answer, number, accept, and captcha "
1269
  #~ "question types"
5
  msgstr ""
6
  "Project-Id-Version: Quiz Master Next\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2015-06-11 16:18-0500\n"
9
  "PO-Revision-Date: \n"
10
  "Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
11
  "Language-Team: My Local Webstop <fpcorso@mylocalwebstop.com>\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.8.1\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
 
26
+ #: mlw_quizmaster2.php:217 php/qmn_quiz_admin.php:196
27
  msgid "Quizzes"
28
  msgstr "Quizzen"
29
 
31
  msgid "Quiz Settings"
32
  msgstr "Quiz instellingen"
33
 
34
+ #: mlw_quizmaster2.php:219 php/qmn_results.php:159
35
+ #: php/qmn_results_details.php:20
36
  msgid "Quiz Results"
37
  msgstr "Quiz resultaten"
38
 
44
  msgid "Settings"
45
  msgstr "Instellingen"
46
 
47
+ #: mlw_quizmaster2.php:222 php/qmn_options_tools_tab.php:13
48
+ #: php/qmn_tools.php:65
49
  msgid "Tools"
50
  msgstr "Gereedschap"
51
 
61
  msgid "Help"
62
  msgstr "Help"
63
 
64
+ #: mlw_quizmaster2.php:228 mlw_quizmaster2.php:229
 
65
  msgid "QMN About"
66
  msgstr "Over QMN"
67
 
68
+ #: php/qmn-stats-page.php:29
69
+ msgid "Quiz Statistics"
70
+ msgstr "Quiz statistieken"
71
 
72
+ #: php/qmn-stats-page.php:68
73
+ #, fuzzy
74
+ msgid "Quiz Taken Stats"
75
+ msgstr "Quiz totale stats"
76
 
77
+ #: php/qmn_addons.php:60
78
+ msgid "These addons extend the functionality of Quiz Master Next"
79
+ msgstr "Deze uitbreidingen verbeteren de functionaliteit van Quiz Master Next"
80
+
81
+ #: php/qmn_addons.php:103
82
+ msgid "Browse All Addons"
83
+ msgstr "Doorzoek alle uitbreidingen"
84
+
85
+ #: php/qmn_addons.php:117
86
+ msgid "Featured Addons"
87
+ msgstr "Aanbevolen uitbreidingen"
88
+
89
+ #: php/qmn_alerts.php:37
90
+ msgid "Success!"
91
+ msgstr "Succesvol!"
92
+
93
+ #: php/qmn_alerts.php:41 php/qmn_quiz_options.php:96
94
+ msgid "Error!"
95
+ msgstr "Fout!"
96
+
97
+ #: php/qmn_credits.php:30
98
+ msgid "Welcome To Quiz Master Next"
99
+ msgstr "Welkom bij Quizmaster Next"
100
+
101
+ #: php/qmn_credits.php:31
102
+ msgid "Thank you for updating!"
103
+ msgstr "Dank je voor het bijwerken!"
104
+
105
+ #: php/qmn_credits.php:35
106
+ msgid "What's New!"
107
+ msgstr "Wat is er nieuw!"
108
+
109
+ #: php/qmn_credits.php:37
110
+ msgid "Changelog"
111
+ msgstr "Overzicht wijzigingen"
112
+
113
+ #: php/qmn_dashboard_widgets.php:16
114
+ msgid "Quiz Master Next Snapshot"
115
+ msgstr "Quiz Master Next momentopname"
116
+
117
+ #: php/qmn_dashboard_widgets.php:180
118
+ msgid "quizzes taken today"
119
+ msgstr "quizzen afgenomen vandaag"
120
+
121
+ #: php/qmn_dashboard_widgets.php:199
122
+ msgid "quizzes taken last 7 days"
123
+ msgstr "quizzen afgenomen de laatste 7 dagen"
124
+
125
+ #: php/qmn_dashboard_widgets.php:218
126
+ #, fuzzy
127
+ msgid "quizzes taken last 30 days"
128
+ msgstr "quizzen afgenomen de laatste 7 dagen"
129
+
130
+ #: php/qmn_dashboard_widgets.php:237
131
+ #, fuzzy
132
+ msgid "quizzes taken last 120 days"
133
+ msgstr "quizzen afgenomen de laatste 7 dagen"
134
+
135
+ #: php/qmn_dashboard_widgets.php:256
136
+ msgid "total active quizzes"
137
+ msgstr "totaal actieve quizzen"
138
+
139
+ #: php/qmn_dashboard_widgets.php:262
140
+ msgid "total active questions"
141
+ msgstr "totaal actieve vragen"
142
+
143
+ #: php/qmn_dashboard_widgets.php:268
144
+ msgid "most popular quiz"
145
+ msgstr "meest populaire quiz"
146
+
147
+ #: php/qmn_dashboard_widgets.php:274
148
+ msgid "least popular quiz"
149
+ msgstr "minst populaire quiz"
150
+
151
+ #: php/qmn_help.php:13
152
+ msgid "Need Help?"
153
+ msgstr "Hulp nodig?"
154
+
155
+ #: php/qmn_help.php:14
156
+ msgid "Support"
157
+ msgstr "Ondersteuning"
158
+
159
+ #: php/qmn_help.php:15
160
+ msgid "System Info"
161
+ msgstr "Systeeminformatie"
162
+
163
+ #: php/qmn_help.php:18
164
+ msgid "Help Page"
165
+ msgstr "Help pagina"
166
+
167
+ #: php/qmn_help.php:48
168
+ msgid "Need help with the plugin? Try any of the following:"
169
+ msgstr "Hulp nodig met de plugin? Probeer één van de volgende:"
170
+
171
+ #: php/qmn_options_certificate_tab.php:15
172
+ msgid "Certificate (Beta)"
173
+ msgstr "Certificaat (Beta)"
174
+
175
+ #: php/qmn_options_certificate_tab.php:47
176
+ msgid "The certificate has been updated successfully."
177
+ msgstr "Het certificaat werd succesvol bijgewerkt."
178
+
179
+ #: php/qmn_options_certificate_tab.php:60 php/qmn_options_email_tab.php:68
180
+ #: php/qmn_options_email_tab.php:127 php/qmn_options_email_tab.php:191
181
+ #: php/qmn_options_leaderboard_tab.php:52 php/qmn_options_option_tab.php:120
182
+ #: php/qmn_options_questions_tab.php:139 php/qmn_options_questions_tab.php:166
183
+ #: php/qmn_options_questions_tab.php:250 php/qmn_options_questions_tab.php:343
184
+ #: php/qmn_options_results_page_tab.php:68
185
+ #: php/qmn_options_results_page_tab.php:108 php/qmn_options_style_tab.php:52
186
+ #: php/qmn_options_text_tab.php:68 php/qmn_options_tools_tab.php:50
187
+ #: php/qmn_quiz_creator.php:385 php/qmn_quiz_creator.php:451
188
+ #: php/qmn_quiz_creator.php:493 php/qmn_quiz_creator.php:651
189
+ #: php/qmn_quiz_creator.php:716 php/qmn_results.php:43
190
  #, php-format
191
+ msgid ""
192
+ "There has been an error in this action. Please share this with the "
193
+ "developer. Error Code: %s"
194
+ msgstr ""
195
+ "Er is een fout opgetreden in deze actie. Deel dit met de ontwikkelaar. "
196
+ "Foutcode: %s"
197
+
198
+ #: php/qmn_options_certificate_tab.php:76
199
+ msgid "Enter title here"
200
+ msgstr "Hier titel invoeren"
201
 
202
+ #: php/qmn_options_certificate_tab.php:76 php/qmn_options_email_tab.php:86
203
+ #: php/qmn_options_email_tab.php:104
204
  msgid "Enter text here"
205
  msgstr "Hier tekst invoeren"
206
 
207
+ #: php/qmn_options_certificate_tab.php:80
208
+ msgid "Quiz Certificate (Beta)"
209
+ msgstr "Quiz Certificaat (Beta)"
210
+
211
+ #: php/qmn_options_certificate_tab.php:81
212
+ msgid ""
213
+ "Enter in your text here to fill in the certificate for this quiz. Be sure to "
214
+ "enter in the link variable into the templates on the Quiz Text tab so the "
215
+ "user can access the certificate."
216
+ msgstr ""
217
+ "Voer hier je tekst in voor het certificaat van deze quiz. Let er op om de "
218
+ "linkvariabele in te voeren in de templates op de Quiz Next tab zodat de "
219
+ "gebruiker toegang heeft tot het certificaat."
220
+
221
+ #: php/qmn_options_certificate_tab.php:82
222
+ msgid "These fields cannot contain HTML."
223
+ msgstr "Deze velden kunnen geen HTML bevatten."
224
+
225
+ #: php/qmn_options_certificate_tab.php:83
226
+ #: php/qmn_options_certificate_tab.php:139
227
+ msgid "Save Certificate Options"
228
+ msgstr "Bewaar certificaat opties"
229
+
230
+ #: php/qmn_options_certificate_tab.php:91
231
+ msgid "Enable Certificates For This Quiz?"
232
+ msgstr "Certificaat toestaan voor deze quiz?"
233
+
234
+ #: php/qmn_options_certificate_tab.php:93 php/qmn_options_email_tab.php:355
235
+ #: php/qmn_options_email_tab.php:362 php/qmn_options_option_tab.php:166
236
+ #: php/qmn_options_option_tab.php:227 php/qmn_options_option_tab.php:234
237
+ #: php/qmn_options_option_tab.php:242 php/qmn_options_option_tab.php:250
238
+ #: php/qmn_options_option_tab.php:258 php/qmn_options_option_tab.php:266
239
+ #: php/qmn_options_option_tab.php:273 php/qmn_options_option_tab.php:280
240
+ #: php/qmn_options_option_tab.php:287 php/qmn_options_option_tab.php:294
241
+ #: php/qmn_options_questions_tab.php:603
242
+ #: php/qmn_options_results_page_tab.php:264
243
+ msgid "Yes"
244
+ msgstr "Ja"
245
+
246
+ #: php/qmn_options_certificate_tab.php:94 php/qmn_options_email_tab.php:356
247
+ #: php/qmn_options_email_tab.php:363 php/qmn_options_option_tab.php:167
248
+ #: php/qmn_options_option_tab.php:214 php/qmn_options_option_tab.php:228
249
+ #: php/qmn_options_option_tab.php:236 php/qmn_options_option_tab.php:244
250
+ #: php/qmn_options_option_tab.php:252 php/qmn_options_option_tab.php:260
251
+ #: php/qmn_options_option_tab.php:267 php/qmn_options_option_tab.php:274
252
+ #: php/qmn_options_option_tab.php:281 php/qmn_options_option_tab.php:288
253
+ #: php/qmn_options_option_tab.php:295 php/qmn_options_questions_tab.php:604
254
+ #: php/qmn_options_results_page_tab.php:264
255
+ msgid "No"
256
+ msgstr "Nee"
257
+
258
+ #: php/qmn_options_certificate_tab.php:99
259
+ msgid "Certificate Title"
260
+ msgstr "Certificaat titel"
261
+
262
+ #: php/qmn_options_certificate_tab.php:106
263
+ msgid "Message Displayed On Certificate"
264
+ msgstr "Bericht dat op certificaat staat"
265
+
266
+ #: php/qmn_options_certificate_tab.php:108
267
+ #: php/qmn_options_leaderboard_tab.php:105 php/qmn_options_text_tab.php:199
268
+ #: php/qmn_options_text_tab.php:209 php/qmn_options_text_tab.php:219
269
+ #: php/qmn_options_text_tab.php:229 php/qmn_options_text_tab.php:239
270
+ #: php/qmn_options_text_tab.php:249 php/qmn_options_text_tab.php:259
271
+ #: php/qmn_options_text_tab.php:269 php/qmn_options_text_tab.php:282
272
+ #: php/qmn_options_text_tab.php:299
273
+ msgid "Allowed Variables:"
274
+ msgstr "Toegestane variabelen:"
275
+
276
+ #: php/qmn_options_certificate_tab.php:126
277
+ msgid "URL To Logo (Must be JPG, JPEG, PNG or GIF)"
278
+ msgstr "URL naar logo (moet JPG, JPEG, PNG of GIF zijn)"
279
+
280
+ #: php/qmn_options_certificate_tab.php:133
281
+ msgid "URL To Background Img (Must be JPG, JPEG, PNG or GIF)"
282
+ msgstr "URL naar achtergrond Img (moet JPG, JPEG, PNG of GIF zijn)"
283
+
284
+ #: php/qmn_options_email_tab.php:13
285
+ msgid "Emails"
286
+ msgstr "Emails"
287
+
288
+ #: php/qmn_options_email_tab.php:55 php/qmn_options_email_tab.php:114
289
+ msgid "The email has been added successfully."
290
+ msgstr "De email is succesvol toegevoegd"
291
+
292
+ #: php/qmn_options_email_tab.php:178
293
  msgid "The email has been updated successfully."
294
  msgstr "De email is succesvol bijgewerkt"
295
 
296
+ #: php/qmn_options_email_tab.php:258 php/qmn_options_leaderboard_tab.php:63
297
+ #: php/qmn_options_results_page_tab.php:148 php/qmn_options_text_tab.php:105
298
  msgid "Template Variables"
299
  msgstr "Template variabelen"
300
 
301
+ #: php/qmn_options_email_tab.php:261 php/qmn_options_results_page_tab.php:151
302
+ #: php/qmn_options_text_tab.php:108
303
  msgid "Score for the quiz when using points"
304
  msgstr "Score voor de quiz bij gebruik van punten"
305
 
306
+ #: php/qmn_options_email_tab.php:264 php/qmn_options_results_page_tab.php:154
307
+ #: php/qmn_options_text_tab.php:111
308
  msgid "The average amount of points user had per question"
309
  msgstr "Het gemiddelde aantal punten per vraag dat de gebruiker had"
310
 
311
+ #: php/qmn_options_email_tab.php:267 php/qmn_options_results_page_tab.php:157
312
+ #: php/qmn_options_text_tab.php:114
313
  msgid "The number of correct answers the user had"
314
  msgstr "Het aantal correcte antwoorden dat de gebruiker had"
315
 
316
+ #: php/qmn_options_email_tab.php:270 php/qmn_options_results_page_tab.php:160
317
+ #: php/qmn_options_text_tab.php:117
318
  msgid "The total number of questions in the quiz"
319
  msgstr "Het totaal aantal vragen in de quiz"
320
 
321
+ #: php/qmn_options_email_tab.php:273 php/qmn_options_results_page_tab.php:163
322
+ #: php/qmn_options_text_tab.php:120
323
  msgid "Score for the quiz when using correct answers"
324
  msgstr "Score voor de quiz bij gebruik van goede antwoorden"
325
 
326
+ #: php/qmn_options_email_tab.php:276 php/qmn_options_results_page_tab.php:166
327
+ #: php/qmn_options_text_tab.php:123
328
  msgid "The name the user entered before the quiz"
329
  msgstr "De naam die de gebruiker invoerde voor aanvang van de quiz"
330
 
331
+ #: php/qmn_options_email_tab.php:279 php/qmn_options_results_page_tab.php:169
332
+ #: php/qmn_options_text_tab.php:126
333
  msgid "The business the user entered before the quiz"
334
  msgstr "Het bedrijf dat de gebruiker invoerde voor aanvang van de quiz"
335
 
336
+ #: php/qmn_options_email_tab.php:282 php/qmn_options_results_page_tab.php:172
337
+ #: php/qmn_options_text_tab.php:129
338
  msgid "The phone number the user entered before the quiz"
339
  msgstr "Het telefoonnummer dat de gebruiker invoerde voor aanvang van de quiz"
340
 
341
+ #: php/qmn_options_email_tab.php:285 php/qmn_options_results_page_tab.php:175
342
+ #: php/qmn_options_text_tab.php:132
343
  msgid "The email the user entered before the quiz"
344
  msgstr "De email die de gebruiker invoerde voor aanvang van de quiz"
345
 
346
+ #: php/qmn_options_email_tab.php:288 php/qmn_options_leaderboard_tab.php:91
347
+ #: php/qmn_options_results_page_tab.php:178 php/qmn_options_text_tab.php:135
348
  msgid "The name of the quiz"
349
  msgstr "De naam van de quiz"
350
 
351
+ #: php/qmn_options_email_tab.php:291 php/qmn_options_results_page_tab.php:181
352
+ #: php/qmn_options_text_tab.php:138
353
+ msgid ""
354
+ "Shows the question, the answer the user provided, and the correct answer"
355
+ msgstr ""
356
+ "Laat de vragen zien, de gegeven antwoorden van de gebruiker en het juste "
357
+ "antwoord"
358
 
359
+ #: php/qmn_options_email_tab.php:294 php/qmn_options_results_page_tab.php:184
360
+ #: php/qmn_options_text_tab.php:141
361
  msgid "The comments the user entered into comment box if enabled"
362
+ msgstr ""
363
+ "De opmerkingen die de gebruiker invoerde in de opmerkingenbox, indien "
364
+ "ingeschakeld"
365
 
366
+ #: php/qmn_options_email_tab.php:297 php/qmn_options_text_tab.php:144
367
+ msgid "The amount of time user spent on quiz in seconds"
368
+ msgstr ""
369
+
370
+ #: php/qmn_options_email_tab.php:301 php/qmn_options_text_tab.php:147
371
+ msgid "The amount of time user spent on quiz in minutes"
372
+ msgstr ""
373
 
374
+ #: php/qmn_options_email_tab.php:304 php/qmn_options_results_page_tab.php:193
375
+ #: php/qmn_options_text_tab.php:151
376
  msgid "The link to the certificate after completing the quiz"
377
  msgstr "De link naar het certificaat na voltooiing van de quiz"
378
 
379
+ #: php/qmn_options_email_tab.php:307 php/qmn_options_results_page_tab.php:196
380
+ #: php/qmn_options_text_tab.php:154
381
  msgid "The amount of points a specific category earned."
382
  msgstr "De hoeveelheid punten verdiend in een specifieke categorie."
383
 
384
+ #: php/qmn_options_email_tab.php:310 php/qmn_options_results_page_tab.php:199
385
+ #: php/qmn_options_text_tab.php:157
386
  msgid "The score a specific category earned."
387
  msgstr "De score verdiend in een specifieke categorie."
388
 
389
+ #: php/qmn_options_email_tab.php:313 php/qmn_options_results_page_tab.php:202
390
+ #: php/qmn_options_text_tab.php:160
391
  msgid "The average points from all categories."
392
  msgstr "De gemiddelde punten van alle categorieën."
393
 
394
+ #: php/qmn_options_email_tab.php:316 php/qmn_options_results_page_tab.php:205
395
+ #: php/qmn_options_text_tab.php:163
396
  msgid "The average score from all categories."
397
  msgstr "De gemiddelde score van alle categorieën."
398
 
399
+ #: php/qmn_options_email_tab.php:319 php/qmn_options_text_tab.php:166
400
  msgid "The question that the user answered"
401
  msgstr "De vraag die de gebruiker beantwoordde"
402
 
403
+ #: php/qmn_options_email_tab.php:322 php/qmn_options_text_tab.php:169
404
  msgid "The answer the user gave for the question"
405
  msgstr "Het antwoord van de gebruiker op de vraag"
406
 
407
+ #: php/qmn_options_email_tab.php:325 php/qmn_options_text_tab.php:172
408
  msgid "The correct answer for the question"
409
  msgstr "Het juiste antwoord op de vraag"
410
 
411
+ #: php/qmn_options_email_tab.php:328 php/qmn_options_text_tab.php:175
412
  msgid "The comments the user provided in the comment field for the question"
413
+ msgstr ""
414
+ "De opmerkingen geplaatst door de gebruiker in het opmerkingenveld van de "
415
+ "vraag."
416
 
417
+ #: php/qmn_options_email_tab.php:331 php/qmn_options_text_tab.php:178
418
  msgid "Reason why the correct answer is the correct answer"
419
  msgstr "Reden waarom het juiste antwoord het juiste antwoord is"
420
 
421
+ #: php/qmn_options_email_tab.php:334 php/qmn_options_text_tab.php:181
422
  msgid "The Current Date"
423
  msgstr "De huidige datum"
424
 
425
+ #: php/qmn_options_email_tab.php:349 php/qmn_options_email_tab.php:548
 
426
  msgid "Save Email Templates And Settings"
427
  msgstr "Bewaar email templates en instellingen"
428
 
429
+ #: php/qmn_options_email_tab.php:353
430
  msgid "Send user email upon completion?"
431
  msgstr "Stuur de gebruiker een email na voltooiing van de quiz?"
432
 
433
+ #: php/qmn_options_email_tab.php:360
 
 
 
 
 
 
 
 
 
 
434
  msgid "Send admin email upon completion?"
435
  msgstr "Stuur admin email na voltooiing?"
436
 
437
+ #: php/qmn_options_email_tab.php:367
438
+ msgid ""
439
+ "What emails should we send the admin email to? Separate emails with a comma."
440
+ msgstr ""
441
+ "Wat voor emails moeten we naar de admin email sturen? Aparte emails met een "
442
+ "komma."
443
 
444
+ #: php/qmn_options_email_tab.php:371
445
  msgid "What is the From Name for the email sent to users and admin?"
446
+ msgstr ""
447
+ "Wat is de Van naam voor de email die naar gebruikers en de admin wordt "
448
+ "gestuurd?"
449
 
450
+ #: php/qmn_options_email_tab.php:377
451
  msgid "Email Sent To User"
452
  msgstr "Email naar gebruiker verstuurd"
453
 
454
+ #: php/qmn_options_email_tab.php:378 php/qmn_options_email_tab.php:456
 
455
  msgid "Add New User Email"
456
  msgstr "Voeg emailadres nieuwe gebruiker toe"
457
 
458
+ #: php/qmn_options_email_tab.php:383 php/qmn_options_email_tab.php:449
459
+ #: php/qmn_options_email_tab.php:470 php/qmn_options_email_tab.php:536
460
+ #: php/qmn_options_results_page_tab.php:223
461
+ #: php/qmn_options_results_page_tab.php:287
462
  msgid "Score Greater Than Or Equal To"
463
  msgstr "Score groter dan of gelijk aan"
464
 
465
+ #: php/qmn_options_email_tab.php:384 php/qmn_options_email_tab.php:450
466
+ #: php/qmn_options_email_tab.php:471 php/qmn_options_email_tab.php:537
467
+ #: php/qmn_options_results_page_tab.php:224
468
+ #: php/qmn_options_results_page_tab.php:288
469
  msgid "Score Less Than Or Equal To"
470
  msgstr "Score kleiner dan of gelijk aan"
471
 
472
+ #: php/qmn_options_email_tab.php:385 php/qmn_options_email_tab.php:451
473
+ #: php/qmn_options_email_tab.php:472 php/qmn_options_email_tab.php:538
 
 
474
  msgid "Subject"
475
  msgstr "Onderwerp"
476
 
477
+ #: php/qmn_options_email_tab.php:386 php/qmn_options_email_tab.php:452
478
+ #: php/qmn_options_email_tab.php:473 php/qmn_options_email_tab.php:539
 
 
479
  msgid "Email To Send"
480
  msgstr "Te versturen email"
481
 
482
+ #: php/qmn_options_email_tab.php:464
483
  msgid "Email Sent To Admin"
484
  msgstr "Email naar Admin verstuurd"
485
 
486
+ #: php/qmn_options_email_tab.php:465 php/qmn_options_email_tab.php:543
 
487
  msgid "Add New Admin Email"
488
  msgstr "Voeg nieuwe Admin email toe"
489
 
490
+ #: php/qmn_options_leaderboard_tab.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
491
  msgid "Leaderboard"
492
  msgstr "Klassement"
493
 
494
+ #: php/qmn_options_leaderboard_tab.php:39
495
  msgid "The leaderboards has been updated successfully."
496
  msgstr "De klassementen zijn succesvol bijgewerkt"
497
 
498
+ #: php/qmn_options_leaderboard_tab.php:66
499
  msgid "The name of the user who is in first place"
500
  msgstr "De naam van de gebruiker die eerste is"
501
 
502
+ #: php/qmn_options_leaderboard_tab.php:67
503
  msgid "The score from the first place's quiz"
504
  msgstr "De score van de eerste plaats van de quiz"
505
 
506
+ #: php/qmn_options_leaderboard_tab.php:71
507
  msgid "The name of the user who is in second place"
508
  msgstr "De score van de gebruiker die tweede is"
509
 
510
+ #: php/qmn_options_leaderboard_tab.php:72
511
  msgid "The score from the second place's quiz"
512
  msgstr "De score van de tweede plaats in de quiz"
513
 
514
+ #: php/qmn_options_leaderboard_tab.php:76
515
  msgid "The name of the user who is in third place"
516
  msgstr "De naam van de gebruiker die derde is"
517
 
518
+ #: php/qmn_options_leaderboard_tab.php:77
519
  msgid "The score from the third place's quiz"
520
  msgstr "De score van de derde plaats in de quiz"
521
 
522
+ #: php/qmn_options_leaderboard_tab.php:81
523
  msgid "The name of the user who is in fourth place"
524
  msgstr "De naam van de gebruiker die vierde is"
525
 
526
+ #: php/qmn_options_leaderboard_tab.php:82
527
  msgid "The score from the fourth place's quiz"
528
  msgstr "De score van de vierde plaats in de quiz"
529
 
530
+ #: php/qmn_options_leaderboard_tab.php:86
531
  msgid "The name of the user who is in fifth place"
532
  msgstr "De naam van de gebruiker die vijfde is"
533
 
534
+ #: php/qmn_options_leaderboard_tab.php:87
535
  msgid "The score from the fifth place's quiz"
536
  msgstr "De score van de vijfde plaats in de quiz"
537
 
538
+ #: php/qmn_options_leaderboard_tab.php:94
539
+ #: php/qmn_options_leaderboard_tab.php:122
540
  msgid "Save Leaderboard Options"
541
  msgstr "Klassement opties bewaren"
542
 
543
+ #: php/qmn_options_leaderboard_tab.php:103
544
  msgid "Leaderboard Template"
545
  msgstr "Klassement template"
546
 
547
+ #: php/qmn_options_option_tab.php:13
548
+ msgid "Options"
549
+ msgstr "Opties"
550
 
551
+ #: php/qmn_options_option_tab.php:107
552
+ msgid "The options has been updated successfully."
553
+ msgstr "De opties zijn succesvol bijgewerkt."
554
 
555
+ #: php/qmn_options_option_tab.php:148 php/qmn_options_option_tab.php:299
556
+ msgid "Save Options"
557
+ msgstr "Opties bewaren"
558
 
559
+ #: php/qmn_options_option_tab.php:156
560
+ msgid "Which system is this quiz graded on?"
561
+ msgstr "Volgens welk systeem is deze quiz ingedeeld?"
562
 
563
+ #: php/qmn_options_option_tab.php:158
564
+ msgid "Correct/Incorrect"
565
+ msgstr "Goed/Fout"
566
 
567
+ #: php/qmn_options_option_tab.php:159
568
+ msgid "Points"
569
+ msgstr "Punten"
570
 
571
+ #: php/qmn_options_option_tab.php:160 php/qmn_results.php:265
572
+ msgid "Not Graded"
573
+ msgstr "Niet ingedeeld"
 
574
 
575
+ #: php/qmn_options_option_tab.php:164
576
+ msgid "Should the user be required to be logged in to take this quiz?"
577
+ msgstr "Moet de gebruiker verplicht inloggen om een quiz te kunnen spelen?"
578
 
579
+ #: php/qmn_options_option_tab.php:171
580
+ msgid ""
581
+ "How many questions per page would you like? (Leave 0 for all questions on "
582
+ "one page)"
583
+ msgstr ""
584
+ "Hoeveel vragen per pagina wil je? (Laat 0 voor alle vragen op één pagina)"
585
 
586
+ #: php/qmn_options_option_tab.php:177
587
+ msgid ""
588
+ "How many minutes does the user have to finish the quiz? (Leave 0 for no time "
589
+ "limit)"
590
+ msgstr ""
591
+ "Hoeveel minuten krijgt de gebruiker om de quiz te doen? (Laat 0 voor geen "
592
+ "tijdslimiet)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
593
 
594
+ #: php/qmn_options_option_tab.php:183
595
+ msgid ""
596
+ "How many times can a user take this quiz? (Leave 0 for as many times as the "
597
+ "user wants to. Currently only works for registered users)"
598
+ msgstr ""
599
+ "Hoe vaak kan een gebruiker een quiz doen? (Laat 0 voor ongelimiteerd. Dit "
600
+ "werkt momenteel alleen voor geregistreerde gebruikers)"
601
 
602
+ #: php/qmn_options_option_tab.php:189
603
+ msgid ""
604
+ "How many total entries can this quiz have? (Leave 0 for unlimited entries"
605
+ msgstr ""
606
+ "Hoeveel inzendingen kan deze quiz hebben? (Laat 0 voor een ongelimiteerd "
607
+ "aantal inzendingen)"
608
 
609
+ #: php/qmn_options_option_tab.php:195
610
+ msgid ""
611
+ "How many questions should be loaded for quiz? (Leave 0 to load all questions)"
612
+ msgstr ""
613
+ "Hoeveel vragen moeten er geladen worden voor deze quiz? (Laat 0 om alle "
614
+ "vragen te laden)"
615
 
616
+ #: php/qmn_options_option_tab.php:201
617
+ msgid ""
618
+ "What time-frame should the user be able to access the quiz? (Leave blank if "
619
+ "the user can access anytime)"
620
+ msgstr ""
621
+ "Binnen welke termijn moet de gebruiker toegang kunnen hebben tot de quiz? "
622
+ "(Laat blanco voor ongelimiteerde toegang)"
623
 
624
+ #: php/qmn_options_option_tab.php:203
625
+ msgid "start date"
626
+ msgstr "start datum"
 
627
 
628
+ #: php/qmn_options_option_tab.php:206
629
+ msgid "end date"
630
+ msgstr "eind datum"
 
631
 
632
+ #: php/qmn_options_option_tab.php:210
633
+ msgid ""
634
+ "Are the questions random? (Question Order will not apply if this is yes)"
635
+ msgstr ""
636
+ "Zijn de vragen willekeurig? (de volgorde van de vragen zal niet worden "
637
+ "toegepast indien ja)"
638
 
639
+ #: php/qmn_options_option_tab.php:212
640
+ msgid "Random Questions"
641
+ msgstr "Willekeurige vragen"
642
 
643
+ #: php/qmn_options_option_tab.php:213
644
+ msgid "Random Questions And Answers"
645
+ msgstr "Willekeurige vragen en antwoorden"
646
 
647
+ #: php/qmn_options_option_tab.php:218
648
+ msgid ""
649
+ "Would you like to ask for the contact information at the beginning or at the "
650
+ "end of the quiz?"
651
+ msgstr ""
652
+ "Wil je de contactinformatie aan het begin van de quiz of aan het eind van de "
653
+ "quiz vragen?"
654
 
655
+ #: php/qmn_options_option_tab.php:220
656
+ msgid "Beginning"
657
+ msgstr "Begin"
658
 
659
+ #: php/qmn_options_option_tab.php:221
660
+ msgid "End"
661
+ msgstr "Einde"
662
 
663
+ #: php/qmn_options_option_tab.php:225
664
+ msgid ""
665
+ "If a logged-in user takes the quiz, would you like them to be able to edit "
666
+ "contact information? If set to no, the fields will not show up for logged in "
667
+ "users; however, the users information will be saved for the fields."
668
+ msgstr ""
669
+ "Mag een ingelogde gebruiker zijn contact informatie bijwerken? Als dit op "
670
+ "nee staat dan zullen de bijbehorende velden niet zichtbaar zijn voor "
671
+ "ingelogde gebruikers echter de gebruikersinformatie zal worden bewaard."
672
 
673
+ #: php/qmn_options_option_tab.php:232
674
+ msgid "Should we ask for users name?"
675
+ msgstr "Moeten we om de naam van de gebruiker vragen?"
676
 
677
+ #: php/qmn_options_option_tab.php:235 php/qmn_options_option_tab.php:243
678
+ #: php/qmn_options_option_tab.php:251 php/qmn_options_option_tab.php:259
679
+ msgid "Require"
680
+ msgstr "Vereist"
681
 
682
+ #: php/qmn_options_option_tab.php:240
683
+ msgid "Should we ask for users business?"
684
+ msgstr "Moeten we vragen om het bedrijf van de gebruiker?"
685
 
686
+ #: php/qmn_options_option_tab.php:248
687
+ msgid "Should we ask for users email?"
688
+ msgstr "Moeten we om het emailadres van de gebruiker vragen?"
 
689
 
690
+ #: php/qmn_options_option_tab.php:256
691
+ msgid "Should we ask for users phone number?"
692
+ msgstr "Moeten we om het telefoonnummer van de gebruiker vragen?"
693
 
694
+ #: php/qmn_options_option_tab.php:264
695
+ msgid "Would you like a place for the user to enter comments?"
696
+ msgstr "Wil je een plek voor de gebruiker om opmerkingen te plaatsen?"
697
 
698
+ #: php/qmn_options_option_tab.php:271
699
+ msgid "Show question number on quiz?"
700
+ msgstr "Laat het nummer van de vraag zien in de quiz?"
701
 
702
+ #: php/qmn_options_option_tab.php:278
703
+ msgid "Show social media sharing buttons? (Twitter & Facebook)"
704
+ msgstr "Laat social media knoppen zien (Twitter & Facebook)?"
705
 
706
+ #: php/qmn_options_option_tab.php:278
707
+ msgid ""
708
+ "This option is for here only for users of older versions. Please use the new "
709
+ "template variables %FACEBOOK_SHARE% %TWITTER_SHARE% on your results pages "
710
+ "instead of using this option!"
711
+ msgstr ""
712
+ "Deze optie is alleen voor gebruikers van oudere versies. Gebruik s.v.p. de "
713
+ "nieuwe template variabelen %FACEBOOK_SHARE% %TWITTER_SHARE% op je "
714
+ "resultatenpagina in plaats van deze optie te gebruiken!"
715
 
716
+ #: php/qmn_options_option_tab.php:285
717
+ msgid ""
718
+ "Disable question once user selects answer? (Currently only work on multiple "
719
+ "choice)"
720
+ msgstr ""
721
 
722
+ #: php/qmn_options_option_tab.php:292
723
+ msgid ""
724
+ "Dynamically add class for incorrect/correct answer after user selects "
725
+ "answer? (Currently only works on multiple choice)"
726
+ msgstr ""
727
 
728
+ #: php/qmn_options_preview_tab.php:13
729
+ msgid "Preview"
730
+ msgstr "Voorbeeld"
731
 
732
+ #: php/qmn_options_questions_tab.php:13
733
  msgid "Questions"
734
  msgstr "Vragen"
735
 
736
+ #: php/qmn_options_questions_tab.php:28
737
  msgid "Answer"
738
  msgstr "Antwoord"
739
 
740
+ #: php/qmn_options_questions_tab.php:126
741
  msgid "The question has been updated successfully."
742
  msgstr "De vraag is succesvol bijgewerkt."
743
 
744
+ #: php/qmn_options_questions_tab.php:153
745
  msgid "The question has been deleted successfully."
746
  msgstr "De vraag is succesvol verwijderd."
747
 
748
+ #: php/qmn_options_questions_tab.php:237
749
  msgid "The question has been duplicated successfully."
750
  msgstr "De vraag is succesvol gedupliceerd."
751
 
752
+ #: php/qmn_options_questions_tab.php:330
753
  msgid "The question has been created successfully."
754
  msgstr "De vraag is succesvol gemaakt."
755
 
756
+ #: php/qmn_options_questions_tab.php:448
757
  msgid "Add Question"
758
  msgstr "Vraag toevoegen"
759
 
760
+ #: php/qmn_options_questions_tab.php:457
761
  #, php-format
762
  msgid "One question"
763
  msgid_plural "%s questions"
764
  msgstr[0] "Een vraag"
765
  msgstr[1] "%s vragen"
766
 
767
+ #: php/qmn_options_questions_tab.php:463 php/qmn_options_questions_tab.php:471
768
+ #: php/qmn_options_questions_tab.php:596
 
769
  msgid "Question Order"
770
  msgstr "Vraag volgorde"
771
 
772
+ #: php/qmn_options_questions_tab.php:464 php/qmn_options_questions_tab.php:472
773
+ #: php/qmn_options_questions_tab.php:575
 
774
  msgid "Question Type"
775
  msgstr "Vraag type"
776
 
777
+ #: php/qmn_options_questions_tab.php:465 php/qmn_options_questions_tab.php:473
778
+ #: php/qmn_options_questions_tab.php:609
 
779
  msgid "Category"
780
  msgstr "Categorie"
781
 
782
+ #: php/qmn_options_questions_tab.php:466 php/qmn_options_questions_tab.php:474
 
783
  msgid "Question"
784
  msgstr "Vraag"
785
 
786
+ #: php/qmn_options_questions_tab.php:548
787
+ msgid ""
788
+ "For fill in the blank types, use %BLANK% to represent where to put the text "
789
+ "box in your text."
790
+ msgstr ""
791
+ "Voor vul het lege veld in types, gebruik %BLANK% om aan te geven waar je in "
792
+ "je tekst de tekstbox wil hebben."
793
 
794
+ #: php/qmn_options_questions_tab.php:553
795
  msgid "Answers"
796
  msgstr "Antwoorden"
797
 
798
+ #: php/qmn_options_questions_tab.php:554
799
  msgid "Points Worth"
800
  msgstr "Punten waard"
801
 
802
+ #: php/qmn_options_questions_tab.php:555
803
  msgid "Correct Answer"
804
  msgstr "Goed antwoord"
805
 
806
+ #: php/qmn_options_questions_tab.php:560
807
  msgid "Add New Answer!"
808
  msgstr "Voeg nieuw antwoord toe!"
809
 
810
+ #: php/qmn_options_questions_tab.php:565
811
  msgid "Correct Answer Info"
812
  msgstr "Juiste antwoord informatie"
813
 
814
+ #: php/qmn_options_questions_tab.php:570 php/qmn_quiz.php:477
815
+ msgid "Hint"
816
+ msgstr "Aanwijzing"
817
+
818
+ #: php/qmn_options_questions_tab.php:587
819
  msgid "Comment Field"
820
  msgstr "Opmerkingenveld"
821
 
822
+ #: php/qmn_options_questions_tab.php:589
823
  msgid "Small Text Field"
824
  msgstr "Klein tekstveld"
825
 
826
+ #: php/qmn_options_questions_tab.php:590
827
  msgid "Large Text Field"
828
  msgstr "Groot tekstveld"
829
 
830
+ #: php/qmn_options_questions_tab.php:591
831
  msgid "None"
832
  msgstr "Geen"
833
 
834
+ #: php/qmn_options_questions_tab.php:601
835
  msgid "Required?"
836
  msgstr "Vereist?"
837
 
838
+ #: php/qmn_options_questions_tab.php:632
839
  msgid "Create Question"
840
  msgstr "Maak vraag"
841
 
842
+ #: php/qmn_options_questions_tab.php:637
843
  msgid "Are you sure you want to delete this question?"
844
  msgstr "Weet je zeker dat je deze vraag wil verwijderen?"
845
 
846
+ #: php/qmn_options_questions_tab.php:642
847
  msgid "Delete Question"
848
  msgstr "Verwijder vraag"
849
 
850
+ #: php/qmn_options_questions_tab.php:647
851
  msgid "Are you sure you want to duplicate this question?"
852
  msgstr "Weet je zeker dat je deze vraag wil dupliceren?"
853
 
854
+ #: php/qmn_options_questions_tab.php:652
855
  msgid "Duplicate Question"
856
  msgstr "Dupliceer vraag"
857
 
858
+ #: php/qmn_options_results_page_tab.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
859
  msgid "Results Pages"
860
  msgstr "Resultaten pagina's"
861
 
862
+ #: php/qmn_options_results_page_tab.php:55
863
  msgid "The results page has been added successfully."
864
  msgstr "De resultaten pagina is succesvol toegevoegd."
865
 
866
+ #: php/qmn_options_results_page_tab.php:95
867
  msgid "The results page has been saved successfully."
868
  msgstr "De resultaten pagina is succesvol opgeslagen."
869
 
870
+ #: php/qmn_options_results_page_tab.php:187
871
+ msgid "The amount of time user spent taking quiz in minutes"
872
+ msgstr ""
873
+
874
+ #: php/qmn_options_results_page_tab.php:190
875
+ msgid "The amount of time user spent taking quiz in seconds"
876
+ msgstr ""
877
+
878
+ #: php/qmn_options_results_page_tab.php:208
879
  msgid "Displays button to share on Facebook."
880
  msgstr "Geeft knop om op facebook te delen."
881
 
882
+ #: php/qmn_options_results_page_tab.php:211
883
  msgid "Displays button to share on Twitter."
884
  msgstr "Geeft knop om op Twitter te delen."
885
 
886
+ #: php/qmn_options_results_page_tab.php:216
887
+ #: php/qmn_options_results_page_tab.php:297
888
  msgid "Save Results Pages"
889
  msgstr "Bewaar resultaten pagina's"
890
 
891
+ #: php/qmn_options_results_page_tab.php:217
892
+ #: php/qmn_options_results_page_tab.php:302
893
  msgid "Add New Results Page"
894
  msgstr "Voeg nieuwe resultaten pagina toe"
895
 
896
+ #: php/qmn_options_results_page_tab.php:225
897
+ #: php/qmn_options_results_page_tab.php:289
898
  msgid "Results Page Shown"
899
  msgstr "De resultaten pagina wordt getoond"
900
 
901
+ #: php/qmn_options_results_page_tab.php:226
902
+ #: php/qmn_options_results_page_tab.php:290
903
  msgid "Redirect URL (Beta)"
904
  msgstr "Redirect URL (Beta)"
905
 
906
+ #: php/qmn_options_results_page_tab.php:264 php/qmn_quiz_admin.php:283
907
  msgid "Delete"
908
  msgstr "Verwijder"
909
 
910
+ #: php/qmn_options_results_page_tab.php:264
911
  msgid "Are you sure?"
912
  msgstr "Weet je het zeker?"
913
 
914
+ #: php/qmn_options_style_tab.php:13
915
+ msgid "Style"
916
+ msgstr "Stijl"
917
 
918
+ #: php/qmn_options_style_tab.php:39
919
+ msgid "The style has been saved successfully."
920
+ msgstr "De stijl is succesvol bewaard."
921
 
922
+ #: php/qmn_options_style_tab.php:78
923
+ msgid "Quiz Styles"
924
+ msgstr "Quiz stijlen"
 
925
 
926
+ #: php/qmn_options_style_tab.php:79
927
+ msgid "Choose your style:"
928
+ msgstr "Kies je stijl:"
929
 
930
+ #: php/qmn_options_style_tab.php:101
931
+ msgid "Custom"
932
+ msgstr "Aangepast"
933
 
934
+ #: php/qmn_options_style_tab.php:107 php/qmn_options_style_tab.php:119
935
+ msgid "Save Quiz Style"
936
+ msgstr "Bewaar quiz stijl"
 
937
 
938
+ #: php/qmn_options_style_tab.php:109
939
+ msgid "Custom Style CSS"
940
+ msgstr "Eigen stijl CSS"
941
 
942
+ #: php/qmn_options_style_tab.php:110
943
+ msgid ""
944
+ "For detailed help and guidance along with a list of different classes used "
945
+ "in this plugin, please visit the following link:"
946
+ msgstr ""
947
+ "Bezoek de volgende link voor gedetailleerde help en begeleiding samen met "
948
+ "een lijst van verschillende classes die gebruikt worden in deze plugin:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
949
 
950
+ #: php/qmn_options_text_tab.php:13
951
+ msgid "Text"
952
+ msgstr "Tekst"
953
 
954
+ #: php/qmn_options_text_tab.php:55
955
+ msgid "The templates has been updated successfully."
956
+ msgstr "De templates zijn succesvol opgeslagen."
957
 
958
+ #: php/qmn_options_text_tab.php:86 php/qmn_quiz.php:1259
959
+ msgid "Previous"
960
+ msgstr "Vorige"
961
 
962
+ #: php/qmn_options_text_tab.php:187 php/qmn_options_text_tab.php:347
963
+ msgid "Save Templates"
964
+ msgstr "Bewaar teplates"
965
 
966
+ #: php/qmn_options_text_tab.php:193
967
+ msgid "Message Templates"
968
+ msgstr "Bericht templates"
969
 
970
+ #: php/qmn_options_text_tab.php:197
971
+ msgid "Message Displayed Before Quiz"
972
+ msgstr "Bericht getoond voor aanvang quiz"
973
 
974
+ #: php/qmn_options_text_tab.php:207
975
+ msgid "Message Displayed Before Comments Box If Enabled"
976
+ msgstr "Bericht getoond voor opmerkingen box indien ingeschakeld"
977
 
978
+ #: php/qmn_options_text_tab.php:217
979
+ msgid "Message Displayed At End Of Quiz (Leave Blank To Omit Text Section)"
980
  msgstr ""
981
+ "Bericht getoond aan het einde van de quiz (Laat leeg om de tekst sectie weg "
982
+ "te laten)"
983
 
984
+ #: php/qmn_options_text_tab.php:227
985
+ msgid "Message Displayed If User Has Tried Quiz Too Many Times"
986
  msgstr ""
987
+ "Bericht getoond indien de gebruiker de quiz te vaak heeft proberen te maken"
988
 
989
+ #: php/qmn_options_text_tab.php:237
990
+ msgid ""
991
+ "Message Displayed If User Is Not Logged In And Quiz Requires Users To Be "
992
+ "Logged In"
993
+ msgstr ""
994
+ "Bericht getoond indien de gebruiker niet is ingelogd en de quiz dit wel "
995
+ "vereist"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
996
 
997
+ #: php/qmn_options_text_tab.php:247
998
+ msgid "Message Displayed If Date Is Outside Scheduled Timeframe"
999
+ msgstr "Bericht getoond indien de datum buiten het tijdspad is"
1000
 
1001
+ #: php/qmn_options_text_tab.php:257
1002
+ msgid "Message Displayed If The Limit Of Total Entries Has Been Reached"
1003
+ msgstr "Bericht getoond indien de grens van het aantal invoeren is bereikt"
1004
 
1005
+ #: php/qmn_options_text_tab.php:267
1006
+ msgid "%QUESTIONS_ANSWERS% Text"
1007
+ msgstr "%QUESTIONS_ANSWERS% Tekst"
1008
 
1009
+ #: php/qmn_options_text_tab.php:280
1010
+ msgid "Twitter Sharing Text"
1011
+ msgstr "Twitter Delen tekst"
1012
 
1013
+ #: php/qmn_options_text_tab.php:297
1014
+ msgid "Facebook Sharing Text"
1015
+ msgstr "Facebook Delen tekst"
1016
 
1017
+ #: php/qmn_options_text_tab.php:312
1018
+ msgid "Other Templates"
1019
+ msgstr "Andere templates"
1020
 
1021
+ #: php/qmn_options_text_tab.php:315
1022
+ msgid "Text for submit button"
1023
+ msgstr "Teskt voor verstuur knop"
1024
 
1025
+ #: php/qmn_options_text_tab.php:319
1026
+ msgid "Text for name field"
1027
+ msgstr "Tekst voor naam veld"
1028
 
1029
+ #: php/qmn_options_text_tab.php:323
1030
+ msgid "Text for business field"
1031
+ msgstr "Tekst voor bedrijfsveld"
1032
 
1033
+ #: php/qmn_options_text_tab.php:327
1034
+ msgid "Text for email field"
1035
+ msgstr "Tekst voor email veld"
 
 
1036
 
1037
+ #: php/qmn_options_text_tab.php:331
1038
+ msgid "Text for phone number field"
1039
+ msgstr "Tekst voor telefoonnummer veld"
 
 
1040
 
1041
+ #: php/qmn_options_text_tab.php:335
1042
+ msgid "Text for comments field"
1043
+ msgstr "Tekst voor opmerkingen veld"
1044
 
1045
+ #: php/qmn_options_text_tab.php:339
1046
+ msgid "Text for previous button"
1047
+ msgstr "Tekst voor vorige knop"
1048
 
1049
+ #: php/qmn_options_text_tab.php:343
1050
+ msgid "Text for next button"
1051
+ msgstr "Tekst voor volgende knop"
1052
 
1053
+ #: php/qmn_options_tools_tab.php:37
1054
+ msgid "The stats has been reset successfully."
1055
+ msgstr "De stats zijn succesvol gereset."
1056
 
1057
+ #: php/qmn_options_tools_tab.php:89
1058
+ msgid ""
1059
+ "Use this button to reset all the stats collected for this quiz (Quiz Views "
1060
+ "and Times Quiz Has Been Taken)."
1061
+ msgstr ""
1062
+ "Gebruik deze knop om alle stats van deze quiz te resetten (Quiz weergaves en "
1063
+ "keren dat de quiz is afgenomen)."
1064
 
1065
+ #: php/qmn_options_tools_tab.php:90
1066
+ msgid "Reset Quiz Views And Taken Stats"
1067
+ msgstr "Reset weergeven quiz en afgenomen quiz stats"
1068
 
1069
+ #: php/qmn_options_tools_tab.php:101
1070
+ msgid ""
1071
+ "Are you sure you want to reset the stats to 0? All views and taken stats for "
1072
+ "this quiz will be reset. This is permanent and cannot be undone."
1073
+ msgstr ""
1074
+ "Weet je zeker dat je de stats naar 0 wil resetten? Alle weergave en "
1075
+ "afgenomen stats zullen gereset worden. Dit is permanent en kan niet ongedaan "
1076
+ "gemaakt worden."
1077
 
1078
+ #: php/qmn_options_tools_tab.php:105
1079
+ msgid "Reset All Stats For Quiz"
1080
+ msgstr "Reset alle stats voor deze quiz"
1081
 
1082
+ #: php/qmn_question_types.php:14
1083
  msgid "Multiple Choice"
1084
  msgstr "Meerkeuze"
1085
 
1086
+ #: php/qmn_question_types.php:108
1087
  msgid "Horizontal Multiple Choice"
1088
  msgstr "Horizontale meerkeuze"
1089
 
1090
+ #: php/qmn_question_types.php:201
1091
  msgid "Drop Down"
1092
  msgstr "Vervolgkeuze"
1093
 
1094
+ #: php/qmn_question_types.php:291
1095
  msgid "Small Open Answer"
1096
  msgstr "Klein open antwoord"
1097
 
1098
+ #: php/qmn_question_types.php:365
1099
  msgid "Multiple Response"
1100
  msgstr "Meerdere antwoorden"
1101
 
1102
+ #: php/qmn_question_types.php:464
1103
  msgid "Large Open Answer"
1104
  msgstr "Groot open antwoord"
1105
 
1106
+ #: php/qmn_question_types.php:538
1107
  msgid "Text Block"
1108
  msgstr "Tekst blok"
1109
 
1110
+ #: php/qmn_question_types.php:573
1111
  msgid "Number"
1112
  msgstr "Nummer"
1113
 
1114
+ #: php/qmn_question_types.php:649
1115
  msgid "Accept"
1116
  msgstr "Accepteer"
1117
 
1118
+ #: php/qmn_question_types.php:684
1119
  msgid "Captcha"
1120
  msgstr "Captcha"
1121
 
1122
+ #: php/qmn_question_types.php:742
1123
  msgid "Horizontal Multiple Response"
1124
  msgstr "Horizontale meerdere antwoorden"
1125
 
1126
+ #: php/qmn_question_types.php:843
1127
  msgid "Fill In The Blank"
1128
  msgstr "Vul het lege veld in"
1129
 
1130
+ #: php/qmn_quiz.php:350
1131
+ msgid "Not a valid e-mail address!"
1132
+ msgstr "Geen geldig email adres!"
1133
+
1134
+ #: php/qmn_quiz.php:351
1135
+ msgid "This field must be a number!"
1136
+ msgstr "Dit veld moet een getal zijn!"
1137
 
1138
+ #: php/qmn_quiz.php:352
1139
+ msgid "The entered text is not correct!"
1140
+ msgstr "De ingevoerde tekst is niet correct!"
1141
+
1142
+ #: php/qmn_quiz.php:353
1143
+ msgid "Please complete all required fields!"
1144
+ msgstr "Vul alle verplichte velden in!"
1145
+
1146
+ #: php/qmn_quiz_admin.php:196
1147
  msgid "Add New"
1148
  msgstr "Voeg nieuwe toe"
1149
 
1150
+ #: php/qmn_quiz_admin.php:214
1151
  #, php-format
1152
  msgid "One quiz"
1153
  msgid_plural "%s quizzes"
1154
  msgstr[0] "Een quiz"
1155
  msgstr[1] "%s quizzen"
1156
 
1157
+ #: php/qmn_quiz_admin.php:259 php/qmn_quiz_admin.php:310
1158
+ #: php/qmn_quiz_admin.php:378 php/qmn_results.php:216
1159
+ msgid "Quiz Name"
1160
+ msgstr "Quiz naam"
1161
+
1162
+ #: php/qmn_quiz_admin.php:260 php/qmn_quiz_admin.php:311
1163
  msgid "URL"
1164
  msgstr "URL"
1165
 
1166
+ #: php/qmn_quiz_admin.php:261 php/qmn_quiz_admin.php:312
 
1167
  msgid "Quiz Shortcode"
1168
  msgstr "Quiz shortcode"
1169
 
1170
+ #: php/qmn_quiz_admin.php:262 php/qmn_quiz_admin.php:313
 
1171
  msgid "Leaderboard Shortcode"
1172
  msgstr "Klassement shortcode"
1173
 
1174
+ #: php/qmn_quiz_admin.php:263 php/qmn_quiz_admin.php:314
 
1175
  msgid "Quiz Views"
1176
  msgstr "Quiz weergaves"
1177
 
1178
+ #: php/qmn_quiz_admin.php:264 php/qmn_quiz_admin.php:315
 
1179
  msgid "Quiz Taken"
1180
  msgstr "Afgenomen quizzen"
1181
 
1182
+ #: php/qmn_quiz_admin.php:265 php/qmn_quiz_admin.php:316
 
1183
  msgid "Last Modified"
1184
  msgstr "Laatst aangepast"
1185
 
1186
+ #: php/qmn_quiz_admin.php:278
1187
  msgid "Edit Name"
1188
  msgstr "Bewerk naam"
1189
 
1190
+ #: php/qmn_quiz_admin.php:280
1191
  msgid "Edit"
1192
  msgstr "Bewerk"
1193
 
1194
+ #: php/qmn_quiz_admin.php:281 php/qmn_results_details.php:135
1195
+ msgid "Results"
1196
+ msgstr "Resultaten"
1197
+
1198
+ #: php/qmn_quiz_admin.php:282 php/qmn_quiz_admin.php:411
1199
  msgid "Duplicate"
1200
  msgstr "Dupliceer"
1201
 
1202
+ #: php/qmn_quiz_admin.php:373
1203
  msgid "Create New Quiz"
1204
  msgstr "Maak nieuwe quiz"
1205
 
1206
+ #: php/qmn_quiz_admin.php:387
1207
  msgid "Create Quiz"
1208
  msgstr "Maak quiz"
1209
 
1210
+ #: php/qmn_quiz_admin.php:393
1211
  msgid "Quiz Name:"
1212
  msgstr "Quiz naam:"
1213
 
1214
+ #: php/qmn_quiz_admin.php:404
1215
  msgid "Duplicate this quiz?"
1216
  msgstr "Dupliceer deze quiz?"
1217
 
1218
+ #: php/qmn_quiz_admin.php:406
1219
  msgid "Duplicate questions with quiz"
1220
  msgstr "Dupliceer vragen met quiz"
1221
 
1222
+ #: php/qmn_quiz_admin.php:408
1223
  msgid "Name Of New Quiz:"
1224
  msgstr "Naam van de nieuwe quiz"
1225
 
1226
+ #: php/qmn_quiz_admin.php:417
1227
  msgid "Are you sure you want to delete this quiz?"
1228
  msgstr "Weet je zeker dat je deze quiz wil verwijderen?"
1229
 
1230
+ #: php/qmn_quiz_admin.php:422
1231
  msgid "Delete Quiz"
1232
  msgstr "Verwijder quiz"
1233
 
1234
+ #: php/qmn_quiz_creator.php:372
1235
+ msgid ""
1236
+ "Your new quiz has been created successfully. To begin editing your quiz, "
1237
+ "click the Edit link on the new quiz."
1238
+ msgstr ""
1239
+ "Je nieuwe quiz is succesvol gemaakt. Klik op de Bewerken link in de nieuwe "
1240
+ "quiz om je quiz te gaan bewerken."
1241
+
1242
+ #: php/qmn_quiz_creator.php:438
1243
+ msgid "Your quiz has been deleted successfully."
1244
+ msgstr "Je quiz is succesvol verwijderd."
1245
+
1246
+ #: php/qmn_quiz_creator.php:480
1247
+ msgid "Your quiz name has been updated successfully."
1248
+ msgstr "Je quiz is succesvol bijgewerkt."
1249
+
1250
+ #: php/qmn_quiz_creator.php:637
1251
+ msgid "Your quiz has been duplicated successfully."
1252
+ msgstr "Je quiz is succesvol gedupliceerd."
1253
+
1254
+ #: php/qmn_quiz_options.php:56
1255
+ #, php-format
1256
+ msgid "Quiz Settings For %s"
1257
+ msgstr "Quiz instellingen voor %s"
1258
+
1259
+ #: php/qmn_quiz_options.php:96
1260
+ msgid ""
1261
+ "Please go to the quizzes page and click on the Edit link from the quiz you "
1262
+ "wish to edit."
1263
+ msgstr ""
1264
+ "Ga naar de quizzen pagina en klik op de Bewerken link van de quiz die je wil "
1265
+ "gaan bewerken."
1266
+
1267
+ #: php/qmn_results.php:30
1268
+ msgid "Your results has been deleted successfully."
1269
+ msgstr "Je resultaten zijn succesvol verwijderd."
1270
+
1271
+ #: php/qmn_results.php:168
1272
+ #, php-format
1273
+ msgid "One result"
1274
+ msgid_plural "%s results"
1275
+ msgstr[0] "Een resultaat"
1276
+ msgstr[1] "%s resultaten"
1277
+
1278
+ #: php/qmn_results.php:215
1279
+ msgid "Actions"
1280
+ msgstr "Akties"
1281
+
1282
+ #: php/qmn_results.php:217
1283
+ msgid "Score"
1284
+ msgstr "Score"
1285
+
1286
+ #: php/qmn_results.php:218
1287
+ msgid "Time To Complete"
1288
+ msgstr "Gebruikte tijd"
1289
+
1290
+ #: php/qmn_results.php:219
1291
+ msgid "Name"
1292
+ msgstr "Naam"
1293
+
1294
+ #: php/qmn_results.php:220
1295
+ msgid "Business"
1296
+ msgstr "Bedrijf"
1297
+
1298
+ #: php/qmn_results.php:221
1299
+ msgid "Email"
1300
+ msgstr "Email"
1301
+
1302
+ #: php/qmn_results.php:222
1303
+ msgid "Phone"
1304
+ msgstr "Telefoon"
1305
+
1306
+ #: php/qmn_results.php:223
1307
+ msgid "Time Taken"
1308
+ msgstr "Benodigde tijd"
1309
+
1310
+ #: php/qmn_results.php:282
1311
+ msgid "Are you sure you want to delete these results?"
1312
+ msgstr "Weet je zeker dat je deze resultaten wil verwijderen?"
1313
+
1314
+ #: php/qmn_results.php:287
1315
+ msgid "Delete Results"
1316
+ msgstr "Verwijder resultaten"
1317
+
1318
+ #: php/qmn_results_details.php:221
1319
+ msgid "Create Certificate"
1320
+ msgstr "Maak certificaat"
1321
+
1322
+ #: php/qmn_results_details.php:226
1323
+ msgid "Download Certificate Here"
1324
+ msgstr "Download hier het certificaat"
1325
+
1326
+ #: php/qmn_results_details.php:240
1327
+ msgid "Certificate"
1328
+ msgstr "Certificaat"
1329
+
1330
+ #: php/qmn_tools.php:107
1331
+ msgid "There has been an error! Please try again."
1332
+ msgstr "Er is een fout opgetreden. Probeer onieuw."
1333
+
1334
+ #: php/qmn_tools.php:125
1335
+ msgid "Quiz Has Been Restored!"
1336
+ msgstr "Quiz is hersteld!"
1337
+
1338
+ #: php/qmn_tools.php:130
1339
+ msgid ""
1340
+ "Choose a quiz in the drop down and then click the button to restore a "
1341
+ "deleted quiz."
1342
+ msgstr ""
1343
+ "Kies een quiz in het selectiemenu en klik dan op de knop om de verwijderde "
1344
+ "quiz te herstellen."
1345
+
1346
+ #: php/qmn_tools.php:140
1347
+ msgid "Restore Quiz"
1348
+ msgstr "Herstel quiz"
1349
+
1350
+ #: php/qmn_tools.php:176 php/qmn_tools.php:192
1351
+ #, php-format
1352
+ msgid "Previous %s Audits"
1353
+ msgstr "Vorige %s controles"
1354
+
1355
+ #: php/qmn_tools.php:179 php/qmn_tools.php:186
1356
+ #, php-format
1357
+ msgid "Next %s Audits"
1358
+ msgstr "Volgende %s controles"
1359
+
1360
+ #: php/qmn_tools.php:199
1361
+ msgid "User"
1362
+ msgstr "Gebruiker"
1363
+
1364
+ #: php/qmn_tools.php:200
1365
+ msgid "Action"
1366
+ msgstr "Aktie"
1367
+
1368
+ #: php/qmn_tools.php:201
1369
+ msgid "Time"
1370
+ msgstr "Tijd"
1371
+
1372
+ #: php/qmn_usage_tracking.php:193
1373
+ msgid ""
1374
+ "Allow Quiz Master Next to anonymously track this plugin's usage and help us "
1375
+ "make this plugin better? No sensitive data is tracked."
1376
+ msgstr ""
1377
+ "Sta toe dat Quiz Master Next anonieme informatie over het gebruik van "
1378
+ "plugins verzameld om verbeteringen door te kunnen voeren. Er wordt geen "
1379
+ "gevoelige informatie verzameld."
1380
+
1381
+ #: php/qmn_usage_tracking.php:194
1382
+ msgid "Allow"
1383
+ msgstr "Toestaan"
1384
+
1385
+ #: php/qmn_usage_tracking.php:195
1386
+ msgid "Do not allow"
1387
+ msgstr "Niet toestaan"
1388
+
1389
+ #: php/qmn_widgets.php:14
1390
  msgid "Quiz Master Next Leaderboard Widget"
1391
  msgstr "Quiz Master Next klassementswidget"
1392
 
1393
+ #: php/qmn_widgets.php:29
1394
  msgid "Widget Title"
1395
  msgstr "Widget titel"
1396
 
1397
+ #: php/qmn_widgets.php:33
1398
  msgid "Quiz ID"
1399
  msgstr "Quiz ID"
1400
 
1401
+ #~ msgid "The amount of time user spent of quiz"
1402
+ #~ msgstr "De hoeveelheid tijd die de gebruiker heeft besteedt aan de quiz"
1403
+
1404
  #~ msgid ""
1405
  #~ "Required currently only works on open answer, number, accept, and captcha "
1406
  #~ "question types"
languages/quiz-master-next-pt_BR.mo CHANGED
Binary file
languages/quiz-master-next-pt_BR.po CHANGED
@@ -17,7 +17,7 @@ msgstr ""
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;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;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
20
- "X-Generator: Poedit 1.7.3\n"
21
  "X-Poedit-SearchPath-0: ..\n"
22
 
23
  #: ../mlw_quizmaster2.php:217
@@ -58,8 +58,7 @@ msgstr "Configurações de complemento"
58
  msgid "Help"
59
  msgstr "Página de Ajuda"
60
 
61
- #: ../mlw_quizmaster2.php:228
62
- #: ../mlw_quizmaster2.php:229
63
  msgid "QMN About"
64
  msgstr "Sobre QMN"
65
 
@@ -67,26 +66,20 @@ msgstr "Sobre QMN"
67
  msgid "Emails"
68
  msgstr ""
69
 
70
- #: ../php/qmn_options_email_tab.php:42
71
- #: ../php/qmn_options_email_tab.php:101
72
  msgid "The email has been added successfully."
73
  msgstr "E-mail adicionado com sucesso"
74
 
75
- #: ../php/qmn_options_email_tab.php:55
76
- #: ../php/qmn_options_email_tab.php:114
77
- #: ../php/qmn_options_email_tab.php:178
78
- #: ../php/qmn_quiz_creator.php:382
79
- #: ../php/qmn_quiz_creator.php:448
80
- #: ../php/qmn_quiz_creator.php:490
81
- #: ../php/qmn_quiz_creator.php:648
82
- #: ../php/qmn_quiz_creator.php:713
83
  #: ../php/qmn_options_leaderboard_tab.php:38
84
  #, php-format
85
  msgid "There has been an error in this action. Please share this with the developer. Error Code: %s"
86
  msgstr "Houve um erro nesta ação. Por favor, compartilhe isso com o desenvolvedor. Código de erro:%s"
87
 
88
- #: ../php/qmn_options_email_tab.php:73
89
- #: ../php/qmn_options_email_tab.php:91
90
  msgid "Enter text here"
91
  msgstr "Coloque o texto aqui"
92
 
@@ -196,8 +189,7 @@ msgstr "Razão pela qual a resposta está correta"
196
  msgid "The Current Date"
197
  msgstr "Data atual"
198
 
199
- #: ../php/qmn_options_email_tab.php:319
200
- #: ../php/qmn_options_email_tab.php:518
201
  msgid "Save Email Templates And Settings"
202
  msgstr "Salvar modelo de e-mail e configurações"
203
 
@@ -205,13 +197,11 @@ msgstr "Salvar modelo de e-mail e configurações"
205
  msgid "Send user email upon completion?"
206
  msgstr "Enviar e-mail do usuário após a conclusão?"
207
 
208
- #: ../php/qmn_options_email_tab.php:325
209
- #: ../php/qmn_options_email_tab.php:332
210
  msgid "Yes"
211
  msgstr "Sim"
212
 
213
- #: ../php/qmn_options_email_tab.php:326
214
- #: ../php/qmn_options_email_tab.php:333
215
  msgid "No"
216
  msgstr "Não"
217
 
@@ -231,36 +221,27 @@ msgstr "Qual é o nome a partir do e-mail enviado aos usuários e administrador?
231
  msgid "Email Sent To User"
232
  msgstr "e-mail enviado ao usuário"
233
 
234
- #: ../php/qmn_options_email_tab.php:348
235
- #: ../php/qmn_options_email_tab.php:426
236
  msgid "Add New User Email"
237
  msgstr "Adicionar novo usuário de e-mail"
238
 
239
- #: ../php/qmn_options_email_tab.php:353
240
- #: ../php/qmn_options_email_tab.php:419
241
- #: ../php/qmn_options_email_tab.php:440
242
- #: ../php/qmn_options_email_tab.php:506
243
  msgid "Score Greater Than Or Equal To"
244
  msgstr "Escore maior ou igual a"
245
 
246
- #: ../php/qmn_options_email_tab.php:354
247
- #: ../php/qmn_options_email_tab.php:420
248
- #: ../php/qmn_options_email_tab.php:441
249
- #: ../php/qmn_options_email_tab.php:507
250
  msgid "Score Less Than Or Equal To"
251
  msgstr "Escore menor ou igual a"
252
 
253
- #: ../php/qmn_options_email_tab.php:355
254
- #: ../php/qmn_options_email_tab.php:421
255
- #: ../php/qmn_options_email_tab.php:442
256
- #: ../php/qmn_options_email_tab.php:508
257
  msgid "Subject"
258
  msgstr "Assunto"
259
 
260
- #: ../php/qmn_options_email_tab.php:356
261
- #: ../php/qmn_options_email_tab.php:422
262
- #: ../php/qmn_options_email_tab.php:443
263
- #: ../php/qmn_options_email_tab.php:509
264
  msgid "Email To Send"
265
  msgstr "Enviar e-mail para"
266
 
@@ -268,8 +249,7 @@ msgstr "Enviar e-mail para"
268
  msgid "Email Sent To Admin"
269
  msgstr "Enviar e-mail para admin"
270
 
271
- #: ../php/qmn_options_email_tab.php:435
272
- #: ../php/qmn_options_email_tab.php:513
273
  msgid "Add New Admin Email"
274
  msgstr "Adicionar novo e-mail de administrador"
275
 
@@ -423,8 +403,7 @@ msgstr "texto"
423
  msgid "The templates has been updated successfully."
424
  msgstr "Os modelos foram atualizados com sucesso"
425
 
426
- #: ../php/qmn_options_text_tab.php:170
427
- #: ../php/qmn_options_text_tab.php:330
428
  msgid "Save Templates"
429
  msgstr "Salvar modelos"
430
 
@@ -799,8 +778,7 @@ msgstr "Fone"
799
  msgid "Time Taken"
800
  msgstr "Tempo necessário"
801
 
802
- #: ../php/qmn_results.php:258
803
- #: ../php/qmn_options_option_tab.php:147
804
  msgid "Not Graded"
805
  msgstr "Sem Classificação"
806
 
@@ -882,8 +860,7 @@ msgstr "Opções"
882
  msgid "The options has been updated successfully."
883
  msgstr "As Opções foram atualizadas com sucesso."
884
 
885
- #: ../php/qmn_options_option_tab.php:135
886
- #: ../php/qmn_options_option_tab.php:286
887
  msgid "Save Options"
888
  msgstr "Salvar Opções"
889
 
@@ -967,10 +944,8 @@ msgstr "Usuário poderá edita informações de contato? Se definido como não,
967
  msgid "Should we ask for users name?"
968
  msgstr "Nome de usuário"
969
 
970
- #: ../php/qmn_options_option_tab.php:222
971
- #: ../php/qmn_options_option_tab.php:230
972
- #: ../php/qmn_options_option_tab.php:238
973
- #: ../php/qmn_options_option_tab.php:246
974
  msgid "Require"
975
  msgstr "Exigir"
976
 
@@ -1030,8 +1005,7 @@ msgstr "Escolha seu estilo"
1030
  msgid "Custom"
1031
  msgstr ""
1032
 
1033
- #: ../php/qmn_options_style_tab.php:94
1034
- #: ../php/qmn_options_style_tab.php:106
1035
  msgid "Save Quiz Style"
1036
  msgstr "Salvar Estilo de Questionário"
1037
 
@@ -1075,14 +1049,12 @@ msgstr "Escolha uma Avaliação no drop down e, em seguida, clique no botão par
1075
  msgid "Restore Quiz"
1076
  msgstr "Recuperar Avaliação"
1077
 
1078
- #: ../php/qmn_tools.php:152
1079
- #: ../php/qmn_tools.php:168
1080
  #, php-format
1081
  msgid "Previous %s Audits"
1082
  msgstr "Anterior % s Auditorias"
1083
 
1084
- #: ../php/qmn_tools.php:155
1085
- #: ../php/qmn_tools.php:162
1086
  #, php-format
1087
  msgid "Next %s Audits"
1088
  msgstr "Próximo% s Auditorias"
@@ -1184,33 +1156,27 @@ msgid_plural "%s quizzes"
1184
  msgstr[0] "Uma questão"
1185
  msgstr[1] "%s questões"
1186
 
1187
- #: ../php/qmn_quiz_admin.php:253
1188
- #: ../php/qmn_quiz_admin.php:304
1189
  msgid "URL"
1190
  msgstr "URL"
1191
 
1192
- #: ../php/qmn_quiz_admin.php:254
1193
- #: ../php/qmn_quiz_admin.php:305
1194
  msgid "Quiz Shortcode"
1195
  msgstr "Shortcode do teste"
1196
 
1197
- #: ../php/qmn_quiz_admin.php:255
1198
- #: ../php/qmn_quiz_admin.php:306
1199
  msgid "Leaderboard Shortcode"
1200
  msgstr "Shortcode da Pontuação"
1201
 
1202
- #: ../php/qmn_quiz_admin.php:256
1203
- #: ../php/qmn_quiz_admin.php:307
1204
  msgid "Quiz Views"
1205
  msgstr "Visualização do Questionário"
1206
 
1207
- #: ../php/qmn_quiz_admin.php:257
1208
- #: ../php/qmn_quiz_admin.php:308
1209
  msgid "Quiz Taken"
1210
  msgstr "Questionário Tomado"
1211
 
1212
- #: ../php/qmn_quiz_admin.php:258
1213
- #: ../php/qmn_quiz_admin.php:309
1214
  msgid "Last Modified"
1215
  msgstr "Ultima modificação"
1216
 
@@ -1223,8 +1189,7 @@ msgstr "Editar nome"
1223
  msgid "Edit"
1224
  msgstr "Editar nome"
1225
 
1226
- #: ../php/qmn_quiz_admin.php:275
1227
- #: ../php/qmn_quiz_admin.php:404
1228
  msgid "Duplicate"
1229
  msgstr "Duplicar"
1230
 
@@ -1272,12 +1237,8 @@ msgstr ""
1272
  msgid "Quiz ID"
1273
  msgstr "ID de Avaliação"
1274
 
1275
- #~ msgid ""
1276
- #~ "Required currently only works on open answer, number, accept, and captcha "
1277
- #~ "question types"
1278
- #~ msgstr ""
1279
- #~ "Necessário atualmente só funciona com resposta aberta, número, aceitar e "
1280
- #~ "tipos de captcha."
1281
 
1282
  #~ msgid "Edit Question"
1283
  #~ msgstr "Editar Pergunta"
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;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;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
20
+ "X-Generator: Poedit 1.8.1\n"
21
  "X-Poedit-SearchPath-0: ..\n"
22
 
23
  #: ../mlw_quizmaster2.php:217
58
  msgid "Help"
59
  msgstr "Página de Ajuda"
60
 
61
+ #: ../mlw_quizmaster2.php:228 ../mlw_quizmaster2.php:229
 
62
  msgid "QMN About"
63
  msgstr "Sobre QMN"
64
 
66
  msgid "Emails"
67
  msgstr ""
68
 
69
+ #: ../php/qmn_options_email_tab.php:42 ../php/qmn_options_email_tab.php:101
 
70
  msgid "The email has been added successfully."
71
  msgstr "E-mail adicionado com sucesso"
72
 
73
+ #: ../php/qmn_options_email_tab.php:55 ../php/qmn_options_email_tab.php:114
74
+ #: ../php/qmn_options_email_tab.php:178 ../php/qmn_quiz_creator.php:382
75
+ #: ../php/qmn_quiz_creator.php:448 ../php/qmn_quiz_creator.php:490
76
+ #: ../php/qmn_quiz_creator.php:648 ../php/qmn_quiz_creator.php:713
 
 
 
 
77
  #: ../php/qmn_options_leaderboard_tab.php:38
78
  #, php-format
79
  msgid "There has been an error in this action. Please share this with the developer. Error Code: %s"
80
  msgstr "Houve um erro nesta ação. Por favor, compartilhe isso com o desenvolvedor. Código de erro:%s"
81
 
82
+ #: ../php/qmn_options_email_tab.php:73 ../php/qmn_options_email_tab.php:91
 
83
  msgid "Enter text here"
84
  msgstr "Coloque o texto aqui"
85
 
189
  msgid "The Current Date"
190
  msgstr "Data atual"
191
 
192
+ #: ../php/qmn_options_email_tab.php:319 ../php/qmn_options_email_tab.php:518
 
193
  msgid "Save Email Templates And Settings"
194
  msgstr "Salvar modelo de e-mail e configurações"
195
 
197
  msgid "Send user email upon completion?"
198
  msgstr "Enviar e-mail do usuário após a conclusão?"
199
 
200
+ #: ../php/qmn_options_email_tab.php:325 ../php/qmn_options_email_tab.php:332
 
201
  msgid "Yes"
202
  msgstr "Sim"
203
 
204
+ #: ../php/qmn_options_email_tab.php:326 ../php/qmn_options_email_tab.php:333
 
205
  msgid "No"
206
  msgstr "Não"
207
 
221
  msgid "Email Sent To User"
222
  msgstr "e-mail enviado ao usuário"
223
 
224
+ #: ../php/qmn_options_email_tab.php:348 ../php/qmn_options_email_tab.php:426
 
225
  msgid "Add New User Email"
226
  msgstr "Adicionar novo usuário de e-mail"
227
 
228
+ #: ../php/qmn_options_email_tab.php:353 ../php/qmn_options_email_tab.php:419
229
+ #: ../php/qmn_options_email_tab.php:440 ../php/qmn_options_email_tab.php:506
 
 
230
  msgid "Score Greater Than Or Equal To"
231
  msgstr "Escore maior ou igual a"
232
 
233
+ #: ../php/qmn_options_email_tab.php:354 ../php/qmn_options_email_tab.php:420
234
+ #: ../php/qmn_options_email_tab.php:441 ../php/qmn_options_email_tab.php:507
 
 
235
  msgid "Score Less Than Or Equal To"
236
  msgstr "Escore menor ou igual a"
237
 
238
+ #: ../php/qmn_options_email_tab.php:355 ../php/qmn_options_email_tab.php:421
239
+ #: ../php/qmn_options_email_tab.php:442 ../php/qmn_options_email_tab.php:508
 
 
240
  msgid "Subject"
241
  msgstr "Assunto"
242
 
243
+ #: ../php/qmn_options_email_tab.php:356 ../php/qmn_options_email_tab.php:422
244
+ #: ../php/qmn_options_email_tab.php:443 ../php/qmn_options_email_tab.php:509
 
 
245
  msgid "Email To Send"
246
  msgstr "Enviar e-mail para"
247
 
249
  msgid "Email Sent To Admin"
250
  msgstr "Enviar e-mail para admin"
251
 
252
+ #: ../php/qmn_options_email_tab.php:435 ../php/qmn_options_email_tab.php:513
 
253
  msgid "Add New Admin Email"
254
  msgstr "Adicionar novo e-mail de administrador"
255
 
403
  msgid "The templates has been updated successfully."
404
  msgstr "Os modelos foram atualizados com sucesso"
405
 
406
+ #: ../php/qmn_options_text_tab.php:170 ../php/qmn_options_text_tab.php:330
 
407
  msgid "Save Templates"
408
  msgstr "Salvar modelos"
409
 
778
  msgid "Time Taken"
779
  msgstr "Tempo necessário"
780
 
781
+ #: ../php/qmn_results.php:258 ../php/qmn_options_option_tab.php:147
 
782
  msgid "Not Graded"
783
  msgstr "Sem Classificação"
784
 
860
  msgid "The options has been updated successfully."
861
  msgstr "As Opções foram atualizadas com sucesso."
862
 
863
+ #: ../php/qmn_options_option_tab.php:135 ../php/qmn_options_option_tab.php:286
 
864
  msgid "Save Options"
865
  msgstr "Salvar Opções"
866
 
944
  msgid "Should we ask for users name?"
945
  msgstr "Nome de usuário"
946
 
947
+ #: ../php/qmn_options_option_tab.php:222 ../php/qmn_options_option_tab.php:230
948
+ #: ../php/qmn_options_option_tab.php:238 ../php/qmn_options_option_tab.php:246
 
 
949
  msgid "Require"
950
  msgstr "Exigir"
951
 
1005
  msgid "Custom"
1006
  msgstr ""
1007
 
1008
+ #: ../php/qmn_options_style_tab.php:94 ../php/qmn_options_style_tab.php:106
 
1009
  msgid "Save Quiz Style"
1010
  msgstr "Salvar Estilo de Questionário"
1011
 
1049
  msgid "Restore Quiz"
1050
  msgstr "Recuperar Avaliação"
1051
 
1052
+ #: ../php/qmn_tools.php:152 ../php/qmn_tools.php:168
 
1053
  #, php-format
1054
  msgid "Previous %s Audits"
1055
  msgstr "Anterior % s Auditorias"
1056
 
1057
+ #: ../php/qmn_tools.php:155 ../php/qmn_tools.php:162
 
1058
  #, php-format
1059
  msgid "Next %s Audits"
1060
  msgstr "Próximo% s Auditorias"
1156
  msgstr[0] "Uma questão"
1157
  msgstr[1] "%s questões"
1158
 
1159
+ #: ../php/qmn_quiz_admin.php:253 ../php/qmn_quiz_admin.php:304
 
1160
  msgid "URL"
1161
  msgstr "URL"
1162
 
1163
+ #: ../php/qmn_quiz_admin.php:254 ../php/qmn_quiz_admin.php:305
 
1164
  msgid "Quiz Shortcode"
1165
  msgstr "Shortcode do teste"
1166
 
1167
+ #: ../php/qmn_quiz_admin.php:255 ../php/qmn_quiz_admin.php:306
 
1168
  msgid "Leaderboard Shortcode"
1169
  msgstr "Shortcode da Pontuação"
1170
 
1171
+ #: ../php/qmn_quiz_admin.php:256 ../php/qmn_quiz_admin.php:307
 
1172
  msgid "Quiz Views"
1173
  msgstr "Visualização do Questionário"
1174
 
1175
+ #: ../php/qmn_quiz_admin.php:257 ../php/qmn_quiz_admin.php:308
 
1176
  msgid "Quiz Taken"
1177
  msgstr "Questionário Tomado"
1178
 
1179
+ #: ../php/qmn_quiz_admin.php:258 ../php/qmn_quiz_admin.php:309
 
1180
  msgid "Last Modified"
1181
  msgstr "Ultima modificação"
1182
 
1189
  msgid "Edit"
1190
  msgstr "Editar nome"
1191
 
1192
+ #: ../php/qmn_quiz_admin.php:275 ../php/qmn_quiz_admin.php:404
 
1193
  msgid "Duplicate"
1194
  msgstr "Duplicar"
1195
 
1237
  msgid "Quiz ID"
1238
  msgstr "ID de Avaliação"
1239
 
1240
+ #~ msgid "Required currently only works on open answer, number, accept, and captcha question types"
1241
+ #~ msgstr "Necessário atualmente funciona com resposta aberta, número, aceitar e tipos de captcha."
 
 
 
 
1242
 
1243
  #~ msgid "Edit Question"
1244
  #~ msgstr "Editar Pergunta"
languages/quiz-master-next-th.mo CHANGED
Binary file
languages/quiz-master-next-th.po CHANGED
@@ -5,7 +5,7 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Quiz Master Next\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2015-04-20 01:13-0500\n"
9
  "PO-Revision-Date: \n"
10
  "Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
11
  "Language-Team: My Local Webstop <fpcorso@mylocalwebstop.com>\n"
@@ -16,12 +16,14 @@ msgstr ""
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;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;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
 
 
20
  "X-Poedit-Basepath: ../\n"
21
- "X-Generator: Poedit 1.7.3\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
- #: mlw_quizmaster2.php:217
25
  msgid "Quizzes"
26
  msgstr "แบบทดสอบ"
27
 
@@ -29,7 +31,7 @@ msgstr "แบบทดสอบ"
29
  msgid "Quiz Settings"
30
  msgstr "ตั้งค่าแบบทดสอบ"
31
 
32
- #: mlw_quizmaster2.php:219
33
  msgid "Quiz Results"
34
  msgstr "ผลลัพธ์แบบทดสอบ"
35
 
@@ -41,7 +43,7 @@ msgstr "รายละเอียดผลลัพธ์ของแบบท
41
  msgid "Settings"
42
  msgstr ""
43
 
44
- #: mlw_quizmaster2.php:222
45
  msgid "Tools"
46
  msgstr "เครื่องมือ"
47
 
@@ -57,1216 +59,1262 @@ msgstr "ตั้งค่าส่วนเพิ่มเติม"
57
  msgid "Help"
58
  msgstr "ช่วยเหลือ"
59
 
60
- #: mlw_quizmaster2.php:228
61
- #: mlw_quizmaster2.php:229
62
  msgid "QMN About"
63
  msgstr "เกี่ยวกับ QMN"
64
 
65
- #: php/qmn_options_email_tab.php:6
66
- msgid "Emails"
67
- msgstr "อีเมล์"
68
 
69
- #: php/qmn_options_email_tab.php:42
70
- #: php/qmn_options_email_tab.php:101
71
- msgid "The email has been added successfully."
72
- msgstr "เพิ่มอีเมล์เรียบร้อย"
73
 
74
- #: php/qmn_options_email_tab.php:55
75
- #: php/qmn_options_email_tab.php:114
76
- #: php/qmn_options_email_tab.php:178
77
- #: php/qmn_quiz_creator.php:382
78
- #: php/qmn_quiz_creator.php:448
79
- #: php/qmn_quiz_creator.php:490
80
- #: php/qmn_quiz_creator.php:648
81
- #: php/qmn_quiz_creator.php:713
82
- #: php/qmn_options_leaderboard_tab.php:38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  #, php-format
84
- msgid "There has been an error in this action. Please share this with the developer. Error Code: %s"
 
85
  msgstr "เกิดข้อผิดพลาดในการทำงาน โปรดแชร์ให้กับผู้พัฒนา หมายเลขข้อผิดพลาด Error Code: %s"
86
 
87
- #: php/qmn_options_email_tab.php:73
88
- #: php/qmn_options_email_tab.php:91
 
 
 
 
89
  msgid "Enter text here"
90
  msgstr "กรอกข้อความที่นี่"
91
 
92
- #: php/qmn_options_email_tab.php:165
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
  msgid "The email has been updated successfully."
94
  msgstr "อัพเดทอีเมล์เรียบร้อย"
95
 
96
- #: php/qmn_options_email_tab.php:232
97
- #: php/qmn_options_leaderboard_tab.php:49
98
  msgid "Template Variables"
99
  msgstr "ตัวแปรแม่แบบ"
100
 
101
- #: php/qmn_options_email_tab.php:235
 
102
  msgid "Score for the quiz when using points"
103
  msgstr "คะแนนแบบทดสอบ ใช้งานคะแนน"
104
 
105
- #: php/qmn_options_email_tab.php:238
 
106
  msgid "The average amount of points user had per question"
107
  msgstr "คะแนนเฉลี่ยของผู้ใช้งาน ต่อคำถาม"
108
 
109
- #: php/qmn_options_email_tab.php:241
 
110
  msgid "The number of correct answers the user had"
111
  msgstr "จำนวนข้อถูกของผู้ใช้"
112
 
113
- #: php/qmn_options_email_tab.php:244
 
114
  msgid "The total number of questions in the quiz"
115
  msgstr "จำนวนคำถามทั้งหมดของแบบทดสอบนี้"
116
 
117
- #: php/qmn_options_email_tab.php:247
 
118
  msgid "Score for the quiz when using correct answers"
119
  msgstr "คะแนนแบบทดสอบ ใช้งานคำตอบที่ถูก"
120
 
121
- #: php/qmn_options_email_tab.php:250
 
122
  msgid "The name the user entered before the quiz"
123
  msgstr "ชื่อที่ผู้ใช้กรอกก่อนทำแบบทดสอบ"
124
 
125
- #: php/qmn_options_email_tab.php:253
 
126
  msgid "The business the user entered before the quiz"
127
  msgstr "ที่ทำงานที่ผู้ใช้กรอกก่อนทำแบบทดสอบ"
128
 
129
- #: php/qmn_options_email_tab.php:256
 
130
  msgid "The phone number the user entered before the quiz"
131
  msgstr "โทรศัพท์ที่ผู้ใช้กรอกก่อนทำแบบทดสอบ"
132
 
133
- #: php/qmn_options_email_tab.php:259
 
134
  msgid "The email the user entered before the quiz"
135
  msgstr "อีเมล์ที่ผู้ใช้กรอกก่อนทำแบบทดสอบ"
136
 
137
- #: php/qmn_options_email_tab.php:262
138
- #: php/qmn_options_leaderboard_tab.php:77
139
  msgid "The name of the quiz"
140
  msgstr "ชื่อของแบบทดสอบ"
141
 
142
- #: php/qmn_options_email_tab.php:265
 
143
  msgid "Shows the question, the answer the user provided, and the correct answer"
144
  msgstr "แสดงคำถาม, คำตอบจากผู้ใช้, และข้อที่ถูกต้อง"
145
 
146
- #: php/qmn_options_email_tab.php:268
 
147
  msgid "The comments the user entered into comment box if enabled"
148
  msgstr "ข้อแนะนำที่ได้รับจากผู้ใช้"
149
 
150
- #: php/qmn_options_email_tab.php:271
151
- msgid "The amount of time user spent of quiz"
152
- msgstr "เวลาที่ใช้ทั่งหมดในการทำแบบทดสอบ"
 
 
 
 
153
 
154
- #: php/qmn_options_email_tab.php:274
 
155
  msgid "The link to the certificate after completing the quiz"
156
  msgstr "ลิงค์ไปสู่ประกาศนียบัตรหลังทำแบบทดสอบเรียบร้อย"
157
 
158
- #: php/qmn_options_email_tab.php:277
 
159
  msgid "The amount of points a specific category earned."
160
  msgstr "คะแนนเฉพาะจากหมวดหมู่"
161
 
162
- #: php/qmn_options_email_tab.php:280
 
163
  msgid "The score a specific category earned."
164
  msgstr "คะแนนเฉพาะจากหมวดหมู่"
165
 
166
- #: php/qmn_options_email_tab.php:283
 
167
  msgid "The average points from all categories."
168
  msgstr "คะแนนเฉลี่ยจากหมวดหมู่ทั้งหมด"
169
 
170
- #: php/qmn_options_email_tab.php:286
 
171
  msgid "The average score from all categories."
172
  msgstr "คะแนนเฉลี่ยจากหมวดหมู่ทั้งหมด"
173
 
174
- #: php/qmn_options_email_tab.php:289
175
  msgid "The question that the user answered"
176
  msgstr "คำถามที่ผู้ใช้ตอบ"
177
 
178
- #: php/qmn_options_email_tab.php:292
179
  msgid "The answer the user gave for the question"
180
  msgstr "คำตอบที่ผู้ใช้ตอบคำถาม"
181
 
182
- #: php/qmn_options_email_tab.php:295
183
  msgid "The correct answer for the question"
184
  msgstr "คำตอบที่ถูกต้อง"
185
 
186
- #: php/qmn_options_email_tab.php:298
187
  msgid "The comments the user provided in the comment field for the question"
188
  msgstr "ข้อเสนอแนะที่ผู้ใช้กรอกสำหรับคำถาม"
189
 
190
- #: php/qmn_options_email_tab.php:301
191
  msgid "Reason why the correct answer is the correct answer"
192
  msgstr "เหตุผลอธิบายข้อถูก"
193
 
194
- #: php/qmn_options_email_tab.php:304
195
  msgid "The Current Date"
196
  msgstr "วันที่ปัจจุบัน"
197
 
198
- #: php/qmn_options_email_tab.php:319
199
- #: php/qmn_options_email_tab.php:518
200
  msgid "Save Email Templates And Settings"
201
  msgstr "บันทึกแม่แบบอีเมล์และการตั้งค่า"
202
 
203
- #: php/qmn_options_email_tab.php:323
204
  msgid "Send user email upon completion?"
205
  msgstr "ส่งอีเมล์หาผู้ใช้เมื่อเสร็จเรียบร้อย"
206
 
207
- #: php/qmn_options_email_tab.php:325
208
- #: php/qmn_options_email_tab.php:332
209
- msgid "Yes"
210
- msgstr "ใช่"
211
-
212
- #: php/qmn_options_email_tab.php:326
213
- #: php/qmn_options_email_tab.php:333
214
- msgid "No"
215
- msgstr "ไม่ใช่"
216
-
217
- #: php/qmn_options_email_tab.php:330
218
  msgid "Send admin email upon completion?"
219
  msgstr "ส่งอีเมล์หาผู้ดูแลระบบเมื่อเสร็จเรียบร้อย"
220
 
221
- #: php/qmn_options_email_tab.php:337
222
  msgid "What emails should we send the admin email to? Separate emails with a comma."
223
  msgstr "อีเมล์ใดที่จะใช้ส่งไปยังผู้ดูแลระบบ แยกแต่ละอีเมล์ด้วยเครื่องหมายลูกน่ำ"
224
 
225
- #: php/qmn_options_email_tab.php:341
226
  msgid "What is the From Name for the email sent to users and admin?"
227
  msgstr "ชื่อฟอร์มใดที่ต้องการใช้ส่งอีเมล์ไปยังผู้ใช้และผู้ดูแลระบบ"
228
 
229
- #: php/qmn_options_email_tab.php:347
230
  msgid "Email Sent To User"
231
  msgstr "ส่งอีเมล์ให้ผู้ใช้เรียบร้อย"
232
 
233
- #: php/qmn_options_email_tab.php:348
234
- #: php/qmn_options_email_tab.php:426
235
  msgid "Add New User Email"
236
  msgstr "เพิ่มอีเมล์ผู้ใช่ใหม่"
237
 
238
- #: php/qmn_options_email_tab.php:353
239
- #: php/qmn_options_email_tab.php:419
240
- #: php/qmn_options_email_tab.php:440
241
- #: php/qmn_options_email_tab.php:506
242
  msgid "Score Greater Than Or Equal To"
243
  msgstr "คะแนนมากกว่าหรือเท่ากับ"
244
 
245
- #: php/qmn_options_email_tab.php:354
246
- #: php/qmn_options_email_tab.php:420
247
- #: php/qmn_options_email_tab.php:441
248
- #: php/qmn_options_email_tab.php:507
249
  msgid "Score Less Than Or Equal To"
250
  msgstr "คะแนนน้อยกว่าหรือเท่ากับ"
251
 
252
- #: php/qmn_options_email_tab.php:355
253
- #: php/qmn_options_email_tab.php:421
254
- #: php/qmn_options_email_tab.php:442
255
- #: php/qmn_options_email_tab.php:508
256
  msgid "Subject"
257
  msgstr "หัวเรื่อง"
258
 
259
- #: php/qmn_options_email_tab.php:356
260
- #: php/qmn_options_email_tab.php:422
261
- #: php/qmn_options_email_tab.php:443
262
- #: php/qmn_options_email_tab.php:509
263
  msgid "Email To Send"
264
  msgstr "อีเมล์ที่จะส่ง"
265
 
266
- #: php/qmn_options_email_tab.php:434
267
  msgid "Email Sent To Admin"
268
  msgstr "ส่งอีเมล์ไปหาผู้ดูแลระบบแล้ว"
269
 
270
- #: php/qmn_options_email_tab.php:435
271
- #: php/qmn_options_email_tab.php:513
272
  msgid "Add New Admin Email"
273
  msgstr "เพื่ออีเมล์ผู้ดูแลระบบใหม่"
274
 
275
- #: php/qmn_quiz_creator.php:369
276
- msgid "Your new quiz has been created successfully. To begin editing your quiz, click the Edit link on the new quiz."
277
- msgstr "แบบทดสอบใหม่จองท่านได้ถูกสร้างเรียบร้อย คลิ้กลิงค์แก้ไขที่แบบทดสอบใหม่ เพื่อทำการแก้ไข"
278
-
279
- #: php/qmn_quiz_creator.php:435
280
- msgid "Your quiz has been deleted successfully."
281
- msgstr "แบบทดสอบของท่านได้ถูกลบเรียบร้อย"
282
-
283
- #: php/qmn_quiz_creator.php:477
284
- msgid "Your quiz name has been updated successfully."
285
- msgstr "ชื่อแบบทดสอบของท่านได้ถูกอัพเดทเรียบร้อย"
286
-
287
- #: php/qmn_quiz_creator.php:634
288
- msgid "Your quiz has been duplicated successfully."
289
- msgstr "แบบทดสอบของท่านได้ถูกทำสำเนาเรียบร้อย"
290
-
291
- #: php/qmn_quiz.php:350
292
- msgid "Not a valid e-mail address!"
293
- msgstr "รูปแบบอีเมล์ไม่ถูกต้อง"
294
-
295
- #: php/qmn_quiz.php:351
296
- msgid "This field must be a number!"
297
- msgstr "ใช้ตัวเลขในช่องนี้เท่านั้น"
298
-
299
- #: php/qmn_quiz.php:352
300
- msgid "The entered text is not correct!"
301
- msgstr "ข้อความที่กรอกไม่ถูกต้อง!"
302
-
303
- #: php/qmn_quiz.php:353
304
- msgid "Please complete all required fields!"
305
- msgstr "กรุณาตอบช่องบังคับทุกช่อง!"
306
-
307
- #: php/qmn_quiz.php:465
308
- msgid "Hint"
309
- msgstr "บอกใบ้"
310
-
311
- #: php/qmn_quiz.php:1254
312
- msgid "Previous"
313
- msgstr "ก่อนหน้า"
314
-
315
- #: php/qmn_credits.php:27
316
- msgid "Welcome To Quiz Master Next"
317
- msgstr "ยินดีต้อนรับสู่ Quiz Master Next"
318
-
319
- #: php/qmn_credits.php:28
320
- msgid "Thank you for updating!"
321
- msgstr "ขอบคุณที่อัพเดท!"
322
-
323
- #: php/qmn_credits.php:32
324
- msgid "What's New!"
325
- msgstr "มีอะไรใหม่!"
326
-
327
- #: php/qmn_credits.php:34
328
- msgid "Changelog"
329
- msgstr "บันทึกการเปลี่ยนแปลง"
330
-
331
- #: php/qmn_usage_tracking.php:193
332
- msgid "Allow Quiz Master Next to anonymously track this plugin's usage and help us make this plugin better? No sensitive data is tracked."
333
- msgstr ""
334
-
335
- #: php/qmn_usage_tracking.php:194
336
- msgid "Allow"
337
- msgstr ""
338
-
339
- #: php/qmn_usage_tracking.php:195
340
- msgid "Do not allow"
341
- msgstr ""
342
-
343
- #: php/qmn_options_leaderboard_tab.php:6
344
  msgid "Leaderboard"
345
  msgstr "กระดานผู้นำ"
346
 
347
- #: php/qmn_options_leaderboard_tab.php:25
348
  msgid "The leaderboards has been updated successfully."
349
  msgstr "อัพเดทกระดานผู้นำเรียบร้อย"
350
 
351
- #: php/qmn_options_leaderboard_tab.php:52
352
  msgid "The name of the user who is in first place"
353
  msgstr "ชื่อผู้ใช้งานที่อยู่ในลำดับที่ 1"
354
 
355
- #: php/qmn_options_leaderboard_tab.php:53
356
  msgid "The score from the first place's quiz"
357
  msgstr "คะแนนจากแบบทดสอบลำดับที่ 1"
358
 
359
- #: php/qmn_options_leaderboard_tab.php:57
360
  msgid "The name of the user who is in second place"
361
  msgstr "ชื่อผู้ใช้งานที่อยู่ในลำดับที่ 2"
362
 
363
- #: php/qmn_options_leaderboard_tab.php:58
364
  msgid "The score from the second place's quiz"
365
  msgstr "คะแนนจากแบบทดสอบลำดับที่ 2"
366
 
367
- #: php/qmn_options_leaderboard_tab.php:62
368
  msgid "The name of the user who is in third place"
369
  msgstr "ชื่อผู้ใช้งานที่อยู่ในลำดับที่ 3"
370
 
371
- #: php/qmn_options_leaderboard_tab.php:63
372
  msgid "The score from the third place's quiz"
373
  msgstr "คะแนนจากแบบทดสอบลำดับที่ 3"
374
 
375
- #: php/qmn_options_leaderboard_tab.php:67
376
  msgid "The name of the user who is in fourth place"
377
  msgstr "ชื่อผู้ใช้งานที่อยู่ในลำดับที่ 4"
378
 
379
- #: php/qmn_options_leaderboard_tab.php:68
380
  msgid "The score from the fourth place's quiz"
381
  msgstr "คะแนนจากแบบทดสอบลำดับที่ 4"
382
 
383
- #: php/qmn_options_leaderboard_tab.php:72
384
  msgid "The name of the user who is in fifth place"
385
  msgstr "ชื่อผู้ใช้งานที่อยู่ในลำดับที่ 5"
386
 
387
- #: php/qmn_options_leaderboard_tab.php:73
388
  msgid "The score from the fifth place's quiz"
389
  msgstr "คะแนนจากแบบทดสอบลำดับที่ 5"
390
 
391
- #: php/qmn_options_leaderboard_tab.php:80
392
- #: php/qmn_options_leaderboard_tab.php:108
393
  msgid "Save Leaderboard Options"
394
  msgstr "บันทึกการตั้งค่ากระดานผู้นำ"
395
 
396
- #: php/qmn_options_leaderboard_tab.php:89
397
  msgid "Leaderboard Template"
398
  msgstr "แม่แบบกระดานผู้นำ"
399
 
400
- #: php/qmn_options_leaderboard_tab.php:91
401
- msgid "Allowed Variables:"
402
- msgstr "ตัวแปรที่อนุญาตื"
403
 
404
- #: php/qmn_addons.php:48
405
- msgid "These addons extend the functionality of Quiz Master Next"
406
- msgstr "ส่วนเพิ่มเติม เหล่านี้ ขยายการทำงานของ Quiz Master Next"
407
 
408
- #: php/qmn_addons.php:91
409
- msgid "Browse All Addons"
410
- msgstr "เลือกส่วนเพิ่มเติมทั้งหมด"
411
 
412
- #: php/qmn_addons.php:98
413
- msgid "Featured Addons"
414
- msgstr "ส่วนเพิ่มเติมแนะนำ"
415
 
416
- #: php/qmn_options_text_tab.php:6
417
- msgid "Text"
418
- msgstr "ข้อความ"
419
 
420
- #: php/qmn_options_text_tab.php:42
421
- msgid "The templates has been updated successfully."
422
- msgstr "อัพเดทแม่แบบเรียบร้อย"
423
 
424
- #: php/qmn_options_text_tab.php:170
425
- #: php/qmn_options_text_tab.php:330
426
- msgid "Save Templates"
427
- msgstr "บันทึกแม่แบบ"
428
 
429
- #: php/qmn_options_text_tab.php:176
430
- msgid "Message Templates"
431
- msgstr "แม่แบบข้อความ"
432
 
433
- #: php/qmn_options_text_tab.php:180
434
- msgid "Message Displayed Before Quiz"
435
- msgstr "ข้อความที่แสดงก่อนทำแบบทดสอบ"
436
 
437
- #: php/qmn_options_text_tab.php:190
438
- msgid "Message Displayed Before Comments Box If Enabled"
439
- msgstr "ข้อความที่ถูกแสดงก่อนช่องข้อแนะนำ, หากเปิดใช้"
440
 
441
- #: php/qmn_options_text_tab.php:200
442
- msgid "Message Displayed At End Of Quiz (Leave Blank To Omit Text Section)"
443
- msgstr "ข้อความที่ถูกแสดงทำแบบทดสอบเสร็จ (ปล่อยว่างเพื่อละเว้นการเลือกข้อความ)"
444
-
445
- #: php/qmn_options_text_tab.php:210
446
- msgid "Message Displayed If User Has Tried Quiz Too Many Times"
447
- msgstr "ข้อความที่ถูกแสดงหากผู้ใช้ทำแบบทดสอบหลายครั้งเกินไป"
448
-
449
- #: php/qmn_options_text_tab.php:220
450
- msgid "Message Displayed If User Is Not Logged In And Quiz Requires Users To Be Logged In"
451
- msgstr "ข้อความที่ถูกแสดง เมื่อผู้ใช้ไม่ได้ลงชื่อเข้าใช้ เมื่อแบบทดสอบต้องการลงชื่อเข้าใช้งาน"
452
-
453
- #: php/qmn_options_text_tab.php:230
454
- msgid "Message Displayed If Date Is Outside Scheduled Timeframe"
455
- msgstr "ข้อความที่ถูกแสดงถ้าวันที่อยู่นอกวันเวลาที่อนุญาติใช้งาน"
456
-
457
- #: php/qmn_options_text_tab.php:240
458
- msgid "Message Displayed If The Limit Of Total Entries Has Been Reached"
459
- msgstr "ข้อความที่ถูกแสดงหากจำนวนรายการเกินกำหนด"
460
-
461
- #: php/qmn_options_text_tab.php:250
462
- msgid "%QUESTIONS_ANSWERS% Text"
463
- msgstr "%QUESTIONS_ANSWERS% ข้อความ"
464
-
465
- #: php/qmn_options_text_tab.php:263
466
- msgid "Twitter Sharing Text"
467
- msgstr "ข้อความแชร์ทวิตเตอร์"
468
-
469
- #: php/qmn_options_text_tab.php:280
470
- msgid "Facebook Sharing Text"
471
- msgstr "ข้อความแชร์เฟสบุค"
472
-
473
- #: php/qmn_options_text_tab.php:295
474
- msgid "Other Templates"
475
- msgstr "แม่แบบอื่นๆ"
476
-
477
- #: php/qmn_options_text_tab.php:298
478
- msgid "Text for submit button"
479
- msgstr "ข้อความสำหรับปุ่ม ส่ง"
480
-
481
- #: php/qmn_options_text_tab.php:302
482
- msgid "Text for name field"
483
- msgstr "ข้อความสำหรับช่องชื่อ"
484
-
485
- #: php/qmn_options_text_tab.php:306
486
- msgid "Text for business field"
487
- msgstr "ข้อความสำหรับช่องที่ทำงาน"
488
-
489
- #: php/qmn_options_text_tab.php:310
490
- msgid "Text for email field"
491
- msgstr "ข้อความสำหรับข่องอีเมล์"
492
-
493
- #: php/qmn_options_text_tab.php:314
494
- msgid "Text for phone number field"
495
- msgstr "ข้อความสำหรับช่องโทรศัพท์"
496
-
497
- #: php/qmn_options_text_tab.php:318
498
- msgid "Text for comments field"
499
- msgstr "ข้อความสำหรับช่องข้อแนะนำ"
500
-
501
- #: php/qmn_options_text_tab.php:322
502
- msgid "Text for previous button"
503
- msgstr "ข้อความสำหรับปุ่ม ก่อนหน้า"
504
-
505
- #: php/qmn_options_text_tab.php:326
506
- msgid "Text for next button"
507
- msgstr "ข้อความสำหรับปุ่ม ถัดไป"
508
-
509
- #: php/qmn_options_tools_tab.php:23
510
- msgid "The stats has been reset successfully."
511
- msgstr "ล้างค่าสถิติเรียบร้อย"
512
-
513
- #: php/qmn_options_tools_tab.php:75
514
- msgid "Use this button to reset all the stats collected for this quiz (Quiz Views and Times Quiz Has Been Taken)."
515
- msgstr "ใช้ปุ่มนี้ เพื่อล้างค่าสถิติที่เก็บข้อมูลแบบทดสอบนี้"
516
-
517
- #: php/qmn_options_tools_tab.php:76
518
- msgid "Reset Quiz Views And Taken Stats"
519
- msgstr "ล้างสถิติการดูและทำแบบทดสอบ"
520
-
521
- #: php/qmn_options_tools_tab.php:87
522
- msgid "Are you sure you want to reset the stats to 0? All views and taken stats for this quiz will be reset. This is permanent and cannot be undone."
523
- msgstr "คุณแน่ใจหรือไม่ ว่าต้องการลบสถิติทั้งหมดเป็น 0? ข้อมูลสถิติการดูและทำแบบทำสอบจะถูกตั้งค่าใหม่ ไม่สามารถกู้คืนข้อมูลได้!!"
524
-
525
- #: php/qmn_options_tools_tab.php:91
526
- msgid "Reset All Stats For Quiz"
527
- msgstr "ล้างสถิติทั้งหมดของแบบทดสอบ"
528
 
529
- #: php/qmn_dashboard_widgets.php:9
530
- msgid "Quiz Master Next Snapshot"
531
- msgstr "Quiz Master Next Snapshot"
532
 
533
- #: php/qmn_dashboard_widgets.php:166
534
- msgid "quizzes taken today"
535
- msgstr "แบบทดสอบที่มีคนทำในวันนี้"
536
 
537
- #: php/qmn_dashboard_widgets.php:185
538
- msgid "quizzes taken last 7 days"
539
- msgstr "แบบทดสอบที่มีคนทำ ย้อนหลัง 7 วัน"
 
 
540
 
541
- #: php/qmn_dashboard_widgets.php:204
542
- #, fuzzy
543
- msgid "quizzes taken last 30 days"
544
- msgstr "แบบทดสอบที่มีคนทำ ย้อนหลัง 7 วัน"
545
 
546
- #: php/qmn_dashboard_widgets.php:223
547
- #, fuzzy
548
- msgid "quizzes taken last 120 days"
549
- msgstr "แบบทดสอบที่มีคนทำ ย้อนหลัง 7 วัน"
550
 
551
- #: php/qmn_dashboard_widgets.php:242
552
- msgid "total active quizzes"
553
- msgstr "จำนวนแบบทดสอบที่ใช้งานทั้งหมด"
554
 
555
- #: php/qmn_dashboard_widgets.php:248
556
- msgid "total active questions"
557
- msgstr "จำนวนคำถามที่ใช้งานทั้งหมด"
558
 
559
- #: php/qmn_dashboard_widgets.php:254
560
- msgid "most popular quiz"
561
- msgstr "แบบทดสอบเป็นที่นิยมสูงสุด"
562
 
563
- #: php/qmn_dashboard_widgets.php:260
564
- msgid "least popular quiz"
565
- msgstr "แบบทดสอบเป็นที่นิยมต่ำสุด"
 
566
 
567
- #: php/qmn_options_certificate_tab.php:6
568
- msgid "Certificate (Beta)"
569
- msgstr "ประกาศนียบัตร (รุ่นทดสอบ)"
570
 
571
- #: php/qmn_options_certificate_tab.php:32
572
- msgid "The certificate has been updated successfully."
573
- msgstr "อัพเดทประกาศนียบัตรเรียบร้อย"
574
 
575
- #: php/qmn_options_certificate_tab.php:61
576
- msgid "Enter title here"
577
- msgstr "กรอกหัวข้อที่นี่"
 
 
 
 
 
578
 
579
- #: php/qmn_options_certificate_tab.php:65
580
- msgid "Quiz Certificate (Beta)"
581
- msgstr "ประกาศนียบัตรสำหรับแบบทดสอบ (รุ่นทดลอง)"
582
 
583
- #: php/qmn_options_certificate_tab.php:66
584
- msgid "Enter in your text here to fill in the certificate for this quiz. Be sure to enter in the link variable into the templates on the Quiz Text tab so the user can access the certificate."
585
- msgstr "กรอกข้อความที่นี่เพื่อเติมลงในประกาศนียบัตรสำหรับแบบทดสอบนี้ โปรดใส่ลิงค์ไปยังตัวแปรในแม่แบบ (Templates) ในแท็บ ข้อความแบบทดสอบ เพื่อให้ผู้ใช้งานสามารถเข้าสู่ประกาศนียบัตรได้"
 
586
 
587
- #: php/qmn_options_certificate_tab.php:67
588
- msgid "These fields cannot contain HTML."
589
- msgstr "ไม่สามารถใช้ HTML ในช่องนี้"
590
 
591
- #: php/qmn_options_certificate_tab.php:68
592
- #: php/qmn_options_certificate_tab.php:124
593
- msgid "Save Certificate Options"
594
- msgstr "บันทึกการตั้งค่าประกาศนียบัตร"
595
 
596
- #: php/qmn_options_certificate_tab.php:76
597
- msgid "Enable Certificates For This Quiz?"
598
- msgstr "ใช้งานประกาศนียบัตรสำหรับแบบทดสอบนี้?"
599
 
600
- #: php/qmn_options_certificate_tab.php:84
601
- msgid "Certificate Title"
602
- msgstr "หัวข้อประกาศนียบัตร"
603
 
604
- #: php/qmn_options_certificate_tab.php:91
605
- msgid "Message Displayed On Certificate"
606
- msgstr "ข้อความแสดงบนประกาศนียบัตร"
607
 
608
- #: php/qmn_options_certificate_tab.php:111
609
- msgid "URL To Logo (Must be JPG, JPEG, PNG or GIF)"
610
- msgstr "URL ไปยังโลโก้ (ชนิด JPG, JPEG, PNG or GIF)"
611
 
612
- #: php/qmn_options_certificate_tab.php:118
613
- msgid "URL To Background Img (Must be JPG, JPEG, PNG or GIF)"
614
- msgstr "URL ไปยังภาพพื้นหลัง (ชนิด JPG, JPEG, PNG or GIF)"
 
 
615
 
616
- #: php/qmn_quiz_options.php:52
617
- #, php-format
618
- msgid "Quiz Settings For %s"
619
- msgstr "ตั้งค่าแบบทดสอบสำหรับ %s"
620
 
621
- #: php/qmn_quiz_options.php:92
622
- msgid "Error!"
623
- msgstr "ผิดพลาด!"
 
 
624
 
625
- #: php/qmn_quiz_options.php:92
626
- msgid "Please go to the quizzes page and click on the Edit link from the quiz you wish to edit."
627
- msgstr "กรุณาไปยังหน้ารายการแบบทดสอบและ คลิ้ก แก้ไขลิงค์ ของแบบทดสอบที่ต้องการแก้ไข"
628
 
629
- #: php/qmn_options_questions_tab.php:6
630
  msgid "Questions"
631
  msgstr "คำถาม"
632
 
633
- #: php/qmn_options_questions_tab.php:14
634
  msgid "Answer"
635
  msgstr "คำตอบ"
636
 
637
- #: php/qmn_options_questions_tab.php:112
638
  msgid "The question has been updated successfully."
639
  msgstr "ปรับปรุงคำถามเรียบร้อย"
640
 
641
- #: php/qmn_options_questions_tab.php:139
642
  msgid "The question has been deleted successfully."
643
  msgstr "ลบคำถามเรียบร้อย"
644
 
645
- #: php/qmn_options_questions_tab.php:223
646
  msgid "The question has been duplicated successfully."
647
  msgstr "ทำสำเนาคำถามเรียบร้อย"
648
 
649
- #: php/qmn_options_questions_tab.php:316
650
  msgid "The question has been created successfully."
651
  msgstr "สร้างคำถามเรียบร้อย"
652
 
653
- #: php/qmn_options_questions_tab.php:434
654
  msgid "Add Question"
655
  msgstr "เพิ่มคำถาม"
656
 
657
- #: php/qmn_options_questions_tab.php:443
658
  #, php-format
659
  msgid "One question"
660
  msgid_plural "%s questions"
661
  msgstr[0] "หนึ่งคำถาม"
662
  msgstr[1] "%s คำถาม"
663
 
664
- #: php/qmn_options_questions_tab.php:449
665
- #: php/qmn_options_questions_tab.php:457
666
- #: php/qmn_options_questions_tab.php:582
667
  msgid "Question Order"
668
  msgstr "ลำดับคำถาม"
669
 
670
- #: php/qmn_options_questions_tab.php:450
671
- #: php/qmn_options_questions_tab.php:458
672
- #: php/qmn_options_questions_tab.php:561
673
  msgid "Question Type"
674
  msgstr "ชนิดคำถาม"
675
 
676
- #: php/qmn_options_questions_tab.php:451
677
- #: php/qmn_options_questions_tab.php:459
678
- #: php/qmn_options_questions_tab.php:595
679
  msgid "Category"
680
  msgstr "หมวดหมู่"
681
 
682
- #: php/qmn_options_questions_tab.php:452
683
- #: php/qmn_options_questions_tab.php:460
684
  msgid "Question"
685
  msgstr "คำถาม"
686
 
687
- #: php/qmn_options_questions_tab.php:534
688
- msgid "For fill in the blank types, use %BLANK% to represent where to put the text box in your text."
 
689
  msgstr ""
690
 
691
- #: php/qmn_options_questions_tab.php:539
692
  msgid "Answers"
693
  msgstr "คำตอบ"
694
 
695
- #: php/qmn_options_questions_tab.php:540
696
  msgid "Points Worth"
697
  msgstr "ค่าคะแนน"
698
 
699
- #: php/qmn_options_questions_tab.php:541
700
  msgid "Correct Answer"
701
  msgstr "ข้อที่ถูกต้อง"
702
 
703
- #: php/qmn_options_questions_tab.php:546
704
  msgid "Add New Answer!"
705
  msgstr "เพิ่มคำตอบใหม่"
706
 
707
- #: php/qmn_options_questions_tab.php:551
708
  msgid "Correct Answer Info"
709
  msgstr "ข้อความข้อที่ถูกต้อง"
710
 
711
- #: php/qmn_options_questions_tab.php:573
 
 
 
 
712
  msgid "Comment Field"
713
  msgstr "ข้อเสนอแนะ"
714
 
715
- #: php/qmn_options_questions_tab.php:575
716
  msgid "Small Text Field"
717
  msgstr "ข้อความสั้น"
718
 
719
- #: php/qmn_options_questions_tab.php:576
720
  msgid "Large Text Field"
721
  msgstr "ข้อความยาว"
722
 
723
- #: php/qmn_options_questions_tab.php:577
724
  msgid "None"
725
  msgstr "ไม่มี"
726
 
727
- #: php/qmn_options_questions_tab.php:587
728
  msgid "Required?"
729
  msgstr "บังคับ?"
730
 
731
- #: php/qmn_options_questions_tab.php:618
732
  msgid "Create Question"
733
  msgstr "สร้างคำถาม"
734
 
735
- #: php/qmn_options_questions_tab.php:623
736
  msgid "Are you sure you want to delete this question?"
737
  msgstr "คุณแน่ใจหรือไม่ที่จะลบคำถามนี้?"
738
 
739
- #: php/qmn_options_questions_tab.php:628
740
  msgid "Delete Question"
741
  msgstr "ลบคำถาม"
742
 
743
- #: php/qmn_options_questions_tab.php:633
744
  msgid "Are you sure you want to duplicate this question?"
745
  msgstr "คุณแน่ใจหรือไม่ที่จะสำเนาคำถามนี้?"
746
 
747
- #: php/qmn_options_questions_tab.php:638
748
  msgid "Duplicate Question"
749
  msgstr "ทำสำเนาคำถาม"
750
 
751
- #: php/qmn_results.php:23
752
- msgid "Your results has been deleted successfully."
753
- msgstr "ผลลัพท์ของท่านได้ถูกลบเรียบร้อย"
754
-
755
- #: php/qmn_results.php:161
756
- #, php-format
757
- msgid "One result"
758
- msgid_plural "%s results"
759
- msgstr[0] ""
760
- msgstr[1] ""
761
-
762
- #: php/qmn_results.php:208
763
- msgid "Actions"
764
- msgstr "กระทำ"
765
-
766
- #: php/qmn_results.php:209
767
- msgid "Quiz Name"
768
- msgstr "ชื่อแบบทดสอบ"
769
-
770
- #: php/qmn_results.php:210
771
- msgid "Score"
772
- msgstr "คำแนน"
773
-
774
- #: php/qmn_results.php:211
775
- msgid "Time To Complete"
776
- msgstr "เวลาที่ทำสำเร็จ"
777
-
778
- #: php/qmn_results.php:212
779
- msgid "Name"
780
- msgstr "ชื่อ"
781
-
782
- #: php/qmn_results.php:213
783
- msgid "Business"
784
- msgstr "ที่ทำงาน"
785
-
786
- #: php/qmn_results.php:214
787
- msgid "Email"
788
- msgstr "อีเมล์"
789
-
790
- #: php/qmn_results.php:215
791
- msgid "Phone"
792
- msgstr "โทรศัพท์"
793
-
794
- #: php/qmn_results.php:216
795
- msgid "Time Taken"
796
- msgstr "ใช้เวลาไป"
797
-
798
- #: php/qmn_results.php:258
799
- #: php/qmn_options_option_tab.php:147
800
- msgid "Not Graded"
801
- msgstr "ไม่คิดคะแนน"
802
-
803
- #: php/qmn_results.php:275
804
- msgid "Are you sure you want to delete these results?"
805
- msgstr "คุณแน่ใจหรือไม่ที่จะลบผลลัพธ์"
806
-
807
- #: php/qmn_results.php:280
808
- msgid "Delete Results"
809
- msgstr "ลบผลลัพธ์"
810
-
811
- #: php/qmn_options_results_page_tab.php:6
812
  msgid "Results Pages"
813
  msgstr "หน้าแสดงผลลัพธ์"
814
 
815
- #: php/qmn_options_results_page_tab.php:41
816
  msgid "The results page has been added successfully."
817
  msgstr "เพิ่มหน้าแสดงผลลัพธ์เรียบร้อย"
818
 
819
- #: php/qmn_options_results_page_tab.php:81
820
  msgid "The results page has been saved successfully."
821
  msgstr "บันทึกหน้าแสดงผลลัพธ์เรียบร้อย"
822
 
823
- #: php/qmn_options_results_page_tab.php:191
 
 
 
 
 
 
 
 
824
  msgid "Displays button to share on Facebook."
825
  msgstr ""
826
 
827
- #: php/qmn_options_results_page_tab.php:194
828
  msgid "Displays button to share on Twitter."
829
  msgstr ""
830
 
831
- #: php/qmn_options_results_page_tab.php:199
832
- #: php/qmn_options_results_page_tab.php:280
833
  msgid "Save Results Pages"
834
  msgstr "บันทึกหน้าแสดงผลลัพธ์"
835
 
836
- #: php/qmn_options_results_page_tab.php:200
837
- #: php/qmn_options_results_page_tab.php:285
838
  msgid "Add New Results Page"
839
  msgstr "เพิ่มหน้าแสดงผลลัพธ์ใหม่"
840
 
841
- #: php/qmn_options_results_page_tab.php:208
842
- #: php/qmn_options_results_page_tab.php:272
843
  msgid "Results Page Shown"
844
- msgstr "แสดงหน้าแสดงผลลัพธ์"
845
-
846
- #: php/qmn_options_results_page_tab.php:209
847
- #: php/qmn_options_results_page_tab.php:273
848
- msgid "Redirect URL (Beta)"
849
- msgstr ""
850
-
851
- #: php/qmn_options_results_page_tab.php:247
852
- msgid "Delete"
853
- msgstr "ลบ"
854
-
855
- #: php/qmn_options_results_page_tab.php:247
856
- msgid "Are you sure?"
857
- msgstr "คุณแน่ใจหรือไม่?"
858
-
859
- #: php/qmn_options_preview_tab.php:6
860
- msgid "Preview"
861
- msgstr "ดูตัวอย่าง"
862
-
863
- #: php/qmn-stats-page.php:29
864
- msgid "Quiz Statistics"
865
- msgstr "สถิติการทดสอบ"
866
-
867
- #: php/qmn-stats-page.php:68
868
- #, fuzzy
869
- msgid "Quiz Taken Stats"
870
- msgstr "สถิติทดสอบทั้งหมด"
871
-
872
- #: php/qmn_options_option_tab.php:6
873
- msgid "Options"
874
- msgstr "ตัวเลือก"
875
-
876
- #: php/qmn_options_option_tab.php:94
877
- msgid "The options has been updated successfully."
878
- msgstr "อัพเดทตัวเลือกเรียบร้อย"
879
-
880
- #: php/qmn_options_option_tab.php:135
881
- #: php/qmn_options_option_tab.php:286
882
- msgid "Save Options"
883
- msgstr "บันทึกตัวเลือก"
884
-
885
- #: php/qmn_options_option_tab.php:143
886
- msgid "Which system is this quiz graded on?"
887
- msgstr "รูปแบบการให้คะแนน"
888
-
889
- #: php/qmn_options_option_tab.php:145
890
- msgid "Correct/Incorrect"
891
- msgstr "ข้อถูก/ข้อผิด"
892
-
893
- #: php/qmn_options_option_tab.php:146
894
- msgid "Points"
895
- msgstr "คะแนนรวม"
896
-
897
- #: php/qmn_options_option_tab.php:151
898
- msgid "Should the user be required to be logged in to take this quiz?"
899
- msgstr "ผู้ใช้งานต้อง ลงชื่อเข้าระบบ เพื่อทำแบบทดสอบ?"
900
-
901
- #: php/qmn_options_option_tab.php:158
902
- msgid "How many questions per page would you like? (Leave 0 for all questions on one page)"
903
- msgstr "จำนวนคำถามต่อหน้า? (ใส่ 0 จะแสดงคำถามทั้งหมดในหน้าเดียว)"
904
-
905
- #: php/qmn_options_option_tab.php:164
906
- msgid "How many minutes does the user have to finish the quiz? (Leave 0 for no time limit)"
907
- msgstr "ให้เวลา กี่นาที สำหรับแบบทดสอบนี้? (ใส่ 0 จะไม่กำหนดเวลา)"
908
-
909
- #: php/qmn_options_option_tab.php:170
910
- msgid "How many times can a user take this quiz? (Leave 0 for as many times as the user wants to. Currently only works for registered users)"
911
- msgstr "จำกัดจำนวนครั้งที่ผู้ใช้งานทำแบบทดสอบนี้? (ใส่ 0 จะไม่จำกัดจำนวนครั้ง ใช้จำกัดได้เฉพาะผู้ใช้งานอยู่่ในระบบและลงชื่อเข้าใช้)"
912
-
913
- #: php/qmn_options_option_tab.php:176
914
- msgid "How many total entries can this quiz have? (Leave 0 for unlimited entries"
915
- msgstr "จำนวนรายการทั้งหมดที่แบบทดสอบมีได้? (ใส่ 0 จะไม่จำกัดจำนวน)"
916
-
917
- #: php/qmn_options_option_tab.php:182
918
- msgid "How many questions should be loaded for quiz? (Leave 0 to load all questions)"
919
- msgstr "กำหนดจำนวนคำถามที่เลือกมาใช้ในแบบทดสอบนี้ (ใส่ 0 จะเลือกคำถามทั้งหมด)"
920
-
921
- #: php/qmn_options_option_tab.php:188
922
- msgid "What time-frame should the user be able to access the quiz? (Leave blank if the user can access anytime)"
923
- msgstr "กำหนดช่วงเวลาที่อนุญาติให้เข้าทำแบบทดสอบ (ใส่ 0 จะไม่กำหนดเวลา)"
924
-
925
- #: php/qmn_options_option_tab.php:190
926
- msgid "start date"
927
- msgstr "วันที่เริ่มต้น"
928
-
929
- #: php/qmn_options_option_tab.php:193
930
- msgid "end date"
931
- msgstr "วันที่สิ้นสุด"
932
-
933
- #: php/qmn_options_option_tab.php:197
934
- msgid "Are the questions random? (Question Order will not apply if this is yes)"
935
- msgstr "สุ่มเลือกคำถาม? (ระบบจะไม่สนใจการเรียงลำดับคำถาม)"
936
-
937
- #: php/qmn_options_option_tab.php:199
938
- msgid "Random Questions"
939
- msgstr "สุ่มคำถาม"
940
-
941
- #: php/qmn_options_option_tab.php:200
942
- msgid "Random Questions And Answers"
943
- msgstr "สุ่มลำดับคำถามและคำตอบ"
944
-
945
- #: php/qmn_options_option_tab.php:205
946
- msgid "Would you like to ask for the contact information at the beginning or at the end of the quiz?"
947
- msgstr "ต้องการถามที่อยู่่เพื่อติดต่อกลับ ที่ตอนต้นหรือตอนท้ายของแบบทดสอบ?"
948
-
949
- #: php/qmn_options_option_tab.php:207
950
- msgid "Beginning"
951
- msgstr "ตอนต้น"
952
-
953
- #: php/qmn_options_option_tab.php:208
954
- msgid "End"
955
- msgstr "ตอนท้าย"
956
-
957
- #: php/qmn_options_option_tab.php:212
958
- msgid "If a logged-in user takes the quiz, would you like them to be able to edit contact information? If set to no, the fields will not show up for logged in users; however, the users information will be saved for the fields."
959
- msgstr "ถ้าผู้ทำแบบทดสอบเข้าใช้ระบบอยู่ คุณต้องการให้ผู้ใช้สามารถแก้ไขที่อยู่ติดต่อหรือไม่? หากเลือกไม่ ช่องต่างๆ จะไม่แสดงผล อย่างไรก็ตามข้อมูลต่างๆ จะยังคงถูกบันทึกช่องนั้นๆ ในฐานข้อมูล"
960
-
961
- #: php/qmn_options_option_tab.php:219
962
- msgid "Should we ask for users name?"
963
- msgstr "ถามชื่อผู้ใช้งาน?"
964
-
965
- #: php/qmn_options_option_tab.php:222
966
- #: php/qmn_options_option_tab.php:230
967
- #: php/qmn_options_option_tab.php:238
968
- #: php/qmn_options_option_tab.php:246
969
- msgid "Require"
970
- msgstr "บังคับ"
971
-
972
- #: php/qmn_options_option_tab.php:227
973
- msgid "Should we ask for users business?"
974
- msgstr "ถามสถานที่ทำงานของผู้ใช้?"
975
-
976
- #: php/qmn_options_option_tab.php:235
977
- msgid "Should we ask for users email?"
978
- msgstr "ถามอีเมล์ของผู้ใช้?"
979
-
980
- #: php/qmn_options_option_tab.php:243
981
- msgid "Should we ask for users phone number?"
982
- msgstr "ถามเบอร์โทรศัพท์ของผู้ใช้?"
983
-
984
- #: php/qmn_options_option_tab.php:251
985
- msgid "Would you like a place for the user to enter comments?"
986
- msgstr "ต้องการให้ผู้ใช้กรอกความคิดเห็น?"
987
-
988
- #: php/qmn_options_option_tab.php:258
989
- msgid "Show question number on quiz?"
990
- msgstr "แสดงหมายเลขข้อของแบบทดสอบ?"
991
-
992
- #: php/qmn_options_option_tab.php:265
993
- msgid "Show social media sharing buttons? (Twitter & Facebook)"
994
- msgstr "แสดงปุ่มสำหรับสื่อสังคมออนไลน์ (Twitter & Facebook)"
995
 
996
- #: php/qmn_options_option_tab.php:265
997
- msgid "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!"
998
  msgstr ""
999
 
1000
- #: php/qmn_options_option_tab.php:272
1001
- msgid "Disable question once user selects answer? (Currently only work on multiple choice)"
1002
- msgstr ""
1003
 
1004
- #: php/qmn_options_option_tab.php:279
1005
- msgid "Dynamically add class for incorrect/correct answer after user selects answer? (Currently only works on multiple choice)"
1006
- msgstr ""
1007
 
1008
- #: php/qmn_options_style_tab.php:6
1009
  msgid "Style"
1010
  msgstr "รูปแบบ"
1011
 
1012
- #: php/qmn_options_style_tab.php:26
1013
  msgid "The style has been saved successfully."
1014
  msgstr "บันทึกรูปแบบเรียบร้อย"
1015
 
1016
- #: php/qmn_options_style_tab.php:65
1017
  msgid "Quiz Styles"
1018
  msgstr "รูปแบบคำถาม"
1019
 
1020
- #: php/qmn_options_style_tab.php:66
1021
  msgid "Choose your style:"
1022
  msgstr "เลือกรูปแบบ:"
1023
 
1024
- #: php/qmn_options_style_tab.php:88
1025
  msgid "Custom"
1026
  msgstr "กำหนดเอง"
1027
 
1028
- #: php/qmn_options_style_tab.php:94
1029
- #: php/qmn_options_style_tab.php:106
1030
  msgid "Save Quiz Style"
1031
  msgstr "บันทึกรูปแบบคำถาม"
1032
 
1033
- #: php/qmn_options_style_tab.php:96
1034
  msgid "Custom Style CSS"
1035
  msgstr "กำหนด CSS เอง"
1036
 
1037
- #: php/qmn_options_style_tab.php:97
1038
- msgid "For detailed help and guidance along with a list of different classes used in this plugin, please visit the following link:"
 
 
1039
  msgstr "ข้อมูลความช่วยเหลือและห้องเรียนที่ใช้งานปลั้กอินนี้ กรุณาไปยังลิงค์:"
1040
 
1041
- #: php/qmn_results_details.php:117
1042
- msgid "Results"
1043
- msgstr "ผลลัพธ์"
1044
 
1045
- #: php/qmn_results_details.php:196
1046
- msgid "Create Certificate"
1047
- msgstr "สร้างประกาศนียบัตร"
1048
 
1049
- #: php/qmn_results_details.php:201
1050
- msgid "Download Certificate Here"
1051
- msgstr "ดาวน์โหลดประกาศนียบัตร"
1052
 
1053
- #: php/qmn_results_details.php:208
1054
- msgid "Certificate"
1055
- msgstr ""
1056
 
1057
- #: php/qmn_tools.php:90
1058
- msgid "There has been an error! Please try again."
1059
- msgstr ""
1060
 
1061
- #: php/qmn_tools.php:108
1062
- msgid "Quiz Has Been Restored!"
1063
- msgstr ""
1064
 
1065
- #: php/qmn_tools.php:113
1066
- msgid "Choose a quiz in the drop down and then click the button to restore a deleted quiz."
1067
- msgstr ""
1068
 
1069
- #: php/qmn_tools.php:123
1070
- msgid "Restore Quiz"
1071
- msgstr ""
1072
 
1073
- #: php/qmn_tools.php:152
1074
- #: php/qmn_tools.php:168
1075
- #, php-format
1076
- msgid "Previous %s Audits"
1077
- msgstr "การตรวจสอบภายใน %s ก่อนหน้า"
1078
 
1079
- #: php/qmn_tools.php:155
1080
- #: php/qmn_tools.php:162
1081
- #, php-format
1082
- msgid "Next %s Audits"
1083
- msgstr "Next %s Audits"
1084
 
1085
- #: php/qmn_tools.php:175
1086
- msgid "User"
1087
- msgstr "ผู้ใช้"
1088
 
1089
- #: php/qmn_tools.php:176
1090
- msgid "Action"
1091
- msgstr "กระทำ"
1092
 
1093
- #: php/qmn_tools.php:177
1094
- msgid "Time"
1095
- msgstr "เวลา"
1096
 
1097
- #: php/qmn_help.php:10
1098
- msgid "Need Help?"
1099
- msgstr "ต้องการความช่วยเหลือ?"
1100
 
1101
- #: php/qmn_help.php:11
1102
- msgid "Support"
1103
- msgstr "สนับสนุน"
1104
 
1105
- #: php/qmn_help.php:12
1106
- msgid "System Info"
1107
- msgstr "ข้อมูลระบบ"
1108
 
1109
- #: php/qmn_help.php:15
1110
- msgid "Help Page"
1111
- msgstr "หน้าช่วยเหลือ"
1112
 
1113
- #: php/qmn_help.php:38
1114
- msgid "Need help with the plugin? Try any of the following:"
1115
- msgstr "ต้องการความช่วยเหลือ? ลองทำสิ่งต่อไปนี้"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1116
 
1117
- #: php/qmn_question_types.php:7
 
 
 
 
1118
  msgid "Multiple Choice"
1119
  msgstr "หลายตัวเลือก"
1120
 
1121
- #: php/qmn_question_types.php:76
1122
  msgid "Horizontal Multiple Choice"
1123
  msgstr "ตัวเลือกแนวนอน"
1124
 
1125
- #: php/qmn_question_types.php:144
1126
  msgid "Drop Down"
1127
  msgstr "ดรอปดาวน์"
1128
 
1129
- #: php/qmn_question_types.php:209
1130
  msgid "Small Open Answer"
1131
  msgstr "คำตอบปลายเปิดแบบสั้น"
1132
 
1133
- #: php/qmn_question_types.php:258
1134
  msgid "Multiple Response"
1135
  msgstr "เลือกหลายคำตอบ"
1136
 
1137
- #: php/qmn_question_types.php:333
1138
  msgid "Large Open Answer"
1139
  msgstr "กรอกคำตอบแบบยาว"
1140
 
1141
- #: php/qmn_question_types.php:382
1142
  msgid "Text Block"
1143
  msgstr "ช่องข้อความ"
1144
 
1145
- #: php/qmn_question_types.php:397
1146
  msgid "Number"
1147
  msgstr "ตัวเลข"
1148
 
1149
- #: php/qmn_question_types.php:446
1150
  msgid "Accept"
1151
  msgstr "ยอมรับ"
1152
 
1153
- #: php/qmn_question_types.php:465
1154
  msgid "Captcha"
1155
  msgstr "Captcha"
1156
 
1157
- #: php/qmn_question_types.php:506
1158
  msgid "Horizontal Multiple Response"
1159
  msgstr "เลือกได้หลายคำตอบแนวนอน"
1160
 
1161
- #: php/qmn_question_types.php:580
1162
  msgid "Fill In The Blank"
1163
  msgstr ""
1164
 
1165
- #: php/qmn_alerts.php:19
1166
- msgid "Success!"
1167
- msgstr "สำเร็จ!"
 
 
 
 
1168
 
1169
- #: php/qmn_quiz_admin.php:189
 
 
 
 
 
 
 
 
1170
  msgid "Add New"
1171
  msgstr "เพิ่มใหม่"
1172
 
1173
- #: php/qmn_quiz_admin.php:207
1174
  #, php-format
1175
  msgid "One quiz"
1176
  msgid_plural "%s quizzes"
1177
  msgstr[0] "หนึ่งแบบทดสอบ"
1178
  msgstr[1] "%s แบบทดสอบ"
1179
 
1180
- #: php/qmn_quiz_admin.php:253
1181
- #: php/qmn_quiz_admin.php:304
 
 
 
 
1182
  msgid "URL"
1183
  msgstr ""
1184
 
1185
- #: php/qmn_quiz_admin.php:254
1186
- #: php/qmn_quiz_admin.php:305
1187
  msgid "Quiz Shortcode"
1188
  msgstr "Shortcode แบบทดสอบ"
1189
 
1190
- #: php/qmn_quiz_admin.php:255
1191
- #: php/qmn_quiz_admin.php:306
1192
  msgid "Leaderboard Shortcode"
1193
  msgstr "Shortcode กระดานผู้นำ"
1194
 
1195
- #: php/qmn_quiz_admin.php:256
1196
- #: php/qmn_quiz_admin.php:307
1197
  msgid "Quiz Views"
1198
  msgstr "ดูแบบทดสอบ"
1199
 
1200
- #: php/qmn_quiz_admin.php:257
1201
- #: php/qmn_quiz_admin.php:308
1202
  msgid "Quiz Taken"
1203
  msgstr "แบบทดสอบถูกทำ"
1204
 
1205
- #: php/qmn_quiz_admin.php:258
1206
- #: php/qmn_quiz_admin.php:309
1207
  msgid "Last Modified"
1208
  msgstr "แก้ไขล่าสุด"
1209
 
1210
- #: php/qmn_quiz_admin.php:271
1211
  msgid "Edit Name"
1212
  msgstr "แก้ไขชื่อ"
1213
 
1214
- #: php/qmn_quiz_admin.php:273
1215
  msgid "Edit"
1216
  msgstr "แก้ไข"
1217
 
1218
- #: php/qmn_quiz_admin.php:275
1219
- #: php/qmn_quiz_admin.php:404
 
 
 
1220
  msgid "Duplicate"
1221
  msgstr "ทำสำเนา"
1222
 
1223
- #: php/qmn_quiz_admin.php:366
1224
  msgid "Create New Quiz"
1225
  msgstr "สร้างแบบทดสอบใหม่"
1226
 
1227
- #: php/qmn_quiz_admin.php:380
1228
  msgid "Create Quiz"
1229
  msgstr "สร้างแบบทดสอบ"
1230
 
1231
- #: php/qmn_quiz_admin.php:386
1232
  msgid "Quiz Name:"
1233
  msgstr "ชื่อแบบทดสอบ:"
1234
 
1235
- #: php/qmn_quiz_admin.php:397
1236
  msgid "Duplicate this quiz?"
1237
  msgstr "ทำสำเนาแบบทดสอบนี้?"
1238
 
1239
- #: php/qmn_quiz_admin.php:399
1240
  msgid "Duplicate questions with quiz"
1241
  msgstr ""
1242
 
1243
- #: php/qmn_quiz_admin.php:401
1244
  msgid "Name Of New Quiz:"
1245
  msgstr "ชื่อแบบทดสอบใหม่"
1246
 
1247
- #: php/qmn_quiz_admin.php:410
1248
  msgid "Are you sure you want to delete this quiz?"
1249
  msgstr "คุณแน่ใจหรือไม่ที่จะลบแบบทดสอบ?"
1250
 
1251
- #: php/qmn_quiz_admin.php:415
1252
  msgid "Delete Quiz"
1253
  msgstr "ลบแบบทดสอบ"
1254
 
1255
- #: php/qmn_widgets.php:11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1256
  msgid "Quiz Master Next Leaderboard Widget"
1257
  msgstr "Leaderboard วิตเจ็ต"
1258
 
1259
- #: php/qmn_widgets.php:26
1260
  msgid "Widget Title"
1261
  msgstr "ชื่อหัวข้อวิตเจ็ต"
1262
 
1263
- #: php/qmn_widgets.php:30
1264
  msgid "Quiz ID"
1265
  msgstr "หมายเลขแบบทดสอบ"
1266
 
 
 
 
1267
  #~ msgid ""
1268
- #~ "Required currently only works on open answer, number, accept, and captcha "
1269
- #~ "question types"
1270
  #~ msgstr "บังคับได้เฉพาะคำถามแบบ คำตอบปลายเปิด ตัวเลข และ captcha เท่านั้น"
1271
 
1272
  #~ msgid "Edit Question"
@@ -1335,9 +1383,7 @@ msgstr "หมายเลขแบบทดสอบ"
1335
  #~ msgid "Total points user earned when taking quiz"
1336
  #~ msgstr "คะแนนรวมที่ได้รับจากการทำแบบทดสอบ"
1337
 
1338
- #~ msgid ""
1339
- #~ "The percent score for the quiz showing percent of total quetions answered "
1340
- #~ "correctly"
1341
  #~ msgstr "เปอร์เซ็นต์แสดงจำนวนข้อที่ตอบถูก"
1342
 
1343
  #~ msgid "It appears that this quiz is not set up correctly."
@@ -1398,6 +1444,6 @@ msgstr "หมายเลขแบบทดสอบ"
1398
  #~ msgstr "ข้อเสนอแนะที่ได้รับ"
1399
 
1400
  #~ msgid ""
1401
- #~ "Please go to the Quiz Results page and click on the View link from the "
1402
- #~ "result you wish to see."
1403
  #~ msgstr "กรุณาไปยังหน้าผลลัพท์ของแบบทดสอบ และ คลิ้กลิงค์สำหรับดู จากรายการผลลัพท์ที่ต้องการ"
5
  msgstr ""
6
  "Project-Id-Version: Quiz Master Next\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2015-06-11 16:18-0500\n"
9
  "PO-Revision-Date: \n"
10
  "Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
11
  "Language-Team: My Local Webstop <fpcorso@mylocalwebstop.com>\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.8.1\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
 
26
+ #: mlw_quizmaster2.php:217 php/qmn_quiz_admin.php:196
27
  msgid "Quizzes"
28
  msgstr "แบบทดสอบ"
29
 
31
  msgid "Quiz Settings"
32
  msgstr "ตั้งค่าแบบทดสอบ"
33
 
34
+ #: mlw_quizmaster2.php:219 php/qmn_results.php:159 php/qmn_results_details.php:20
35
  msgid "Quiz Results"
36
  msgstr "ผลลัพธ์แบบทดสอบ"
37
 
43
  msgid "Settings"
44
  msgstr ""
45
 
46
+ #: mlw_quizmaster2.php:222 php/qmn_options_tools_tab.php:13 php/qmn_tools.php:65
47
  msgid "Tools"
48
  msgstr "เครื่องมือ"
49
 
59
  msgid "Help"
60
  msgstr "ช่วยเหลือ"
61
 
62
+ #: mlw_quizmaster2.php:228 mlw_quizmaster2.php:229
 
63
  msgid "QMN About"
64
  msgstr "เกี่ยวกับ QMN"
65
 
66
+ #: php/qmn-stats-page.php:29
67
+ msgid "Quiz Statistics"
68
+ msgstr "สถิติการทดสอบ"
69
 
70
+ #: php/qmn-stats-page.php:68
71
+ #, fuzzy
72
+ msgid "Quiz Taken Stats"
73
+ msgstr "สถิติทดสอบทั้งหมด"
74
 
75
+ #: php/qmn_addons.php:60
76
+ msgid "These addons extend the functionality of Quiz Master Next"
77
+ msgstr "ส่วนเพิ่มเติม เหล่านี้ ขยายการทำงานของ Quiz Master Next"
78
+
79
+ #: php/qmn_addons.php:103
80
+ msgid "Browse All Addons"
81
+ msgstr "เลือกส่วนเพิ่มเติมทั้งหมด"
82
+
83
+ #: php/qmn_addons.php:117
84
+ msgid "Featured Addons"
85
+ msgstr "ส่วนเพิ่มเติมแนะนำ"
86
+
87
+ #: php/qmn_alerts.php:37
88
+ msgid "Success!"
89
+ msgstr "สำเร็จ!"
90
+
91
+ #: php/qmn_alerts.php:41 php/qmn_quiz_options.php:96
92
+ msgid "Error!"
93
+ msgstr "ผิดพลาด!"
94
+
95
+ #: php/qmn_credits.php:30
96
+ msgid "Welcome To Quiz Master Next"
97
+ msgstr "ยินดีต้อนรับสู่ Quiz Master Next"
98
+
99
+ #: php/qmn_credits.php:31
100
+ msgid "Thank you for updating!"
101
+ msgstr "ขอบคุณที่อัพเดท!"
102
+
103
+ #: php/qmn_credits.php:35
104
+ msgid "What's New!"
105
+ msgstr "มีอะไรใหม่!"
106
+
107
+ #: php/qmn_credits.php:37
108
+ msgid "Changelog"
109
+ msgstr "บันทึกการเปลี่ยนแปลง"
110
+
111
+ #: php/qmn_dashboard_widgets.php:16
112
+ msgid "Quiz Master Next Snapshot"
113
+ msgstr "Quiz Master Next Snapshot"
114
+
115
+ #: php/qmn_dashboard_widgets.php:180
116
+ msgid "quizzes taken today"
117
+ msgstr "แบบทดสอบที่มีคนทำในวันนี้"
118
+
119
+ #: php/qmn_dashboard_widgets.php:199
120
+ msgid "quizzes taken last 7 days"
121
+ msgstr "แบบทดสอบที่มีคนทำ ย้อนหลัง 7 วัน"
122
+
123
+ #: php/qmn_dashboard_widgets.php:218
124
+ #, fuzzy
125
+ msgid "quizzes taken last 30 days"
126
+ msgstr "แบบทดสอบที่มีคนทำ ย้อนหลัง 7 วัน"
127
+
128
+ #: php/qmn_dashboard_widgets.php:237
129
+ #, fuzzy
130
+ msgid "quizzes taken last 120 days"
131
+ msgstr "แบบทดสอบที่มีคนทำ ย้อนหลัง 7 วัน"
132
+
133
+ #: php/qmn_dashboard_widgets.php:256
134
+ msgid "total active quizzes"
135
+ msgstr "จำนวนแบบทดสอบที่ใช้งานทั้งหมด"
136
+
137
+ #: php/qmn_dashboard_widgets.php:262
138
+ msgid "total active questions"
139
+ msgstr "จำนวนคำถามที่ใช้งานทั้งหมด"
140
+
141
+ #: php/qmn_dashboard_widgets.php:268
142
+ msgid "most popular quiz"
143
+ msgstr "แบบทดสอบเป็นที่นิยมสูงสุด"
144
+
145
+ #: php/qmn_dashboard_widgets.php:274
146
+ msgid "least popular quiz"
147
+ msgstr "แบบทดสอบเป็นที่นิยมต่ำสุด"
148
+
149
+ #: php/qmn_help.php:13
150
+ msgid "Need Help?"
151
+ msgstr "ต้องการความช่วยเหลือ?"
152
+
153
+ #: php/qmn_help.php:14
154
+ msgid "Support"
155
+ msgstr "สนับสนุน"
156
+
157
+ #: php/qmn_help.php:15
158
+ msgid "System Info"
159
+ msgstr "ข้อมูลระบบ"
160
+
161
+ #: php/qmn_help.php:18
162
+ msgid "Help Page"
163
+ msgstr "หน้าช่วยเหลือ"
164
+
165
+ #: php/qmn_help.php:48
166
+ msgid "Need help with the plugin? Try any of the following:"
167
+ msgstr "ต้องการความช่วยเหลือ? ลองทำสิ่งต่อไปนี้"
168
+
169
+ #: php/qmn_options_certificate_tab.php:15
170
+ msgid "Certificate (Beta)"
171
+ msgstr "ประกาศนียบัตร (รุ่นทดสอบ)"
172
+
173
+ #: php/qmn_options_certificate_tab.php:47
174
+ msgid "The certificate has been updated successfully."
175
+ msgstr "อัพเดทประกาศนียบัตรเรียบร้อย"
176
+
177
+ #: php/qmn_options_certificate_tab.php:60 php/qmn_options_email_tab.php:68
178
+ #: php/qmn_options_email_tab.php:127 php/qmn_options_email_tab.php:191
179
+ #: php/qmn_options_leaderboard_tab.php:52 php/qmn_options_option_tab.php:120
180
+ #: php/qmn_options_questions_tab.php:139 php/qmn_options_questions_tab.php:166
181
+ #: php/qmn_options_questions_tab.php:250 php/qmn_options_questions_tab.php:343
182
+ #: php/qmn_options_results_page_tab.php:68 php/qmn_options_results_page_tab.php:108
183
+ #: php/qmn_options_style_tab.php:52 php/qmn_options_text_tab.php:68
184
+ #: php/qmn_options_tools_tab.php:50 php/qmn_quiz_creator.php:385 php/qmn_quiz_creator.php:451
185
+ #: php/qmn_quiz_creator.php:493 php/qmn_quiz_creator.php:651 php/qmn_quiz_creator.php:716
186
+ #: php/qmn_results.php:43
187
  #, php-format
188
+ msgid ""
189
+ "There has been an error in this action. Please share this with the developer. Error Code: %s"
190
  msgstr "เกิดข้อผิดพลาดในการทำงาน โปรดแชร์ให้กับผู้พัฒนา หมายเลขข้อผิดพลาด Error Code: %s"
191
 
192
+ #: php/qmn_options_certificate_tab.php:76
193
+ msgid "Enter title here"
194
+ msgstr "กรอกหัวข้อที่นี่"
195
+
196
+ #: php/qmn_options_certificate_tab.php:76 php/qmn_options_email_tab.php:86
197
+ #: php/qmn_options_email_tab.php:104
198
  msgid "Enter text here"
199
  msgstr "กรอกข้อความที่นี่"
200
 
201
+ #: php/qmn_options_certificate_tab.php:80
202
+ msgid "Quiz Certificate (Beta)"
203
+ msgstr "ประกาศนียบัตรสำหรับแบบทดสอบ (รุ่นทดลอง)"
204
+
205
+ #: php/qmn_options_certificate_tab.php:81
206
+ msgid ""
207
+ "Enter in your text here to fill in the certificate for this quiz. Be sure to enter in the link "
208
+ "variable into the templates on the Quiz Text tab so the user can access the certificate."
209
+ msgstr ""
210
+ "กรอกข้อความที่นี่เพื่อเติมลงในประกาศนียบัตรสำหรับแบบทดสอบนี้ โปรดใส่ลิงค์ไปยังตัวแปรในแม่แบบ (Templates) ในแท็บ "
211
+ "ข้อความแบบทดสอบ เพื่อให้ผู้ใช้งานสามารถเข้าสู่ประกาศนียบัตรได้"
212
+
213
+ #: php/qmn_options_certificate_tab.php:82
214
+ msgid "These fields cannot contain HTML."
215
+ msgstr "ไม่สามารถใช้ HTML ในช่องนี้"
216
+
217
+ #: php/qmn_options_certificate_tab.php:83 php/qmn_options_certificate_tab.php:139
218
+ msgid "Save Certificate Options"
219
+ msgstr "บันทึกการตั้งค่าประกาศนียบัตร"
220
+
221
+ #: php/qmn_options_certificate_tab.php:91
222
+ msgid "Enable Certificates For This Quiz?"
223
+ msgstr "ใช้งานประกาศนียบัตรสำหรับแบบทดสอบนี้?"
224
+
225
+ #: php/qmn_options_certificate_tab.php:93 php/qmn_options_email_tab.php:355
226
+ #: php/qmn_options_email_tab.php:362 php/qmn_options_option_tab.php:166
227
+ #: php/qmn_options_option_tab.php:227 php/qmn_options_option_tab.php:234
228
+ #: php/qmn_options_option_tab.php:242 php/qmn_options_option_tab.php:250
229
+ #: php/qmn_options_option_tab.php:258 php/qmn_options_option_tab.php:266
230
+ #: php/qmn_options_option_tab.php:273 php/qmn_options_option_tab.php:280
231
+ #: php/qmn_options_option_tab.php:287 php/qmn_options_option_tab.php:294
232
+ #: php/qmn_options_questions_tab.php:603 php/qmn_options_results_page_tab.php:264
233
+ msgid "Yes"
234
+ msgstr "ใช่"
235
+
236
+ #: php/qmn_options_certificate_tab.php:94 php/qmn_options_email_tab.php:356
237
+ #: php/qmn_options_email_tab.php:363 php/qmn_options_option_tab.php:167
238
+ #: php/qmn_options_option_tab.php:214 php/qmn_options_option_tab.php:228
239
+ #: php/qmn_options_option_tab.php:236 php/qmn_options_option_tab.php:244
240
+ #: php/qmn_options_option_tab.php:252 php/qmn_options_option_tab.php:260
241
+ #: php/qmn_options_option_tab.php:267 php/qmn_options_option_tab.php:274
242
+ #: php/qmn_options_option_tab.php:281 php/qmn_options_option_tab.php:288
243
+ #: php/qmn_options_option_tab.php:295 php/qmn_options_questions_tab.php:604
244
+ #: php/qmn_options_results_page_tab.php:264
245
+ msgid "No"
246
+ msgstr "ไม่ใช่"
247
+
248
+ #: php/qmn_options_certificate_tab.php:99
249
+ msgid "Certificate Title"
250
+ msgstr "หัวข้อประกาศนียบัตร"
251
+
252
+ #: php/qmn_options_certificate_tab.php:106
253
+ msgid "Message Displayed On Certificate"
254
+ msgstr "ข้อความแสดงบนประกาศนียบัตร"
255
+
256
+ #: php/qmn_options_certificate_tab.php:108 php/qmn_options_leaderboard_tab.php:105
257
+ #: php/qmn_options_text_tab.php:199 php/qmn_options_text_tab.php:209
258
+ #: php/qmn_options_text_tab.php:219 php/qmn_options_text_tab.php:229
259
+ #: php/qmn_options_text_tab.php:239 php/qmn_options_text_tab.php:249
260
+ #: php/qmn_options_text_tab.php:259 php/qmn_options_text_tab.php:269
261
+ #: php/qmn_options_text_tab.php:282 php/qmn_options_text_tab.php:299
262
+ msgid "Allowed Variables:"
263
+ msgstr "ตัวแปรที่อนุญาตื"
264
+
265
+ #: php/qmn_options_certificate_tab.php:126
266
+ msgid "URL To Logo (Must be JPG, JPEG, PNG or GIF)"
267
+ msgstr "URL ไปยังโลโก้ (ชนิด JPG, JPEG, PNG or GIF)"
268
+
269
+ #: php/qmn_options_certificate_tab.php:133
270
+ msgid "URL To Background Img (Must be JPG, JPEG, PNG or GIF)"
271
+ msgstr "URL ไปยังภาพพื้นหลัง (ชนิด JPG, JPEG, PNG or GIF)"
272
+
273
+ #: php/qmn_options_email_tab.php:13
274
+ msgid "Emails"
275
+ msgstr "อีเมล์"
276
+
277
+ #: php/qmn_options_email_tab.php:55 php/qmn_options_email_tab.php:114
278
+ msgid "The email has been added successfully."
279
+ msgstr "เพิ่มอีเมล์เรียบร้อย"
280
+
281
+ #: php/qmn_options_email_tab.php:178
282
  msgid "The email has been updated successfully."
283
  msgstr "อัพเดทอีเมล์เรียบร้อย"
284
 
285
+ #: php/qmn_options_email_tab.php:258 php/qmn_options_leaderboard_tab.php:63
286
+ #: php/qmn_options_results_page_tab.php:148 php/qmn_options_text_tab.php:105
287
  msgid "Template Variables"
288
  msgstr "ตัวแปรแม่แบบ"
289
 
290
+ #: php/qmn_options_email_tab.php:261 php/qmn_options_results_page_tab.php:151
291
+ #: php/qmn_options_text_tab.php:108
292
  msgid "Score for the quiz when using points"
293
  msgstr "คะแนนแบบทดสอบ ใช้งานคะแนน"
294
 
295
+ #: php/qmn_options_email_tab.php:264 php/qmn_options_results_page_tab.php:154
296
+ #: php/qmn_options_text_tab.php:111
297
  msgid "The average amount of points user had per question"
298
  msgstr "คะแนนเฉลี่ยของผู้ใช้งาน ต่อคำถาม"
299
 
300
+ #: php/qmn_options_email_tab.php:267 php/qmn_options_results_page_tab.php:157
301
+ #: php/qmn_options_text_tab.php:114
302
  msgid "The number of correct answers the user had"
303
  msgstr "จำนวนข้อถูกของผู้ใช้"
304
 
305
+ #: php/qmn_options_email_tab.php:270 php/qmn_options_results_page_tab.php:160
306
+ #: php/qmn_options_text_tab.php:117
307
  msgid "The total number of questions in the quiz"
308
  msgstr "จำนวนคำถามทั้งหมดของแบบทดสอบนี้"
309
 
310
+ #: php/qmn_options_email_tab.php:273 php/qmn_options_results_page_tab.php:163
311
+ #: php/qmn_options_text_tab.php:120
312
  msgid "Score for the quiz when using correct answers"
313
  msgstr "คะแนนแบบทดสอบ ใช้งานคำตอบที่ถูก"
314
 
315
+ #: php/qmn_options_email_tab.php:276 php/qmn_options_results_page_tab.php:166
316
+ #: php/qmn_options_text_tab.php:123
317
  msgid "The name the user entered before the quiz"
318
  msgstr "ชื่อที่ผู้ใช้กรอกก่อนทำแบบทดสอบ"
319
 
320
+ #: php/qmn_options_email_tab.php:279 php/qmn_options_results_page_tab.php:169
321
+ #: php/qmn_options_text_tab.php:126
322
  msgid "The business the user entered before the quiz"
323
  msgstr "ที่ทำงานที่ผู้ใช้กรอกก่อนทำแบบทดสอบ"
324
 
325
+ #: php/qmn_options_email_tab.php:282 php/qmn_options_results_page_tab.php:172
326
+ #: php/qmn_options_text_tab.php:129
327
  msgid "The phone number the user entered before the quiz"
328
  msgstr "โทรศัพท์ที่ผู้ใช้กรอกก่อนทำแบบทดสอบ"
329
 
330
+ #: php/qmn_options_email_tab.php:285 php/qmn_options_results_page_tab.php:175
331
+ #: php/qmn_options_text_tab.php:132
332
  msgid "The email the user entered before the quiz"
333
  msgstr "อีเมล์ที่ผู้ใช้กรอกก่อนทำแบบทดสอบ"
334
 
335
+ #: php/qmn_options_email_tab.php:288 php/qmn_options_leaderboard_tab.php:91
336
+ #: php/qmn_options_results_page_tab.php:178 php/qmn_options_text_tab.php:135
337
  msgid "The name of the quiz"
338
  msgstr "ชื่อของแบบทดสอบ"
339
 
340
+ #: php/qmn_options_email_tab.php:291 php/qmn_options_results_page_tab.php:181
341
+ #: php/qmn_options_text_tab.php:138
342
  msgid "Shows the question, the answer the user provided, and the correct answer"
343
  msgstr "แสดงคำถาม, คำตอบจากผู้ใช้, และข้อที่ถูกต้อง"
344
 
345
+ #: php/qmn_options_email_tab.php:294 php/qmn_options_results_page_tab.php:184
346
+ #: php/qmn_options_text_tab.php:141
347
  msgid "The comments the user entered into comment box if enabled"
348
  msgstr "ข้อแนะนำที่ได้รับจากผู้ใช้"
349
 
350
+ #: php/qmn_options_email_tab.php:297 php/qmn_options_text_tab.php:144
351
+ msgid "The amount of time user spent on quiz in seconds"
352
+ msgstr ""
353
+
354
+ #: php/qmn_options_email_tab.php:301 php/qmn_options_text_tab.php:147
355
+ msgid "The amount of time user spent on quiz in minutes"
356
+ msgstr ""
357
 
358
+ #: php/qmn_options_email_tab.php:304 php/qmn_options_results_page_tab.php:193
359
+ #: php/qmn_options_text_tab.php:151
360
  msgid "The link to the certificate after completing the quiz"
361
  msgstr "ลิงค์ไปสู่ประกาศนียบัตรหลังทำแบบทดสอบเรียบร้อย"
362
 
363
+ #: php/qmn_options_email_tab.php:307 php/qmn_options_results_page_tab.php:196
364
+ #: php/qmn_options_text_tab.php:154
365
  msgid "The amount of points a specific category earned."
366
  msgstr "คะแนนเฉพาะจากหมวดหมู่"
367
 
368
+ #: php/qmn_options_email_tab.php:310 php/qmn_options_results_page_tab.php:199
369
+ #: php/qmn_options_text_tab.php:157
370
  msgid "The score a specific category earned."
371
  msgstr "คะแนนเฉพาะจากหมวดหมู่"
372
 
373
+ #: php/qmn_options_email_tab.php:313 php/qmn_options_results_page_tab.php:202
374
+ #: php/qmn_options_text_tab.php:160
375
  msgid "The average points from all categories."
376
  msgstr "คะแนนเฉลี่ยจากหมวดหมู่ทั้งหมด"
377
 
378
+ #: php/qmn_options_email_tab.php:316 php/qmn_options_results_page_tab.php:205
379
+ #: php/qmn_options_text_tab.php:163
380
  msgid "The average score from all categories."
381
  msgstr "คะแนนเฉลี่ยจากหมวดหมู่ทั้งหมด"
382
 
383
+ #: php/qmn_options_email_tab.php:319 php/qmn_options_text_tab.php:166
384
  msgid "The question that the user answered"
385
  msgstr "คำถามที่ผู้ใช้ตอบ"
386
 
387
+ #: php/qmn_options_email_tab.php:322 php/qmn_options_text_tab.php:169
388
  msgid "The answer the user gave for the question"
389
  msgstr "คำตอบที่ผู้ใช้ตอบคำถาม"
390
 
391
+ #: php/qmn_options_email_tab.php:325 php/qmn_options_text_tab.php:172
392
  msgid "The correct answer for the question"
393
  msgstr "คำตอบที่ถูกต้อง"
394
 
395
+ #: php/qmn_options_email_tab.php:328 php/qmn_options_text_tab.php:175
396
  msgid "The comments the user provided in the comment field for the question"
397
  msgstr "ข้อเสนอแนะที่ผู้ใช้กรอกสำหรับคำถาม"
398
 
399
+ #: php/qmn_options_email_tab.php:331 php/qmn_options_text_tab.php:178
400
  msgid "Reason why the correct answer is the correct answer"
401
  msgstr "เหตุผลอธิบายข้อถูก"
402
 
403
+ #: php/qmn_options_email_tab.php:334 php/qmn_options_text_tab.php:181
404
  msgid "The Current Date"
405
  msgstr "วันที่ปัจจุบัน"
406
 
407
+ #: php/qmn_options_email_tab.php:349 php/qmn_options_email_tab.php:548
 
408
  msgid "Save Email Templates And Settings"
409
  msgstr "บันทึกแม่แบบอีเมล์และการตั้งค่า"
410
 
411
+ #: php/qmn_options_email_tab.php:353
412
  msgid "Send user email upon completion?"
413
  msgstr "ส่งอีเมล์หาผู้ใช้เมื่อเสร็จเรียบร้อย"
414
 
415
+ #: php/qmn_options_email_tab.php:360
 
 
 
 
 
 
 
 
 
 
416
  msgid "Send admin email upon completion?"
417
  msgstr "ส่งอีเมล์หาผู้ดูแลระบบเมื่อเสร็จเรียบร้อย"
418
 
419
+ #: php/qmn_options_email_tab.php:367
420
  msgid "What emails should we send the admin email to? Separate emails with a comma."
421
  msgstr "อีเมล์ใดที่จะใช้ส่งไปยังผู้ดูแลระบบ แยกแต่ละอีเมล์ด้วยเครื่องหมายลูกน่ำ"
422
 
423
+ #: php/qmn_options_email_tab.php:371
424
  msgid "What is the From Name for the email sent to users and admin?"
425
  msgstr "ชื่อฟอร์มใดที่ต้องการใช้ส่งอีเมล์ไปยังผู้ใช้และผู้ดูแลระบบ"
426
 
427
+ #: php/qmn_options_email_tab.php:377
428
  msgid "Email Sent To User"
429
  msgstr "ส่งอีเมล์ให้ผู้ใช้เรียบร้อย"
430
 
431
+ #: php/qmn_options_email_tab.php:378 php/qmn_options_email_tab.php:456
 
432
  msgid "Add New User Email"
433
  msgstr "เพิ่มอีเมล์ผู้ใช่ใหม่"
434
 
435
+ #: php/qmn_options_email_tab.php:383 php/qmn_options_email_tab.php:449
436
+ #: php/qmn_options_email_tab.php:470 php/qmn_options_email_tab.php:536
437
+ #: php/qmn_options_results_page_tab.php:223 php/qmn_options_results_page_tab.php:287
 
438
  msgid "Score Greater Than Or Equal To"
439
  msgstr "คะแนนมากกว่าหรือเท่ากับ"
440
 
441
+ #: php/qmn_options_email_tab.php:384 php/qmn_options_email_tab.php:450
442
+ #: php/qmn_options_email_tab.php:471 php/qmn_options_email_tab.php:537
443
+ #: php/qmn_options_results_page_tab.php:224 php/qmn_options_results_page_tab.php:288
 
444
  msgid "Score Less Than Or Equal To"
445
  msgstr "คะแนนน้อยกว่าหรือเท่ากับ"
446
 
447
+ #: php/qmn_options_email_tab.php:385 php/qmn_options_email_tab.php:451
448
+ #: php/qmn_options_email_tab.php:472 php/qmn_options_email_tab.php:538
 
 
449
  msgid "Subject"
450
  msgstr "หัวเรื่อง"
451
 
452
+ #: php/qmn_options_email_tab.php:386 php/qmn_options_email_tab.php:452
453
+ #: php/qmn_options_email_tab.php:473 php/qmn_options_email_tab.php:539
 
 
454
  msgid "Email To Send"
455
  msgstr "อีเมล์ที่จะส่ง"
456
 
457
+ #: php/qmn_options_email_tab.php:464
458
  msgid "Email Sent To Admin"
459
  msgstr "ส่งอีเมล์ไปหาผู้ดูแลระบบแล้ว"
460
 
461
+ #: php/qmn_options_email_tab.php:465 php/qmn_options_email_tab.php:543
 
462
  msgid "Add New Admin Email"
463
  msgstr "เพื่ออีเมล์ผู้ดูแลระบบใหม่"
464
 
465
+ #: php/qmn_options_leaderboard_tab.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
466
  msgid "Leaderboard"
467
  msgstr "กระดานผู้นำ"
468
 
469
+ #: php/qmn_options_leaderboard_tab.php:39
470
  msgid "The leaderboards has been updated successfully."
471
  msgstr "อัพเดทกระดานผู้นำเรียบร้อย"
472
 
473
+ #: php/qmn_options_leaderboard_tab.php:66
474
  msgid "The name of the user who is in first place"
475
  msgstr "ชื่อผู้ใช้งานที่อยู่ในลำดับที่ 1"
476
 
477
+ #: php/qmn_options_leaderboard_tab.php:67
478
  msgid "The score from the first place's quiz"
479
  msgstr "คะแนนจากแบบทดสอบลำดับที่ 1"
480
 
481
+ #: php/qmn_options_leaderboard_tab.php:71
482
  msgid "The name of the user who is in second place"
483
  msgstr "ชื่อผู้ใช้งานที่อยู่ในลำดับที่ 2"
484
 
485
+ #: php/qmn_options_leaderboard_tab.php:72
486
  msgid "The score from the second place's quiz"
487
  msgstr "คะแนนจากแบบทดสอบลำดับที่ 2"
488
 
489
+ #: php/qmn_options_leaderboard_tab.php:76
490
  msgid "The name of the user who is in third place"
491
  msgstr "ชื่อผู้ใช้งานที่อยู่ในลำดับที่ 3"
492
 
493
+ #: php/qmn_options_leaderboard_tab.php:77
494
  msgid "The score from the third place's quiz"
495
  msgstr "คะแนนจากแบบทดสอบลำดับที่ 3"
496
 
497
+ #: php/qmn_options_leaderboard_tab.php:81
498
  msgid "The name of the user who is in fourth place"
499
  msgstr "ชื่อผู้ใช้งานที่อยู่ในลำดับที่ 4"
500
 
501
+ #: php/qmn_options_leaderboard_tab.php:82
502
  msgid "The score from the fourth place's quiz"
503
  msgstr "คะแนนจากแบบทดสอบลำดับที่ 4"
504
 
505
+ #: php/qmn_options_leaderboard_tab.php:86
506
  msgid "The name of the user who is in fifth place"
507
  msgstr "ชื่อผู้ใช้งานที่อยู่ในลำดับที่ 5"
508
 
509
+ #: php/qmn_options_leaderboard_tab.php:87
510
  msgid "The score from the fifth place's quiz"
511
  msgstr "คะแนนจากแบบทดสอบลำดับที่ 5"
512
 
513
+ #: php/qmn_options_leaderboard_tab.php:94 php/qmn_options_leaderboard_tab.php:122
 
514
  msgid "Save Leaderboard Options"
515
  msgstr "บันทึกการตั้งค่ากระดานผู้นำ"
516
 
517
+ #: php/qmn_options_leaderboard_tab.php:103
518
  msgid "Leaderboard Template"
519
  msgstr "แม่แบบกระดานผู้นำ"
520
 
521
+ #: php/qmn_options_option_tab.php:13
522
+ msgid "Options"
523
+ msgstr "ตัวเลือก"
524
 
525
+ #: php/qmn_options_option_tab.php:107
526
+ msgid "The options has been updated successfully."
527
+ msgstr "อัพเดทตัวเลือกเรียบร้อย"
528
 
529
+ #: php/qmn_options_option_tab.php:148 php/qmn_options_option_tab.php:299
530
+ msgid "Save Options"
531
+ msgstr "บันทึกตัวเลือก"
532
 
533
+ #: php/qmn_options_option_tab.php:156
534
+ msgid "Which system is this quiz graded on?"
535
+ msgstr "รูปแบบการให้คะแนน"
536
 
537
+ #: php/qmn_options_option_tab.php:158
538
+ msgid "Correct/Incorrect"
539
+ msgstr "ข้อถูก/ข้อผิด"
540
 
541
+ #: php/qmn_options_option_tab.php:159
542
+ msgid "Points"
543
+ msgstr "คะแนนรวม"
544
 
545
+ #: php/qmn_options_option_tab.php:160 php/qmn_results.php:265
546
+ msgid "Not Graded"
547
+ msgstr "ไม่คิดคะแนน"
 
548
 
549
+ #: php/qmn_options_option_tab.php:164
550
+ msgid "Should the user be required to be logged in to take this quiz?"
551
+ msgstr "ผู้ใช้งานต้อง ลงชื่อเข้าระบบ เพื่อทำแบบทดสอบ?"
552
 
553
+ #: php/qmn_options_option_tab.php:171
554
+ msgid "How many questions per page would you like? (Leave 0 for all questions on one page)"
555
+ msgstr "จำนวนคำถามต่อหน้า? (ใส่ 0 จะแสดงคำถามทั้งหมดในหน้าเดียว)"
556
 
557
+ #: php/qmn_options_option_tab.php:177
558
+ msgid "How many minutes does the user have to finish the quiz? (Leave 0 for no time limit)"
559
+ msgstr "ให้เวลา กี่นาที สำหรับแบบทดสอบนี้? (ใส่ 0 จะไม่กำหนดเวลา)"
560
 
561
+ #: php/qmn_options_option_tab.php:183
562
+ msgid ""
563
+ "How many times can a user take this quiz? (Leave 0 for as many times as the user wants to. "
564
+ "Currently only works for registered users)"
565
+ msgstr ""
566
+ "จำกัดจำนวนครั้งที่ผู้ใช้งานทำแบบทดสอบนี้? (ใส่ 0 จะไม่จำกัดจำนวนครั้ง ใช้จำกัดได้เฉพาะผู้ใช้งานอยู่่ในระบบและลงชื่อเข้าใช้)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
567
 
568
+ #: php/qmn_options_option_tab.php:189
569
+ msgid "How many total entries can this quiz have? (Leave 0 for unlimited entries"
570
+ msgstr "จำนวนรายการทั้งหมดที่แบบทดสอบมีได้? (ใส่ 0 จะไม่จำกัดจำนวน)"
571
 
572
+ #: php/qmn_options_option_tab.php:195
573
+ msgid "How many questions should be loaded for quiz? (Leave 0 to load all questions)"
574
+ msgstr "กำหนดจำนวนคำถามที่เลือกมาใช้ในแบบทดสอบนี้ (ใส่ 0 จะเลือกคำถามทั้งหมด)"
575
 
576
+ #: php/qmn_options_option_tab.php:201
577
+ msgid ""
578
+ "What time-frame should the user be able to access the quiz? (Leave blank if the user can access "
579
+ "anytime)"
580
+ msgstr "กำหนดช่วงเวลาที่อนุญาติให้เข้าทำแบบทดสอบ (ใส่ 0 จะไม่กำหนดเวลา)"
581
 
582
+ #: php/qmn_options_option_tab.php:203
583
+ msgid "start date"
584
+ msgstr "วันที่เริ่มต้น"
 
585
 
586
+ #: php/qmn_options_option_tab.php:206
587
+ msgid "end date"
588
+ msgstr "วันที่สิ้นสุด"
 
589
 
590
+ #: php/qmn_options_option_tab.php:210
591
+ msgid "Are the questions random? (Question Order will not apply if this is yes)"
592
+ msgstr "สุ่มเลือกคำถาม? (ระบบจะไม่สนใจการเรียงลำดับคำถาม)"
593
 
594
+ #: php/qmn_options_option_tab.php:212
595
+ msgid "Random Questions"
596
+ msgstr "สุ่มคำถาม"
597
 
598
+ #: php/qmn_options_option_tab.php:213
599
+ msgid "Random Questions And Answers"
600
+ msgstr "สุ่มลำดับคำถามและคำตอบ"
601
 
602
+ #: php/qmn_options_option_tab.php:218
603
+ msgid ""
604
+ "Would you like to ask for the contact information at the beginning or at the end of the quiz?"
605
+ msgstr "ต้องการถามที่อยู่่เพื่อติดต่อกลับ ที่ตอนต้นหรือตอนท้ายของแบบทดสอบ?"
606
 
607
+ #: php/qmn_options_option_tab.php:220
608
+ msgid "Beginning"
609
+ msgstr "ตอนต้น"
610
 
611
+ #: php/qmn_options_option_tab.php:221
612
+ msgid "End"
613
+ msgstr "ตอนท้าย"
614
 
615
+ #: php/qmn_options_option_tab.php:225
616
+ msgid ""
617
+ "If a logged-in user takes the quiz, would you like them to be able to edit contact information? "
618
+ "If set to no, the fields will not show up for logged in users; however, the users information "
619
+ "will be saved for the fields."
620
+ msgstr ""
621
+ "ถ้าผู้ทำแบบทดสอบเข้าใช้ระบบอยู่ คุณต้องการให้ผู้ใช้สามารถแก้ไขที่อยู่ติดต่อหรือไม่? หากเลือกไม่ ช่องต่างๆ จะไม่แสดงผล "
622
+ "อย่างไรก็ตามข้อมูลต่างๆ จะยังคงถูกบันทึกช่องนั้นๆ ในฐานข้อมูล"
623
 
624
+ #: php/qmn_options_option_tab.php:232
625
+ msgid "Should we ask for users name?"
626
+ msgstr "ถามชื่อผู้ใช้งาน?"
627
 
628
+ #: php/qmn_options_option_tab.php:235 php/qmn_options_option_tab.php:243
629
+ #: php/qmn_options_option_tab.php:251 php/qmn_options_option_tab.php:259
630
+ msgid "Require"
631
+ msgstr "บังคับ"
632
 
633
+ #: php/qmn_options_option_tab.php:240
634
+ msgid "Should we ask for users business?"
635
+ msgstr "ถามสถานที่ทำงานของผู้ใช้?"
636
 
637
+ #: php/qmn_options_option_tab.php:248
638
+ msgid "Should we ask for users email?"
639
+ msgstr "ถามอีเมล์ของผู้ใช้?"
 
640
 
641
+ #: php/qmn_options_option_tab.php:256
642
+ msgid "Should we ask for users phone number?"
643
+ msgstr "ถามเบอร์โทรศัพท์ของผู้ใช้?"
644
 
645
+ #: php/qmn_options_option_tab.php:264
646
+ msgid "Would you like a place for the user to enter comments?"
647
+ msgstr "ต้องการให้ผู้ใช้กรอกความคิดเห็น?"
648
 
649
+ #: php/qmn_options_option_tab.php:271
650
+ msgid "Show question number on quiz?"
651
+ msgstr "แสดงหมายเลขข้อของแบบทดสอบ?"
652
 
653
+ #: php/qmn_options_option_tab.php:278
654
+ msgid "Show social media sharing buttons? (Twitter & Facebook)"
655
+ msgstr "แสดงปุ่มสำหรับสื่อสังคมออนไลน์ (Twitter & Facebook)"
656
 
657
+ #: php/qmn_options_option_tab.php:278
658
+ msgid ""
659
+ "This option is for here only for users of older versions. Please use the new template variables "
660
+ "%FACEBOOK_SHARE% %TWITTER_SHARE% on your results pages instead of using this option!"
661
+ msgstr ""
662
 
663
+ #: php/qmn_options_option_tab.php:285
664
+ msgid "Disable question once user selects answer? (Currently only work on multiple choice)"
665
+ msgstr ""
 
666
 
667
+ #: php/qmn_options_option_tab.php:292
668
+ msgid ""
669
+ "Dynamically add class for incorrect/correct answer after user selects answer? (Currently only "
670
+ "works on multiple choice)"
671
+ msgstr ""
672
 
673
+ #: php/qmn_options_preview_tab.php:13
674
+ msgid "Preview"
675
+ msgstr "ดูตัวอย่าง"
676
 
677
+ #: php/qmn_options_questions_tab.php:13
678
  msgid "Questions"
679
  msgstr "คำถาม"
680
 
681
+ #: php/qmn_options_questions_tab.php:28
682
  msgid "Answer"
683
  msgstr "คำตอบ"
684
 
685
+ #: php/qmn_options_questions_tab.php:126
686
  msgid "The question has been updated successfully."
687
  msgstr "ปรับปรุงคำถามเรียบร้อย"
688
 
689
+ #: php/qmn_options_questions_tab.php:153
690
  msgid "The question has been deleted successfully."
691
  msgstr "ลบคำถามเรียบร้อย"
692
 
693
+ #: php/qmn_options_questions_tab.php:237
694
  msgid "The question has been duplicated successfully."
695
  msgstr "ทำสำเนาคำถามเรียบร้อย"
696
 
697
+ #: php/qmn_options_questions_tab.php:330
698
  msgid "The question has been created successfully."
699
  msgstr "สร้างคำถามเรียบร้อย"
700
 
701
+ #: php/qmn_options_questions_tab.php:448
702
  msgid "Add Question"
703
  msgstr "เพิ่มคำถาม"
704
 
705
+ #: php/qmn_options_questions_tab.php:457
706
  #, php-format
707
  msgid "One question"
708
  msgid_plural "%s questions"
709
  msgstr[0] "หนึ่งคำถาม"
710
  msgstr[1] "%s คำถาม"
711
 
712
+ #: php/qmn_options_questions_tab.php:463 php/qmn_options_questions_tab.php:471
713
+ #: php/qmn_options_questions_tab.php:596
 
714
  msgid "Question Order"
715
  msgstr "ลำดับคำถาม"
716
 
717
+ #: php/qmn_options_questions_tab.php:464 php/qmn_options_questions_tab.php:472
718
+ #: php/qmn_options_questions_tab.php:575
 
719
  msgid "Question Type"
720
  msgstr "ชนิดคำถาม"
721
 
722
+ #: php/qmn_options_questions_tab.php:465 php/qmn_options_questions_tab.php:473
723
+ #: php/qmn_options_questions_tab.php:609
 
724
  msgid "Category"
725
  msgstr "หมวดหมู่"
726
 
727
+ #: php/qmn_options_questions_tab.php:466 php/qmn_options_questions_tab.php:474
 
728
  msgid "Question"
729
  msgstr "คำถาม"
730
 
731
+ #: php/qmn_options_questions_tab.php:548
732
+ msgid ""
733
+ "For fill in the blank types, use %BLANK% to represent where to put the text box in your text."
734
  msgstr ""
735
 
736
+ #: php/qmn_options_questions_tab.php:553
737
  msgid "Answers"
738
  msgstr "คำตอบ"
739
 
740
+ #: php/qmn_options_questions_tab.php:554
741
  msgid "Points Worth"
742
  msgstr "ค่าคะแนน"
743
 
744
+ #: php/qmn_options_questions_tab.php:555
745
  msgid "Correct Answer"
746
  msgstr "ข้อที่ถูกต้อง"
747
 
748
+ #: php/qmn_options_questions_tab.php:560
749
  msgid "Add New Answer!"
750
  msgstr "เพิ่มคำตอบใหม่"
751
 
752
+ #: php/qmn_options_questions_tab.php:565
753
  msgid "Correct Answer Info"
754
  msgstr "ข้อความข้อที่ถูกต้อง"
755
 
756
+ #: php/qmn_options_questions_tab.php:570 php/qmn_quiz.php:477
757
+ msgid "Hint"
758
+ msgstr "บอกใบ้"
759
+
760
+ #: php/qmn_options_questions_tab.php:587
761
  msgid "Comment Field"
762
  msgstr "ข้อเสนอแนะ"
763
 
764
+ #: php/qmn_options_questions_tab.php:589
765
  msgid "Small Text Field"
766
  msgstr "ข้อความสั้น"
767
 
768
+ #: php/qmn_options_questions_tab.php:590
769
  msgid "Large Text Field"
770
  msgstr "ข้อความยาว"
771
 
772
+ #: php/qmn_options_questions_tab.php:591
773
  msgid "None"
774
  msgstr "ไม่มี"
775
 
776
+ #: php/qmn_options_questions_tab.php:601
777
  msgid "Required?"
778
  msgstr "บังคับ?"
779
 
780
+ #: php/qmn_options_questions_tab.php:632
781
  msgid "Create Question"
782
  msgstr "สร้างคำถาม"
783
 
784
+ #: php/qmn_options_questions_tab.php:637
785
  msgid "Are you sure you want to delete this question?"
786
  msgstr "คุณแน่ใจหรือไม่ที่จะลบคำถามนี้?"
787
 
788
+ #: php/qmn_options_questions_tab.php:642
789
  msgid "Delete Question"
790
  msgstr "ลบคำถาม"
791
 
792
+ #: php/qmn_options_questions_tab.php:647
793
  msgid "Are you sure you want to duplicate this question?"
794
  msgstr "คุณแน่ใจหรือไม่ที่จะสำเนาคำถามนี้?"
795
 
796
+ #: php/qmn_options_questions_tab.php:652
797
  msgid "Duplicate Question"
798
  msgstr "ทำสำเนาคำถาม"
799
 
800
+ #: php/qmn_options_results_page_tab.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
801
  msgid "Results Pages"
802
  msgstr "หน้าแสดงผลลัพธ์"
803
 
804
+ #: php/qmn_options_results_page_tab.php:55
805
  msgid "The results page has been added successfully."
806
  msgstr "เพิ่มหน้าแสดงผลลัพธ์เรียบร้อย"
807
 
808
+ #: php/qmn_options_results_page_tab.php:95
809
  msgid "The results page has been saved successfully."
810
  msgstr "บันทึกหน้าแสดงผลลัพธ์เรียบร้อย"
811
 
812
+ #: php/qmn_options_results_page_tab.php:187
813
+ msgid "The amount of time user spent taking quiz in minutes"
814
+ msgstr ""
815
+
816
+ #: php/qmn_options_results_page_tab.php:190
817
+ msgid "The amount of time user spent taking quiz in seconds"
818
+ msgstr ""
819
+
820
+ #: php/qmn_options_results_page_tab.php:208
821
  msgid "Displays button to share on Facebook."
822
  msgstr ""
823
 
824
+ #: php/qmn_options_results_page_tab.php:211
825
  msgid "Displays button to share on Twitter."
826
  msgstr ""
827
 
828
+ #: php/qmn_options_results_page_tab.php:216 php/qmn_options_results_page_tab.php:297
 
829
  msgid "Save Results Pages"
830
  msgstr "บันทึกหน้าแสดงผลลัพธ์"
831
 
832
+ #: php/qmn_options_results_page_tab.php:217 php/qmn_options_results_page_tab.php:302
 
833
  msgid "Add New Results Page"
834
  msgstr "เพิ่มหน้าแสดงผลลัพธ์ใหม่"
835
 
836
+ #: php/qmn_options_results_page_tab.php:225 php/qmn_options_results_page_tab.php:289
 
837
  msgid "Results Page Shown"
838
+ msgstr "แสดงหน้าแสดงผลลัพธ์"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
839
 
840
+ #: php/qmn_options_results_page_tab.php:226 php/qmn_options_results_page_tab.php:290
841
+ msgid "Redirect URL (Beta)"
842
  msgstr ""
843
 
844
+ #: php/qmn_options_results_page_tab.php:264 php/qmn_quiz_admin.php:283
845
+ msgid "Delete"
846
+ msgstr "ลบ"
847
 
848
+ #: php/qmn_options_results_page_tab.php:264
849
+ msgid "Are you sure?"
850
+ msgstr "คุณแน่ใจหรือไม่?"
851
 
852
+ #: php/qmn_options_style_tab.php:13
853
  msgid "Style"
854
  msgstr "รูปแบบ"
855
 
856
+ #: php/qmn_options_style_tab.php:39
857
  msgid "The style has been saved successfully."
858
  msgstr "บันทึกรูปแบบเรียบร้อย"
859
 
860
+ #: php/qmn_options_style_tab.php:78
861
  msgid "Quiz Styles"
862
  msgstr "รูปแบบคำถาม"
863
 
864
+ #: php/qmn_options_style_tab.php:79
865
  msgid "Choose your style:"
866
  msgstr "เลือกรูปแบบ:"
867
 
868
+ #: php/qmn_options_style_tab.php:101
869
  msgid "Custom"
870
  msgstr "กำหนดเอง"
871
 
872
+ #: php/qmn_options_style_tab.php:107 php/qmn_options_style_tab.php:119
 
873
  msgid "Save Quiz Style"
874
  msgstr "บันทึกรูปแบบคำถาม"
875
 
876
+ #: php/qmn_options_style_tab.php:109
877
  msgid "Custom Style CSS"
878
  msgstr "กำหนด CSS เอง"
879
 
880
+ #: php/qmn_options_style_tab.php:110
881
+ msgid ""
882
+ "For detailed help and guidance along with a list of different classes used in this plugin, "
883
+ "please visit the following link:"
884
  msgstr "ข้อมูลความช่วยเหลือและห้องเรียนที่ใช้งานปลั้กอินนี้ กรุณาไปยังลิงค์:"
885
 
886
+ #: php/qmn_options_text_tab.php:13
887
+ msgid "Text"
888
+ msgstr "ข้อความ"
889
 
890
+ #: php/qmn_options_text_tab.php:55
891
+ msgid "The templates has been updated successfully."
892
+ msgstr "อัพเดทแม่แบบเรียบร้อย"
893
 
894
+ #: php/qmn_options_text_tab.php:86 php/qmn_quiz.php:1259
895
+ msgid "Previous"
896
+ msgstr "ก่อนหน้า"
897
 
898
+ #: php/qmn_options_text_tab.php:187 php/qmn_options_text_tab.php:347
899
+ msgid "Save Templates"
900
+ msgstr "บันทึกแม่แบบ"
901
 
902
+ #: php/qmn_options_text_tab.php:193
903
+ msgid "Message Templates"
904
+ msgstr "แม่แบบข้อความ"
905
 
906
+ #: php/qmn_options_text_tab.php:197
907
+ msgid "Message Displayed Before Quiz"
908
+ msgstr "ข้อความที่แสดงก่อนทำแบบทดสอบ"
909
 
910
+ #: php/qmn_options_text_tab.php:207
911
+ msgid "Message Displayed Before Comments Box If Enabled"
912
+ msgstr "ข้อความที่ถูกแสดงก่อนช่องข้อแนะนำ, หากเปิดใช้"
913
 
914
+ #: php/qmn_options_text_tab.php:217
915
+ msgid "Message Displayed At End Of Quiz (Leave Blank To Omit Text Section)"
916
+ msgstr "ข้อความที่ถูกแสดงทำแบบทดสอบเสร็จ (ปล่อยว่างเพื่อละเว้นการเลือกข้อความ)"
917
 
918
+ #: php/qmn_options_text_tab.php:227
919
+ msgid "Message Displayed If User Has Tried Quiz Too Many Times"
920
+ msgstr "ข้อความที่ถูกแสดงหากผู้ใช้ทำแบบทดสอบหลายครั้งเกินไป"
 
 
921
 
922
+ #: php/qmn_options_text_tab.php:237
923
+ msgid "Message Displayed If User Is Not Logged In And Quiz Requires Users To Be Logged In"
924
+ msgstr "ข้อความที่ถูกแสดง เมื่อผู้ใช้ไม่ได้ลงชื่อเข้าใช้ เมื่อแบบทดสอบต้องการลงชื่อเข้าใช้งาน"
 
 
925
 
926
+ #: php/qmn_options_text_tab.php:247
927
+ msgid "Message Displayed If Date Is Outside Scheduled Timeframe"
928
+ msgstr "ข้อความที่ถูกแสดงถ้าวันที่อยู่นอกวันเวลาที่อนุญาติใช้งาน"
929
 
930
+ #: php/qmn_options_text_tab.php:257
931
+ msgid "Message Displayed If The Limit Of Total Entries Has Been Reached"
932
+ msgstr "ข้อความที่ถูกแสดงหากจำนวนรายการเกินกำหนด"
933
 
934
+ #: php/qmn_options_text_tab.php:267
935
+ msgid "%QUESTIONS_ANSWERS% Text"
936
+ msgstr "%QUESTIONS_ANSWERS% ข้อความ"
937
 
938
+ #: php/qmn_options_text_tab.php:280
939
+ msgid "Twitter Sharing Text"
940
+ msgstr "ข้อความแชร์ทวิตเตอร์"
941
 
942
+ #: php/qmn_options_text_tab.php:297
943
+ msgid "Facebook Sharing Text"
944
+ msgstr "ข้อความแชร์เฟสบุค"
945
 
946
+ #: php/qmn_options_text_tab.php:312
947
+ msgid "Other Templates"
948
+ msgstr "แม่แบบอื่นๆ"
949
 
950
+ #: php/qmn_options_text_tab.php:315
951
+ msgid "Text for submit button"
952
+ msgstr "ข้อความสำหรับปุ่ม ส่ง"
953
 
954
+ #: php/qmn_options_text_tab.php:319
955
+ msgid "Text for name field"
956
+ msgstr "ข้อความสำหรับช่องชื่อ"
957
+
958
+ #: php/qmn_options_text_tab.php:323
959
+ msgid "Text for business field"
960
+ msgstr "ข้อความสำหรับช่องที่ทำงาน"
961
+
962
+ #: php/qmn_options_text_tab.php:327
963
+ msgid "Text for email field"
964
+ msgstr "ข้อความสำหรับข่องอีเมล์"
965
+
966
+ #: php/qmn_options_text_tab.php:331
967
+ msgid "Text for phone number field"
968
+ msgstr "ข้อความสำหรับช่องโทรศัพท์"
969
+
970
+ #: php/qmn_options_text_tab.php:335
971
+ msgid "Text for comments field"
972
+ msgstr "ข้อความสำหรับช่องข้อแนะนำ"
973
+
974
+ #: php/qmn_options_text_tab.php:339
975
+ msgid "Text for previous button"
976
+ msgstr "ข้อความสำหรับปุ่ม ก่อนหน้า"
977
+
978
+ #: php/qmn_options_text_tab.php:343
979
+ msgid "Text for next button"
980
+ msgstr "ข้อความสำหรับปุ่ม ถัดไป"
981
+
982
+ #: php/qmn_options_tools_tab.php:37
983
+ msgid "The stats has been reset successfully."
984
+ msgstr "ล้างค่าสถิติเรียบร้อย"
985
+
986
+ #: php/qmn_options_tools_tab.php:89
987
+ msgid ""
988
+ "Use this button to reset all the stats collected for this quiz (Quiz Views and Times Quiz Has "
989
+ "Been Taken)."
990
+ msgstr "ใช้ปุ่มนี้ เพื่อล้างค่าสถิติที่เก็บข้อมูลแบบทดสอบนี้"
991
+
992
+ #: php/qmn_options_tools_tab.php:90
993
+ msgid "Reset Quiz Views And Taken Stats"
994
+ msgstr "ล้างสถิติการดูและทำแบบทดสอบ"
995
+
996
+ #: php/qmn_options_tools_tab.php:101
997
+ msgid ""
998
+ "Are you sure you want to reset the stats to 0? All views and taken stats for this quiz will be "
999
+ "reset. This is permanent and cannot be undone."
1000
+ msgstr ""
1001
+ "คุณแน่ใจหรือไม่ ว่าต้องการลบสถิติทั้งหมดเป็น 0? ข้อมูลสถิติการดูและทำแบบทำสอบจะถูกตั้งค่าใหม่ ไม่สามารถกู้คืนข้อมูลได้!!"
1002
 
1003
+ #: php/qmn_options_tools_tab.php:105
1004
+ msgid "Reset All Stats For Quiz"
1005
+ msgstr "ล้างสถิติทั้งหมดของแบบทดสอบ"
1006
+
1007
+ #: php/qmn_question_types.php:14
1008
  msgid "Multiple Choice"
1009
  msgstr "หลายตัวเลือก"
1010
 
1011
+ #: php/qmn_question_types.php:108
1012
  msgid "Horizontal Multiple Choice"
1013
  msgstr "ตัวเลือกแนวนอน"
1014
 
1015
+ #: php/qmn_question_types.php:201
1016
  msgid "Drop Down"
1017
  msgstr "ดรอปดาวน์"
1018
 
1019
+ #: php/qmn_question_types.php:291
1020
  msgid "Small Open Answer"
1021
  msgstr "คำตอบปลายเปิดแบบสั้น"
1022
 
1023
+ #: php/qmn_question_types.php:365
1024
  msgid "Multiple Response"
1025
  msgstr "เลือกหลายคำตอบ"
1026
 
1027
+ #: php/qmn_question_types.php:464
1028
  msgid "Large Open Answer"
1029
  msgstr "กรอกคำตอบแบบยาว"
1030
 
1031
+ #: php/qmn_question_types.php:538
1032
  msgid "Text Block"
1033
  msgstr "ช่องข้อความ"
1034
 
1035
+ #: php/qmn_question_types.php:573
1036
  msgid "Number"
1037
  msgstr "ตัวเลข"
1038
 
1039
+ #: php/qmn_question_types.php:649
1040
  msgid "Accept"
1041
  msgstr "ยอมรับ"
1042
 
1043
+ #: php/qmn_question_types.php:684
1044
  msgid "Captcha"
1045
  msgstr "Captcha"
1046
 
1047
+ #: php/qmn_question_types.php:742
1048
  msgid "Horizontal Multiple Response"
1049
  msgstr "เลือกได้หลายคำตอบแนวนอน"
1050
 
1051
+ #: php/qmn_question_types.php:843
1052
  msgid "Fill In The Blank"
1053
  msgstr ""
1054
 
1055
+ #: php/qmn_quiz.php:350
1056
+ msgid "Not a valid e-mail address!"
1057
+ msgstr "รูปแบบอีเมล์ไม่ถูกต้อง"
1058
+
1059
+ #: php/qmn_quiz.php:351
1060
+ msgid "This field must be a number!"
1061
+ msgstr "ใช้ตัวเลขในช่องนี้เท่านั้น"
1062
 
1063
+ #: php/qmn_quiz.php:352
1064
+ msgid "The entered text is not correct!"
1065
+ msgstr "ข้อความที่กรอกไม่ถูกต้อง!"
1066
+
1067
+ #: php/qmn_quiz.php:353
1068
+ msgid "Please complete all required fields!"
1069
+ msgstr "กรุณาตอบช่องบังคับทุกช่อง!"
1070
+
1071
+ #: php/qmn_quiz_admin.php:196
1072
  msgid "Add New"
1073
  msgstr "เพิ่มใหม่"
1074
 
1075
+ #: php/qmn_quiz_admin.php:214
1076
  #, php-format
1077
  msgid "One quiz"
1078
  msgid_plural "%s quizzes"
1079
  msgstr[0] "หนึ่งแบบทดสอบ"
1080
  msgstr[1] "%s แบบทดสอบ"
1081
 
1082
+ #: php/qmn_quiz_admin.php:259 php/qmn_quiz_admin.php:310 php/qmn_quiz_admin.php:378
1083
+ #: php/qmn_results.php:216
1084
+ msgid "Quiz Name"
1085
+ msgstr "ชื่อแบบทดสอบ"
1086
+
1087
+ #: php/qmn_quiz_admin.php:260 php/qmn_quiz_admin.php:311
1088
  msgid "URL"
1089
  msgstr ""
1090
 
1091
+ #: php/qmn_quiz_admin.php:261 php/qmn_quiz_admin.php:312
 
1092
  msgid "Quiz Shortcode"
1093
  msgstr "Shortcode แบบทดสอบ"
1094
 
1095
+ #: php/qmn_quiz_admin.php:262 php/qmn_quiz_admin.php:313
 
1096
  msgid "Leaderboard Shortcode"
1097
  msgstr "Shortcode กระดานผู้นำ"
1098
 
1099
+ #: php/qmn_quiz_admin.php:263 php/qmn_quiz_admin.php:314
 
1100
  msgid "Quiz Views"
1101
  msgstr "ดูแบบทดสอบ"
1102
 
1103
+ #: php/qmn_quiz_admin.php:264 php/qmn_quiz_admin.php:315
 
1104
  msgid "Quiz Taken"
1105
  msgstr "แบบทดสอบถูกทำ"
1106
 
1107
+ #: php/qmn_quiz_admin.php:265 php/qmn_quiz_admin.php:316
 
1108
  msgid "Last Modified"
1109
  msgstr "แก้ไขล่าสุด"
1110
 
1111
+ #: php/qmn_quiz_admin.php:278
1112
  msgid "Edit Name"
1113
  msgstr "แก้ไขชื่อ"
1114
 
1115
+ #: php/qmn_quiz_admin.php:280
1116
  msgid "Edit"
1117
  msgstr "แก้ไข"
1118
 
1119
+ #: php/qmn_quiz_admin.php:281 php/qmn_results_details.php:135
1120
+ msgid "Results"
1121
+ msgstr "ผลลัพธ์"
1122
+
1123
+ #: php/qmn_quiz_admin.php:282 php/qmn_quiz_admin.php:411
1124
  msgid "Duplicate"
1125
  msgstr "ทำสำเนา"
1126
 
1127
+ #: php/qmn_quiz_admin.php:373
1128
  msgid "Create New Quiz"
1129
  msgstr "สร้างแบบทดสอบใหม่"
1130
 
1131
+ #: php/qmn_quiz_admin.php:387
1132
  msgid "Create Quiz"
1133
  msgstr "สร้างแบบทดสอบ"
1134
 
1135
+ #: php/qmn_quiz_admin.php:393
1136
  msgid "Quiz Name:"
1137
  msgstr "ชื่อแบบทดสอบ:"
1138
 
1139
+ #: php/qmn_quiz_admin.php:404
1140
  msgid "Duplicate this quiz?"
1141
  msgstr "ทำสำเนาแบบทดสอบนี้?"
1142
 
1143
+ #: php/qmn_quiz_admin.php:406
1144
  msgid "Duplicate questions with quiz"
1145
  msgstr ""
1146
 
1147
+ #: php/qmn_quiz_admin.php:408
1148
  msgid "Name Of New Quiz:"
1149
  msgstr "ชื่อแบบทดสอบใหม่"
1150
 
1151
+ #: php/qmn_quiz_admin.php:417
1152
  msgid "Are you sure you want to delete this quiz?"
1153
  msgstr "คุณแน่ใจหรือไม่ที่จะลบแบบทดสอบ?"
1154
 
1155
+ #: php/qmn_quiz_admin.php:422
1156
  msgid "Delete Quiz"
1157
  msgstr "ลบแบบทดสอบ"
1158
 
1159
+ #: php/qmn_quiz_creator.php:372
1160
+ msgid ""
1161
+ "Your new quiz has been created successfully. To begin editing your quiz, click the Edit link on "
1162
+ "the new quiz."
1163
+ msgstr "แบบทดสอบใหม่จองท่านได้ถูกสร้างเรียบร้อย คลิ้กลิงค์แก้ไขที่แบบทดสอบใหม่ เพื่อทำการแก้ไข"
1164
+
1165
+ #: php/qmn_quiz_creator.php:438
1166
+ msgid "Your quiz has been deleted successfully."
1167
+ msgstr "แบบทดสอบของท่านได้ถูกลบเรียบร้อย"
1168
+
1169
+ #: php/qmn_quiz_creator.php:480
1170
+ msgid "Your quiz name has been updated successfully."
1171
+ msgstr "ชื่อแบบทดสอบของท่านได้ถูกอัพเดทเรียบร้อย"
1172
+
1173
+ #: php/qmn_quiz_creator.php:637
1174
+ msgid "Your quiz has been duplicated successfully."
1175
+ msgstr "แบบทดสอบของท่านได้ถูกทำสำเนาเรียบร้อย"
1176
+
1177
+ #: php/qmn_quiz_options.php:56
1178
+ #, php-format
1179
+ msgid "Quiz Settings For %s"
1180
+ msgstr "ตั้งค่าแบบทดสอบสำหรับ %s"
1181
+
1182
+ #: php/qmn_quiz_options.php:96
1183
+ msgid "Please go to the quizzes page and click on the Edit link from the quiz you wish to edit."
1184
+ msgstr "กรุณาไปยังหน้ารายการแบบทดสอบและ คลิ้ก แก้ไขลิงค์ ของแบบทดสอบที่ต้องการแก้ไข"
1185
+
1186
+ #: php/qmn_results.php:30
1187
+ msgid "Your results has been deleted successfully."
1188
+ msgstr "ผลลัพท์ของท่านได้ถูกลบเรียบร้อย"
1189
+
1190
+ #: php/qmn_results.php:168
1191
+ #, php-format
1192
+ msgid "One result"
1193
+ msgid_plural "%s results"
1194
+ msgstr[0] ""
1195
+ msgstr[1] ""
1196
+
1197
+ #: php/qmn_results.php:215
1198
+ msgid "Actions"
1199
+ msgstr "กระทำ"
1200
+
1201
+ #: php/qmn_results.php:217
1202
+ msgid "Score"
1203
+ msgstr "คำแนน"
1204
+
1205
+ #: php/qmn_results.php:218
1206
+ msgid "Time To Complete"
1207
+ msgstr "เวลาที่ทำสำเร็จ"
1208
+
1209
+ #: php/qmn_results.php:219
1210
+ msgid "Name"
1211
+ msgstr "ชื่อ"
1212
+
1213
+ #: php/qmn_results.php:220
1214
+ msgid "Business"
1215
+ msgstr "ที่ทำงาน"
1216
+
1217
+ #: php/qmn_results.php:221
1218
+ msgid "Email"
1219
+ msgstr "อีเมล์"
1220
+
1221
+ #: php/qmn_results.php:222
1222
+ msgid "Phone"
1223
+ msgstr "โทรศัพท์"
1224
+
1225
+ #: php/qmn_results.php:223
1226
+ msgid "Time Taken"
1227
+ msgstr "ใช้เวลาไป"
1228
+
1229
+ #: php/qmn_results.php:282
1230
+ msgid "Are you sure you want to delete these results?"
1231
+ msgstr "คุณแน่ใจหรือไม่ที่จะลบผลลัพธ์"
1232
+
1233
+ #: php/qmn_results.php:287
1234
+ msgid "Delete Results"
1235
+ msgstr "ลบผลลัพธ์"
1236
+
1237
+ #: php/qmn_results_details.php:221
1238
+ msgid "Create Certificate"
1239
+ msgstr "สร้างประกาศนียบัตร"
1240
+
1241
+ #: php/qmn_results_details.php:226
1242
+ msgid "Download Certificate Here"
1243
+ msgstr "ดาวน์โหลดประกาศนียบัตร"
1244
+
1245
+ #: php/qmn_results_details.php:240
1246
+ msgid "Certificate"
1247
+ msgstr ""
1248
+
1249
+ #: php/qmn_tools.php:107
1250
+ msgid "There has been an error! Please try again."
1251
+ msgstr ""
1252
+
1253
+ #: php/qmn_tools.php:125
1254
+ msgid "Quiz Has Been Restored!"
1255
+ msgstr ""
1256
+
1257
+ #: php/qmn_tools.php:130
1258
+ msgid "Choose a quiz in the drop down and then click the button to restore a deleted quiz."
1259
+ msgstr ""
1260
+
1261
+ #: php/qmn_tools.php:140
1262
+ msgid "Restore Quiz"
1263
+ msgstr ""
1264
+
1265
+ #: php/qmn_tools.php:176 php/qmn_tools.php:192
1266
+ #, php-format
1267
+ msgid "Previous %s Audits"
1268
+ msgstr "การตรวจสอบภายใน %s ก่อนหน้า"
1269
+
1270
+ #: php/qmn_tools.php:179 php/qmn_tools.php:186
1271
+ #, php-format
1272
+ msgid "Next %s Audits"
1273
+ msgstr "Next %s Audits"
1274
+
1275
+ #: php/qmn_tools.php:199
1276
+ msgid "User"
1277
+ msgstr "ผู้ใช้"
1278
+
1279
+ #: php/qmn_tools.php:200
1280
+ msgid "Action"
1281
+ msgstr "กระทำ"
1282
+
1283
+ #: php/qmn_tools.php:201
1284
+ msgid "Time"
1285
+ msgstr "เวลา"
1286
+
1287
+ #: php/qmn_usage_tracking.php:193
1288
+ msgid ""
1289
+ "Allow Quiz Master Next to anonymously track this plugin's usage and help us make this plugin "
1290
+ "better? No sensitive data is tracked."
1291
+ msgstr ""
1292
+
1293
+ #: php/qmn_usage_tracking.php:194
1294
+ msgid "Allow"
1295
+ msgstr ""
1296
+
1297
+ #: php/qmn_usage_tracking.php:195
1298
+ msgid "Do not allow"
1299
+ msgstr ""
1300
+
1301
+ #: php/qmn_widgets.php:14
1302
  msgid "Quiz Master Next Leaderboard Widget"
1303
  msgstr "Leaderboard วิตเจ็ต"
1304
 
1305
+ #: php/qmn_widgets.php:29
1306
  msgid "Widget Title"
1307
  msgstr "ชื่อหัวข้อวิตเจ็ต"
1308
 
1309
+ #: php/qmn_widgets.php:33
1310
  msgid "Quiz ID"
1311
  msgstr "หมายเลขแบบทดสอบ"
1312
 
1313
+ #~ msgid "The amount of time user spent of quiz"
1314
+ #~ msgstr "เวลาที่ใช้ทั่งหมดในการทำแบบทดสอบ"
1315
+
1316
  #~ msgid ""
1317
+ #~ "Required currently only works on open answer, number, accept, and captcha question types"
 
1318
  #~ msgstr "บังคับได้เฉพาะคำถามแบบ คำตอบปลายเปิด ตัวเลข และ captcha เท่านั้น"
1319
 
1320
  #~ msgid "Edit Question"
1383
  #~ msgid "Total points user earned when taking quiz"
1384
  #~ msgstr "คะแนนรวมที่ได้รับจากการทำแบบทดสอบ"
1385
 
1386
+ #~ msgid "The percent score for the quiz showing percent of total quetions answered correctly"
 
 
1387
  #~ msgstr "เปอร์เซ็นต์แสดงจำนวนข้อที่ตอบถูก"
1388
 
1389
  #~ msgid "It appears that this quiz is not set up correctly."
1444
  #~ msgstr "ข้อเสนอแนะที่ได้รับ"
1445
 
1446
  #~ msgid ""
1447
+ #~ "Please go to the Quiz Results page and click on the View link from the result you wish to "
1448
+ #~ "see."
1449
  #~ msgstr "กรุณาไปยังหน้าผลลัพท์ของแบบทดสอบ และ คลิ้กลิงค์สำหรับดู จากรายการผลลัพท์ที่ต้องการ"
languages/quiz-master-next.pot CHANGED
@@ -1,11 +1,12 @@
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: \n"
8
- "POT-Creation-Date: 2015-04-20 01:12-0500\n"
9
  "PO-Revision-Date: \n"
10
  "Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
11
  "Language-Team: My Local Webstop <fpcorso@mylocalwebstop.com>\n"
@@ -18,10 +19,10 @@ msgstr ""
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;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;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
20
  "X-Poedit-Basepath: ../\n"
21
- "X-Generator: Poedit 1.7.3\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
- #: mlw_quizmaster2.php:217
25
  msgid "Quizzes"
26
  msgstr ""
27
 
@@ -29,7 +30,8 @@ msgstr ""
29
  msgid "Quiz Settings"
30
  msgstr ""
31
 
32
- #: mlw_quizmaster2.php:219
 
33
  msgid "Quiz Results"
34
  msgstr ""
35
 
@@ -41,7 +43,8 @@ msgstr ""
41
  msgid "Settings"
42
  msgstr ""
43
 
44
- #: mlw_quizmaster2.php:222
 
45
  msgid "Tools"
46
  msgstr ""
47
 
@@ -57,1207 +60,1229 @@ msgstr ""
57
  msgid "Help"
58
  msgstr ""
59
 
60
- #: mlw_quizmaster2.php:228
61
- #: mlw_quizmaster2.php:229
62
  msgid "QMN About"
63
  msgstr ""
64
 
65
- #: php/qmn_options_email_tab.php:6
66
- msgid "Emails"
67
  msgstr ""
68
 
69
- #: php/qmn_options_email_tab.php:42
70
- #: php/qmn_options_email_tab.php:101
71
- msgid "The email has been added successfully."
72
  msgstr ""
73
 
74
- #: php/qmn_options_email_tab.php:55
75
- #: php/qmn_options_email_tab.php:114
76
- #: php/qmn_options_email_tab.php:178
77
- #: php/qmn_quiz_creator.php:382
78
- #: php/qmn_quiz_creator.php:448
79
- #: php/qmn_quiz_creator.php:490
80
- #: php/qmn_quiz_creator.php:648
81
- #: php/qmn_quiz_creator.php:713
82
- #: php/qmn_options_leaderboard_tab.php:38
83
- #, php-format
84
- msgid "There has been an error in this action. Please share this with the developer. Error Code: %s"
85
  msgstr ""
86
 
87
- #: php/qmn_options_email_tab.php:73
88
- #: php/qmn_options_email_tab.php:91
89
- msgid "Enter text here"
90
  msgstr ""
91
 
92
- #: php/qmn_options_email_tab.php:165
93
- msgid "The email has been updated successfully."
94
  msgstr ""
95
 
96
- #: php/qmn_options_email_tab.php:232
97
- #: php/qmn_options_leaderboard_tab.php:49
98
- msgid "Template Variables"
99
  msgstr ""
100
 
101
- #: php/qmn_options_email_tab.php:235
102
- msgid "Score for the quiz when using points"
103
  msgstr ""
104
 
105
- #: php/qmn_options_email_tab.php:238
106
- msgid "The average amount of points user had per question"
107
  msgstr ""
108
 
109
- #: php/qmn_options_email_tab.php:241
110
- msgid "The number of correct answers the user had"
111
  msgstr ""
112
 
113
- #: php/qmn_options_email_tab.php:244
114
- msgid "The total number of questions in the quiz"
115
  msgstr ""
116
 
117
- #: php/qmn_options_email_tab.php:247
118
- msgid "Score for the quiz when using correct answers"
119
  msgstr ""
120
 
121
- #: php/qmn_options_email_tab.php:250
122
- msgid "The name the user entered before the quiz"
123
  msgstr ""
124
 
125
- #: php/qmn_options_email_tab.php:253
126
- msgid "The business the user entered before the quiz"
127
  msgstr ""
128
 
129
- #: php/qmn_options_email_tab.php:256
130
- msgid "The phone number the user entered before the quiz"
131
  msgstr ""
132
 
133
- #: php/qmn_options_email_tab.php:259
134
- msgid "The email the user entered before the quiz"
135
  msgstr ""
136
 
137
- #: php/qmn_options_email_tab.php:262
138
- #: php/qmn_options_leaderboard_tab.php:77
139
- msgid "The name of the quiz"
140
  msgstr ""
141
 
142
- #: php/qmn_options_email_tab.php:265
143
- msgid "Shows the question, the answer the user provided, and the correct answer"
144
  msgstr ""
145
 
146
- #: php/qmn_options_email_tab.php:268
147
- msgid "The comments the user entered into comment box if enabled"
148
  msgstr ""
149
 
150
- #: php/qmn_options_email_tab.php:271
151
- msgid "The amount of time user spent of quiz"
152
  msgstr ""
153
 
154
- #: php/qmn_options_email_tab.php:274
155
- msgid "The link to the certificate after completing the quiz"
156
  msgstr ""
157
 
158
- #: php/qmn_options_email_tab.php:277
159
- msgid "The amount of points a specific category earned."
160
  msgstr ""
161
 
162
- #: php/qmn_options_email_tab.php:280
163
- msgid "The score a specific category earned."
164
  msgstr ""
165
 
166
- #: php/qmn_options_email_tab.php:283
167
- msgid "The average points from all categories."
168
  msgstr ""
169
 
170
- #: php/qmn_options_email_tab.php:286
171
- msgid "The average score from all categories."
172
  msgstr ""
173
 
174
- #: php/qmn_options_email_tab.php:289
175
- msgid "The question that the user answered"
176
  msgstr ""
177
 
178
- #: php/qmn_options_email_tab.php:292
179
- msgid "The answer the user gave for the question"
180
  msgstr ""
181
 
182
- #: php/qmn_options_email_tab.php:295
183
- msgid "The correct answer for the question"
184
  msgstr ""
185
 
186
- #: php/qmn_options_email_tab.php:298
187
- msgid "The comments the user provided in the comment field for the question"
 
 
 
 
 
 
 
 
 
 
 
188
  msgstr ""
189
 
190
- #: php/qmn_options_email_tab.php:301
191
- msgid "Reason why the correct answer is the correct answer"
192
  msgstr ""
193
 
194
- #: php/qmn_options_email_tab.php:304
195
- msgid "The Current Date"
 
196
  msgstr ""
197
 
198
- #: php/qmn_options_email_tab.php:319
199
- #: php/qmn_options_email_tab.php:518
200
- msgid "Save Email Templates And Settings"
201
  msgstr ""
202
 
203
- #: php/qmn_options_email_tab.php:323
204
- msgid "Send user email upon completion?"
205
  msgstr ""
206
 
207
- #: php/qmn_options_email_tab.php:325
208
- #: php/qmn_options_email_tab.php:332
209
- msgid "Yes"
210
  msgstr ""
211
 
212
- #: php/qmn_options_email_tab.php:326
213
- #: php/qmn_options_email_tab.php:333
214
- msgid "No"
215
  msgstr ""
216
 
217
- #: php/qmn_options_email_tab.php:330
218
- msgid "Send admin email upon completion?"
219
  msgstr ""
220
 
221
- #: php/qmn_options_email_tab.php:337
222
- msgid "What emails should we send the admin email to? Separate emails with a comma."
 
 
 
 
 
 
 
 
223
  msgstr ""
224
 
225
- #: php/qmn_options_email_tab.php:341
226
- msgid "What is the From Name for the email sent to users and admin?"
 
 
 
 
 
 
 
 
227
  msgstr ""
228
 
229
- #: php/qmn_options_email_tab.php:347
230
- msgid "Email Sent To User"
231
  msgstr ""
232
 
233
- #: php/qmn_options_email_tab.php:348
234
- #: php/qmn_options_email_tab.php:426
235
- msgid "Add New User Email"
236
  msgstr ""
237
 
238
- #: php/qmn_options_email_tab.php:353
239
- #: php/qmn_options_email_tab.php:419
240
- #: php/qmn_options_email_tab.php:440
241
- #: php/qmn_options_email_tab.php:506
242
- msgid "Score Greater Than Or Equal To"
 
 
 
243
  msgstr ""
244
 
245
- #: php/qmn_options_email_tab.php:354
246
- #: php/qmn_options_email_tab.php:420
247
- #: php/qmn_options_email_tab.php:441
248
- #: php/qmn_options_email_tab.php:507
249
- msgid "Score Less Than Or Equal To"
250
  msgstr ""
251
 
252
- #: php/qmn_options_email_tab.php:355
253
- #: php/qmn_options_email_tab.php:421
254
- #: php/qmn_options_email_tab.php:442
255
- #: php/qmn_options_email_tab.php:508
256
- msgid "Subject"
257
  msgstr ""
258
 
259
- #: php/qmn_options_email_tab.php:356
260
- #: php/qmn_options_email_tab.php:422
261
- #: php/qmn_options_email_tab.php:443
262
- #: php/qmn_options_email_tab.php:509
263
- msgid "Email To Send"
264
  msgstr ""
265
 
266
- #: php/qmn_options_email_tab.php:434
267
- msgid "Email Sent To Admin"
268
  msgstr ""
269
 
270
- #: php/qmn_options_email_tab.php:435
271
- #: php/qmn_options_email_tab.php:513
272
- msgid "Add New Admin Email"
273
  msgstr ""
274
 
275
- #: php/qmn_quiz_creator.php:369
276
- msgid "Your new quiz has been created successfully. To begin editing your quiz, click the Edit link on the new quiz."
 
277
  msgstr ""
278
 
279
- #: php/qmn_quiz_creator.php:435
280
- msgid "Your quiz has been deleted successfully."
 
281
  msgstr ""
282
 
283
- #: php/qmn_quiz_creator.php:477
284
- msgid "Your quiz name has been updated successfully."
 
285
  msgstr ""
286
 
287
- #: php/qmn_quiz_creator.php:634
288
- msgid "Your quiz has been duplicated successfully."
 
289
  msgstr ""
290
 
291
- #: php/qmn_quiz.php:350
292
- msgid "Not a valid e-mail address!"
 
293
  msgstr ""
294
 
295
- #: php/qmn_quiz.php:351
296
- msgid "This field must be a number!"
 
297
  msgstr ""
298
 
299
- #: php/qmn_quiz.php:352
300
- msgid "The entered text is not correct!"
 
301
  msgstr ""
302
 
303
- #: php/qmn_quiz.php:353
304
- msgid "Please complete all required fields!"
 
305
  msgstr ""
306
 
307
- #: php/qmn_quiz.php:465
308
- msgid "Hint"
 
309
  msgstr ""
310
 
311
- #: php/qmn_quiz.php:1254
312
- msgid "Previous"
 
313
  msgstr ""
314
 
315
- #: php/qmn_credits.php:27
316
- msgid "Welcome To Quiz Master Next"
 
317
  msgstr ""
318
 
319
- #: php/qmn_credits.php:28
320
- msgid "Thank you for updating!"
 
321
  msgstr ""
322
 
323
- #: php/qmn_credits.php:32
324
- msgid "What's New!"
 
325
  msgstr ""
326
 
327
- #: php/qmn_credits.php:34
328
- msgid "Changelog"
329
  msgstr ""
330
 
331
- #: php/qmn_usage_tracking.php:193
332
- msgid "Allow Quiz Master Next to anonymously track this plugin's usage and help us make this plugin better? No sensitive data is tracked."
333
  msgstr ""
334
 
335
- #: php/qmn_usage_tracking.php:194
336
- msgid "Allow"
 
337
  msgstr ""
338
 
339
- #: php/qmn_usage_tracking.php:195
340
- msgid "Do not allow"
 
341
  msgstr ""
342
 
343
- #: php/qmn_options_leaderboard_tab.php:6
344
- msgid "Leaderboard"
 
345
  msgstr ""
346
 
347
- #: php/qmn_options_leaderboard_tab.php:25
348
- msgid "The leaderboards has been updated successfully."
 
349
  msgstr ""
350
 
351
- #: php/qmn_options_leaderboard_tab.php:52
352
- msgid "The name of the user who is in first place"
 
353
  msgstr ""
354
 
355
- #: php/qmn_options_leaderboard_tab.php:53
356
- msgid "The score from the first place's quiz"
357
  msgstr ""
358
 
359
- #: php/qmn_options_leaderboard_tab.php:57
360
- msgid "The name of the user who is in second place"
361
  msgstr ""
362
 
363
- #: php/qmn_options_leaderboard_tab.php:58
364
- msgid "The score from the second place's quiz"
365
  msgstr ""
366
 
367
- #: php/qmn_options_leaderboard_tab.php:62
368
- msgid "The name of the user who is in third place"
369
  msgstr ""
370
 
371
- #: php/qmn_options_leaderboard_tab.php:63
372
- msgid "The score from the third place's quiz"
373
  msgstr ""
374
 
375
- #: php/qmn_options_leaderboard_tab.php:67
376
- msgid "The name of the user who is in fourth place"
377
  msgstr ""
378
 
379
- #: php/qmn_options_leaderboard_tab.php:68
380
- msgid "The score from the fourth place's quiz"
381
  msgstr ""
382
 
383
- #: php/qmn_options_leaderboard_tab.php:72
384
- msgid "The name of the user who is in fifth place"
385
  msgstr ""
386
 
387
- #: php/qmn_options_leaderboard_tab.php:73
388
- msgid "The score from the fifth place's quiz"
389
  msgstr ""
390
 
391
- #: php/qmn_options_leaderboard_tab.php:80
392
- #: php/qmn_options_leaderboard_tab.php:108
393
- msgid "Save Leaderboard Options"
394
  msgstr ""
395
 
396
- #: php/qmn_options_leaderboard_tab.php:89
397
- msgid "Leaderboard Template"
398
  msgstr ""
399
 
400
- #: php/qmn_options_leaderboard_tab.php:91
401
- msgid "Allowed Variables:"
402
  msgstr ""
403
 
404
- #: php/qmn_addons.php:48
405
- msgid "These addons extend the functionality of Quiz Master Next"
406
  msgstr ""
407
 
408
- #: php/qmn_addons.php:91
409
- msgid "Browse All Addons"
 
 
 
410
  msgstr ""
411
 
412
- #: php/qmn_addons.php:98
413
- msgid "Featured Addons"
 
 
 
414
  msgstr ""
415
 
416
- #: php/qmn_options_text_tab.php:6
417
- msgid "Text"
 
418
  msgstr ""
419
 
420
- #: php/qmn_options_text_tab.php:42
421
- msgid "The templates has been updated successfully."
 
422
  msgstr ""
423
 
424
- #: php/qmn_options_text_tab.php:170
425
- #: php/qmn_options_text_tab.php:330
426
- msgid "Save Templates"
427
  msgstr ""
428
 
429
- #: php/qmn_options_text_tab.php:176
430
- msgid "Message Templates"
431
  msgstr ""
432
 
433
- #: php/qmn_options_text_tab.php:180
434
- msgid "Message Displayed Before Quiz"
435
  msgstr ""
436
 
437
- #: php/qmn_options_text_tab.php:190
438
- msgid "Message Displayed Before Comments Box If Enabled"
439
  msgstr ""
440
 
441
- #: php/qmn_options_text_tab.php:200
442
- msgid "Message Displayed At End Of Quiz (Leave Blank To Omit Text Section)"
443
  msgstr ""
444
 
445
- #: php/qmn_options_text_tab.php:210
446
- msgid "Message Displayed If User Has Tried Quiz Too Many Times"
447
  msgstr ""
448
 
449
- #: php/qmn_options_text_tab.php:220
450
- msgid "Message Displayed If User Is Not Logged In And Quiz Requires Users To Be Logged In"
451
  msgstr ""
452
 
453
- #: php/qmn_options_text_tab.php:230
454
- msgid "Message Displayed If Date Is Outside Scheduled Timeframe"
455
  msgstr ""
456
 
457
- #: php/qmn_options_text_tab.php:240
458
- msgid "Message Displayed If The Limit Of Total Entries Has Been Reached"
459
  msgstr ""
460
 
461
- #: php/qmn_options_text_tab.php:250
462
- msgid "%QUESTIONS_ANSWERS% Text"
463
  msgstr ""
464
 
465
- #: php/qmn_options_text_tab.php:263
466
- msgid "Twitter Sharing Text"
467
  msgstr ""
468
 
469
- #: php/qmn_options_text_tab.php:280
470
- msgid "Facebook Sharing Text"
471
  msgstr ""
472
 
473
- #: php/qmn_options_text_tab.php:295
474
- msgid "Other Templates"
475
  msgstr ""
476
 
477
- #: php/qmn_options_text_tab.php:298
478
- msgid "Text for submit button"
479
  msgstr ""
480
 
481
- #: php/qmn_options_text_tab.php:302
482
- msgid "Text for name field"
 
483
  msgstr ""
484
 
485
- #: php/qmn_options_text_tab.php:306
486
- msgid "Text for business field"
487
  msgstr ""
488
 
489
- #: php/qmn_options_text_tab.php:310
490
- msgid "Text for email field"
491
  msgstr ""
492
 
493
- #: php/qmn_options_text_tab.php:314
494
- msgid "Text for phone number field"
495
  msgstr ""
496
 
497
- #: php/qmn_options_text_tab.php:318
498
- msgid "Text for comments field"
499
  msgstr ""
500
 
501
- #: php/qmn_options_text_tab.php:322
502
- msgid "Text for previous button"
503
  msgstr ""
504
 
505
- #: php/qmn_options_text_tab.php:326
506
- msgid "Text for next button"
507
  msgstr ""
508
 
509
- #: php/qmn_options_tools_tab.php:23
510
- msgid "The stats has been reset successfully."
511
  msgstr ""
512
 
513
- #: php/qmn_options_tools_tab.php:75
514
- msgid "Use this button to reset all the stats collected for this quiz (Quiz Views and Times Quiz Has Been Taken)."
515
  msgstr ""
516
 
517
- #: php/qmn_options_tools_tab.php:76
518
- msgid "Reset Quiz Views And Taken Stats"
519
  msgstr ""
520
 
521
- #: php/qmn_options_tools_tab.php:87
522
- msgid "Are you sure you want to reset the stats to 0? All views and taken stats for this quiz will be reset. This is permanent and cannot be undone."
523
  msgstr ""
524
 
525
- #: php/qmn_options_tools_tab.php:91
526
- msgid "Reset All Stats For Quiz"
527
  msgstr ""
528
 
529
- #: php/qmn_dashboard_widgets.php:9
530
- msgid "Quiz Master Next Snapshot"
531
  msgstr ""
532
 
533
- #: php/qmn_dashboard_widgets.php:166
534
- msgid "quizzes taken today"
535
  msgstr ""
536
 
537
- #: php/qmn_dashboard_widgets.php:185
538
- msgid "quizzes taken last 7 days"
539
  msgstr ""
540
 
541
- #: php/qmn_dashboard_widgets.php:204
542
- msgid "quizzes taken last 30 days"
543
  msgstr ""
544
 
545
- #: php/qmn_dashboard_widgets.php:223
546
- msgid "quizzes taken last 120 days"
547
  msgstr ""
548
 
549
- #: php/qmn_dashboard_widgets.php:242
550
- msgid "total active quizzes"
551
  msgstr ""
552
 
553
- #: php/qmn_dashboard_widgets.php:248
554
- msgid "total active questions"
555
  msgstr ""
556
 
557
- #: php/qmn_dashboard_widgets.php:254
558
- msgid "most popular quiz"
559
- msgstr ""
560
 
561
- #: php/qmn_dashboard_widgets.php:260
562
- msgid "least popular quiz"
563
  msgstr ""
564
 
565
- #: php/qmn_options_certificate_tab.php:6
566
- msgid "Certificate (Beta)"
567
  msgstr ""
568
 
569
- #: php/qmn_options_certificate_tab.php:32
570
- msgid "The certificate has been updated successfully."
571
  msgstr ""
572
 
573
- #: php/qmn_options_certificate_tab.php:61
574
- msgid "Enter title here"
575
  msgstr ""
576
 
577
- #: php/qmn_options_certificate_tab.php:65
578
- msgid "Quiz Certificate (Beta)"
579
  msgstr ""
580
 
581
- #: php/qmn_options_certificate_tab.php:66
582
- msgid "Enter in your text here to fill in the certificate for this quiz. Be sure to enter in the link variable into the templates on the Quiz Text tab so the user can access the certificate."
583
  msgstr ""
584
 
585
- #: php/qmn_options_certificate_tab.php:67
586
- msgid "These fields cannot contain HTML."
 
587
  msgstr ""
588
 
589
- #: php/qmn_options_certificate_tab.php:68
590
- #: php/qmn_options_certificate_tab.php:124
591
- msgid "Save Certificate Options"
592
  msgstr ""
593
 
594
- #: php/qmn_options_certificate_tab.php:76
595
- msgid "Enable Certificates For This Quiz?"
596
  msgstr ""
597
 
598
- #: php/qmn_options_certificate_tab.php:84
599
- msgid "Certificate Title"
600
  msgstr ""
601
 
602
- #: php/qmn_options_certificate_tab.php:91
603
- msgid "Message Displayed On Certificate"
604
  msgstr ""
605
 
606
- #: php/qmn_options_certificate_tab.php:111
607
- msgid "URL To Logo (Must be JPG, JPEG, PNG or GIF)"
608
  msgstr ""
609
 
610
- #: php/qmn_options_certificate_tab.php:118
611
- msgid "URL To Background Img (Must be JPG, JPEG, PNG or GIF)"
612
  msgstr ""
613
 
614
- #: php/qmn_quiz_options.php:52
615
- #, php-format
616
- msgid "Quiz Settings For %s"
617
  msgstr ""
618
 
619
- #: php/qmn_quiz_options.php:92
620
- msgid "Error!"
621
  msgstr ""
622
 
623
- #: php/qmn_quiz_options.php:92
624
- msgid "Please go to the quizzes page and click on the Edit link from the quiz you wish to edit."
625
  msgstr ""
626
 
627
- #: php/qmn_options_questions_tab.php:6
 
 
 
 
628
  msgid "Questions"
629
  msgstr ""
630
 
631
- #: php/qmn_options_questions_tab.php:14
632
  msgid "Answer"
633
  msgstr ""
634
 
635
- #: php/qmn_options_questions_tab.php:112
636
  msgid "The question has been updated successfully."
637
  msgstr ""
638
 
639
- #: php/qmn_options_questions_tab.php:139
640
  msgid "The question has been deleted successfully."
641
  msgstr ""
642
 
643
- #: php/qmn_options_questions_tab.php:223
644
  msgid "The question has been duplicated successfully."
645
  msgstr ""
646
 
647
- #: php/qmn_options_questions_tab.php:316
648
  msgid "The question has been created successfully."
649
  msgstr ""
650
 
651
- #: php/qmn_options_questions_tab.php:434
652
  msgid "Add Question"
653
  msgstr ""
654
 
655
- #: php/qmn_options_questions_tab.php:443
656
  #, php-format
657
  msgid "One question"
658
  msgid_plural "%s questions"
659
  msgstr[0] ""
660
  msgstr[1] ""
661
 
662
- #: php/qmn_options_questions_tab.php:449
663
- #: php/qmn_options_questions_tab.php:457
664
- #: php/qmn_options_questions_tab.php:582
665
  msgid "Question Order"
666
  msgstr ""
667
 
668
- #: php/qmn_options_questions_tab.php:450
669
- #: php/qmn_options_questions_tab.php:458
670
- #: php/qmn_options_questions_tab.php:561
671
  msgid "Question Type"
672
  msgstr ""
673
 
674
- #: php/qmn_options_questions_tab.php:451
675
- #: php/qmn_options_questions_tab.php:459
676
- #: php/qmn_options_questions_tab.php:595
677
  msgid "Category"
678
  msgstr ""
679
 
680
- #: php/qmn_options_questions_tab.php:452
681
- #: php/qmn_options_questions_tab.php:460
682
  msgid "Question"
683
  msgstr ""
684
 
685
- #: php/qmn_options_questions_tab.php:534
686
  msgid "For fill in the blank types, use %BLANK% to represent where to put the text box in your text."
687
  msgstr ""
688
 
689
- #: php/qmn_options_questions_tab.php:539
690
  msgid "Answers"
691
  msgstr ""
692
 
693
- #: php/qmn_options_questions_tab.php:540
694
  msgid "Points Worth"
695
  msgstr ""
696
 
697
- #: php/qmn_options_questions_tab.php:541
698
  msgid "Correct Answer"
699
  msgstr ""
700
 
701
- #: php/qmn_options_questions_tab.php:546
702
  msgid "Add New Answer!"
703
  msgstr ""
704
 
705
- #: php/qmn_options_questions_tab.php:551
706
  msgid "Correct Answer Info"
707
  msgstr ""
708
 
709
- #: php/qmn_options_questions_tab.php:573
 
 
 
 
710
  msgid "Comment Field"
711
  msgstr ""
712
 
713
- #: php/qmn_options_questions_tab.php:575
714
  msgid "Small Text Field"
715
  msgstr ""
716
 
717
- #: php/qmn_options_questions_tab.php:576
718
  msgid "Large Text Field"
719
  msgstr ""
720
 
721
- #: php/qmn_options_questions_tab.php:577
722
  msgid "None"
723
  msgstr ""
724
 
725
- #: php/qmn_options_questions_tab.php:587
726
  msgid "Required?"
727
  msgstr ""
728
 
729
- #: php/qmn_options_questions_tab.php:618
730
  msgid "Create Question"
731
  msgstr ""
732
 
733
- #: php/qmn_options_questions_tab.php:623
734
  msgid "Are you sure you want to delete this question?"
735
  msgstr ""
736
 
737
- #: php/qmn_options_questions_tab.php:628
738
  msgid "Delete Question"
739
  msgstr ""
740
 
741
- #: php/qmn_options_questions_tab.php:633
742
  msgid "Are you sure you want to duplicate this question?"
743
  msgstr ""
744
 
745
- #: php/qmn_options_questions_tab.php:638
746
  msgid "Duplicate Question"
747
  msgstr ""
748
 
749
- #: php/qmn_results.php:23
750
- msgid "Your results has been deleted successfully."
751
  msgstr ""
752
 
753
- #: php/qmn_results.php:161
754
- #, php-format
755
- msgid "One result"
756
- msgid_plural "%s results"
757
- msgstr[0] ""
758
- msgstr[1] ""
759
-
760
- #: php/qmn_results.php:208
761
- msgid "Actions"
762
  msgstr ""
763
 
764
- #: php/qmn_results.php:209
765
- msgid "Quiz Name"
766
  msgstr ""
767
 
768
- #: php/qmn_results.php:210
769
- msgid "Score"
770
  msgstr ""
771
 
772
- #: php/qmn_results.php:211
773
- msgid "Time To Complete"
774
  msgstr ""
775
 
776
- #: php/qmn_results.php:212
777
- msgid "Name"
778
  msgstr ""
779
 
780
- #: php/qmn_results.php:213
781
- msgid "Business"
782
  msgstr ""
783
 
784
- #: php/qmn_results.php:214
785
- msgid "Email"
 
786
  msgstr ""
787
 
788
- #: php/qmn_results.php:215
789
- msgid "Phone"
 
790
  msgstr ""
791
 
792
- #: php/qmn_results.php:216
793
- msgid "Time Taken"
 
794
  msgstr ""
795
 
796
- #: php/qmn_results.php:258
797
- #: php/qmn_options_option_tab.php:147
798
- msgid "Not Graded"
799
  msgstr ""
800
 
801
- #: php/qmn_results.php:275
802
- msgid "Are you sure you want to delete these results?"
803
  msgstr ""
804
 
805
- #: php/qmn_results.php:280
806
- msgid "Delete Results"
807
  msgstr ""
808
 
809
- #: php/qmn_options_results_page_tab.php:6
810
- msgid "Results Pages"
811
  msgstr ""
812
 
813
- #: php/qmn_options_results_page_tab.php:41
814
- msgid "The results page has been added successfully."
815
  msgstr ""
816
 
817
- #: php/qmn_options_results_page_tab.php:81
818
- msgid "The results page has been saved successfully."
819
  msgstr ""
820
 
821
- #: php/qmn_options_results_page_tab.php:191
822
- msgid "Displays button to share on Facebook."
823
  msgstr ""
824
 
825
- #: php/qmn_options_results_page_tab.php:194
826
- msgid "Displays button to share on Twitter."
827
  msgstr ""
828
 
829
- #: php/qmn_options_results_page_tab.php:199
830
- #: php/qmn_options_results_page_tab.php:280
831
- msgid "Save Results Pages"
832
  msgstr ""
833
 
834
- #: php/qmn_options_results_page_tab.php:200
835
- #: php/qmn_options_results_page_tab.php:285
836
- msgid "Add New Results Page"
837
  msgstr ""
838
 
839
- #: php/qmn_options_results_page_tab.php:208
840
- #: php/qmn_options_results_page_tab.php:272
841
- msgid "Results Page Shown"
842
  msgstr ""
843
 
844
- #: php/qmn_options_results_page_tab.php:209
845
- #: php/qmn_options_results_page_tab.php:273
846
- msgid "Redirect URL (Beta)"
847
  msgstr ""
848
 
849
- #: php/qmn_options_results_page_tab.php:247
850
- msgid "Delete"
851
  msgstr ""
852
 
853
- #: php/qmn_options_results_page_tab.php:247
854
- msgid "Are you sure?"
855
  msgstr ""
856
 
857
- #: php/qmn_options_preview_tab.php:6
858
- msgid "Preview"
859
  msgstr ""
860
 
861
- #: php/qmn-stats-page.php:29
862
- msgid "Quiz Statistics"
863
  msgstr ""
864
 
865
- #: php/qmn-stats-page.php:68
866
- msgid "Quiz Taken Stats"
867
  msgstr ""
868
 
869
- #: php/qmn_options_option_tab.php:6
870
- msgid "Options"
871
  msgstr ""
872
 
873
- #: php/qmn_options_option_tab.php:94
874
- msgid "The options has been updated successfully."
875
  msgstr ""
876
 
877
- #: php/qmn_options_option_tab.php:135
878
- #: php/qmn_options_option_tab.php:286
879
- msgid "Save Options"
880
  msgstr ""
881
 
882
- #: php/qmn_options_option_tab.php:143
883
- msgid "Which system is this quiz graded on?"
884
  msgstr ""
885
 
886
- #: php/qmn_options_option_tab.php:145
887
- msgid "Correct/Incorrect"
888
  msgstr ""
889
 
890
- #: php/qmn_options_option_tab.php:146
891
- msgid "Points"
892
  msgstr ""
893
 
894
- #: php/qmn_options_option_tab.php:151
895
- msgid "Should the user be required to be logged in to take this quiz?"
896
  msgstr ""
897
 
898
- #: php/qmn_options_option_tab.php:158
899
- msgid "How many questions per page would you like? (Leave 0 for all questions on one page)"
900
  msgstr ""
901
 
902
- #: php/qmn_options_option_tab.php:164
903
- msgid "How many minutes does the user have to finish the quiz? (Leave 0 for no time limit)"
904
  msgstr ""
905
 
906
- #: php/qmn_options_option_tab.php:170
907
- msgid "How many times can a user take this quiz? (Leave 0 for as many times as the user wants to. Currently only works for registered users)"
908
  msgstr ""
909
 
910
- #: php/qmn_options_option_tab.php:176
911
- msgid "How many total entries can this quiz have? (Leave 0 for unlimited entries"
912
  msgstr ""
913
 
914
- #: php/qmn_options_option_tab.php:182
915
- msgid "How many questions should be loaded for quiz? (Leave 0 to load all questions)"
916
  msgstr ""
917
 
918
- #: php/qmn_options_option_tab.php:188
919
- msgid "What time-frame should the user be able to access the quiz? (Leave blank if the user can access anytime)"
920
  msgstr ""
921
 
922
- #: php/qmn_options_option_tab.php:190
923
- msgid "start date"
924
  msgstr ""
925
 
926
- #: php/qmn_options_option_tab.php:193
927
- msgid "end date"
928
  msgstr ""
929
 
930
- #: php/qmn_options_option_tab.php:197
931
- msgid "Are the questions random? (Question Order will not apply if this is yes)"
932
  msgstr ""
933
 
934
- #: php/qmn_options_option_tab.php:199
935
- msgid "Random Questions"
936
  msgstr ""
937
 
938
- #: php/qmn_options_option_tab.php:200
939
- msgid "Random Questions And Answers"
940
  msgstr ""
941
 
942
- #: php/qmn_options_option_tab.php:205
943
- msgid "Would you like to ask for the contact information at the beginning or at the end of the quiz?"
944
  msgstr ""
945
 
946
- #: php/qmn_options_option_tab.php:207
947
- msgid "Beginning"
948
  msgstr ""
949
 
950
- #: php/qmn_options_option_tab.php:208
951
- msgid "End"
952
  msgstr ""
953
 
954
- #: php/qmn_options_option_tab.php:212
955
- msgid "If a logged-in user takes the quiz, would you like them to be able to edit contact information? If set to no, the fields will not show up for logged in users; however, the users information will be saved for the fields."
956
  msgstr ""
957
 
958
- #: php/qmn_options_option_tab.php:219
959
- msgid "Should we ask for users name?"
960
  msgstr ""
961
 
962
- #: php/qmn_options_option_tab.php:222
963
- #: php/qmn_options_option_tab.php:230
964
- #: php/qmn_options_option_tab.php:238
965
- #: php/qmn_options_option_tab.php:246
966
- msgid "Require"
967
  msgstr ""
968
 
969
- #: php/qmn_options_option_tab.php:227
970
- msgid "Should we ask for users business?"
971
  msgstr ""
972
 
973
- #: php/qmn_options_option_tab.php:235
974
- msgid "Should we ask for users email?"
975
  msgstr ""
976
 
977
- #: php/qmn_options_option_tab.php:243
978
- msgid "Should we ask for users phone number?"
979
  msgstr ""
980
 
981
- #: php/qmn_options_option_tab.php:251
982
- msgid "Would you like a place for the user to enter comments?"
983
  msgstr ""
984
 
985
- #: php/qmn_options_option_tab.php:258
986
- msgid "Show question number on quiz?"
987
  msgstr ""
988
 
989
- #: php/qmn_options_option_tab.php:265
990
- msgid "Show social media sharing buttons? (Twitter & Facebook)"
991
  msgstr ""
992
 
993
- #: php/qmn_options_option_tab.php:265
994
- msgid "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!"
995
  msgstr ""
996
 
997
- #: php/qmn_options_option_tab.php:272
998
- msgid "Disable question once user selects answer? (Currently only work on multiple choice)"
999
  msgstr ""
1000
 
1001
- #: php/qmn_options_option_tab.php:279
1002
- msgid "Dynamically add class for incorrect/correct answer after user selects answer? (Currently only works on multiple choice)"
1003
  msgstr ""
1004
 
1005
- #: php/qmn_options_style_tab.php:6
1006
- msgid "Style"
1007
  msgstr ""
1008
 
1009
- #: php/qmn_options_style_tab.php:26
1010
- msgid "The style has been saved successfully."
1011
  msgstr ""
1012
 
1013
- #: php/qmn_options_style_tab.php:65
1014
- msgid "Quiz Styles"
1015
  msgstr ""
1016
 
1017
- #: php/qmn_options_style_tab.php:66
1018
- msgid "Choose your style:"
1019
  msgstr ""
1020
 
1021
- #: php/qmn_options_style_tab.php:88
1022
- msgid "Custom"
1023
  msgstr ""
1024
 
1025
- #: php/qmn_options_style_tab.php:94
1026
- #: php/qmn_options_style_tab.php:106
1027
- msgid "Save Quiz Style"
1028
  msgstr ""
1029
 
1030
- #: php/qmn_options_style_tab.php:96
1031
- msgid "Custom Style CSS"
1032
  msgstr ""
1033
 
1034
- #: php/qmn_options_style_tab.php:97
1035
- msgid "For detailed help and guidance along with a list of different classes used in this plugin, please visit the following link:"
 
 
 
 
 
 
 
 
1036
  msgstr ""
1037
 
1038
- #: php/qmn_results_details.php:117
1039
- msgid "Results"
1040
  msgstr ""
1041
 
1042
- #: php/qmn_results_details.php:196
1043
- msgid "Create Certificate"
1044
  msgstr ""
1045
 
1046
- #: php/qmn_results_details.php:201
1047
- msgid "Download Certificate Here"
1048
  msgstr ""
1049
 
1050
- #: php/qmn_results_details.php:208
1051
- msgid "Certificate"
1052
  msgstr ""
1053
 
1054
- #: php/qmn_tools.php:90
1055
- msgid "There has been an error! Please try again."
1056
  msgstr ""
1057
 
1058
- #: php/qmn_tools.php:108
1059
- msgid "Quiz Has Been Restored!"
1060
  msgstr ""
1061
 
1062
- #: php/qmn_tools.php:113
1063
- msgid "Choose a quiz in the drop down and then click the button to restore a deleted quiz."
1064
  msgstr ""
1065
 
1066
- #: php/qmn_tools.php:123
1067
- msgid "Restore Quiz"
1068
  msgstr ""
1069
 
1070
- #: php/qmn_tools.php:152
1071
- #: php/qmn_tools.php:168
1072
- #, php-format
1073
- msgid "Previous %s Audits"
1074
  msgstr ""
1075
 
1076
- #: php/qmn_tools.php:155
1077
- #: php/qmn_tools.php:162
1078
- #, php-format
1079
- msgid "Next %s Audits"
1080
  msgstr ""
1081
 
1082
- #: php/qmn_tools.php:175
1083
- msgid "User"
1084
  msgstr ""
1085
 
1086
- #: php/qmn_tools.php:176
1087
- msgid "Action"
1088
  msgstr ""
1089
 
1090
- #: php/qmn_tools.php:177
1091
- msgid "Time"
1092
  msgstr ""
1093
 
1094
- #: php/qmn_help.php:10
1095
- msgid "Need Help?"
1096
  msgstr ""
1097
 
1098
- #: php/qmn_help.php:11
1099
- msgid "Support"
1100
  msgstr ""
1101
 
1102
- #: php/qmn_help.php:12
1103
- msgid "System Info"
1104
  msgstr ""
1105
 
1106
- #: php/qmn_help.php:15
1107
- msgid "Help Page"
1108
  msgstr ""
1109
 
1110
- #: php/qmn_help.php:38
1111
- msgid "Need help with the plugin? Try any of the following:"
1112
  msgstr ""
1113
 
1114
- #: php/qmn_question_types.php:7
1115
- msgid "Multiple Choice"
1116
  msgstr ""
1117
 
1118
- #: php/qmn_question_types.php:76
1119
- msgid "Horizontal Multiple Choice"
1120
  msgstr ""
1121
 
1122
- #: php/qmn_question_types.php:144
1123
- msgid "Drop Down"
1124
  msgstr ""
1125
 
1126
- #: php/qmn_question_types.php:209
1127
- msgid "Small Open Answer"
1128
  msgstr ""
1129
 
1130
- #: php/qmn_question_types.php:258
1131
- msgid "Multiple Response"
 
1132
  msgstr ""
1133
 
1134
- #: php/qmn_question_types.php:333
1135
- msgid "Large Open Answer"
1136
  msgstr ""
1137
 
1138
- #: php/qmn_question_types.php:382
1139
- msgid "Text Block"
1140
  msgstr ""
1141
 
1142
- #: php/qmn_question_types.php:397
1143
- msgid "Number"
 
 
 
 
 
 
 
1144
  msgstr ""
1145
 
1146
- #: php/qmn_question_types.php:446
1147
- msgid "Accept"
1148
  msgstr ""
1149
 
1150
- #: php/qmn_question_types.php:465
1151
- msgid "Captcha"
1152
  msgstr ""
1153
 
1154
- #: php/qmn_question_types.php:506
1155
- msgid "Horizontal Multiple Response"
1156
  msgstr ""
1157
 
1158
- #: php/qmn_question_types.php:580
1159
- msgid "Fill In The Blank"
1160
  msgstr ""
1161
 
1162
- #: php/qmn_alerts.php:19
1163
- msgid "Success!"
1164
  msgstr ""
1165
 
1166
- #: php/qmn_quiz_admin.php:189
1167
- msgid "Add New"
1168
  msgstr ""
1169
 
1170
- #: php/qmn_quiz_admin.php:207
1171
- #, php-format
1172
- msgid "One quiz"
1173
- msgid_plural "%s quizzes"
1174
- msgstr[0] ""
1175
- msgstr[1] ""
1176
 
1177
- #: php/qmn_quiz_admin.php:253
1178
- #: php/qmn_quiz_admin.php:304
1179
- msgid "URL"
1180
  msgstr ""
1181
 
1182
- #: php/qmn_quiz_admin.php:254
1183
- #: php/qmn_quiz_admin.php:305
1184
- msgid "Quiz Shortcode"
1185
  msgstr ""
1186
 
1187
- #: php/qmn_quiz_admin.php:255
1188
- #: php/qmn_quiz_admin.php:306
1189
- msgid "Leaderboard Shortcode"
1190
  msgstr ""
1191
 
1192
- #: php/qmn_quiz_admin.php:256
1193
- #: php/qmn_quiz_admin.php:307
1194
- msgid "Quiz Views"
1195
  msgstr ""
1196
 
1197
- #: php/qmn_quiz_admin.php:257
1198
- #: php/qmn_quiz_admin.php:308
1199
- msgid "Quiz Taken"
1200
  msgstr ""
1201
 
1202
- #: php/qmn_quiz_admin.php:258
1203
- #: php/qmn_quiz_admin.php:309
1204
- msgid "Last Modified"
1205
  msgstr ""
1206
 
1207
- #: php/qmn_quiz_admin.php:271
1208
- msgid "Edit Name"
1209
  msgstr ""
1210
 
1211
- #: php/qmn_quiz_admin.php:273
1212
- msgid "Edit"
1213
  msgstr ""
1214
 
1215
- #: php/qmn_quiz_admin.php:275
1216
- #: php/qmn_quiz_admin.php:404
1217
- msgid "Duplicate"
1218
  msgstr ""
1219
 
1220
- #: php/qmn_quiz_admin.php:366
1221
- msgid "Create New Quiz"
 
1222
  msgstr ""
1223
 
1224
- #: php/qmn_quiz_admin.php:380
1225
- msgid "Create Quiz"
 
1226
  msgstr ""
1227
 
1228
- #: php/qmn_quiz_admin.php:386
1229
- msgid "Quiz Name:"
1230
  msgstr ""
1231
 
1232
- #: php/qmn_quiz_admin.php:397
1233
- msgid "Duplicate this quiz?"
1234
  msgstr ""
1235
 
1236
- #: php/qmn_quiz_admin.php:399
1237
- msgid "Duplicate questions with quiz"
1238
  msgstr ""
1239
 
1240
- #: php/qmn_quiz_admin.php:401
1241
- msgid "Name Of New Quiz:"
1242
  msgstr ""
1243
 
1244
- #: php/qmn_quiz_admin.php:410
1245
- msgid "Are you sure you want to delete this quiz?"
1246
  msgstr ""
1247
 
1248
- #: php/qmn_quiz_admin.php:415
1249
- msgid "Delete Quiz"
1250
  msgstr ""
1251
 
1252
- #: php/qmn_widgets.php:11
1253
  msgid "Quiz Master Next Leaderboard Widget"
1254
  msgstr ""
1255
 
1256
- #: php/qmn_widgets.php:26
1257
  msgid "Widget Title"
1258
  msgstr ""
1259
 
1260
- #: php/qmn_widgets.php:30
1261
  msgid "Quiz ID"
1262
  msgstr ""
1263
-
1
  # Quiz Master Next
2
  # Copyright (C) 2015 ...
3
  # This file is distributed under the GNU General Public License v2 or later.
4
+ #, fuzzy
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Quiz Master Next\n"
8
  "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2015-06-11 16:16-0500\n"
10
  "PO-Revision-Date: \n"
11
  "Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
12
  "Language-Team: My Local Webstop <fpcorso@mylocalwebstop.com>\n"
19
  "X-Poedit-SourceCharset: UTF-8\n"
20
  "X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;esc_attr_e;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;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
21
  "X-Poedit-Basepath: ../\n"
22
+ "X-Generator: Poedit 1.8.1\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
 
25
+ #: mlw_quizmaster2.php:217 php/qmn_quiz_admin.php:196
26
  msgid "Quizzes"
27
  msgstr ""
28
 
30
  msgid "Quiz Settings"
31
  msgstr ""
32
 
33
+ #: mlw_quizmaster2.php:219 php/qmn_results.php:159
34
+ #: php/qmn_results_details.php:20
35
  msgid "Quiz Results"
36
  msgstr ""
37
 
43
  msgid "Settings"
44
  msgstr ""
45
 
46
+ #: mlw_quizmaster2.php:222 php/qmn_options_tools_tab.php:13
47
+ #: php/qmn_tools.php:65
48
  msgid "Tools"
49
  msgstr ""
50
 
60
  msgid "Help"
61
  msgstr ""
62
 
63
+ #: mlw_quizmaster2.php:228 mlw_quizmaster2.php:229
 
64
  msgid "QMN About"
65
  msgstr ""
66
 
67
+ #: php/qmn-stats-page.php:29
68
+ msgid "Quiz Statistics"
69
  msgstr ""
70
 
71
+ #: php/qmn-stats-page.php:68
72
+ msgid "Quiz Taken Stats"
 
73
  msgstr ""
74
 
75
+ #: php/qmn_addons.php:60
76
+ msgid "These addons extend the functionality of Quiz Master Next"
 
 
 
 
 
 
 
 
 
77
  msgstr ""
78
 
79
+ #: php/qmn_addons.php:103
80
+ msgid "Browse All Addons"
 
81
  msgstr ""
82
 
83
+ #: php/qmn_addons.php:117
84
+ msgid "Featured Addons"
85
  msgstr ""
86
 
87
+ #: php/qmn_alerts.php:37
88
+ msgid "Success!"
 
89
  msgstr ""
90
 
91
+ #: php/qmn_alerts.php:41 php/qmn_quiz_options.php:96
92
+ msgid "Error!"
93
  msgstr ""
94
 
95
+ #: php/qmn_credits.php:30
96
+ msgid "Welcome To Quiz Master Next"
97
  msgstr ""
98
 
99
+ #: php/qmn_credits.php:31
100
+ msgid "Thank you for updating!"
101
  msgstr ""
102
 
103
+ #: php/qmn_credits.php:35
104
+ msgid "What's New!"
105
  msgstr ""
106
 
107
+ #: php/qmn_credits.php:37
108
+ msgid "Changelog"
109
  msgstr ""
110
 
111
+ #: php/qmn_dashboard_widgets.php:16
112
+ msgid "Quiz Master Next Snapshot"
113
  msgstr ""
114
 
115
+ #: php/qmn_dashboard_widgets.php:180
116
+ msgid "quizzes taken today"
117
  msgstr ""
118
 
119
+ #: php/qmn_dashboard_widgets.php:199
120
+ msgid "quizzes taken last 7 days"
121
  msgstr ""
122
 
123
+ #: php/qmn_dashboard_widgets.php:218
124
+ msgid "quizzes taken last 30 days"
125
  msgstr ""
126
 
127
+ #: php/qmn_dashboard_widgets.php:237
128
+ msgid "quizzes taken last 120 days"
 
129
  msgstr ""
130
 
131
+ #: php/qmn_dashboard_widgets.php:256
132
+ msgid "total active quizzes"
133
  msgstr ""
134
 
135
+ #: php/qmn_dashboard_widgets.php:262
136
+ msgid "total active questions"
137
  msgstr ""
138
 
139
+ #: php/qmn_dashboard_widgets.php:268
140
+ msgid "most popular quiz"
141
  msgstr ""
142
 
143
+ #: php/qmn_dashboard_widgets.php:274
144
+ msgid "least popular quiz"
145
  msgstr ""
146
 
147
+ #: php/qmn_help.php:13
148
+ msgid "Need Help?"
149
  msgstr ""
150
 
151
+ #: php/qmn_help.php:14
152
+ msgid "Support"
153
  msgstr ""
154
 
155
+ #: php/qmn_help.php:15
156
+ msgid "System Info"
157
  msgstr ""
158
 
159
+ #: php/qmn_help.php:18
160
+ msgid "Help Page"
161
  msgstr ""
162
 
163
+ #: php/qmn_help.php:48
164
+ msgid "Need help with the plugin? Try any of the following:"
165
  msgstr ""
166
 
167
+ #: php/qmn_options_certificate_tab.php:15
168
+ msgid "Certificate (Beta)"
169
  msgstr ""
170
 
171
+ #: php/qmn_options_certificate_tab.php:47
172
+ msgid "The certificate has been updated successfully."
173
  msgstr ""
174
 
175
+ #: php/qmn_options_certificate_tab.php:60 php/qmn_options_email_tab.php:68
176
+ #: php/qmn_options_email_tab.php:127 php/qmn_options_email_tab.php:191
177
+ #: php/qmn_options_leaderboard_tab.php:52 php/qmn_options_option_tab.php:120
178
+ #: php/qmn_options_questions_tab.php:139 php/qmn_options_questions_tab.php:166
179
+ #: php/qmn_options_questions_tab.php:250 php/qmn_options_questions_tab.php:343
180
+ #: php/qmn_options_results_page_tab.php:68
181
+ #: php/qmn_options_results_page_tab.php:108 php/qmn_options_style_tab.php:52
182
+ #: php/qmn_options_text_tab.php:68 php/qmn_options_tools_tab.php:50
183
+ #: php/qmn_quiz_creator.php:385 php/qmn_quiz_creator.php:451
184
+ #: php/qmn_quiz_creator.php:493 php/qmn_quiz_creator.php:651
185
+ #: php/qmn_quiz_creator.php:716 php/qmn_results.php:43
186
+ #, php-format
187
+ msgid "There has been an error in this action. Please share this with the developer. Error Code: %s"
188
  msgstr ""
189
 
190
+ #: php/qmn_options_certificate_tab.php:76
191
+ msgid "Enter title here"
192
  msgstr ""
193
 
194
+ #: php/qmn_options_certificate_tab.php:76 php/qmn_options_email_tab.php:86
195
+ #: php/qmn_options_email_tab.php:104
196
+ msgid "Enter text here"
197
  msgstr ""
198
 
199
+ #: php/qmn_options_certificate_tab.php:80
200
+ msgid "Quiz Certificate (Beta)"
 
201
  msgstr ""
202
 
203
+ #: php/qmn_options_certificate_tab.php:81
204
+ msgid "Enter in your text here to fill in the certificate for this quiz. Be sure to enter in the link variable into the templates on the Quiz Text tab so the user can access the certificate."
205
  msgstr ""
206
 
207
+ #: php/qmn_options_certificate_tab.php:82
208
+ msgid "These fields cannot contain HTML."
 
209
  msgstr ""
210
 
211
+ #: php/qmn_options_certificate_tab.php:83
212
+ #: php/qmn_options_certificate_tab.php:139
213
+ msgid "Save Certificate Options"
214
  msgstr ""
215
 
216
+ #: php/qmn_options_certificate_tab.php:91
217
+ msgid "Enable Certificates For This Quiz?"
218
  msgstr ""
219
 
220
+ #: php/qmn_options_certificate_tab.php:93 php/qmn_options_email_tab.php:355
221
+ #: php/qmn_options_email_tab.php:362 php/qmn_options_option_tab.php:166
222
+ #: php/qmn_options_option_tab.php:227 php/qmn_options_option_tab.php:234
223
+ #: php/qmn_options_option_tab.php:242 php/qmn_options_option_tab.php:250
224
+ #: php/qmn_options_option_tab.php:258 php/qmn_options_option_tab.php:266
225
+ #: php/qmn_options_option_tab.php:273 php/qmn_options_option_tab.php:280
226
+ #: php/qmn_options_option_tab.php:287 php/qmn_options_option_tab.php:294
227
+ #: php/qmn_options_questions_tab.php:603
228
+ #: php/qmn_options_results_page_tab.php:264
229
+ msgid "Yes"
230
  msgstr ""
231
 
232
+ #: php/qmn_options_certificate_tab.php:94 php/qmn_options_email_tab.php:356
233
+ #: php/qmn_options_email_tab.php:363 php/qmn_options_option_tab.php:167
234
+ #: php/qmn_options_option_tab.php:214 php/qmn_options_option_tab.php:228
235
+ #: php/qmn_options_option_tab.php:236 php/qmn_options_option_tab.php:244
236
+ #: php/qmn_options_option_tab.php:252 php/qmn_options_option_tab.php:260
237
+ #: php/qmn_options_option_tab.php:267 php/qmn_options_option_tab.php:274
238
+ #: php/qmn_options_option_tab.php:281 php/qmn_options_option_tab.php:288
239
+ #: php/qmn_options_option_tab.php:295 php/qmn_options_questions_tab.php:604
240
+ #: php/qmn_options_results_page_tab.php:264
241
+ msgid "No"
242
  msgstr ""
243
 
244
+ #: php/qmn_options_certificate_tab.php:99
245
+ msgid "Certificate Title"
246
  msgstr ""
247
 
248
+ #: php/qmn_options_certificate_tab.php:106
249
+ msgid "Message Displayed On Certificate"
 
250
  msgstr ""
251
 
252
+ #: php/qmn_options_certificate_tab.php:108
253
+ #: php/qmn_options_leaderboard_tab.php:105 php/qmn_options_text_tab.php:199
254
+ #: php/qmn_options_text_tab.php:209 php/qmn_options_text_tab.php:219
255
+ #: php/qmn_options_text_tab.php:229 php/qmn_options_text_tab.php:239
256
+ #: php/qmn_options_text_tab.php:249 php/qmn_options_text_tab.php:259
257
+ #: php/qmn_options_text_tab.php:269 php/qmn_options_text_tab.php:282
258
+ #: php/qmn_options_text_tab.php:299
259
+ msgid "Allowed Variables:"
260
  msgstr ""
261
 
262
+ #: php/qmn_options_certificate_tab.php:126
263
+ msgid "URL To Logo (Must be JPG, JPEG, PNG or GIF)"
 
 
 
264
  msgstr ""
265
 
266
+ #: php/qmn_options_certificate_tab.php:133
267
+ msgid "URL To Background Img (Must be JPG, JPEG, PNG or GIF)"
 
 
 
268
  msgstr ""
269
 
270
+ #: php/qmn_options_email_tab.php:13
271
+ msgid "Emails"
 
 
 
272
  msgstr ""
273
 
274
+ #: php/qmn_options_email_tab.php:55 php/qmn_options_email_tab.php:114
275
+ msgid "The email has been added successfully."
276
  msgstr ""
277
 
278
+ #: php/qmn_options_email_tab.php:178
279
+ msgid "The email has been updated successfully."
 
280
  msgstr ""
281
 
282
+ #: php/qmn_options_email_tab.php:258 php/qmn_options_leaderboard_tab.php:63
283
+ #: php/qmn_options_results_page_tab.php:148 php/qmn_options_text_tab.php:105
284
+ msgid "Template Variables"
285
  msgstr ""
286
 
287
+ #: php/qmn_options_email_tab.php:261 php/qmn_options_results_page_tab.php:151
288
+ #: php/qmn_options_text_tab.php:108
289
+ msgid "Score for the quiz when using points"
290
  msgstr ""
291
 
292
+ #: php/qmn_options_email_tab.php:264 php/qmn_options_results_page_tab.php:154
293
+ #: php/qmn_options_text_tab.php:111
294
+ msgid "The average amount of points user had per question"
295
  msgstr ""
296
 
297
+ #: php/qmn_options_email_tab.php:267 php/qmn_options_results_page_tab.php:157
298
+ #: php/qmn_options_text_tab.php:114
299
+ msgid "The number of correct answers the user had"
300
  msgstr ""
301
 
302
+ #: php/qmn_options_email_tab.php:270 php/qmn_options_results_page_tab.php:160
303
+ #: php/qmn_options_text_tab.php:117
304
+ msgid "The total number of questions in the quiz"
305
  msgstr ""
306
 
307
+ #: php/qmn_options_email_tab.php:273 php/qmn_options_results_page_tab.php:163
308
+ #: php/qmn_options_text_tab.php:120
309
+ msgid "Score for the quiz when using correct answers"
310
  msgstr ""
311
 
312
+ #: php/qmn_options_email_tab.php:276 php/qmn_options_results_page_tab.php:166
313
+ #: php/qmn_options_text_tab.php:123
314
+ msgid "The name the user entered before the quiz"
315
  msgstr ""
316
 
317
+ #: php/qmn_options_email_tab.php:279 php/qmn_options_results_page_tab.php:169
318
+ #: php/qmn_options_text_tab.php:126
319
+ msgid "The business the user entered before the quiz"
320
  msgstr ""
321
 
322
+ #: php/qmn_options_email_tab.php:282 php/qmn_options_results_page_tab.php:172
323
+ #: php/qmn_options_text_tab.php:129
324
+ msgid "The phone number the user entered before the quiz"
325
  msgstr ""
326
 
327
+ #: php/qmn_options_email_tab.php:285 php/qmn_options_results_page_tab.php:175
328
+ #: php/qmn_options_text_tab.php:132
329
+ msgid "The email the user entered before the quiz"
330
  msgstr ""
331
 
332
+ #: php/qmn_options_email_tab.php:288 php/qmn_options_leaderboard_tab.php:91
333
+ #: php/qmn_options_results_page_tab.php:178 php/qmn_options_text_tab.php:135
334
+ msgid "The name of the quiz"
335
  msgstr ""
336
 
337
+ #: php/qmn_options_email_tab.php:291 php/qmn_options_results_page_tab.php:181
338
+ #: php/qmn_options_text_tab.php:138
339
+ msgid "Shows the question, the answer the user provided, and the correct answer"
340
  msgstr ""
341
 
342
+ #: php/qmn_options_email_tab.php:294 php/qmn_options_results_page_tab.php:184
343
+ #: php/qmn_options_text_tab.php:141
344
+ msgid "The comments the user entered into comment box if enabled"
345
  msgstr ""
346
 
347
+ #: php/qmn_options_email_tab.php:297 php/qmn_options_text_tab.php:144
348
+ msgid "The amount of time user spent on quiz in seconds"
349
  msgstr ""
350
 
351
+ #: php/qmn_options_email_tab.php:301 php/qmn_options_text_tab.php:147
352
+ msgid "The amount of time user spent on quiz in minutes"
353
  msgstr ""
354
 
355
+ #: php/qmn_options_email_tab.php:304 php/qmn_options_results_page_tab.php:193
356
+ #: php/qmn_options_text_tab.php:151
357
+ msgid "The link to the certificate after completing the quiz"
358
  msgstr ""
359
 
360
+ #: php/qmn_options_email_tab.php:307 php/qmn_options_results_page_tab.php:196
361
+ #: php/qmn_options_text_tab.php:154
362
+ msgid "The amount of points a specific category earned."
363
  msgstr ""
364
 
365
+ #: php/qmn_options_email_tab.php:310 php/qmn_options_results_page_tab.php:199
366
+ #: php/qmn_options_text_tab.php:157
367
+ msgid "The score a specific category earned."
368
  msgstr ""
369
 
370
+ #: php/qmn_options_email_tab.php:313 php/qmn_options_results_page_tab.php:202
371
+ #: php/qmn_options_text_tab.php:160
372
+ msgid "The average points from all categories."
373
  msgstr ""
374
 
375
+ #: php/qmn_options_email_tab.php:316 php/qmn_options_results_page_tab.php:205
376
+ #: php/qmn_options_text_tab.php:163
377
+ msgid "The average score from all categories."
378
  msgstr ""
379
 
380
+ #: php/qmn_options_email_tab.php:319 php/qmn_options_text_tab.php:166
381
+ msgid "The question that the user answered"
382
  msgstr ""
383
 
384
+ #: php/qmn_options_email_tab.php:322 php/qmn_options_text_tab.php:169
385
+ msgid "The answer the user gave for the question"
386
  msgstr ""
387
 
388
+ #: php/qmn_options_email_tab.php:325 php/qmn_options_text_tab.php:172
389
+ msgid "The correct answer for the question"
390
  msgstr ""
391
 
392
+ #: php/qmn_options_email_tab.php:328 php/qmn_options_text_tab.php:175
393
+ msgid "The comments the user provided in the comment field for the question"
394
  msgstr ""
395
 
396
+ #: php/qmn_options_email_tab.php:331 php/qmn_options_text_tab.php:178
397
+ msgid "Reason why the correct answer is the correct answer"
398
  msgstr ""
399
 
400
+ #: php/qmn_options_email_tab.php:334 php/qmn_options_text_tab.php:181
401
+ msgid "The Current Date"
402
  msgstr ""
403
 
404
+ #: php/qmn_options_email_tab.php:349 php/qmn_options_email_tab.php:548
405
+ msgid "Save Email Templates And Settings"
406
  msgstr ""
407
 
408
+ #: php/qmn_options_email_tab.php:353
409
+ msgid "Send user email upon completion?"
410
  msgstr ""
411
 
412
+ #: php/qmn_options_email_tab.php:360
413
+ msgid "Send admin email upon completion?"
414
  msgstr ""
415
 
416
+ #: php/qmn_options_email_tab.php:367
417
+ msgid "What emails should we send the admin email to? Separate emails with a comma."
 
418
  msgstr ""
419
 
420
+ #: php/qmn_options_email_tab.php:371
421
+ msgid "What is the From Name for the email sent to users and admin?"
422
  msgstr ""
423
 
424
+ #: php/qmn_options_email_tab.php:377
425
+ msgid "Email Sent To User"
426
  msgstr ""
427
 
428
+ #: php/qmn_options_email_tab.php:378 php/qmn_options_email_tab.php:456
429
+ msgid "Add New User Email"
430
  msgstr ""
431
 
432
+ #: php/qmn_options_email_tab.php:383 php/qmn_options_email_tab.php:449
433
+ #: php/qmn_options_email_tab.php:470 php/qmn_options_email_tab.php:536
434
+ #: php/qmn_options_results_page_tab.php:223
435
+ #: php/qmn_options_results_page_tab.php:287
436
+ msgid "Score Greater Than Or Equal To"
437
  msgstr ""
438
 
439
+ #: php/qmn_options_email_tab.php:384 php/qmn_options_email_tab.php:450
440
+ #: php/qmn_options_email_tab.php:471 php/qmn_options_email_tab.php:537
441
+ #: php/qmn_options_results_page_tab.php:224
442
+ #: php/qmn_options_results_page_tab.php:288
443
+ msgid "Score Less Than Or Equal To"
444
  msgstr ""
445
 
446
+ #: php/qmn_options_email_tab.php:385 php/qmn_options_email_tab.php:451
447
+ #: php/qmn_options_email_tab.php:472 php/qmn_options_email_tab.php:538
448
+ msgid "Subject"
449
  msgstr ""
450
 
451
+ #: php/qmn_options_email_tab.php:386 php/qmn_options_email_tab.php:452
452
+ #: php/qmn_options_email_tab.php:473 php/qmn_options_email_tab.php:539
453
+ msgid "Email To Send"
454
  msgstr ""
455
 
456
+ #: php/qmn_options_email_tab.php:464
457
+ msgid "Email Sent To Admin"
 
458
  msgstr ""
459
 
460
+ #: php/qmn_options_email_tab.php:465 php/qmn_options_email_tab.php:543
461
+ msgid "Add New Admin Email"
462
  msgstr ""
463
 
464
+ #: php/qmn_options_leaderboard_tab.php:13
465
+ msgid "Leaderboard"
466
  msgstr ""
467
 
468
+ #: php/qmn_options_leaderboard_tab.php:39
469
+ msgid "The leaderboards has been updated successfully."
470
  msgstr ""
471
 
472
+ #: php/qmn_options_leaderboard_tab.php:66
473
+ msgid "The name of the user who is in first place"
474
  msgstr ""
475
 
476
+ #: php/qmn_options_leaderboard_tab.php:67
477
+ msgid "The score from the first place's quiz"
478
  msgstr ""
479
 
480
+ #: php/qmn_options_leaderboard_tab.php:71
481
+ msgid "The name of the user who is in second place"
482
  msgstr ""
483
 
484
+ #: php/qmn_options_leaderboard_tab.php:72
485
+ msgid "The score from the second place's quiz"
486
  msgstr ""
487
 
488
+ #: php/qmn_options_leaderboard_tab.php:76
489
+ msgid "The name of the user who is in third place"
490
  msgstr ""
491
 
492
+ #: php/qmn_options_leaderboard_tab.php:77
493
+ msgid "The score from the third place's quiz"
494
  msgstr ""
495
 
496
+ #: php/qmn_options_leaderboard_tab.php:81
497
+ msgid "The name of the user who is in fourth place"
498
  msgstr ""
499
 
500
+ #: php/qmn_options_leaderboard_tab.php:82
501
+ msgid "The score from the fourth place's quiz"
502
  msgstr ""
503
 
504
+ #: php/qmn_options_leaderboard_tab.php:86
505
+ msgid "The name of the user who is in fifth place"
506
  msgstr ""
507
 
508
+ #: php/qmn_options_leaderboard_tab.php:87
509
+ msgid "The score from the fifth place's quiz"
510
  msgstr ""
511
 
512
+ #: php/qmn_options_leaderboard_tab.php:94
513
+ #: php/qmn_options_leaderboard_tab.php:122
514
+ msgid "Save Leaderboard Options"
515
  msgstr ""
516
 
517
+ #: php/qmn_options_leaderboard_tab.php:103
518
+ msgid "Leaderboard Template"
519
  msgstr ""
520
 
521
+ #: php/qmn_options_option_tab.php:13
522
+ msgid "Options"
523
  msgstr ""
524
 
525
+ #: php/qmn_options_option_tab.php:107
526
+ msgid "The options has been updated successfully."
527
  msgstr ""
528
 
529
+ #: php/qmn_options_option_tab.php:148 php/qmn_options_option_tab.php:299
530
+ msgid "Save Options"
531
  msgstr ""
532
 
533
+ #: php/qmn_options_option_tab.php:156
534
+ msgid "Which system is this quiz graded on?"
535
  msgstr ""
536
 
537
+ #: php/qmn_options_option_tab.php:158
538
+ msgid "Correct/Incorrect"
539
  msgstr ""
540
 
541
+ #: php/qmn_options_option_tab.php:159
542
+ msgid "Points"
543
  msgstr ""
544
 
545
+ #: php/qmn_options_option_tab.php:160 php/qmn_results.php:265
546
+ msgid "Not Graded"
547
  msgstr ""
548
 
549
+ #: php/qmn_options_option_tab.php:164
550
+ msgid "Should the user be required to be logged in to take this quiz?"
551
  msgstr ""
552
 
553
+ #: php/qmn_options_option_tab.php:171
554
+ msgid "How many questions per page would you like? (Leave 0 for all questions on one page)"
555
  msgstr ""
556
 
557
+ #: php/qmn_options_option_tab.php:177
558
+ msgid "How many minutes does the user have to finish the quiz? (Leave 0 for no time limit)"
559
  msgstr ""
560
 
561
+ #: php/qmn_options_option_tab.php:183
562
+ msgid "How many times can a user take this quiz? (Leave 0 for as many times as the user wants to. Currently only works for registered users)"
563
  msgstr ""
564
 
565
+ #: php/qmn_options_option_tab.php:189
566
+ msgid "How many total entries can this quiz have? (Leave 0 for unlimited entries"
567
  msgstr ""
568
 
569
+ #: php/qmn_options_option_tab.php:195
570
+ msgid "How many questions should be loaded for quiz? (Leave 0 to load all questions)"
571
  msgstr ""
572
 
573
+ #: php/qmn_options_option_tab.php:201
574
+ msgid "What time-frame should the user be able to access the quiz? (Leave blank if the user can access anytime)"
575
  msgstr ""
576
 
577
+ #: php/qmn_options_option_tab.php:203
578
+ msgid "start date"
579
  msgstr ""
580
 
581
+ #: php/qmn_options_option_tab.php:206
582
+ msgid "end date"
583
  msgstr ""
584
 
585
+ #: php/qmn_options_option_tab.php:210
586
+ msgid "Are the questions random? (Question Order will not apply if this is yes)"
587
  msgstr ""
588
 
589
+ #: php/qmn_options_option_tab.php:212
590
+ msgid "Random Questions"
591
+ msgstr ""
592
 
593
+ #: php/qmn_options_option_tab.php:213
594
+ msgid "Random Questions And Answers"
595
  msgstr ""
596
 
597
+ #: php/qmn_options_option_tab.php:218
598
+ msgid "Would you like to ask for the contact information at the beginning or at the end of the quiz?"
599
  msgstr ""
600
 
601
+ #: php/qmn_options_option_tab.php:220
602
+ msgid "Beginning"
603
  msgstr ""
604
 
605
+ #: php/qmn_options_option_tab.php:221
606
+ msgid "End"
607
  msgstr ""
608
 
609
+ #: php/qmn_options_option_tab.php:225
610
+ msgid "If a logged-in user takes the quiz, would you like them to be able to edit contact information? If set to no, the fields will not show up for logged in users; however, the users information will be saved for the fields."
611
  msgstr ""
612
 
613
+ #: php/qmn_options_option_tab.php:232
614
+ msgid "Should we ask for users name?"
615
  msgstr ""
616
 
617
+ #: php/qmn_options_option_tab.php:235 php/qmn_options_option_tab.php:243
618
+ #: php/qmn_options_option_tab.php:251 php/qmn_options_option_tab.php:259
619
+ msgid "Require"
620
  msgstr ""
621
 
622
+ #: php/qmn_options_option_tab.php:240
623
+ msgid "Should we ask for users business?"
 
624
  msgstr ""
625
 
626
+ #: php/qmn_options_option_tab.php:248
627
+ msgid "Should we ask for users email?"
628
  msgstr ""
629
 
630
+ #: php/qmn_options_option_tab.php:256
631
+ msgid "Should we ask for users phone number?"
632
  msgstr ""
633
 
634
+ #: php/qmn_options_option_tab.php:264
635
+ msgid "Would you like a place for the user to enter comments?"
636
  msgstr ""
637
 
638
+ #: php/qmn_options_option_tab.php:271
639
+ msgid "Show question number on quiz?"
640
  msgstr ""
641
 
642
+ #: php/qmn_options_option_tab.php:278
643
+ msgid "Show social media sharing buttons? (Twitter & Facebook)"
644
  msgstr ""
645
 
646
+ #: php/qmn_options_option_tab.php:278
647
+ msgid "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!"
 
648
  msgstr ""
649
 
650
+ #: php/qmn_options_option_tab.php:285
651
+ msgid "Disable question once user selects answer? (Currently only work on multiple choice)"
652
  msgstr ""
653
 
654
+ #: php/qmn_options_option_tab.php:292
655
+ msgid "Dynamically add class for incorrect/correct answer after user selects answer? (Currently only works on multiple choice)"
656
  msgstr ""
657
 
658
+ #: php/qmn_options_preview_tab.php:13
659
+ msgid "Preview"
660
+ msgstr ""
661
+
662
+ #: php/qmn_options_questions_tab.php:13
663
  msgid "Questions"
664
  msgstr ""
665
 
666
+ #: php/qmn_options_questions_tab.php:28
667
  msgid "Answer"
668
  msgstr ""
669
 
670
+ #: php/qmn_options_questions_tab.php:126
671
  msgid "The question has been updated successfully."
672
  msgstr ""
673
 
674
+ #: php/qmn_options_questions_tab.php:153
675
  msgid "The question has been deleted successfully."
676
  msgstr ""
677
 
678
+ #: php/qmn_options_questions_tab.php:237
679
  msgid "The question has been duplicated successfully."
680
  msgstr ""
681
 
682
+ #: php/qmn_options_questions_tab.php:330
683
  msgid "The question has been created successfully."
684
  msgstr ""
685
 
686
+ #: php/qmn_options_questions_tab.php:448
687
  msgid "Add Question"
688
  msgstr ""
689
 
690
+ #: php/qmn_options_questions_tab.php:457
691
  #, php-format
692
  msgid "One question"
693
  msgid_plural "%s questions"
694
  msgstr[0] ""
695
  msgstr[1] ""
696
 
697
+ #: php/qmn_options_questions_tab.php:463 php/qmn_options_questions_tab.php:471
698
+ #: php/qmn_options_questions_tab.php:596
 
699
  msgid "Question Order"
700
  msgstr ""
701
 
702
+ #: php/qmn_options_questions_tab.php:464 php/qmn_options_questions_tab.php:472
703
+ #: php/qmn_options_questions_tab.php:575
 
704
  msgid "Question Type"
705
  msgstr ""
706
 
707
+ #: php/qmn_options_questions_tab.php:465 php/qmn_options_questions_tab.php:473
708
+ #: php/qmn_options_questions_tab.php:609
 
709
  msgid "Category"
710
  msgstr ""
711
 
712
+ #: php/qmn_options_questions_tab.php:466 php/qmn_options_questions_tab.php:474
 
713
  msgid "Question"
714
  msgstr ""
715
 
716
+ #: php/qmn_options_questions_tab.php:548
717
  msgid "For fill in the blank types, use %BLANK% to represent where to put the text box in your text."
718
  msgstr ""
719
 
720
+ #: php/qmn_options_questions_tab.php:553
721
  msgid "Answers"
722
  msgstr ""
723
 
724
+ #: php/qmn_options_questions_tab.php:554
725
  msgid "Points Worth"
726
  msgstr ""
727
 
728
+ #: php/qmn_options_questions_tab.php:555
729
  msgid "Correct Answer"
730
  msgstr ""
731
 
732
+ #: php/qmn_options_questions_tab.php:560
733
  msgid "Add New Answer!"
734
  msgstr ""
735
 
736
+ #: php/qmn_options_questions_tab.php:565
737
  msgid "Correct Answer Info"
738
  msgstr ""
739
 
740
+ #: php/qmn_options_questions_tab.php:570 php/qmn_quiz.php:477
741
+ msgid "Hint"
742
+ msgstr ""
743
+
744
+ #: php/qmn_options_questions_tab.php:587
745
  msgid "Comment Field"
746
  msgstr ""
747
 
748
+ #: php/qmn_options_questions_tab.php:589
749
  msgid "Small Text Field"
750
  msgstr ""
751
 
752
+ #: php/qmn_options_questions_tab.php:590
753
  msgid "Large Text Field"
754
  msgstr ""
755
 
756
+ #: php/qmn_options_questions_tab.php:591
757
  msgid "None"
758
  msgstr ""
759
 
760
+ #: php/qmn_options_questions_tab.php:601
761
  msgid "Required?"
762
  msgstr ""
763
 
764
+ #: php/qmn_options_questions_tab.php:632
765
  msgid "Create Question"
766
  msgstr ""
767
 
768
+ #: php/qmn_options_questions_tab.php:637
769
  msgid "Are you sure you want to delete this question?"
770
  msgstr ""
771
 
772
+ #: php/qmn_options_questions_tab.php:642
773
  msgid "Delete Question"
774
  msgstr ""
775
 
776
+ #: php/qmn_options_questions_tab.php:647
777
  msgid "Are you sure you want to duplicate this question?"
778
  msgstr ""
779
 
780
+ #: php/qmn_options_questions_tab.php:652
781
  msgid "Duplicate Question"
782
  msgstr ""
783
 
784
+ #: php/qmn_options_results_page_tab.php:13
785
+ msgid "Results Pages"
786
  msgstr ""
787
 
788
+ #: php/qmn_options_results_page_tab.php:55
789
+ msgid "The results page has been added successfully."
 
 
 
 
 
 
 
790
  msgstr ""
791
 
792
+ #: php/qmn_options_results_page_tab.php:95
793
+ msgid "The results page has been saved successfully."
794
  msgstr ""
795
 
796
+ #: php/qmn_options_results_page_tab.php:187
797
+ msgid "The amount of time user spent taking quiz in minutes"
798
  msgstr ""
799
 
800
+ #: php/qmn_options_results_page_tab.php:190
801
+ msgid "The amount of time user spent taking quiz in seconds"
802
  msgstr ""
803
 
804
+ #: php/qmn_options_results_page_tab.php:208
805
+ msgid "Displays button to share on Facebook."
806
  msgstr ""
807
 
808
+ #: php/qmn_options_results_page_tab.php:211
809
+ msgid "Displays button to share on Twitter."
810
  msgstr ""
811
 
812
+ #: php/qmn_options_results_page_tab.php:216
813
+ #: php/qmn_options_results_page_tab.php:297
814
+ msgid "Save Results Pages"
815
  msgstr ""
816
 
817
+ #: php/qmn_options_results_page_tab.php:217
818
+ #: php/qmn_options_results_page_tab.php:302
819
+ msgid "Add New Results Page"
820
  msgstr ""
821
 
822
+ #: php/qmn_options_results_page_tab.php:225
823
+ #: php/qmn_options_results_page_tab.php:289
824
+ msgid "Results Page Shown"
825
  msgstr ""
826
 
827
+ #: php/qmn_options_results_page_tab.php:226
828
+ #: php/qmn_options_results_page_tab.php:290
829
+ msgid "Redirect URL (Beta)"
830
  msgstr ""
831
 
832
+ #: php/qmn_options_results_page_tab.php:264 php/qmn_quiz_admin.php:283
833
+ msgid "Delete"
834
  msgstr ""
835
 
836
+ #: php/qmn_options_results_page_tab.php:264
837
+ msgid "Are you sure?"
838
  msgstr ""
839
 
840
+ #: php/qmn_options_style_tab.php:13
841
+ msgid "Style"
842
  msgstr ""
843
 
844
+ #: php/qmn_options_style_tab.php:39
845
+ msgid "The style has been saved successfully."
846
  msgstr ""
847
 
848
+ #: php/qmn_options_style_tab.php:78
849
+ msgid "Quiz Styles"
850
  msgstr ""
851
 
852
+ #: php/qmn_options_style_tab.php:79
853
+ msgid "Choose your style:"
854
  msgstr ""
855
 
856
+ #: php/qmn_options_style_tab.php:101
857
+ msgid "Custom"
858
  msgstr ""
859
 
860
+ #: php/qmn_options_style_tab.php:107 php/qmn_options_style_tab.php:119
861
+ msgid "Save Quiz Style"
 
862
  msgstr ""
863
 
864
+ #: php/qmn_options_style_tab.php:109
865
+ msgid "Custom Style CSS"
 
866
  msgstr ""
867
 
868
+ #: php/qmn_options_style_tab.php:110
869
+ msgid "For detailed help and guidance along with a list of different classes used in this plugin, please visit the following link:"
 
870
  msgstr ""
871
 
872
+ #: php/qmn_options_text_tab.php:13
873
+ msgid "Text"
 
874
  msgstr ""
875
 
876
+ #: php/qmn_options_text_tab.php:55
877
+ msgid "The templates has been updated successfully."
878
  msgstr ""
879
 
880
+ #: php/qmn_options_text_tab.php:86 php/qmn_quiz.php:1259
881
+ msgid "Previous"
882
  msgstr ""
883
 
884
+ #: php/qmn_options_text_tab.php:187 php/qmn_options_text_tab.php:347
885
+ msgid "Save Templates"
886
  msgstr ""
887
 
888
+ #: php/qmn_options_text_tab.php:193
889
+ msgid "Message Templates"
890
  msgstr ""
891
 
892
+ #: php/qmn_options_text_tab.php:197
893
+ msgid "Message Displayed Before Quiz"
894
  msgstr ""
895
 
896
+ #: php/qmn_options_text_tab.php:207
897
+ msgid "Message Displayed Before Comments Box If Enabled"
898
  msgstr ""
899
 
900
+ #: php/qmn_options_text_tab.php:217
901
+ msgid "Message Displayed At End Of Quiz (Leave Blank To Omit Text Section)"
902
  msgstr ""
903
 
904
+ #: php/qmn_options_text_tab.php:227
905
+ msgid "Message Displayed If User Has Tried Quiz Too Many Times"
 
906
  msgstr ""
907
 
908
+ #: php/qmn_options_text_tab.php:237
909
+ msgid "Message Displayed If User Is Not Logged In And Quiz Requires Users To Be Logged In"
910
  msgstr ""
911
 
912
+ #: php/qmn_options_text_tab.php:247
913
+ msgid "Message Displayed If Date Is Outside Scheduled Timeframe"
914
  msgstr ""
915
 
916
+ #: php/qmn_options_text_tab.php:257
917
+ msgid "Message Displayed If The Limit Of Total Entries Has Been Reached"
918
  msgstr ""
919
 
920
+ #: php/qmn_options_text_tab.php:267
921
+ msgid "%QUESTIONS_ANSWERS% Text"
922
  msgstr ""
923
 
924
+ #: php/qmn_options_text_tab.php:280
925
+ msgid "Twitter Sharing Text"
926
  msgstr ""
927
 
928
+ #: php/qmn_options_text_tab.php:297
929
+ msgid "Facebook Sharing Text"
930
  msgstr ""
931
 
932
+ #: php/qmn_options_text_tab.php:312
933
+ msgid "Other Templates"
934
  msgstr ""
935
 
936
+ #: php/qmn_options_text_tab.php:315
937
+ msgid "Text for submit button"
938
  msgstr ""
939
 
940
+ #: php/qmn_options_text_tab.php:319
941
+ msgid "Text for name field"
942
  msgstr ""
943
 
944
+ #: php/qmn_options_text_tab.php:323
945
+ msgid "Text for business field"
946
  msgstr ""
947
 
948
+ #: php/qmn_options_text_tab.php:327
949
+ msgid "Text for email field"
950
  msgstr ""
951
 
952
+ #: php/qmn_options_text_tab.php:331
953
+ msgid "Text for phone number field"
954
  msgstr ""
955
 
956
+ #: php/qmn_options_text_tab.php:335
957
+ msgid "Text for comments field"
958
  msgstr ""
959
 
960
+ #: php/qmn_options_text_tab.php:339
961
+ msgid "Text for previous button"
962
  msgstr ""
963
 
964
+ #: php/qmn_options_text_tab.php:343
965
+ msgid "Text for next button"
966
  msgstr ""
967
 
968
+ #: php/qmn_options_tools_tab.php:37
969
+ msgid "The stats has been reset successfully."
970
  msgstr ""
971
 
972
+ #: php/qmn_options_tools_tab.php:89
973
+ msgid "Use this button to reset all the stats collected for this quiz (Quiz Views and Times Quiz Has Been Taken)."
974
  msgstr ""
975
 
976
+ #: php/qmn_options_tools_tab.php:90
977
+ msgid "Reset Quiz Views And Taken Stats"
978
  msgstr ""
979
 
980
+ #: php/qmn_options_tools_tab.php:101
981
+ msgid "Are you sure you want to reset the stats to 0? All views and taken stats for this quiz will be reset. This is permanent and cannot be undone."
982
  msgstr ""
983
 
984
+ #: php/qmn_options_tools_tab.php:105
985
+ msgid "Reset All Stats For Quiz"
986
  msgstr ""
987
 
988
+ #: php/qmn_question_types.php:14
989
+ msgid "Multiple Choice"
 
 
 
990
  msgstr ""
991
 
992
+ #: php/qmn_question_types.php:108
993
+ msgid "Horizontal Multiple Choice"
994
  msgstr ""
995
 
996
+ #: php/qmn_question_types.php:201
997
+ msgid "Drop Down"
998
  msgstr ""
999
 
1000
+ #: php/qmn_question_types.php:291
1001
+ msgid "Small Open Answer"
1002
  msgstr ""
1003
 
1004
+ #: php/qmn_question_types.php:365
1005
+ msgid "Multiple Response"
1006
  msgstr ""
1007
 
1008
+ #: php/qmn_question_types.php:464
1009
+ msgid "Large Open Answer"
1010
  msgstr ""
1011
 
1012
+ #: php/qmn_question_types.php:538
1013
+ msgid "Text Block"
1014
  msgstr ""
1015
 
1016
+ #: php/qmn_question_types.php:573
1017
+ msgid "Number"
1018
  msgstr ""
1019
 
1020
+ #: php/qmn_question_types.php:649
1021
+ msgid "Accept"
1022
  msgstr ""
1023
 
1024
+ #: php/qmn_question_types.php:684
1025
+ msgid "Captcha"
1026
  msgstr ""
1027
 
1028
+ #: php/qmn_question_types.php:742
1029
+ msgid "Horizontal Multiple Response"
1030
  msgstr ""
1031
 
1032
+ #: php/qmn_question_types.php:843
1033
+ msgid "Fill In The Blank"
1034
  msgstr ""
1035
 
1036
+ #: php/qmn_quiz.php:350
1037
+ msgid "Not a valid e-mail address!"
1038
  msgstr ""
1039
 
1040
+ #: php/qmn_quiz.php:351
1041
+ msgid "This field must be a number!"
1042
  msgstr ""
1043
 
1044
+ #: php/qmn_quiz.php:352
1045
+ msgid "The entered text is not correct!"
1046
  msgstr ""
1047
 
1048
+ #: php/qmn_quiz.php:353
1049
+ msgid "Please complete all required fields!"
 
1050
  msgstr ""
1051
 
1052
+ #: php/qmn_quiz_admin.php:196
1053
+ msgid "Add New"
1054
  msgstr ""
1055
 
1056
+ #: php/qmn_quiz_admin.php:214
1057
+ #, php-format
1058
+ msgid "One quiz"
1059
+ msgid_plural "%s quizzes"
1060
+ msgstr[0] ""
1061
+ msgstr[1] ""
1062
+
1063
+ #: php/qmn_quiz_admin.php:259 php/qmn_quiz_admin.php:310
1064
+ #: php/qmn_quiz_admin.php:378 php/qmn_results.php:216
1065
+ msgid "Quiz Name"
1066
  msgstr ""
1067
 
1068
+ #: php/qmn_quiz_admin.php:260 php/qmn_quiz_admin.php:311
1069
+ msgid "URL"
1070
  msgstr ""
1071
 
1072
+ #: php/qmn_quiz_admin.php:261 php/qmn_quiz_admin.php:312
1073
+ msgid "Quiz Shortcode"
1074
  msgstr ""
1075
 
1076
+ #: php/qmn_quiz_admin.php:262 php/qmn_quiz_admin.php:313
1077
+ msgid "Leaderboard Shortcode"
1078
  msgstr ""
1079
 
1080
+ #: php/qmn_quiz_admin.php:263 php/qmn_quiz_admin.php:314
1081
+ msgid "Quiz Views"
1082
  msgstr ""
1083
 
1084
+ #: php/qmn_quiz_admin.php:264 php/qmn_quiz_admin.php:315
1085
+ msgid "Quiz Taken"
1086
  msgstr ""
1087
 
1088
+ #: php/qmn_quiz_admin.php:265 php/qmn_quiz_admin.php:316
1089
+ msgid "Last Modified"
1090
  msgstr ""
1091
 
1092
+ #: php/qmn_quiz_admin.php:278
1093
+ msgid "Edit Name"
1094
  msgstr ""
1095
 
1096
+ #: php/qmn_quiz_admin.php:280
1097
+ msgid "Edit"
1098
  msgstr ""
1099
 
1100
+ #: php/qmn_quiz_admin.php:281 php/qmn_results_details.php:135
1101
+ msgid "Results"
 
 
1102
  msgstr ""
1103
 
1104
+ #: php/qmn_quiz_admin.php:282 php/qmn_quiz_admin.php:411
1105
+ msgid "Duplicate"
 
 
1106
  msgstr ""
1107
 
1108
+ #: php/qmn_quiz_admin.php:373
1109
+ msgid "Create New Quiz"
1110
  msgstr ""
1111
 
1112
+ #: php/qmn_quiz_admin.php:387
1113
+ msgid "Create Quiz"
1114
  msgstr ""
1115
 
1116
+ #: php/qmn_quiz_admin.php:393
1117
+ msgid "Quiz Name:"
1118
  msgstr ""
1119
 
1120
+ #: php/qmn_quiz_admin.php:404
1121
+ msgid "Duplicate this quiz?"
1122
  msgstr ""
1123
 
1124
+ #: php/qmn_quiz_admin.php:406
1125
+ msgid "Duplicate questions with quiz"
1126
  msgstr ""
1127
 
1128
+ #: php/qmn_quiz_admin.php:408
1129
+ msgid "Name Of New Quiz:"
1130
  msgstr ""
1131
 
1132
+ #: php/qmn_quiz_admin.php:417
1133
+ msgid "Are you sure you want to delete this quiz?"
1134
  msgstr ""
1135
 
1136
+ #: php/qmn_quiz_admin.php:422
1137
+ msgid "Delete Quiz"
1138
  msgstr ""
1139
 
1140
+ #: php/qmn_quiz_creator.php:372
1141
+ msgid "Your new quiz has been created successfully. To begin editing your quiz, click the Edit link on the new quiz."
1142
  msgstr ""
1143
 
1144
+ #: php/qmn_quiz_creator.php:438
1145
+ msgid "Your quiz has been deleted successfully."
1146
  msgstr ""
1147
 
1148
+ #: php/qmn_quiz_creator.php:480
1149
+ msgid "Your quiz name has been updated successfully."
1150
  msgstr ""
1151
 
1152
+ #: php/qmn_quiz_creator.php:637
1153
+ msgid "Your quiz has been duplicated successfully."
1154
  msgstr ""
1155
 
1156
+ #: php/qmn_quiz_options.php:56
1157
+ #, php-format
1158
+ msgid "Quiz Settings For %s"
1159
  msgstr ""
1160
 
1161
+ #: php/qmn_quiz_options.php:96
1162
+ msgid "Please go to the quizzes page and click on the Edit link from the quiz you wish to edit."
1163
  msgstr ""
1164
 
1165
+ #: php/qmn_results.php:30
1166
+ msgid "Your results has been deleted successfully."
1167
  msgstr ""
1168
 
1169
+ #: php/qmn_results.php:168
1170
+ #, php-format
1171
+ msgid "One result"
1172
+ msgid_plural "%s results"
1173
+ msgstr[0] ""
1174
+ msgstr[1] ""
1175
+
1176
+ #: php/qmn_results.php:215
1177
+ msgid "Actions"
1178
  msgstr ""
1179
 
1180
+ #: php/qmn_results.php:217
1181
+ msgid "Score"
1182
  msgstr ""
1183
 
1184
+ #: php/qmn_results.php:218
1185
+ msgid "Time To Complete"
1186
  msgstr ""
1187
 
1188
+ #: php/qmn_results.php:219
1189
+ msgid "Name"
1190
  msgstr ""
1191
 
1192
+ #: php/qmn_results.php:220
1193
+ msgid "Business"
1194
  msgstr ""
1195
 
1196
+ #: php/qmn_results.php:221
1197
+ msgid "Email"
1198
  msgstr ""
1199
 
1200
+ #: php/qmn_results.php:222
1201
+ msgid "Phone"
1202
  msgstr ""
1203
 
1204
+ #: php/qmn_results.php:223
1205
+ msgid "Time Taken"
1206
+ msgstr ""
 
 
 
1207
 
1208
+ #: php/qmn_results.php:282
1209
+ msgid "Are you sure you want to delete these results?"
 
1210
  msgstr ""
1211
 
1212
+ #: php/qmn_results.php:287
1213
+ msgid "Delete Results"
 
1214
  msgstr ""
1215
 
1216
+ #: php/qmn_results_details.php:221
1217
+ msgid "Create Certificate"
 
1218
  msgstr ""
1219
 
1220
+ #: php/qmn_results_details.php:226
1221
+ msgid "Download Certificate Here"
 
1222
  msgstr ""
1223
 
1224
+ #: php/qmn_results_details.php:240
1225
+ msgid "Certificate"
 
1226
  msgstr ""
1227
 
1228
+ #: php/qmn_tools.php:107
1229
+ msgid "There has been an error! Please try again."
 
1230
  msgstr ""
1231
 
1232
+ #: php/qmn_tools.php:125
1233
+ msgid "Quiz Has Been Restored!"
1234
  msgstr ""
1235
 
1236
+ #: php/qmn_tools.php:130
1237
+ msgid "Choose a quiz in the drop down and then click the button to restore a deleted quiz."
1238
  msgstr ""
1239
 
1240
+ #: php/qmn_tools.php:140
1241
+ msgid "Restore Quiz"
 
1242
  msgstr ""
1243
 
1244
+ #: php/qmn_tools.php:176 php/qmn_tools.php:192
1245
+ #, php-format
1246
+ msgid "Previous %s Audits"
1247
  msgstr ""
1248
 
1249
+ #: php/qmn_tools.php:179 php/qmn_tools.php:186
1250
+ #, php-format
1251
+ msgid "Next %s Audits"
1252
  msgstr ""
1253
 
1254
+ #: php/qmn_tools.php:199
1255
+ msgid "User"
1256
  msgstr ""
1257
 
1258
+ #: php/qmn_tools.php:200
1259
+ msgid "Action"
1260
  msgstr ""
1261
 
1262
+ #: php/qmn_tools.php:201
1263
+ msgid "Time"
1264
  msgstr ""
1265
 
1266
+ #: php/qmn_usage_tracking.php:193
1267
+ msgid "Allow Quiz Master Next to anonymously track this plugin's usage and help us make this plugin better? No sensitive data is tracked."
1268
  msgstr ""
1269
 
1270
+ #: php/qmn_usage_tracking.php:194
1271
+ msgid "Allow"
1272
  msgstr ""
1273
 
1274
+ #: php/qmn_usage_tracking.php:195
1275
+ msgid "Do not allow"
1276
  msgstr ""
1277
 
1278
+ #: php/qmn_widgets.php:14
1279
  msgid "Quiz Master Next Leaderboard Widget"
1280
  msgstr ""
1281
 
1282
+ #: php/qmn_widgets.php:29
1283
  msgid "Widget Title"
1284
  msgstr ""
1285
 
1286
+ #: php/qmn_widgets.php:33
1287
  msgid "Quiz ID"
1288
  msgstr ""
 
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.3.1
6
  * Author: Frank Corso
7
  * Author URI: http://www.mylocalwebstop.com/
8
  * Plugin URI: http://www.quizmasternext.com/
@@ -16,7 +16,7 @@
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.3.1
20
  */
21
  if ( ! defined( 'ABSPATH' ) ) exit;
22
  /**
@@ -34,7 +34,7 @@ class MLWQuizMasterNext
34
  * @var string
35
  * @since 4.0.0
36
  */
37
- public $version = '4.3.1';
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.4.0
6
  * Author: Frank Corso
7
  * Author URI: http://www.mylocalwebstop.com/
8
  * Plugin URI: http://www.quizmasternext.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.4.0
20
  */
21
  if ( ! defined( 'ABSPATH' ) ) exit;
22
  /**
34
  * @var string
35
  * @since 4.0.0
36
  */
37
+ public $version = '4.4.0';
38
 
39
  /**
40
  * QMN Alert Manager Object
php/qmn_addons.php CHANGED
@@ -1,4 +1,11 @@
1
  <?php
 
 
 
 
 
 
 
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
  function qmn_addons_page()
4
  {
@@ -40,7 +47,12 @@ function qmn_addons_page()
40
  <?php
41
  }
42
 
43
-
 
 
 
 
 
44
  function qmn_generate_featured_addons()
45
  {
46
  wp_enqueue_style( 'qmn_addons_style', plugins_url( '../css/qmn_addons_page.css' , __FILE__ ) );
@@ -92,6 +104,13 @@ function qmn_generate_featured_addons()
92
  <?php
93
  }
94
 
 
 
 
 
 
 
 
95
  function qmn_featured_addons_tab()
96
  {
97
  global $mlwQuizMasterNext;
1
  <?php
2
+
3
+ /**
4
+ *Creates the add on page that is displayed in the add on settings page
5
+ *
6
+ * @return void
7
+ * @since 4.4.0
8
+ */
9
  if ( ! defined( 'ABSPATH' ) ) exit;
10
  function qmn_addons_page()
11
  {
47
  <?php
48
  }
49
 
50
+ /**
51
+ * Displays the contents of the featured add ons page.
52
+ *
53
+ * @return void
54
+ * @since 4.4.0
55
+ */
56
  function qmn_generate_featured_addons()
57
  {
58
  wp_enqueue_style( 'qmn_addons_style', plugins_url( '../css/qmn_addons_page.css' , __FILE__ ) );
104
  <?php
105
  }
106
 
107
+
108
+ /**
109
+ * This function registers the feature add ons tab.
110
+ *
111
+ * @return void
112
+ * @since 4.4.0
113
+ */
114
  function qmn_featured_addons_tab()
115
  {
116
  global $mlwQuizMasterNext;
php/qmn_adverts.php CHANGED
@@ -1,5 +1,14 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
 
 
 
 
 
 
 
 
 
3
  function mlw_qmn_show_adverts()
4
  {
5
  $mlw_advert = "";
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+
4
+ /**
5
+ * Creates the advertisements that are used throughout the plugin page.
6
+ *
7
+ * The advertisements are randomly generated every time the page is loaded. The function also handles the CSS for this.
8
+ *
9
+ * @return $mlw_advert This variable is the main variable of the function and contains the advertisement content.
10
+ * @since 4.4.0
11
+ */
12
  function mlw_qmn_show_adverts()
13
  {
14
  $mlw_advert = "";
php/qmn_alerts.php CHANGED
@@ -1,14 +1,32 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
 
 
 
 
 
 
3
  class MlwQmnAlertManager {
4
 
5
  public $alerts = array();
6
 
 
 
 
 
 
 
 
7
  public function newAlert($message, $type)
8
  {
9
  $this->alerts[] = array( 'message' => $message, 'type' => $type );
10
  }
11
 
 
 
 
 
 
12
  public function showAlerts()
13
  {
14
  $alert_list = "";
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+
4
+ /**
5
+ * This class handles all of the alerts. Tells the admin if something was added successfully or not.
6
+ *
7
+ * @since 4.4.0
8
+ */
9
  class MlwQmnAlertManager {
10
 
11
  public $alerts = array();
12
 
13
+ /**
14
+ * This function passes the alert message into the arrray $alerts
15
+ *
16
+ * @param $message This is the variable that contains the message to given as an alert.
17
+ * @param $type This variable holds either success/error and displays the correct message accordingly.
18
+ * @since 4.4.0
19
+ */
20
  public function newAlert($message, $type)
21
  {
22
  $this->alerts[] = array( 'message' => $message, 'type' => $type );
23
  }
24
 
25
+ /**
26
+ * This function shows the alerts. It shows either a success or error message.
27
+ *
28
+ * @since 4.4.0
29
+ */
30
  public function showAlerts()
31
  {
32
  $alert_list = "";
php/qmn_credits.php CHANGED
@@ -1,7 +1,10 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
- /*
4
- This page shows the about page
 
 
 
5
  */
6
 
7
  function mlw_generate_about_page()
@@ -34,32 +37,36 @@ function mlw_generate_about_page()
34
  <?php _e('Changelog', 'quiz-master-next'); ?></a>
35
  </h2>
36
  <div id="mlw_quiz_what_new">
37
- <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">Newly Updated Questions Tab</h2>
38
- <p style="text-align: center;">The newly updated questions tab now allows you to use the WordPress editor to edit your questions. This allows for easier media adding to question. We also added the ability to search through your questions as well. You can now also use shortcodes in the question.</p>
39
  <br />
40
- <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">Redesigned Stats Page</h2>
41
- <p style="text-align: center;">Continuing on with our process to slowly redesign the plugin, this update brings an updated stats page. We added new dynamic charts. There are many more items that we will be adding to this page over the next few updates.</p>
42
- <br />
43
- <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>
44
- <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. When you are ready, please <a href='http://mylocalwebstop.com/quiz-master-next-survey/'>take our survey</a>.</p>
45
  <br />
 
46
  <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>
47
  <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>
48
  <br />
49
  <hr />
50
  <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">For Developers:</h2>
51
  <br />
52
- <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">Add New Tabs To Stats Page</h2>
53
- <p style="text-align: center;">With our new stats page, developers can create their own tabs using our plugin helper class.</p>
54
- <br />
55
  <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>
56
  <p style="text-align: center;">We love github and use it for all of our plugins! Be sure to <a href="https://github.com/fpcorso/quiz_master_next/">make suggestions or contribute</a> to our Quiz Master Next repository.</p>
57
  <br />
58
  </div>
59
  <div id="mlw_quiz_changelog" style="display: none;">
60
- <h3><?php echo $mlw_quiz_version; ?> (April 22, 2015)</h3>
61
  <ul>
62
- <li>* Minor Bug Fixes</li>
 
 
 
 
 
 
 
 
63
  </ul>
64
  </div>
65
  </div>
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+ /**
4
+ * This function shows the about page. It also shows the changelog information.
5
+ *
6
+ * @return void
7
+ * @since 4.4.0
8
  */
9
 
10
  function mlw_generate_about_page()
37
  <?php _e('Changelog', 'quiz-master-next'); ?></a>
38
  </h2>
39
  <div id="mlw_quiz_what_new">
40
+ <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">Added new template variable %TIMER_MINUTES%</h2>
41
+ <p style="text-align: center;">The %TIMER_MINUTES% variable allows for the time it took the user on the quiz to be displayed on the Emails and the Results Pages in minutes. </p>
42
  <br />
43
+ <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">Timer now begins counting down after starting quiz if using pagination</h2>
44
+ <p style="text-align: center;">The timer now does not start until the user clicks the Next button when the user has pagination enabled.</p>
 
 
 
45
  <br />
46
+
47
  <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>
48
  <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>
49
  <br />
50
  <hr />
51
  <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">For Developers:</h2>
52
  <br />
53
+
 
 
54
  <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>
55
  <p style="text-align: center;">We love github and use it for all of our plugins! Be sure to <a href="https://github.com/fpcorso/quiz_master_next/">make suggestions or contribute</a> to our Quiz Master Next repository.</p>
56
  <br />
57
  </div>
58
  <div id="mlw_quiz_changelog" style="display: none;">
59
+ <h3><?php echo $mlw_quiz_version; ?> (June 11, 2015)</h3>
60
  <ul>
61
+ <li>* Added new template variable %TIMER_MINUTES% <a href="https://github.com/fpcorso/quiz_master_next/issues/209">GitHub Issue #209</a></li>
62
+ <li>* Eliminates first page if empty <a href="https://github.com/fpcorso/quiz_master_next/issues/182">GitHub Issue #182</a></li>
63
+ <li>* Timer now begins counting down after starting quiz if using pagination <a href="https://github.com/fpcorso/quiz_master_next/issues/181">GitHub Issue #181</a></li>
64
+ <li>* Amount Finished Compared To Amount In Quiz <a href="https://github.com/fpcorso/quiz_master_next/issues/21">GitHub Issue #21</a></li>
65
+ <li>* Bug Fix: Required Answers And Timer Doesn't Work Well Together <a href="https://github.com/fpcorso/quiz_master_next/issues/220">GitHub Issue #220</a></li>
66
+ <li>* Bug Fix: FPDF WriteHTML Path Not Being Created Correctly On Windows <a href="https://github.com/fpcorso/quiz_master_next/issues/204">GitHub Issue #204</a></li>
67
+ <li>* Bug Fix: Long quiz URL mangles page layout <a href="https://github.com/fpcorso/quiz_master_next/issues/202">GitHub Issue #202</a></li>
68
+ <li>* Bug Fix: Fixed Support Widget bug where the support widget was not always submitting correctly. </li>
69
+
70
  </ul>
71
  </div>
72
  </div>
php/qmn_dashboard_widgets.php CHANGED
@@ -1,5 +1,12 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
 
 
 
 
 
 
 
3
  function qmn_add_dashboard_widget()
4
  {
5
  if ( current_user_can( 'publish_posts' ) )
@@ -14,7 +21,14 @@ function qmn_add_dashboard_widget()
14
 
15
  add_action( 'wp_dashboard_setup', 'qmn_add_dashboard_widget' );
16
 
17
-
 
 
 
 
 
 
 
18
  function qmn_snapshot_dashboard_widget()
19
  {
20
  global $wpdb;
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+
4
+ /**
5
+ * This function adds a widget to the dashboard in wordpress.
6
+ *
7
+ * @return void
8
+ * @since 4.4.0
9
+ */
10
  function qmn_add_dashboard_widget()
11
  {
12
  if ( current_user_can( 'publish_posts' ) )
21
 
22
  add_action( 'wp_dashboard_setup', 'qmn_add_dashboard_widget' );
23
 
24
+ /**
25
+ * This function creates the actual widget that is added to the dashboard.
26
+ *
27
+ * This widget adds things like the most popular/least popular quiz. How many people have taken the quiz etc.
28
+ * @param type description
29
+ * @return type description
30
+ * @since 4.4.0
31
+ */
32
  function qmn_snapshot_dashboard_widget()
33
  {
34
  global $wpdb;
php/qmn_help.php CHANGED
@@ -1,9 +1,12 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
- /*
4
- This page shows the user how-to's for using the plugin
5
- */
6
 
 
 
 
 
 
 
7
  function mlw_generate_help_page()
8
  {
9
  ///Creates the widgets
@@ -32,6 +35,13 @@ function mlw_generate_help_page()
32
  <?php
33
  }
34
 
 
 
 
 
 
 
 
35
  function qmn_documentation_meta_box_content()
36
  {
37
  ?>
@@ -46,6 +56,12 @@ function qmn_documentation_meta_box_content()
46
  <?php
47
  }
48
 
 
 
 
 
 
 
49
  function qmn_support_meta_box_content()
50
  {
51
  $quiz_master_email_message = "";
@@ -66,7 +82,7 @@ function qmn_support_meta_box_content()
66
  'httpversion' => '1.0',
67
  'blocking' => true,
68
  'headers' => array(),
69
- 'body' => array( 'mlwUserName' => $user_name, 'mlwUserComp' => '', 'mlwUserEmail' => $user_email, 'question1' => 'Email', 'question3' => 'Quiz Master Next', 'question2' => $mlw_message, 'qmn_question_list' => '1Q3Q2Q', 'complete_quiz' => 'confirmation' ),
70
  'cookies' => array()
71
  )
72
  );
@@ -157,11 +173,23 @@ function qmn_support_meta_box_content()
157
  <?php
158
  }
159
 
 
 
 
 
 
 
160
  function qmn_system_meta_box_content()
161
  {
162
  echo qmn_get_system_info();
163
  }
164
 
 
 
 
 
 
 
165
  function qmn_get_system_info()
166
  {
167
  global $wpdb;
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
 
 
 
3
 
4
+ /**
5
+ * This function generates the help page.
6
+ *
7
+ * @return void
8
+ * @since 4.4.0
9
+ */
10
  function mlw_generate_help_page()
11
  {
12
  ///Creates the widgets
35
  <?php
36
  }
37
 
38
+ /**
39
+ * This function creates the text that is displayed on the help page.
40
+ *
41
+ * @param type description
42
+ * @return void
43
+ * @since 4.4.0
44
+ */
45
  function qmn_documentation_meta_box_content()
46
  {
47
  ?>
56
  <?php
57
  }
58
 
59
+ /**
60
+ * This function creates the content that is displayed on the help page.
61
+ *
62
+ * @return void
63
+ * @since 4.4.0
64
+ */
65
  function qmn_support_meta_box_content()
66
  {
67
  $quiz_master_email_message = "";
82
  'httpversion' => '1.0',
83
  'blocking' => true,
84
  'headers' => array(),
85
+ 'body' => array( 'mlwUserName' => $user_name, 'mlwUserComp' => '', 'mlwUserEmail' => $user_email, 'question1' => 'Email', 'question63' => 'Quiz Master Next', 'question2' => $mlw_message, 'qmn_question_list' => '1Q63Q2Q', 'complete_quiz' => 'confirmation', 'qmn_quiz_id' => '1' ),
86
  'cookies' => array()
87
  )
88
  );
173
  <?php
174
  }
175
 
176
+ /**
177
+ * This function echoes out the system info for the user.
178
+ *
179
+ * @return void
180
+ * @since 4.4.0
181
+ */
182
  function qmn_system_meta_box_content()
183
  {
184
  echo qmn_get_system_info();
185
  }
186
 
187
+ /**
188
+ * This function gets the content that is in the system info
189
+ *
190
+ * @return return $qmn_sys_info This variable contains all of the system info from the admins server.
191
+ * @since 4.4.0
192
+ */
193
  function qmn_get_system_info()
194
  {
195
  global $wpdb;
php/qmn_leaderboard.php CHANGED
@@ -1,7 +1,14 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
- /*
4
- This function creates the leaderboard from the shortcode.
 
 
 
 
 
 
 
5
  */
6
  function mlw_quiz_leaderboard_shortcode($atts)
7
  {
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+
4
+ /**
5
+ * This function creates the leaderboard that is displayed.
6
+ *
7
+ * Sorts the scores a quizzes by type.
8
+ *
9
+ * @param $atts This is wordpress return for shortcodes
10
+ * @return type $mlw_quiz_leaderboard_display This variable contains all the contents of the leaderboard.
11
+ * @since 4.4.0
12
  */
13
  function mlw_quiz_leaderboard_shortcode($atts)
14
  {
php/qmn_options_certificate_tab.php CHANGED
@@ -1,5 +1,14 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
 
 
 
 
 
 
 
 
 
3
  function qmn_settings_certificate_tab()
4
  {
5
  global $mlwQuizMasterNext;
@@ -7,6 +16,12 @@ function qmn_settings_certificate_tab()
7
  }
8
  add_action("plugins_loaded", 'qmn_settings_certificate_tab', 5);
9
 
 
 
 
 
 
 
10
  function mlw_options_certificate_tab_content()
11
  {
12
  global $wpdb;
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+
4
+ /**
5
+ * This function adds the certificate tab using our API.
6
+ *
7
+ * Long Description
8
+ *
9
+ * @return type description
10
+ * @since 4.4.0
11
+ */
12
  function qmn_settings_certificate_tab()
13
  {
14
  global $mlwQuizMasterNext;
16
  }
17
  add_action("plugins_loaded", 'qmn_settings_certificate_tab', 5);
18
 
19
+ /**
20
+ * Creates the content that is in the certificate tab.
21
+ *
22
+ * @return void
23
+ * @since 4.4.0
24
+ */
25
  function mlw_options_certificate_tab_content()
26
  {
27
  global $wpdb;
php/qmn_options_email_tab.php CHANGED
@@ -1,5 +1,12 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
 
 
 
 
 
 
 
3
  function qmn_settings_email_tab()
4
  {
5
  global $mlwQuizMasterNext;
@@ -7,6 +14,12 @@ function qmn_settings_email_tab()
7
  }
8
  add_action("plugins_loaded", 'qmn_settings_email_tab', 5);
9
 
 
 
 
 
 
 
10
  function mlw_options_emails_tab_content()
11
  {
12
  global $wpdb;
@@ -218,11 +231,24 @@ function mlw_options_emails_tab_content()
218
  </script>
219
  <div id="tabs-9" class="mlw_tab_content">
220
  <script>
 
 
 
 
 
 
221
  function delete_email(id)
222
  {
223
  document.getElementById('user_email_'+id).value = "Delete";
224
  document.mlw_quiz_save_email_form.submit();
225
  }
 
 
 
 
 
 
 
226
  function delete_admin_email(id)
227
  {
228
  document.getElementById('admin_email_'+id).value = "Delete";
@@ -268,7 +294,11 @@ function mlw_options_emails_tab_content()
268
  <span class="template_name">%COMMENT_SECTION%</span> - <?php _e('The comments the user entered into comment box if enabled', 'quiz-master-next'); ?>
269
  </div>
270
  <div class="template_variable">
271
- <span class="template_name">%TIMER%</span> - <?php _e('The amount of time user spent of quiz', 'quiz-master-next'); ?>
 
 
 
 
272
  </div>
273
  <div class="template_variable">
274
  <span class="template_name">%CERTIFICATE_LINK%</span> - <?php _e('The link to the certificate after completing the quiz', 'quiz-master-next'); ?>
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+
4
+ /**
5
+ * Creates the email tab in the Quiz Settings Page
6
+ *
7
+ * @return void
8
+ * @since 4.4.0
9
+ */
10
  function qmn_settings_email_tab()
11
  {
12
  global $mlwQuizMasterNext;
14
  }
15
  add_action("plugins_loaded", 'qmn_settings_email_tab', 5);
16
 
17
+ /**
18
+ * Creates the email content that is displayed on the email tab.
19
+ *
20
+ * @return void
21
+ * @since 4.4.0
22
+ */
23
  function mlw_options_emails_tab_content()
24
  {
25
  global $wpdb;
231
  </script>
232
  <div id="tabs-9" class="mlw_tab_content">
233
  <script>
234
+ /**
235
+ * This deletes the user email from the list of emails.
236
+ *
237
+ * @return id This variable contains the ID of the email so the correct one is deleted.
238
+ * @since 4.4.0
239
+ */
240
  function delete_email(id)
241
  {
242
  document.getElementById('user_email_'+id).value = "Delete";
243
  document.mlw_quiz_save_email_form.submit();
244
  }
245
+
246
+ /**
247
+ * This function deletes the admin email from the list of emails.
248
+ *
249
+ * @return id This variable contains the ID of the email so the right one is deleted.
250
+ * @since 4.4.0
251
+ */
252
  function delete_admin_email(id)
253
  {
254
  document.getElementById('admin_email_'+id).value = "Delete";
294
  <span class="template_name">%COMMENT_SECTION%</span> - <?php _e('The comments the user entered into comment box if enabled', 'quiz-master-next'); ?>
295
  </div>
296
  <div class="template_variable">
297
+ <span class="template_name">%TIMER%</span> - <?php _e('The amount of time user spent on quiz in seconds', 'quiz-master-next'); ?>
298
+ </div>
299
+ </div>
300
+ <div class="template_variable">
301
+ <span class="template_name">%TIMER_MINUTES%</span> - <?php _e('The amount of time user spent on quiz in minutes', 'quiz-master-next'); ?>
302
  </div>
303
  <div class="template_variable">
304
  <span class="template_name">%CERTIFICATE_LINK%</span> - <?php _e('The link to the certificate after completing the quiz', 'quiz-master-next'); ?>
php/qmn_options_leaderboard_tab.php CHANGED
@@ -1,5 +1,12 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
 
 
 
 
 
 
 
3
  function qmn_settings_leaderboard_tab()
4
  {
5
  global $mlwQuizMasterNext;
@@ -7,6 +14,13 @@ function qmn_settings_leaderboard_tab()
7
  }
8
  add_action("plugins_loaded", 'qmn_settings_leaderboard_tab', 5);
9
 
 
 
 
 
 
 
 
10
  function mlw_options_leaderboard_tab_content()
11
  {
12
  global $wpdb;
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+
4
+ /**
5
+ * Adds the leaderboard to the Quiz Settings page.
6
+ *
7
+ * @return void
8
+ * @since 4.4.0
9
+ */
10
  function qmn_settings_leaderboard_tab()
11
  {
12
  global $mlwQuizMasterNext;
14
  }
15
  add_action("plugins_loaded", 'qmn_settings_leaderboard_tab', 5);
16
 
17
+
18
+ /**
19
+ * Adds the leaderboard content to the leaderboard tab.
20
+ *
21
+ * @return void
22
+ * @since 4.4.0
23
+ */
24
  function mlw_options_leaderboard_tab_content()
25
  {
26
  global $wpdb;
php/qmn_options_option_tab.php CHANGED
@@ -1,5 +1,12 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
 
 
 
 
 
 
 
3
  function qmn_settings_options_tab()
4
  {
5
  global $mlwQuizMasterNext;
@@ -7,6 +14,12 @@ function qmn_settings_options_tab()
7
  }
8
  add_action("plugins_loaded", 'qmn_settings_options_tab', 5);
9
 
 
 
 
 
 
 
10
  function mlw_options_option_tab_content()
11
  {
12
  global $wpdb;
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+
4
+ /**
5
+ * Adds the Options tab to the Quiz Settings page.
6
+ *
7
+ * @return void
8
+ * @since 4.4.0
9
+ */
10
  function qmn_settings_options_tab()
11
  {
12
  global $mlwQuizMasterNext;
14
  }
15
  add_action("plugins_loaded", 'qmn_settings_options_tab', 5);
16
 
17
+ /**
18
+ * Adds the options content to the Quiz Settings page.
19
+ *
20
+ * @return void
21
+ * @since 4.4.0
22
+ */
23
  function mlw_options_option_tab_content()
24
  {
25
  global $wpdb;
php/qmn_options_preview_tab.php CHANGED
@@ -1,5 +1,12 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
 
 
 
 
 
 
 
3
  function qmn_settings_preview_tab()
4
  {
5
  global $mlwQuizMasterNext;
@@ -7,6 +14,12 @@ function qmn_settings_preview_tab()
7
  }
8
  add_action("plugins_loaded", 'qmn_settings_preview_tab', 5);
9
 
 
 
 
 
 
 
10
  function mlw_options_preview_tab_content()
11
  {
12
  ?>
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+
4
+ /**
5
+ * Adds the Settings Preview tab to the Quiz Settings page.
6
+ *
7
+ * @return void
8
+ * @since 4.4.0
9
+ */
10
  function qmn_settings_preview_tab()
11
  {
12
  global $mlwQuizMasterNext;
14
  }
15
  add_action("plugins_loaded", 'qmn_settings_preview_tab', 5);
16
 
17
+ /**
18
+ * Adds the options preview content to the Options preview tab.
19
+ *
20
+ * @return void
21
+ * @since 4.4.0
22
+ */
23
  function mlw_options_preview_tab_content()
24
  {
25
  ?>
php/qmn_options_questions_tab.php CHANGED
@@ -1,5 +1,12 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
 
 
 
 
 
 
 
3
  function qmn_settings_questions_tab()
4
  {
5
  global $mlwQuizMasterNext;
@@ -7,6 +14,13 @@ function qmn_settings_questions_tab()
7
  }
8
  add_action("plugins_loaded", 'qmn_settings_questions_tab', 5);
9
 
 
 
 
 
 
 
 
10
  function mlw_options_questions_tab_content()
11
  {
12
  ?>
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+
4
+ /**
5
+ * Adds the settings for questions tab to the Quiz Settings page.
6
+ *
7
+ * @return void
8
+ * @since 4.4.0
9
+ */
10
  function qmn_settings_questions_tab()
11
  {
12
  global $mlwQuizMasterNext;
14
  }
15
  add_action("plugins_loaded", 'qmn_settings_questions_tab', 5);
16
 
17
+
18
+ /**
19
+ * Adds the content for the options for questions tab.
20
+ *
21
+ * @return void
22
+ * @since 4.4.0
23
+ */
24
  function mlw_options_questions_tab_content()
25
  {
26
  ?>
php/qmn_options_results_page_tab.php CHANGED
@@ -1,11 +1,25 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
 
 
 
 
 
 
 
3
  function qmn_settings_results_tab()
4
  {
5
  global $mlwQuizMasterNext;
6
  $mlwQuizMasterNext->pluginHelper->register_quiz_settings_tabs(__("Results Pages", 'quiz-master-next'), 'mlw_options_results_tab_content');
7
  }
8
  add_action("plugins_loaded", 'qmn_settings_results_tab', 5);
 
 
 
 
 
 
 
9
  function mlw_options_results_tab_content()
10
  {
11
  global $wpdb;
@@ -169,8 +183,11 @@ function mlw_options_results_tab_content()
169
  <div class="template_variable">
170
  <span class="template_name">%COMMENT_SECTION%</span> - <?php _e('The comments the user entered into comment box if enabled', 'quiz-master-next'); ?>
171
  </div>
 
 
 
172
  <div class="template_variable">
173
- <span class="template_name">%TIMER%</span> - <?php _e('The amount of time user spent of quiz', 'quiz-master-next'); ?>
174
  </div>
175
  <div class="template_variable">
176
  <span class="template_name">%CERTIFICATE_LINK%</span> - <?php _e('The link to the certificate after completing the quiz', 'quiz-master-next'); ?>
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+
4
+ /**
5
+ * Adds the Results tab to the Quiz Settings page.
6
+ *
7
+ * @return void
8
+ * @since 4.4.0
9
+ */
10
  function qmn_settings_results_tab()
11
  {
12
  global $mlwQuizMasterNext;
13
  $mlwQuizMasterNext->pluginHelper->register_quiz_settings_tabs(__("Results Pages", 'quiz-master-next'), 'mlw_options_results_tab_content');
14
  }
15
  add_action("plugins_loaded", 'qmn_settings_results_tab', 5);
16
+
17
+ /**
18
+ * Adds the Results page content to the Results tab.
19
+ *
20
+ * @return void
21
+ * @since 4.4.0
22
+ */
23
  function mlw_options_results_tab_content()
24
  {
25
  global $wpdb;
183
  <div class="template_variable">
184
  <span class="template_name">%COMMENT_SECTION%</span> - <?php _e('The comments the user entered into comment box if enabled', 'quiz-master-next'); ?>
185
  </div>
186
+ <div class="template_variable">
187
+ <span class="template_name">%TIMER_MINUTES%</span> - <?php _e('The amount of time user spent taking quiz in minutes', 'quiz-master-next'); ?>
188
+ </div>
189
  <div class="template_variable">
190
+ <span class="template_name">%TIMER%</span> - <?php _e('The amount of time user spent taking quiz in seconds', 'quiz-master-next'); ?>
191
  </div>
192
  <div class="template_variable">
193
  <span class="template_name">%CERTIFICATE_LINK%</span> - <?php _e('The link to the certificate after completing the quiz', 'quiz-master-next'); ?>
php/qmn_options_style_tab.php CHANGED
@@ -1,5 +1,12 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
 
 
 
 
 
 
 
3
  function qmn_settings_style_tab()
4
  {
5
  global $mlwQuizMasterNext;
@@ -7,6 +14,12 @@ function qmn_settings_style_tab()
7
  }
8
  add_action("plugins_loaded", 'qmn_settings_style_tab', 5);
9
 
 
 
 
 
 
 
10
  function mlw_options_styling_tab_content()
11
  {
12
  global $wpdb;
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+
4
+ /**
5
+ * Adds the Style tab to the Quiz Settings page.
6
+ *
7
+ * @return void
8
+ * @since 4.4.0
9
+ */
10
  function qmn_settings_style_tab()
11
  {
12
  global $mlwQuizMasterNext;
14
  }
15
  add_action("plugins_loaded", 'qmn_settings_style_tab', 5);
16
 
17
+ /**
18
+ * Adds the Style tab content to the tab.
19
+ *
20
+ * @return void
21
+ * @since 4.4.0
22
+ */
23
  function mlw_options_styling_tab_content()
24
  {
25
  global $wpdb;
php/qmn_options_text_tab.php CHANGED
@@ -1,5 +1,12 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
 
 
 
 
 
 
 
3
  function qmn_settings_text_tab()
4
  {
5
  global $mlwQuizMasterNext;
@@ -7,6 +14,12 @@ function qmn_settings_text_tab()
7
  }
8
  add_action("plugins_loaded", 'qmn_settings_text_tab', 5);
9
 
 
 
 
 
 
 
10
  function mlw_options_text_tab_content()
11
  {
12
  global $wpdb;
@@ -128,7 +141,11 @@ function mlw_options_text_tab_content()
128
  <span class="template_name">%COMMENT_SECTION%</span> - <?php _e('The comments the user entered into comment box if enabled', 'quiz-master-next'); ?>
129
  </div>
130
  <div class="template_variable">
131
- <span class="template_name">%TIMER%</span> - <?php _e('The amount of time user spent of quiz', 'quiz-master-next'); ?>
 
 
 
 
132
  </div>
133
  <div class="template_variable">
134
  <span class="template_name">%CERTIFICATE_LINK%</span> - <?php _e('The link to the certificate after completing the quiz', 'quiz-master-next'); ?>
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+
4
+ /**
5
+ * Adds the Text tab to the Quiz Settings page.
6
+ *
7
+ * @return void
8
+ * @since 4.4.0
9
+ */
10
  function qmn_settings_text_tab()
11
  {
12
  global $mlwQuizMasterNext;
14
  }
15
  add_action("plugins_loaded", 'qmn_settings_text_tab', 5);
16
 
17
+ /**
18
+ * Adds the Text tab content to the tab.
19
+ *
20
+ * @return void
21
+ * @since 4.4.0
22
+ */
23
  function mlw_options_text_tab_content()
24
  {
25
  global $wpdb;
141
  <span class="template_name">%COMMENT_SECTION%</span> - <?php _e('The comments the user entered into comment box if enabled', 'quiz-master-next'); ?>
142
  </div>
143
  <div class="template_variable">
144
+ <span class="template_name">%TIMER%</span> - <?php _e('The amount of time user spent on quiz in seconds', 'quiz-master-next'); ?>
145
+ </div>
146
+ <div class="template_variable">
147
+ <span class="template_name">%TIMER_MINUTES%</span> - <?php _e('The amount of time user spent on quiz in minutes', 'quiz-master-next'); ?>
148
+ </div>
149
  </div>
150
  <div class="template_variable">
151
  <span class="template_name">%CERTIFICATE_LINK%</span> - <?php _e('The link to the certificate after completing the quiz', 'quiz-master-next'); ?>
php/qmn_options_tools_tab.php CHANGED
@@ -1,11 +1,25 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
 
 
 
 
 
 
 
3
  function qmn_settings_tools_tab()
4
  {
5
  global $mlwQuizMasterNext;
6
  $mlwQuizMasterNext->pluginHelper->register_quiz_settings_tabs(__("Tools", 'quiz-master-next'), 'mlw_options_tools_tab_content');
7
  }
8
  add_action("plugins_loaded", 'qmn_settings_tools_tab', 5);
 
 
 
 
 
 
 
9
  function mlw_options_tools_tab_content()
10
  {
11
  global $wpdb;
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+
4
+ /**
5
+ * Adds the Tools tab to the Quiz Settings page.
6
+ *
7
+ * @return void
8
+ * @since 4.4.0
9
+ */
10
  function qmn_settings_tools_tab()
11
  {
12
  global $mlwQuizMasterNext;
13
  $mlwQuizMasterNext->pluginHelper->register_quiz_settings_tabs(__("Tools", 'quiz-master-next'), 'mlw_options_tools_tab_content');
14
  }
15
  add_action("plugins_loaded", 'qmn_settings_tools_tab', 5);
16
+
17
+ /**
18
+ * Adds the Tools tab content to the Tools tab.
19
+ *
20
+ * @return void
21
+ * @since 4.4.0
22
+ */
23
  function mlw_options_tools_tab_content()
24
  {
25
  global $wpdb;
php/qmn_question_types.php CHANGED
@@ -1,12 +1,28 @@
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
  {
6
  global $mlwQuizMasterNext;
7
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Multiple Choice", 'quiz-master-next'), 'qmn_multiple_choice_display', true, 'qmn_multiple_choice_review', 0);
8
  }
9
 
 
 
 
 
 
 
 
 
 
10
  function qmn_multiple_choice_display($id, $question, $answers)
11
  {
12
  $question_display = '';
@@ -34,6 +50,15 @@ function qmn_multiple_choice_display($id, $question, $answers)
34
  return $question_display;
35
  }
36
 
 
 
 
 
 
 
 
 
 
37
  function qmn_multiple_choice_review($id, $question, $answers)
38
  {
39
  $return_array = array(
@@ -70,12 +95,28 @@ function qmn_multiple_choice_review($id, $question, $answers)
70
  }
71
 
72
  add_action("plugins_loaded", 'qmn_question_type_horizontal_multiple_choice');
 
 
 
 
 
 
 
73
  function qmn_question_type_horizontal_multiple_choice()
74
  {
75
  global $mlwQuizMasterNext;
76
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Horizontal Multiple Choice", 'quiz-master-next'), 'qmn_horizontal_multiple_choice_display', true, 'qmn_horizontal_multiple_choice_review', 1);
77
  }
78
 
 
 
 
 
 
 
 
 
 
79
  function qmn_horizontal_multiple_choice_display($id, $question, $answers)
80
  {
81
  $question_display = '';
@@ -102,6 +143,15 @@ function qmn_horizontal_multiple_choice_display($id, $question, $answers)
102
  return $question_display;
103
  }
104
 
 
 
 
 
 
 
 
 
 
105
  function qmn_horizontal_multiple_choice_review($id, $question, $answers)
106
  {
107
  $return_array = array(
@@ -138,12 +188,28 @@ function qmn_horizontal_multiple_choice_review($id, $question, $answers)
138
  }
139
 
140
  add_action("plugins_loaded", 'qmn_question_type_drop_down');
 
 
 
 
 
 
 
141
  function qmn_question_type_drop_down()
142
  {
143
  global $mlwQuizMasterNext;
144
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Drop Down", 'quiz-master-next'), 'qmn_drop_down_display', true, 'qmn_drop_down_review', 2);
145
  }
146
 
 
 
 
 
 
 
 
 
 
147
  function qmn_drop_down_display($id, $question, $answers)
148
  {
149
  $question_display = '';
@@ -167,6 +233,15 @@ function qmn_drop_down_display($id, $question, $answers)
167
  return $question_display;
168
  }
169
 
 
 
 
 
 
 
 
 
 
170
  function qmn_drop_down_review($id, $question, $answers)
171
  {
172
  $return_array = array(
@@ -203,12 +278,28 @@ function qmn_drop_down_review($id, $question, $answers)
203
  }
204
 
205
  add_action("plugins_loaded", 'qmn_question_type_small_open');
 
 
 
 
 
 
 
206
  function qmn_question_type_small_open()
207
  {
208
  global $mlwQuizMasterNext;
209
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Small Open Answer", 'quiz-master-next'), 'qmn_small_open_display', true, 'qmn_small_open_review', 3);
210
  }
211
 
 
 
 
 
 
 
 
 
 
212
  function qmn_small_open_display($id, $question, $answers)
213
  {
214
  $question_display = '';
@@ -221,6 +312,15 @@ function qmn_small_open_display($id, $question, $answers)
221
  return $question_display;
222
  }
223
 
 
 
 
 
 
 
 
 
 
224
  function qmn_small_open_review($id, $question, $answers)
225
  {
226
  $return_array = array(
@@ -252,12 +352,28 @@ function qmn_small_open_review($id, $question, $answers)
252
  }
253
 
254
  add_action("plugins_loaded", 'qmn_question_type_multiple_response');
 
 
 
 
 
 
 
255
  function qmn_question_type_multiple_response()
256
  {
257
  global $mlwQuizMasterNext;
258
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Multiple Response", 'quiz-master-next'), 'qmn_multiple_response_display', true, 'qmn_multiple_response_review', 4);
259
  }
260
 
 
 
 
 
 
 
 
 
 
261
  function qmn_multiple_response_display($id, $question, $answers)
262
  {
263
  $question_display = '';
@@ -284,6 +400,15 @@ function qmn_multiple_response_display($id, $question, $answers)
284
  return $question_display;
285
  }
286
 
 
 
 
 
 
 
 
 
 
287
  function qmn_multiple_response_review($id, $question, $answers)
288
  {
289
  $return_array = array(
@@ -327,12 +452,27 @@ function qmn_multiple_response_review($id, $question, $answers)
327
  }
328
 
329
  add_action("plugins_loaded", 'qmn_question_type_large_open');
 
 
 
 
 
 
330
  function qmn_question_type_large_open()
331
  {
332
  global $mlwQuizMasterNext;
333
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Large Open Answer", 'quiz-master-next'), 'qmn_large_open_display', true, 'qmn_large_open_review', 5);
334
  }
335
 
 
 
 
 
 
 
 
 
 
336
  function qmn_large_open_display($id, $question, $answers)
337
  {
338
  $question_display = '';
@@ -345,6 +485,15 @@ function qmn_large_open_display($id, $question, $answers)
345
  return $question_display;
346
  }
347
 
 
 
 
 
 
 
 
 
 
348
  function qmn_large_open_review($id, $question, $answers)
349
  {
350
  $return_array = array(
@@ -376,12 +525,29 @@ function qmn_large_open_review($id, $question, $answers)
376
  }
377
 
378
  add_action("plugins_loaded", 'qmn_question_type_text_block');
 
 
 
 
 
 
 
379
  function qmn_question_type_text_block()
380
  {
381
  global $mlwQuizMasterNext;
382
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Text Block", 'quiz-master-next'), 'qmn_text_block_display', false, null, 6);
383
  }
384
 
 
 
 
 
 
 
 
 
 
 
385
  function qmn_text_block_display($id, $question, $answers)
386
  {
387
  $question_display = '';
@@ -391,12 +557,32 @@ function qmn_text_block_display($id, $question, $answers)
391
  }
392
 
393
  add_action("plugins_loaded", 'qmn_question_type_number');
 
 
 
 
 
 
 
 
 
 
394
  function qmn_question_type_number()
395
  {
396
  global $mlwQuizMasterNext;
397
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Number", 'quiz-master-next'), 'qmn_number_display', true, 'qmn_number_review', 7);
398
  }
399
 
 
 
 
 
 
 
 
 
 
 
400
  function qmn_number_display($id, $question, $answers)
401
  {
402
  $question_display = '';
@@ -409,6 +595,16 @@ function qmn_number_display($id, $question, $answers)
409
  return $question_display;
410
  }
411
 
 
 
 
 
 
 
 
 
 
 
412
  function qmn_number_review($id, $question, $answers)
413
  {
414
  $return_array = array(
@@ -440,12 +636,28 @@ function qmn_number_review($id, $question, $answers)
440
  }
441
 
442
  add_action("plugins_loaded", 'qmn_question_type_accept');
 
 
 
 
 
 
 
443
  function qmn_question_type_accept()
444
  {
445
  global $mlwQuizMasterNext;
446
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Accept", 'quiz-master-next'), 'qmn_accept_display', false, null, 8);
447
  }
448
 
 
 
 
 
 
 
 
 
 
449
  function qmn_accept_display($id, $question, $answers)
450
  {
451
  $question_display = '';
@@ -459,12 +671,29 @@ function qmn_accept_display($id, $question, $answers)
459
  }
460
 
461
  add_action("plugins_loaded", 'qmn_question_type_captcha');
 
 
 
 
 
 
 
462
  function qmn_question_type_captcha()
463
  {
464
  global $mlwQuizMasterNext;
465
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Captcha", 'quiz-master-next'), 'qmn_captcha_display', false, null, 9);
466
  }
467
 
 
 
 
 
 
 
 
 
 
 
468
  function qmn_captcha_display($id, $question, $answers)
469
  {
470
  $question_display = '';
@@ -500,12 +729,29 @@ function qmn_captcha_display($id, $question, $answers)
500
  }
501
 
502
  add_action("plugins_loaded", 'qmn_question_type_horizontal_multiple_response');
 
 
 
 
 
 
 
503
  function qmn_question_type_horizontal_multiple_response()
504
  {
505
  global $mlwQuizMasterNext;
506
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Horizontal Multiple Response", 'quiz-master-next'), 'qmn_horizontal_multiple_response_display', true, 'qmn_horizontal_multiple_response_review', 10);
507
  }
508
 
 
 
 
 
 
 
 
 
 
 
509
  function qmn_horizontal_multiple_response_display($id, $question, $answers)
510
  {
511
  $question_display = '';
@@ -531,6 +777,16 @@ function qmn_horizontal_multiple_response_display($id, $question, $answers)
531
  return $question_display;
532
  }
533
 
 
 
 
 
 
 
 
 
 
 
534
  function qmn_horizontal_multiple_response_review($id, $question, $answers)
535
  {
536
  $return_array = array(
@@ -574,12 +830,29 @@ function qmn_horizontal_multiple_response_review($id, $question, $answers)
574
  }
575
 
576
  add_action("plugins_loaded", 'qmn_question_type_fill_blank');
 
 
 
 
 
 
 
577
  function qmn_question_type_fill_blank()
578
  {
579
  global $mlwQuizMasterNext;
580
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Fill In The Blank", 'quiz-master-next'), 'qmn_fill_blank_display', true, 'qmn_fill_blank_review');
581
  }
582
 
 
 
 
 
 
 
 
 
 
 
583
  function qmn_fill_blank_display($id, $question, $answers)
584
  {
585
  $question_display = '';
@@ -597,6 +870,16 @@ function qmn_fill_blank_display($id, $question, $answers)
597
  return $question_display;
598
  }
599
 
 
 
 
 
 
 
 
 
 
 
600
  function qmn_fill_blank_review($id, $question, $answers)
601
  {
602
  $return_array = array(
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
  add_action("plugins_loaded", 'qmn_question_type_multiple_choice');
4
+
5
+ /**
6
+ * Registers the multiple choice type
7
+ *
8
+ * @return void
9
+ * @since 4.4.0
10
+ */
11
  function qmn_question_type_multiple_choice()
12
  {
13
  global $mlwQuizMasterNext;
14
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Multiple Choice", 'quiz-master-next'), 'qmn_multiple_choice_display', true, 'qmn_multiple_choice_review', 0);
15
  }
16
 
17
+ /**
18
+ * This function shows the content of the multiple choice question.
19
+ *
20
+ * @params $id The ID of the multiple choice question
21
+ * @params $question The question that is being edited.
22
+ * @params @answers The array that contains the answers to the question.
23
+ * @return $question_display Contains all the content of the question
24
+ * @since 4.4.0
25
+ */
26
  function qmn_multiple_choice_display($id, $question, $answers)
27
  {
28
  $question_display = '';
50
  return $question_display;
51
  }
52
 
53
+ /**
54
+ * This function determines how the multiple choice question is graded.
55
+ *
56
+ * @params $id The ID of the multiple choice question
57
+ * @params $question The question that is being edited.
58
+ * @params @answers The array that contains the answers to the question.
59
+ * @return $return_array Returns the graded question to the results page
60
+ * @since 4.4.0
61
+ */
62
  function qmn_multiple_choice_review($id, $question, $answers)
63
  {
64
  $return_array = array(
95
  }
96
 
97
  add_action("plugins_loaded", 'qmn_question_type_horizontal_multiple_choice');
98
+
99
+ /**
100
+ * This function registers the horizontal multiple choice type.
101
+ *
102
+ * @return void
103
+ * @since 4.4.0
104
+ */
105
  function qmn_question_type_horizontal_multiple_choice()
106
  {
107
  global $mlwQuizMasterNext;
108
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Horizontal Multiple Choice", 'quiz-master-next'), 'qmn_horizontal_multiple_choice_display', true, 'qmn_horizontal_multiple_choice_review', 1);
109
  }
110
 
111
+ /**
112
+ * This function shows the content of the horizontal multiple choice question.
113
+ *
114
+ * @params $id The ID of the multiple choice question
115
+ * @params $question The question that is being edited.
116
+ * @params @answers The array that contains the answers to the question.
117
+ * @return $question_display Contains all the content of the question
118
+ * @since 4.4.0
119
+ */
120
  function qmn_horizontal_multiple_choice_display($id, $question, $answers)
121
  {
122
  $question_display = '';
143
  return $question_display;
144
  }
145
 
146
+ /**
147
+ * This function determines how the question is graded.
148
+ *
149
+ * @params $id The ID of the multiple choice question
150
+ * @params $question The question that is being edited.
151
+ * @params @answers The array that contains the answers to the question.
152
+ * @return $return_array Returns the graded question to the results page
153
+ * @since 4.4.0
154
+ */
155
  function qmn_horizontal_multiple_choice_review($id, $question, $answers)
156
  {
157
  $return_array = array(
188
  }
189
 
190
  add_action("plugins_loaded", 'qmn_question_type_drop_down');
191
+
192
+ /**
193
+ * This function registers the drop down question type
194
+ *
195
+ * @return void
196
+ * @since 4.4.0
197
+ */
198
  function qmn_question_type_drop_down()
199
  {
200
  global $mlwQuizMasterNext;
201
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Drop Down", 'quiz-master-next'), 'qmn_drop_down_display', true, 'qmn_drop_down_review', 2);
202
  }
203
 
204
+ /**
205
+ * This function shows the content of the multiple choice question.
206
+ *
207
+ * @params $id The ID of the multiple choice question
208
+ * @params $question The question that is being edited.
209
+ * @params @answers The array that contains the answers to the question.
210
+ * @return $question_display Contains all the content of the question
211
+ * @since 4.4.0
212
+ */
213
  function qmn_drop_down_display($id, $question, $answers)
214
  {
215
  $question_display = '';
233
  return $question_display;
234
  }
235
 
236
+ /**
237
+ * This function determines how the question is graded
238
+ *
239
+ * @params $id The ID of the multiple choice question
240
+ * @params $question The question that is being edited.
241
+ * @params @answers The array that contains the answers to the question.
242
+ * @return $return_array Returns the graded question to the results page
243
+ * @since 4.4.0
244
+ */
245
  function qmn_drop_down_review($id, $question, $answers)
246
  {
247
  $return_array = array(
278
  }
279
 
280
  add_action("plugins_loaded", 'qmn_question_type_small_open');
281
+
282
+ /**
283
+ * This function registers the small open question type
284
+ *
285
+ * @return void
286
+ * @since 4.4.0
287
+ */
288
  function qmn_question_type_small_open()
289
  {
290
  global $mlwQuizMasterNext;
291
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Small Open Answer", 'quiz-master-next'), 'qmn_small_open_display', true, 'qmn_small_open_review', 3);
292
  }
293
 
294
+ /**
295
+ * This function shows the content of the small open answer question.
296
+ *
297
+ * @params $id The ID of the multiple choice question
298
+ * @params $question The question that is being edited.
299
+ * @params @answers The array that contains the answers to the question.
300
+ * @return $question_display Contains all the content of the question
301
+ * @since 4.4.0
302
+ */
303
  function qmn_small_open_display($id, $question, $answers)
304
  {
305
  $question_display = '';
312
  return $question_display;
313
  }
314
 
315
+ /**
316
+ * This function reviews the small open answer.
317
+ *
318
+ * @params $id The ID of the multiple choice question
319
+ * @params $question The question that is being edited.
320
+ * @params @answers The array that contains the answers to the question.
321
+ * @return $return_array Returns the graded question to the results page
322
+ * @since 4.4.0
323
+ */
324
  function qmn_small_open_review($id, $question, $answers)
325
  {
326
  $return_array = array(
352
  }
353
 
354
  add_action("plugins_loaded", 'qmn_question_type_multiple_response');
355
+
356
+ /**
357
+ * This function registers the multiple response question type
358
+ *
359
+ * @return void
360
+ * @since 4.4.0
361
+ */
362
  function qmn_question_type_multiple_response()
363
  {
364
  global $mlwQuizMasterNext;
365
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Multiple Response", 'quiz-master-next'), 'qmn_multiple_response_display', true, 'qmn_multiple_response_review', 4);
366
  }
367
 
368
+ /**
369
+ * This function shows the content of the multiple response question
370
+ *
371
+ * @params $id The ID of the multiple choice question
372
+ * @params $question The question that is being edited.
373
+ * @params @answers The array that contains the answers to the question.
374
+ * @return $question_display Contains all the content of the question
375
+ * @since 4.4.0
376
+ */
377
  function qmn_multiple_response_display($id, $question, $answers)
378
  {
379
  $question_display = '';
400
  return $question_display;
401
  }
402
 
403
+ /**
404
+ * This function determines how the multiple response is graded,
405
+ *
406
+ * @params $id The ID of the multiple choice question
407
+ * @params $question The question that is being edited.
408
+ * @params @answers The array that contains the answers to the question.
409
+ * @return $return_array Returns the graded question to the results page
410
+ * @since 4.4.0
411
+ */
412
  function qmn_multiple_response_review($id, $question, $answers)
413
  {
414
  $return_array = array(
452
  }
453
 
454
  add_action("plugins_loaded", 'qmn_question_type_large_open');
455
+
456
+ /**
457
+ * This function registers the large open question type.
458
+ *
459
+ * @since 4.4.0
460
+ */
461
  function qmn_question_type_large_open()
462
  {
463
  global $mlwQuizMasterNext;
464
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Large Open Answer", 'quiz-master-next'), 'qmn_large_open_display', true, 'qmn_large_open_review', 5);
465
  }
466
 
467
+ /**
468
+ * This function displays the content of the large open question.
469
+ *
470
+ * @params $id The ID of the multiple choice question
471
+ * @params $question The question that is being edited.
472
+ * @params @answers The array that contains the answers to the question.
473
+ * @return $question_display Contains all the content of the question
474
+ * @since 4.4.0
475
+ */
476
  function qmn_large_open_display($id, $question, $answers)
477
  {
478
  $question_display = '';
485
  return $question_display;
486
  }
487
 
488
+ /**
489
+ * This function determines how the large open question is graded
490
+ *
491
+ * @params $id The ID of the multiple choice question
492
+ * @params $question The question that is being edited.
493
+ * @params @answers The array that contains the answers to the question.
494
+ * @return $return_array Returns the graded question to the results page
495
+ * @since 4.4.0
496
+ */
497
  function qmn_large_open_review($id, $question, $answers)
498
  {
499
  $return_array = array(
525
  }
526
 
527
  add_action("plugins_loaded", 'qmn_question_type_text_block');
528
+
529
+ /**
530
+ * This function registers the text block question type
531
+ *
532
+ * @return void
533
+ * @since 4.4.0
534
+ */
535
  function qmn_question_type_text_block()
536
  {
537
  global $mlwQuizMasterNext;
538
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Text Block", 'quiz-master-next'), 'qmn_text_block_display', false, null, 6);
539
  }
540
 
541
+
542
+ /**
543
+ * This function displays the contents of the text block question type.
544
+ *
545
+ * @params $id The ID of the multiple choice question
546
+ * @params $question The question that is being edited.
547
+ * @params @answers The array that contains the answers to the question.
548
+ * @return $question_display Contains all the content of the question
549
+ * @since 4.4.0
550
+ */
551
  function qmn_text_block_display($id, $question, $answers)
552
  {
553
  $question_display = '';
557
  }
558
 
559
  add_action("plugins_loaded", 'qmn_question_type_number');
560
+
561
+ /**
562
+ * This function registers the number question type
563
+ *
564
+ * @params $id The ID of the multiple choice question
565
+ * @params $question The question that is being edited.
566
+ * @params @answers The array that contains the answers to the question.
567
+ * @return void
568
+ * @since 4.4.0
569
+ */
570
  function qmn_question_type_number()
571
  {
572
  global $mlwQuizMasterNext;
573
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Number", 'quiz-master-next'), 'qmn_number_display', true, 'qmn_number_review', 7);
574
  }
575
 
576
+
577
+ /**
578
+ * This function shows the content of the multiple choice question.
579
+ *
580
+ * @params $id The ID of the multiple choice question
581
+ * @params $question The question that is being edited.
582
+ * @params @answers The array that contains the answers to the question.
583
+ * @return $question_display Contains all the content of the question
584
+ * @since 4.4.0
585
+ */
586
  function qmn_number_display($id, $question, $answers)
587
  {
588
  $question_display = '';
595
  return $question_display;
596
  }
597
 
598
+
599
+ /**
600
+ * This function determines how the number question type is graded.
601
+ *
602
+ * @params $id The ID of the multiple choice question
603
+ * @params $question The question that is being edited.
604
+ * @params @answers The array that contains the answers to the question.
605
+ * @return $return_array Returns the graded question to the results page
606
+ * @since 4.4.0
607
+ */
608
  function qmn_number_review($id, $question, $answers)
609
  {
610
  $return_array = array(
636
  }
637
 
638
  add_action("plugins_loaded", 'qmn_question_type_accept');
639
+
640
+ /**
641
+ * This function registers the accept question type.
642
+ *
643
+ * @return void Description
644
+ * @since 4.4.0
645
+ */
646
  function qmn_question_type_accept()
647
  {
648
  global $mlwQuizMasterNext;
649
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Accept", 'quiz-master-next'), 'qmn_accept_display', false, null, 8);
650
  }
651
 
652
+ /**
653
+ * This function displays the accept question
654
+ *
655
+ * @params $id The ID of the multiple choice question
656
+ * @params $question The question that is being edited.
657
+ * @params @answers The array that contains the answers to the question.
658
+ * @return $question_display Contains all the content of the question
659
+ * @since 4.4.0
660
+ */
661
  function qmn_accept_display($id, $question, $answers)
662
  {
663
  $question_display = '';
671
  }
672
 
673
  add_action("plugins_loaded", 'qmn_question_type_captcha');
674
+
675
+ /**
676
+ * This function registers the captcha question
677
+ *
678
+ *
679
+ * @since 4.4.0
680
+ */
681
  function qmn_question_type_captcha()
682
  {
683
  global $mlwQuizMasterNext;
684
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Captcha", 'quiz-master-next'), 'qmn_captcha_display', false, null, 9);
685
  }
686
 
687
+
688
+ /**
689
+ * This function displays the captcha question
690
+ *
691
+ * @params $id The ID of the multiple choice question
692
+ * @params $question The question that is being edited.
693
+ * @params @answers The array that contains the answers to the question.
694
+ * @return $question_display Contains all the content of the question
695
+ * @since 4.4.0
696
+ */
697
  function qmn_captcha_display($id, $question, $answers)
698
  {
699
  $question_display = '';
729
  }
730
 
731
  add_action("plugins_loaded", 'qmn_question_type_horizontal_multiple_response');
732
+
733
+ /**
734
+ * This function registers the horizontal multiple response question
735
+ *
736
+ * @return void
737
+ * @since 4.4.0
738
+ */
739
  function qmn_question_type_horizontal_multiple_response()
740
  {
741
  global $mlwQuizMasterNext;
742
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Horizontal Multiple Response", 'quiz-master-next'), 'qmn_horizontal_multiple_response_display', true, 'qmn_horizontal_multiple_response_review', 10);
743
  }
744
 
745
+
746
+ /**
747
+ * This function displays the content of the multiple response question type
748
+ *
749
+ * @params $id The ID of the multiple choice question
750
+ * @params $question The question that is being edited.
751
+ * @params @answers The array that contains the answers to the question.
752
+ * @return $question_display Contains all the content of the question
753
+ * @since 4.4.0
754
+ */
755
  function qmn_horizontal_multiple_response_display($id, $question, $answers)
756
  {
757
  $question_display = '';
777
  return $question_display;
778
  }
779
 
780
+
781
+ /**
782
+ * This function determines how the multiple response is graded.
783
+ *
784
+ * @params $id The ID of the multiple choice question
785
+ * @params $question The question that is being edited.
786
+ * @params @answers The array that contains the answers to the question.
787
+ * @return $return_array Returns the graded question to the Results page
788
+ * @since 4.4.0
789
+ */
790
  function qmn_horizontal_multiple_response_review($id, $question, $answers)
791
  {
792
  $return_array = array(
830
  }
831
 
832
  add_action("plugins_loaded", 'qmn_question_type_fill_blank');
833
+
834
+ /**
835
+ * This function registers the fill in the blank question type
836
+ *
837
+ * @return void
838
+ * @since 4.4.0
839
+ */
840
  function qmn_question_type_fill_blank()
841
  {
842
  global $mlwQuizMasterNext;
843
  $mlwQuizMasterNext->pluginHelper->register_question_type(__("Fill In The Blank", 'quiz-master-next'), 'qmn_fill_blank_display', true, 'qmn_fill_blank_review');
844
  }
845
 
846
+
847
+ /**
848
+ * This function displays the fill in the blank question
849
+ *
850
+ * @params $id The ID of the multiple choice question
851
+ * @params $question The question that is being edited.
852
+ * @params @answers The array that contains the answers to the question.
853
+ * @return $question_display Returns the content of the question
854
+ * @since 4.4.0
855
+ */
856
  function qmn_fill_blank_display($id, $question, $answers)
857
  {
858
  $question_display = '';
870
  return $question_display;
871
  }
872
 
873
+
874
+ /**
875
+ * This function determines how the fill in the blank question is graded.
876
+ *
877
+ * @params $id The ID of the multiple choice question
878
+ * @params $question The question that is being edited.
879
+ * @params @answers The array that contains the answers to the question.
880
+ * @return $return_array Returns the graded question to the results page
881
+ * @since 4.4.0
882
+ */
883
  function qmn_fill_blank_review($id, $question, $answers)
884
  {
885
  $return_array = array(
php/qmn_quiz.php CHANGED
@@ -369,7 +369,7 @@ class QMNQuizManager
369
  global $qmn_total_questions;
370
  $qmn_total_questions = 0;
371
  global $mlw_qmn_section_count;
372
- $mlw_qmn_section_count = 1;
373
 
374
  $quiz_display .= "<div class='mlw_qmn_quiz'>";
375
  $quiz_display .= "<form name='quizForm' id='quizForm' action='' method='post' class='mlw_quiz_form' onsubmit='return mlw_validateForm()' novalidate >";
@@ -406,20 +406,32 @@ class QMNQuizManager
406
  */
407
  public function display_begin_section($qmn_quiz_options, $qmn_array_for_variables)
408
  {
409
- global $mlw_qmn_section_count;
410
- $section_display = "<div class='quiz_section quiz_begin slide$mlw_qmn_section_count'>";
411
 
412
- $message_before = wpautop(htmlspecialchars_decode($qmn_quiz_options->message_before, ENT_QUOTES));
413
- $message_before = apply_filters( 'mlw_qmn_template_variable_quiz_page', $message_before, $qmn_array_for_variables);
 
 
 
 
414
 
415
- $section_display .= "<span class='mlw_qmn_message_before'>$message_before</span><br />";
416
- $section_display .= "<span name='mlw_error_message' id='mlw_error_message' class='qmn_error'></span><br />";
417
 
418
- if ($qmn_quiz_options->contact_info_location == 0)
419
- {
 
 
 
420
  $section_display .= mlwDisplayContactInfo($qmn_quiz_options);
421
- }
422
- $section_display .= "</div>";
 
 
 
 
 
 
423
  return $section_display;
424
  }
425
 
@@ -816,11 +828,10 @@ class QMNQuizManager
816
  $mlw_message_certificate = $mlw_certificate_options[1];
817
  $mlw_message_certificate = apply_filters( 'mlw_qmn_template_variable_results_page', $mlw_message_certificate, $qmn_array_for_variables);
818
  $mlw_message_certificate = str_replace( "\n" , "<br>", $mlw_message_certificate);
819
- $mlw_plugindirpath = plugin_dir_path( __FILE__ );
820
- $plugindirpath=plugin_dir_path( __FILE__ );
821
  $mlw_qmn_certificate_file=<<<EOC
822
  <?php
823
- include("$plugindirpath/fpdf/WriteHTML.php");
824
  \$pdf=new PDF_HTML();
825
  \$pdf->AddPage('L');
826
  EOC;
@@ -1236,11 +1247,6 @@ function qmn_pagination_check($display, $qmn_quiz_options, $qmn_array_for_variab
1236
  $total_questions = $wpdb->get_var($wpdb->prepare("SELECT COUNT(quiz_id) FROM ".$wpdb->prefix."mlw_questions WHERE deleted=0 AND quiz_id=%d", $qmn_array_for_variables["quiz_id"]));
1237
  }
1238
  $display .= "<style>.quiz_section { display: none; }</style>";
1239
- $mlw_qmn_section_limit = 2 + $total_questions;
1240
- if ($qmn_quiz_options->comment_section == 0)
1241
- {
1242
- $mlw_qmn_section_limit = $mlw_qmn_section_limit + 1;
1243
- }
1244
 
1245
  //Gather text for pagination buttons
1246
  $mlw_qmn_pagination_text = "";
@@ -1255,7 +1261,8 @@ function qmn_pagination_check($display, $qmn_quiz_options, $qmn_array_for_variab
1255
  ?>
1256
  <script type="text/javascript">
1257
  var qmn_pagination = <?php echo $qmn_quiz_options->pagination; ?>;
1258
- var qmn_section_limit = <?php echo $mlw_qmn_section_limit; ?>;
 
1259
  var qmn_pagination_previous_text = '<?php echo $mlw_qmn_pagination_text[0]; ?>';
1260
  var qmn_pagination_next_text = '<?php echo $mlw_qmn_pagination_text[1]; ?>';
1261
  </script>
@@ -1272,7 +1279,7 @@ function qmn_timer_check($display, $qmn_quiz_options, $qmn_array_for_variables)
1272
  if ($qmn_allowed_visit && $qmn_quiz_options->timer_limit != 0)
1273
  {
1274
  ?>
1275
- <div id="mlw_qmn_timer" class="mlw_qmn_timer"></div>
1276
  <script type="text/javascript">
1277
  var qmn_quiz_id = <?php echo $qmn_array_for_variables['quiz_id']; ?>;
1278
  var qmn_timer_limit = <?php echo $qmn_quiz_options->timer_limit; ?>;
369
  global $qmn_total_questions;
370
  $qmn_total_questions = 0;
371
  global $mlw_qmn_section_count;
372
+ $mlw_qmn_section_count = 0;
373
 
374
  $quiz_display .= "<div class='mlw_qmn_quiz'>";
375
  $quiz_display .= "<form name='quizForm' id='quizForm' action='' method='post' class='mlw_quiz_form' onsubmit='return mlw_validateForm()' novalidate >";
406
  */
407
  public function display_begin_section($qmn_quiz_options, $qmn_array_for_variables)
408
  {
409
+ $section_display = "";
 
410
 
411
+ if (!empty($qmn_quiz_options->message_before) OR $qmn_quiz_options->contact_info_location == 0)
412
+ {
413
+ $section_display.= "<script> var firstPage = true; </script>";
414
+ global $mlw_qmn_section_count;
415
+ $mlw_qmn_section_count +=1;
416
+ $section_display .= "<div class='quiz_section quiz_begin slide$mlw_qmn_section_count'>";
417
 
418
+ $message_before = wpautop(htmlspecialchars_decode($qmn_quiz_options->message_before, ENT_QUOTES));
419
+ $message_before = apply_filters( 'mlw_qmn_template_variable_quiz_page', $message_before, $qmn_array_for_variables);
420
 
421
+ $section_display .= "<span class='mlw_qmn_message_before'>$message_before</span><br />";
422
+ $section_display .= "<span name='mlw_error_message' id='mlw_error_message' class='qmn_error'></span><br />";
423
+
424
+ if ($qmn_quiz_options->contact_info_location == 0)
425
+ {
426
  $section_display .= mlwDisplayContactInfo($qmn_quiz_options);
427
+ }
428
+ $section_display .= "</div>";
429
+
430
+ }
431
+ else
432
+ {
433
+ $section_display.= "<script> var firstPage = false; </script>";
434
+ }
435
  return $section_display;
436
  }
437
 
828
  $mlw_message_certificate = $mlw_certificate_options[1];
829
  $mlw_message_certificate = apply_filters( 'mlw_qmn_template_variable_results_page', $mlw_message_certificate, $qmn_array_for_variables);
830
  $mlw_message_certificate = str_replace( "\n" , "<br>", $mlw_message_certificate);
831
+ $path_to_fpdf = plugin_dir_path( __FILE__ )."fpdf/WriteHTML.php";
 
832
  $mlw_qmn_certificate_file=<<<EOC
833
  <?php
834
+ include("$path_to_fpdf");
835
  \$pdf=new PDF_HTML();
836
  \$pdf->AddPage('L');
837
  EOC;
1247
  $total_questions = $wpdb->get_var($wpdb->prepare("SELECT COUNT(quiz_id) FROM ".$wpdb->prefix."mlw_questions WHERE deleted=0 AND quiz_id=%d", $qmn_array_for_variables["quiz_id"]));
1248
  }
1249
  $display .= "<style>.quiz_section { display: none; }</style>";
 
 
 
 
 
1250
 
1251
  //Gather text for pagination buttons
1252
  $mlw_qmn_pagination_text = "";
1261
  ?>
1262
  <script type="text/javascript">
1263
  var qmn_pagination = <?php echo $qmn_quiz_options->pagination; ?>;
1264
+ var qmn_section_comments = <?php echo $qmn_quiz_options->comment_section; ?>;
1265
+ var qmn_total_questions = <?php echo $total_questions; ?>;
1266
  var qmn_pagination_previous_text = '<?php echo $mlw_qmn_pagination_text[0]; ?>';
1267
  var qmn_pagination_next_text = '<?php echo $mlw_qmn_pagination_text[1]; ?>';
1268
  </script>
1279
  if ($qmn_allowed_visit && $qmn_quiz_options->timer_limit != 0)
1280
  {
1281
  ?>
1282
+ <div style="display:none;" id="mlw_qmn_timer" class="mlw_qmn_timer"></div>
1283
  <script type="text/javascript">
1284
  var qmn_quiz_id = <?php echo $qmn_array_for_variables['quiz_id']; ?>;
1285
  var qmn_timer_limit = <?php echo $qmn_quiz_options->timer_limit; ?>;
php/qmn_quiz_admin.php CHANGED
@@ -1,5 +1,12 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
 
 
 
 
 
 
 
3
  function mlw_generate_quiz_admin()
4
  {
5
  if ( !current_user_can('moderate_comments') )
@@ -279,7 +286,7 @@ function mlw_generate_quiz_admin()
279
  {
280
  $quotes_list .= "<td>
281
  <span style='font-size:16px;'>
282
- <a href='".$post_to_quiz_array[$mlw_quiz_info->quiz_id]['link']."'>".$post_to_quiz_array[$mlw_quiz_info->quiz_id]['link']."</a>
283
  </span>
284
  <div class=\"row-actions\"><a class='linkOptions' href='post.php?post=".$post_to_quiz_array[$mlw_quiz_info->quiz_id]['id']."&action=edit'>Edit Post Settings</a></a>
285
  </td>";
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+
4
+ /**
5
+ * Generates the quizzes page where the quizzes are displayed.
6
+ *
7
+ * @return void
8
+ * @since 4.4.0
9
+ */
10
  function mlw_generate_quiz_admin()
11
  {
12
  if ( !current_user_can('moderate_comments') )
286
  {
287
  $quotes_list .= "<td>
288
  <span style='font-size:16px;'>
289
+ <a href='".$post_to_quiz_array[$mlw_quiz_info->quiz_id]['link']."'>View Quiz</a>
290
  </span>
291
  <div class=\"row-actions\"><a class='linkOptions' href='post.php?post=".$post_to_quiz_array[$mlw_quiz_info->quiz_id]['id']."&action=edit'>Edit Post Settings</a></a>
292
  </td>";
php/qmn_quiz_install.php CHANGED
@@ -1,7 +1,10 @@
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
  */
6
  function mlw_quiz_activate()
7
  {
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+ /**
4
+ * This is the install file for QMN. It installs all neccessary databases, pages, etc.
5
+ *
6
+ * @return void
7
+ * @since 4.4.0
8
  */
9
  function mlw_quiz_activate()
10
  {
php/qmn_quiz_options.php CHANGED
@@ -1,7 +1,11 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
- /*
4
- This page allows for the editing of quizzes selected from the quiz admin page.
 
 
 
 
5
  */
6
  function mlw_generate_quiz_options()
7
  {
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+ /**
4
+ * This function allows for the editing of quiz options.
5
+ *
6
+ * @param type description
7
+ * @return void
8
+ * @since 4.4.0
9
  */
10
  function mlw_generate_quiz_options()
11
  {
php/qmn_results.php CHANGED
@@ -1,5 +1,12 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
 
 
 
 
 
 
 
3
  function mlw_generate_quiz_results()
4
  {
5
  if ( !current_user_can('moderate_comments') )
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+
4
+ /**
5
+ * This function generates the admin side quiz results page
6
+ *
7
+ * @return void
8
+ * @since 4.4.0
9
+ */
10
  function mlw_generate_quiz_results()
11
  {
12
  if ( !current_user_can('moderate_comments') )
php/qmn_results_details.php CHANGED
@@ -1,7 +1,10 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
- /*
4
- This page allows for the viewing of the quiz results.
 
 
 
5
  */
6
  function mlw_generate_result_details()
7
  {
@@ -43,6 +46,14 @@ function mlw_generate_result_details()
43
  <?php
44
  }
45
 
 
 
 
 
 
 
 
 
46
  function qmn_generate_results_details_tab()
47
  {
48
  echo "<br><br>";
@@ -111,6 +122,13 @@ function qmn_generate_results_details_tab()
111
  echo $template;
112
  }
113
 
 
 
 
 
 
 
 
114
  function qmn_results_details_tab()
115
  {
116
  global $mlwQuizMasterNext;
@@ -118,6 +136,14 @@ function qmn_results_details_tab()
118
  }
119
  add_action("plugins_loaded", 'qmn_results_details_tab');
120
 
 
 
 
 
 
 
 
 
121
  function qmn_generate_results_certificate_tab()
122
  {
123
  //Check if user wants to create certificate
@@ -201,6 +227,13 @@ EOC;
201
  }
202
  }
203
 
 
 
 
 
 
 
 
204
  function qmn_results_certificate_tab()
205
  {
206
  global $mlwQuizMasterNext;
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+ /**
4
+ * This function generates the results details that are shown the results page.
5
+ *
6
+ * @return type void
7
+ * @since 4.4.0
8
  */
9
  function mlw_generate_result_details()
10
  {
46
  <?php
47
  }
48
 
49
+
50
+ /**
51
+ * This function generates the results details tab that shows the details of the quiz
52
+ *
53
+ * @param type description
54
+ * @return void
55
+ * @since 4.4.0
56
+ */
57
  function qmn_generate_results_details_tab()
58
  {
59
  echo "<br><br>";
122
  echo $template;
123
  }
124
 
125
+
126
+ /**
127
+ * Generates the results details tab in the quiz results page
128
+ *
129
+ * @return void
130
+ * @since 4.4.0
131
+ */
132
  function qmn_results_details_tab()
133
  {
134
  global $mlwQuizMasterNext;
136
  }
137
  add_action("plugins_loaded", 'qmn_results_details_tab');
138
 
139
+
140
+ /**
141
+ * Creates the certificate in the certificate tab.
142
+ *
143
+ * @param type description
144
+ * @return type description
145
+ * @since 4.4.0
146
+ */
147
  function qmn_generate_results_certificate_tab()
148
  {
149
  //Check if user wants to create certificate
227
  }
228
  }
229
 
230
+
231
+ /**
232
+ * Registers the tab on the quiz details page
233
+ *
234
+ * @return void
235
+ * @since 4.4.0
236
+ */
237
  function qmn_results_certificate_tab()
238
  {
239
  global $mlwQuizMasterNext;
php/qmn_template_variables.php CHANGED
@@ -1,5 +1,15 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
 
 
 
 
 
 
 
 
 
 
3
  /*
4
 
5
  Results Array For Reference:
@@ -42,6 +52,7 @@ add_filter('mlw_qmn_template_variable_results_page', 'mlw_qmn_variable_user_emai
42
  add_filter('mlw_qmn_template_variable_results_page', 'mlw_qmn_variable_question_answers',10,2);
43
  add_filter('mlw_qmn_template_variable_results_page', 'mlw_qmn_variable_comments',10,2);
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);
@@ -218,6 +229,12 @@ function mlw_qmn_variable_timer($content, $mlw_quiz_array)
218
  $content = str_replace( "%TIMER%" , $mlw_quiz_array["timer"], $content);
219
  return $content;
220
  }
 
 
 
 
 
 
221
  function mlw_qmn_variable_date($content, $mlw_quiz_array)
222
  {
223
  $content = str_replace( "%CURRENT_DATE%" , date("F jS Y"), $content);
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+
4
+ /**
5
+ * This file contains all the variables that are in the plugin. It registers them and then makes them available for use.
6
+ *
7
+ * This plugin also contains the social media variables and all of there uses.
8
+ *
9
+ * @param type description
10
+ * @return type description
11
+ * @since 4.4.0
12
+ */
13
  /*
14
 
15
  Results Array For Reference:
52
  add_filter('mlw_qmn_template_variable_results_page', 'mlw_qmn_variable_question_answers',10,2);
53
  add_filter('mlw_qmn_template_variable_results_page', 'mlw_qmn_variable_comments',10,2);
54
  add_filter('mlw_qmn_template_variable_results_page', 'mlw_qmn_variable_timer',10,2);
55
+ add_filter('mlw_qmn_template_variable_results_page', 'mlw_qmn_variable_timer_minutes',10,2);
56
  add_filter('mlw_qmn_template_variable_results_page', 'mlw_qmn_variable_date',10,2);
57
  add_filter('mlw_qmn_template_variable_results_page', 'mlw_qmn_variable_certificate_link',10,2);
58
  add_filter('mlw_qmn_template_variable_results_page', 'qmn_variable_facebook_share',10,2);
229
  $content = str_replace( "%TIMER%" , $mlw_quiz_array["timer"], $content);
230
  return $content;
231
  }
232
+ function mlw_qmn_variable_timer_minutes($content, $mlw_quiz_array)
233
+ {
234
+ $mlw_minutes = round($mlw_quiz_array["timer"]/60,2);
235
+ $content = str_replace( "%TIMER_MINUTES%" , $mlw_minutes, $content);
236
+ return $content;
237
+ }
238
  function mlw_qmn_variable_date($content, $mlw_quiz_array)
239
  {
240
  $content = str_replace( "%CURRENT_DATE%" , date("F jS Y"), $content);
php/qmn_tools.php CHANGED
@@ -4,6 +4,16 @@ if ( ! defined( 'ABSPATH' ) ) exit;
4
  This page creates the main dashboard for the Quiz Master Next plugin
5
  */
6
 
 
 
 
 
 
 
 
 
 
 
7
  function mlw_generate_quiz_tools()
8
  {
9
  if ( !current_user_can('moderate_comments') )
@@ -65,6 +75,13 @@ function mlw_generate_quiz_tools()
65
  </div>
66
  <?php
67
  }
 
 
 
 
 
 
 
68
  function qmn_restore_function()
69
  {
70
  global $wpdb;
@@ -124,6 +141,13 @@ function qmn_restore_function()
124
  </form>
125
  <?php
126
  }
 
 
 
 
 
 
 
127
  function mlw_tools_box()
128
  {
129
  global $wpdb;
4
  This page creates the main dashboard for the Quiz Master Next plugin
5
  */
6
 
7
+
8
+ /**
9
+ * Generates all of the quiz tools that are used
10
+ *
11
+ * Long Description
12
+ *
13
+ * @param type description
14
+ * @return type description
15
+ * @since 4.4.0
16
+ */
17
  function mlw_generate_quiz_tools()
18
  {
19
  if ( !current_user_can('moderate_comments') )
75
  </div>
76
  <?php
77
  }
78
+
79
+ /**
80
+ * Allows the admin to restore a deleted quiz
81
+ *
82
+ * @return void
83
+ * @since 4.4.0
84
+ */
85
  function qmn_restore_function()
86
  {
87
  global $wpdb;
141
  </form>
142
  <?php
143
  }
144
+
145
+ /**
146
+ * Creates the tools page that is used to make audits on the quizzes.
147
+ *
148
+ * @return void
149
+ * @since 4.4.0
150
+ */
151
  function mlw_tools_box()
152
  {
153
  global $wpdb;
php/qmn_update.php CHANGED
@@ -3,6 +3,13 @@ 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
  */
 
 
 
 
 
 
 
6
  function mlw_quiz_update()
7
  {
8
  global $mlwQuizMasterNext;
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
  */
6
+
7
+ /**
8
+ * This is the update file for the plugin. All updates to the database happen here.
9
+ *
10
+ *@return void
11
+ * @since 4.4.0
12
+ */
13
  function mlw_quiz_update()
14
  {
15
  global $mlwQuizMasterNext;
php/qmn_widgets.php CHANGED
@@ -1,9 +1,12 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
- /*
4
- This is the file that contains all the widgets for the plugin
5
- */
6
 
 
 
 
 
 
 
7
  class Mlw_Qmn_Leaderboard_Widget extends WP_Widget {
8
 
9
  // constructor
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
 
 
 
3
 
4
+ /**
5
+ * The class contains all of the functions for the leaderboard widget.
6
+ *
7
+ * @return void
8
+ * @since 4.4.0
9
+ */
10
  class Mlw_Qmn_Leaderboard_Widget extends WP_Widget {
11
 
12
  // constructor
readme.txt CHANGED
@@ -1,10 +1,10 @@
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.2
7
- Stable tag: 4.3.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -122,6 +122,17 @@ Feel free to use the widget on the help page within the plugin or from our [cont
122
 
123
  == Changelog ==
124
 
 
 
 
 
 
 
 
 
 
 
 
125
  = 4.3.1 (April 22, 2015) =
126
  * Minor Bug Fixes
127
 
@@ -667,6 +678,8 @@ Feel free to use the widget on the help page within the plugin or from our [cont
667
  * Added results page
668
 
669
  == Upgrade Notice ==
 
 
670
 
671
  = 4.3.0 =
672
  Upgrade for redesigned stats page, ability to use shortcodes in questions, and ability to WordPress editor for questions.
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.2
7
+ Stable tag: 4.4.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
122
 
123
  == Changelog ==
124
 
125
+ = 4.4.0 (June 11, 2015) =
126
+ * Added new template variable %TIMER_MINUTES% ([GitHub Issue #209] (https://github.com/fpcorso/quiz_master_next/issues/209))
127
+ * Eliminates first page if empty ([GitHub Issue #182] (https://github.com/fpcorso/quiz_master_next/issues/182))
128
+ * Timer now begins counting down after starting quiz if using pagination ([GitHub Issue #181] (https://github.com/fpcorso/quiz_master_next/issues/181))
129
+ * Amount Finished Compared To Amount In Quiz ([GitHub Issue #21] (https://github.com/fpcorso/quiz_master_next/issues/21))
130
+ * Bug Fix: Required Answers And Timer Doesn't Work Well Together ([GitHub Issue #220] (https://github.com/fpcorso/quiz_master_next/issues/220))
131
+ * Bug Fix: FPDF WriteHTML Path Not Being Created Correctly On Windows ([GitHub Issue #204] (https://github.com/fpcorso/quiz_master_next/issues/204))
132
+ * Bug Fix: Long quiz URL mangles page layout ([GitHub Issue #202] (https://github.com/fpcorso/quiz_master_next/issues/202))
133
+ * Bug Fix: Fixed Support Widget bug where the support widget was not always submitting correctly.
134
+
135
+
136
  = 4.3.1 (April 22, 2015) =
137
  * Minor Bug Fixes
138
 
678
  * Added results page
679
 
680
  == Upgrade Notice ==
681
+ = 4.4.0 =
682
+ Upgrade for the new template variable %TIMER_MINUTES%, made modification to timer for pagination, Eliminates first page if empty, and more.
683
 
684
  = 4.3.0 =
685
  Upgrade for redesigned stats page, ability to use shortcodes in questions, and ability to WordPress editor for questions.