Version Description
Upgrade to use 5 new style templates as well as a variety of bug fixes
Download this release
Release Info
| Developer | fpcorso |
| Plugin | |
| Version | 4.5.5 |
| Comparing to | |
| See all releases | |
Code changes from version 4.5.4 to 4.5.5
- assets/screenshot-4.png +0 -0
- assets/screenshot-5.png +0 -0
- assets/screenshot-7.png +0 -0
- assets/screenshot-8.png +0 -0
- css/qmn_quiz.css +4 -12
- js/qmn_pagination.js +14 -25
- js/qmn_quiz.js +45 -70
- languages/quiz-master-next-da_DK.mo +0 -0
- languages/quiz-master-next-da_DK.po +56 -56
- languages/quiz-master-next-es_ES.mo +0 -0
- languages/quiz-master-next-es_ES.po +57 -57
- languages/quiz-master-next-it_IT.mo +0 -0
- languages/quiz-master-next-it_IT.po +56 -56
- languages/{quiz-master-next-nl-NL.mo → quiz-master-next-nl_NL.mo} +0 -0
- languages/{quiz-master-next-nl-NL.po → quiz-master-next-nl_NL.po} +57 -57
- languages/quiz-master-next-pt_BR.mo +0 -0
- languages/quiz-master-next-pt_BR.po +63 -62
- languages/quiz-master-next-th.mo +0 -0
- languages/quiz-master-next-th.po +57 -57
- languages/quiz-master-next.pot +56 -56
- mlw_quizmaster2.php +3 -3
- php/qmn-default-templates.php +4 -0
- php/qmn_addons.php +7 -7
- php/qmn_credits.php +6 -4
- php/qmn_options_option_tab.php +1 -1
- php/qmn_options_questions_tab.php +5 -4
- php/qmn_question_types.php +3 -2
- php/qmn_quiz.php +6 -6
- php/qmn_results.php +39 -15
- readme.txt +12 -9
- templates/qmn_amethyst.css +349 -0
- templates/qmn_base.css +497 -0
- templates/qmn_emerald.css +349 -0
- templates/qmn_gray.css +315 -0
- templates/qmn_primary.css +334 -81
- templates/qmn_turquoise.css +349 -0
assets/screenshot-4.png
CHANGED
|
Binary file
|
assets/screenshot-5.png
CHANGED
|
Binary file
|
assets/screenshot-7.png
CHANGED
|
Binary file
|
assets/screenshot-8.png
DELETED
|
Binary file
|
css/qmn_quiz.css
CHANGED
|
@@ -1,22 +1,14 @@
|
|
| 1 |
-
.ui-tooltip
|
| 2 |
-
{
|
| 3 |
max-width: 500px !important;
|
| 4 |
}
|
| 5 |
-
.ui-tooltip-content
|
| 6 |
-
{
|
| 7 |
max-width: 500px !important;
|
| 8 |
}
|
| 9 |
-
.
|
| 10 |
-
{
|
| 11 |
-
color: red;
|
| 12 |
-
}
|
| 13 |
-
.mlw_qmn_hint_link
|
| 14 |
-
{
|
| 15 |
text-decoration:underline;
|
| 16 |
color:rgb(0,0,255);
|
| 17 |
}
|
| 18 |
-
.mlw_qmn_quiz_link
|
| 19 |
-
{
|
| 20 |
display: inline;
|
| 21 |
vertical-align:top !important;
|
| 22 |
text-decoration: none;
|
| 1 |
+
.ui-tooltip {
|
|
|
|
| 2 |
max-width: 500px !important;
|
| 3 |
}
|
| 4 |
+
.ui-tooltip-content {
|
|
|
|
| 5 |
max-width: 500px !important;
|
| 6 |
}
|
| 7 |
+
.mlw_qmn_hint_link {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
text-decoration:underline;
|
| 9 |
color:rgb(0,0,255);
|
| 10 |
}
|
| 11 |
+
.mlw_qmn_quiz_link {
|
|
|
|
| 12 |
display: inline;
|
| 13 |
vertical-align:top !important;
|
| 14 |
text-decoration: none;
|
js/qmn_pagination.js
CHANGED
|
@@ -2,44 +2,38 @@
|
|
| 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(){
|
| 6 |
-
jQuery(this).css("outline", "");
|
| 7 |
if (jQuery(this).attr('class'))
|
| 8 |
{
|
| 9 |
-
if(jQuery(this).attr('class').indexOf('mlwEmail') > -1 && this.value != "")
|
| 10 |
-
{
|
| 11 |
var x=this.value;
|
| 12 |
var atpos=x.indexOf('@');
|
| 13 |
var dotpos=x.lastIndexOf('.');
|
| 14 |
if (atpos<1 || dotpos<atpos+2 || dotpos+2>=x.length)
|
| 15 |
{
|
| 16 |
-
jQuery(
|
| 17 |
validated = false;
|
| 18 |
-
jQuery(this).css("outline", "2px solid red");
|
| 19 |
}
|
| 20 |
}
|
| 21 |
if(jQuery(this).attr('class').indexOf('mlwRequiredNumber') > -1 && this.value == "" && +this.value != NaN)
|
| 22 |
{
|
| 23 |
-
jQuery(
|
| 24 |
-
jQuery(this).css("outline", "2px solid red");
|
| 25 |
validated = false;
|
| 26 |
}
|
| 27 |
if(jQuery(this).attr('class').indexOf('mlwRequiredText') > -1 && this.value == "")
|
| 28 |
{
|
| 29 |
-
jQuery(
|
| 30 |
-
jQuery(this).css("outline", "2px solid red");
|
| 31 |
validated = false;
|
| 32 |
}
|
| 33 |
if(jQuery(this).attr('class').indexOf('mlwRequiredCaptcha') > -1 && this.value != mlw_code)
|
| 34 |
{
|
| 35 |
-
jQuery(
|
| 36 |
-
jQuery(this).css("outline", "2px solid red");
|
| 37 |
validated = false;
|
| 38 |
}
|
| 39 |
if(jQuery(this).attr('class').indexOf('mlwRequiredAccept') > -1 && !this.checked)
|
| 40 |
{
|
| 41 |
-
jQuery(
|
| 42 |
-
jQuery(this).css("outline", "2px solid red");
|
| 43 |
validated = false;
|
| 44 |
}
|
| 45 |
if(jQuery(this).attr('class').indexOf('mlwRequiredRadio') > -1)
|
|
@@ -47,8 +41,7 @@ function qmnValidatePage() {
|
|
| 47 |
check_val = jQuery(this).find('input:checked').val();
|
| 48 |
if (check_val == "No Answer Provided")
|
| 49 |
{
|
| 50 |
-
jQuery(
|
| 51 |
-
jQuery(this).css("outline", "2px solid red");
|
| 52 |
validated = false;
|
| 53 |
}
|
| 54 |
}
|
|
@@ -56,16 +49,12 @@ function qmnValidatePage() {
|
|
| 56 |
{
|
| 57 |
if (!jQuery(this).find('input:checked').length)
|
| 58 |
{
|
| 59 |
-
jQuery(
|
| 60 |
-
jQuery(this).css("outline", "2px solid red");
|
| 61 |
validated = false;
|
| 62 |
}
|
| 63 |
}
|
| 64 |
}
|
| 65 |
});
|
| 66 |
-
if (validated) {
|
| 67 |
-
jQuery('.qmn_page_error_message').text(' ');
|
| 68 |
-
}
|
| 69 |
return validated;
|
| 70 |
}
|
| 71 |
|
|
@@ -160,11 +149,11 @@ function qmn_return_to_top() {
|
|
| 160 |
|
| 161 |
jQuery( ".quiz_section" ).hide();
|
| 162 |
jQuery( ".quiz_section" ).append( "<br />" );
|
| 163 |
-
jQuery(
|
| 164 |
-
jQuery( ".
|
| 165 |
-
jQuery( ".
|
| 166 |
-
jQuery( ".
|
| 167 |
-
jQuery( ".
|
| 168 |
window.mlw_quiz_slide = 0;
|
| 169 |
window.mlw_previous = 0;
|
| 170 |
|
| 2 |
//Function to validate the answers provided in quiz
|
| 3 |
function qmnValidatePage() {
|
| 4 |
var validated = true;
|
| 5 |
+
qmn_reset_error();
|
| 6 |
jQuery(".quiz_section.slide"+window.mlw_quiz_slide+' *').each(function(){
|
|
|
|
| 7 |
if (jQuery(this).attr('class'))
|
| 8 |
{
|
| 9 |
+
if(jQuery(this).attr('class').indexOf('mlwEmail') > -1 && this.value != "") {
|
|
|
|
| 10 |
var x=this.value;
|
| 11 |
var atpos=x.indexOf('@');
|
| 12 |
var dotpos=x.lastIndexOf('.');
|
| 13 |
if (atpos<1 || dotpos<atpos+2 || dotpos+2>=x.length)
|
| 14 |
{
|
| 15 |
+
qmn_display_error( email_error, jQuery(this) );
|
| 16 |
validated = false;
|
|
|
|
| 17 |
}
|
| 18 |
}
|
| 19 |
if(jQuery(this).attr('class').indexOf('mlwRequiredNumber') > -1 && this.value == "" && +this.value != NaN)
|
| 20 |
{
|
| 21 |
+
qmn_display_error( number_error, jQuery(this) );
|
|
|
|
| 22 |
validated = false;
|
| 23 |
}
|
| 24 |
if(jQuery(this).attr('class').indexOf('mlwRequiredText') > -1 && this.value == "")
|
| 25 |
{
|
| 26 |
+
qmn_display_error( empty_error, jQuery(this) );
|
|
|
|
| 27 |
validated = false;
|
| 28 |
}
|
| 29 |
if(jQuery(this).attr('class').indexOf('mlwRequiredCaptcha') > -1 && this.value != mlw_code)
|
| 30 |
{
|
| 31 |
+
qmn_display_error( incorrect_error, jQuery(this) );
|
|
|
|
| 32 |
validated = false;
|
| 33 |
}
|
| 34 |
if(jQuery(this).attr('class').indexOf('mlwRequiredAccept') > -1 && !this.checked)
|
| 35 |
{
|
| 36 |
+
qmn_display_error( empty_error, jQuery(this) );
|
|
|
|
| 37 |
validated = false;
|
| 38 |
}
|
| 39 |
if(jQuery(this).attr('class').indexOf('mlwRequiredRadio') > -1)
|
| 41 |
check_val = jQuery(this).find('input:checked').val();
|
| 42 |
if (check_val == "No Answer Provided")
|
| 43 |
{
|
| 44 |
+
qmn_display_error( empty_error, jQuery(this) );
|
|
|
|
| 45 |
validated = false;
|
| 46 |
}
|
| 47 |
}
|
| 49 |
{
|
| 50 |
if (!jQuery(this).find('input:checked').length)
|
| 51 |
{
|
| 52 |
+
qmn_display_error( empty_error, jQuery(this) );
|
|
|
|
| 53 |
validated = false;
|
| 54 |
}
|
| 55 |
}
|
| 56 |
}
|
| 57 |
});
|
|
|
|
|
|
|
|
|
|
| 58 |
return validated;
|
| 59 |
}
|
| 60 |
|
| 149 |
|
| 150 |
jQuery( ".quiz_section" ).hide();
|
| 151 |
jQuery( ".quiz_section" ).append( "<br />" );
|
| 152 |
+
jQuery( '.mlw_qmn_quiz' ).append( '<div class="qmn_pagination border margin-bottom"></div>' );
|
| 153 |
+
jQuery( ".qmn_pagination" ).append( '<a class="qmn_btn mlw_qmn_quiz_link mlw_previous" href="#">'+qmn_pagination_previous_text+'</a>' );
|
| 154 |
+
jQuery( ".qmn_pagination" ).append( '<span class="qmn_page_message"></span>' );
|
| 155 |
+
jQuery( ".qmn_pagination" ).append( '<div class="qmn_page_counter_message"></div>' );
|
| 156 |
+
jQuery( ".qmn_pagination" ).append( '<a class="qmn_btn mlw_qmn_quiz_link mlw_next" href="#">'+qmn_pagination_next_text+'</a>' );
|
| 157 |
window.mlw_quiz_slide = 0;
|
| 158 |
window.mlw_previous = 0;
|
| 159 |
|
js/qmn_quiz.js
CHANGED
|
@@ -1,101 +1,68 @@
|
|
| 1 |
-
|
| 2 |
-
var $j = jQuery.noConflict();
|
| 3 |
-
// increase the default animation speed to exaggerate the effect
|
| 4 |
-
$j.fx.speeds._default = 1000;
|
| 5 |
-
$j(function() {
|
| 6 |
-
$j( ".mlw_qmn_quiz" ).tooltip();
|
| 7 |
-
});
|
| 8 |
-
}, 100);
|
| 9 |
-
setTimeout(function()
|
| 10 |
-
{
|
| 11 |
-
var $j = jQuery.noConflict();
|
| 12 |
-
$j('.mlw_qmn_quiz input').on('keypress', function (e) {
|
| 13 |
-
if (e.which === 13) {
|
| 14 |
-
e.preventDefault();
|
| 15 |
-
}
|
| 16 |
-
});
|
| 17 |
-
}, 100);
|
| 18 |
-
var myVar=setInterval("mlwQmnTimer();",1000);
|
| 19 |
-
function mlwQmnTimer()
|
| 20 |
-
{
|
| 21 |
var x = +document.getElementById("timer").value;
|
| 22 |
x = x + 1;
|
| 23 |
document.getElementById("timer").value = x;
|
| 24 |
}
|
| 25 |
-
function clear_field(field)
|
| 26 |
-
{
|
| 27 |
if (field.defaultValue == field.value) field.value = '';
|
| 28 |
}
|
| 29 |
|
| 30 |
-
function
|
| 31 |
-
|
| 32 |
-
|
|
|
|
|
|
|
|
|
|
| 33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
jQuery('#quizForm *').each(function(){
|
| 35 |
-
jQuery(this).
|
| 36 |
-
|
| 37 |
-
{
|
| 38 |
-
if(jQuery(this).attr('class').indexOf('mlwEmail') > -1 && this.value != "")
|
| 39 |
-
{
|
| 40 |
var x=this.value;
|
| 41 |
var atpos=x.indexOf('@');
|
| 42 |
var dotpos=x.lastIndexOf('.');
|
| 43 |
-
if (atpos<1 || dotpos<atpos+2 || dotpos+2>=x.length)
|
| 44 |
-
|
| 45 |
-
document.getElementById('mlw_error_message').innerHTML = '**'+email_error+'**';
|
| 46 |
-
document.getElementById('mlw_error_message_bottom').innerHTML = '**'+email_error+'**';
|
| 47 |
mlw_validateResult = false;
|
| 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 |
-
|
| 84 |
-
|
| 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 |
-
|
| 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 |
}
|
|
@@ -112,6 +79,14 @@ function mlw_validateForm()
|
|
| 112 |
jQuery( '.mlw_answer_open_text' ).attr('disabled',false);
|
| 113 |
}
|
| 114 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 115 |
if (qmn_ajax_correct) {
|
| 116 |
jQuery('.qmn_quiz_radio').change(function() {
|
| 117 |
var chosen_answer = jQuery(this).val();
|
| 1 |
+
function qmn_timer() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
var x = +document.getElementById("timer").value;
|
| 3 |
x = x + 1;
|
| 4 |
document.getElementById("timer").value = x;
|
| 5 |
}
|
| 6 |
+
function clear_field(field) {
|
|
|
|
| 7 |
if (field.defaultValue == field.value) field.value = '';
|
| 8 |
}
|
| 9 |
|
| 10 |
+
function qmn_display_error( message, field ) {
|
| 11 |
+
jQuery( '#mlw_error_message' ).addClass( 'qmn_error_message' );
|
| 12 |
+
jQuery( '#mlw_error_message_bottom' ).addClass( 'qmn_error_message' );
|
| 13 |
+
jQuery( '.qmn_error_message' ).text( message );
|
| 14 |
+
field.closest( '.quiz_section' ).addClass( 'qmn_error' );
|
| 15 |
+
}
|
| 16 |
|
| 17 |
+
function qmn_reset_error() {
|
| 18 |
+
jQuery( '.qmn_error_message' ).text( '' );
|
| 19 |
+
jQuery( '#mlw_error_message' ).removeClass( 'qmn_error_message' );
|
| 20 |
+
jQuery( '#mlw_error_message_bottom' ).removeClass( 'qmn_error_message' );
|
| 21 |
+
jQuery( '.quiz_section' ).removeClass( 'qmn_error' );
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
function mlw_validateForm() {
|
| 25 |
+
mlw_validateResult = true;
|
| 26 |
+
qmn_reset_error();
|
| 27 |
jQuery('#quizForm *').each(function(){
|
| 28 |
+
if (jQuery(this).attr('class')) {
|
| 29 |
+
if(jQuery(this).attr('class').indexOf('mlwEmail') > -1 && this.value != "") {
|
|
|
|
|
|
|
|
|
|
| 30 |
var x=this.value;
|
| 31 |
var atpos=x.indexOf('@');
|
| 32 |
var dotpos=x.lastIndexOf('.');
|
| 33 |
+
if (atpos<1 || dotpos<atpos+2 || dotpos+2>=x.length) {
|
| 34 |
+
qmn_display_error( email_error, jQuery(this) );
|
|
|
|
|
|
|
| 35 |
mlw_validateResult = false;
|
|
|
|
| 36 |
}
|
| 37 |
}
|
| 38 |
if (window.sessionStorage.getItem('mlw_time_quiz'+qmn_quiz_id) == null || window.sessionStorage.getItem('mlw_time_quiz'+qmn_quiz_id) > 0.08) {
|
| 39 |
|
| 40 |
+
if(jQuery(this).attr('class').indexOf('mlwRequiredNumber') > -1 && this.value == "" && +this.value != NaN) {
|
| 41 |
+
qmn_display_error( number_error, jQuery(this) );
|
|
|
|
|
|
|
|
|
|
| 42 |
mlw_validateResult = false;
|
| 43 |
}
|
| 44 |
+
if(jQuery(this).attr('class').indexOf('mlwRequiredText') > -1 && this.value == "") {
|
| 45 |
+
qmn_display_error( empty_error, jQuery(this) );
|
|
|
|
|
|
|
|
|
|
| 46 |
mlw_validateResult = false;
|
| 47 |
}
|
| 48 |
+
if(jQuery(this).attr('class').indexOf('mlwRequiredCaptcha') > -1 && this.value != mlw_code) {
|
| 49 |
+
qmn_display_error( incorrect_error, jQuery(this) );
|
|
|
|
|
|
|
|
|
|
| 50 |
mlw_validateResult = false;
|
| 51 |
}
|
| 52 |
+
if(jQuery(this).attr('class').indexOf('mlwRequiredAccept') > -1 && !this.checked) {
|
| 53 |
+
qmn_display_error( empty_error, jQuery(this) );
|
|
|
|
|
|
|
|
|
|
| 54 |
mlw_validateResult = false;
|
| 55 |
}
|
| 56 |
+
if(jQuery(this).attr('class').indexOf('mlwRequiredRadio') > -1) {
|
| 57 |
+
check_val = jQuery(this).find('input:checked').val();
|
| 58 |
+
if (check_val == "No Answer Provided") {
|
| 59 |
+
qmn_display_error( empty_error, jQuery(this) );
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
mlw_validateResult = false;
|
| 61 |
}
|
| 62 |
}
|
| 63 |
+
if(jQuery(this).attr('class').indexOf('mlwRequiredCheck') > -1) {
|
| 64 |
+
if (!jQuery(this).find('input:checked').length) {
|
| 65 |
+
qmn_display_error( empty_error, jQuery(this) );
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
mlw_validateResult = false;
|
| 67 |
}
|
| 68 |
}
|
| 79 |
jQuery( '.mlw_answer_open_text' ).attr('disabled',false);
|
| 80 |
}
|
| 81 |
|
| 82 |
+
jQuery( '.mlw_qmn_quiz' ).tooltip();
|
| 83 |
+
jQuery( '.mlw_qmn_quiz input' ).on( 'keypress', function (e) {
|
| 84 |
+
if ( e.which === 13 ) {
|
| 85 |
+
e.preventDefault();
|
| 86 |
+
}
|
| 87 |
+
});
|
| 88 |
+
var myVar=setInterval("qmn_timer();",1000);
|
| 89 |
+
|
| 90 |
if (qmn_ajax_correct) {
|
| 91 |
jQuery('.qmn_quiz_radio').change(function() {
|
| 92 |
var chosen_answer = jQuery(this).val();
|
languages/quiz-master-next-da_DK.mo
CHANGED
|
Binary file
|
languages/quiz-master-next-da_DK.po
CHANGED
|
@@ -5,10 +5,10 @@ msgid ""
|
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Quiz Master Next\n"
|
| 7 |
"Report-Msgid-Bugs-To: \n"
|
| 8 |
-
"POT-Creation-Date: 2015-09-
|
| 9 |
"PO-Revision-Date: \n"
|
| 10 |
"Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
|
| 11 |
-
"Language-Team: My Local Webstop <
|
| 12 |
"Language: da_DK\n"
|
| 13 |
"MIME-Version: 1.0\n"
|
| 14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -112,21 +112,21 @@ msgstr "Tal"
|
|
| 112 |
msgid "Accept"
|
| 113 |
msgstr "Accepter"
|
| 114 |
|
| 115 |
-
#: php/qmn_question_types.php:
|
| 116 |
msgid "Captcha"
|
| 117 |
msgstr "CAPTCHA"
|
| 118 |
|
| 119 |
-
#: php/qmn_question_types.php:
|
| 120 |
msgid "Horizontal Multiple Response"
|
| 121 |
msgstr "Vandret Multiple svar"
|
| 122 |
|
| 123 |
-
#: php/qmn_question_types.php:
|
| 124 |
msgid ""
|
| 125 |
"For fill in the blank types, use %BLANK% to represent where to put the text "
|
| 126 |
"box in your text."
|
| 127 |
msgstr ""
|
| 128 |
|
| 129 |
-
#: php/qmn_question_types.php:
|
| 130 |
msgid "Fill In The Blank"
|
| 131 |
msgstr ""
|
| 132 |
|
|
@@ -144,8 +144,8 @@ msgstr "Indstillinger er gemt"
|
|
| 144 |
#: php/qmn_options_certificate_tab.php:83 php/qmn_options_tools_tab.php:68
|
| 145 |
#: php/qmn_options_text_tab.php:123 php/qmn_options_results_page_tab.php:76
|
| 146 |
#: php/qmn_options_results_page_tab.php:125
|
| 147 |
-
#: php/qmn_options_questions_tab.php:
|
| 148 |
-
#: php/qmn_options_questions_tab.php:
|
| 149 |
#: php/qmn_results.php:58 php/qmn_quiz_creator.php:408
|
| 150 |
#: php/qmn_quiz_creator.php:483 php/qmn_quiz_creator.php:534
|
| 151 |
#: php/qmn_quiz_creator.php:701 php/qmn_quiz_creator.php:767
|
|
@@ -172,7 +172,7 @@ msgstr "Korrekt / Ukorrekt"
|
|
| 172 |
msgid "Points"
|
| 173 |
msgstr "Point"
|
| 174 |
|
| 175 |
-
#: php/qmn_options_option_tab.php:172 php/qmn_results.php:
|
| 176 |
msgid "Not Graded"
|
| 177 |
msgstr "Ikke Graded"
|
| 178 |
|
|
@@ -188,7 +188,7 @@ msgstr "Skal brugeren være logget ind for at svare på denne test?"
|
|
| 188 |
#: php/qmn_options_option_tab.php:306 php/qmn_options_email_tab.php:381
|
| 189 |
#: php/qmn_options_email_tab.php:388 php/qmn_options_certificate_tab.php:117
|
| 190 |
#: php/qmn_options_results_page_tab.php:282
|
| 191 |
-
#: php/qmn_options_questions_tab.php:
|
| 192 |
msgid "Yes"
|
| 193 |
msgstr "Ja"
|
| 194 |
|
|
@@ -201,7 +201,7 @@ msgstr "Ja"
|
|
| 201 |
#: php/qmn_options_email_tab.php:382 php/qmn_options_email_tab.php:389
|
| 202 |
#: php/qmn_options_certificate_tab.php:118
|
| 203 |
#: php/qmn_options_results_page_tab.php:282
|
| 204 |
-
#: php/qmn_options_questions_tab.php:
|
| 205 |
msgid "No"
|
| 206 |
msgstr "Nej"
|
| 207 |
|
|
@@ -814,7 +814,7 @@ msgstr "Den indtastede tekst er ikke korrekt!"
|
|
| 814 |
msgid "Please complete all required fields!"
|
| 815 |
msgstr "Venligst udfyld alle obligatoriske felter"
|
| 816 |
|
| 817 |
-
#: php/qmn_quiz.php:
|
| 818 |
msgid "Hint"
|
| 819 |
msgstr "Hint"
|
| 820 |
|
|
@@ -839,7 +839,7 @@ msgstr "Tillad"
|
|
| 839 |
msgid "Do not allow"
|
| 840 |
msgstr "Tillad ikke"
|
| 841 |
|
| 842 |
-
#: php/qmn_results_details.php:20 php/qmn_results.php:
|
| 843 |
msgid "Quiz Results"
|
| 844 |
msgstr "Quiz resultater"
|
| 845 |
|
|
@@ -993,7 +993,7 @@ msgstr[0] "En quiz"
|
|
| 993 |
msgstr[1] "%s quizzer"
|
| 994 |
|
| 995 |
#: php/qmn_quiz_admin.php:259 php/qmn_quiz_admin.php:310
|
| 996 |
-
#: php/qmn_results.php:
|
| 997 |
msgid "Name"
|
| 998 |
msgstr "Navn"
|
| 999 |
|
|
@@ -1046,7 +1046,7 @@ msgstr "Slet"
|
|
| 1046 |
msgid "Create New Quiz Or Survey"
|
| 1047 |
msgstr "Opret ny quiz"
|
| 1048 |
|
| 1049 |
-
#: php/qmn_quiz_admin.php:378 php/qmn_results.php:
|
| 1050 |
msgid "Quiz Name"
|
| 1051 |
msgstr "Quiz navn"
|
| 1052 |
|
|
@@ -1101,7 +1101,7 @@ msgstr "Ændringslog"
|
|
| 1101 |
msgid "People Who Make QMN Possible"
|
| 1102 |
msgstr ""
|
| 1103 |
|
| 1104 |
-
#: php/qmn_credits.php:
|
| 1105 |
#, php-format
|
| 1106 |
msgid "View %s"
|
| 1107 |
msgstr ""
|
|
@@ -1204,117 +1204,117 @@ msgstr "Spørgsmål"
|
|
| 1204 |
msgid "Answer"
|
| 1205 |
msgstr "Svar:"
|
| 1206 |
|
| 1207 |
-
#: php/qmn_options_questions_tab.php:
|
| 1208 |
msgid "The question order has been updated successfully."
|
| 1209 |
msgstr ""
|
| 1210 |
|
| 1211 |
-
#: php/qmn_options_questions_tab.php:
|
| 1212 |
msgid "The question has been updated successfully."
|
| 1213 |
msgstr "Spørgsmålet er blevet opdateret."
|
| 1214 |
|
| 1215 |
-
#: php/qmn_options_questions_tab.php:
|
| 1216 |
msgid "The question has been deleted successfully."
|
| 1217 |
msgstr "Dine resultater er blevet slettet."
|
| 1218 |
|
| 1219 |
-
#: php/qmn_options_questions_tab.php:
|
| 1220 |
msgid "The question has been duplicated successfully."
|
| 1221 |
msgstr "Din Spørgsmål er blevet dublikeret."
|
| 1222 |
|
| 1223 |
-
#: php/qmn_options_questions_tab.php:
|
| 1224 |
msgid "The question has been created successfully."
|
| 1225 |
msgstr "Spørgsmålet er blevet oprettet."
|
| 1226 |
|
| 1227 |
-
#: php/qmn_options_questions_tab.php:
|
| 1228 |
msgid "Add Question"
|
| 1229 |
msgstr "Nyt spørgsmål"
|
| 1230 |
|
| 1231 |
-
#: php/qmn_options_questions_tab.php:
|
| 1232 |
msgid "Save Question Order"
|
| 1233 |
msgstr ""
|
| 1234 |
|
| 1235 |
-
#: php/qmn_options_questions_tab.php:
|
| 1236 |
#, php-format
|
| 1237 |
msgid "One question"
|
| 1238 |
msgid_plural "%s questions"
|
| 1239 |
msgstr[0] "Et spørgsmål"
|
| 1240 |
msgstr[1] "%s spørgsmål"
|
| 1241 |
|
| 1242 |
-
#: php/qmn_options_questions_tab.php:
|
| 1243 |
-
#: php/qmn_options_questions_tab.php:
|
| 1244 |
msgid "Question Order"
|
| 1245 |
msgstr "Rækkefølge spørgsmål"
|
| 1246 |
|
| 1247 |
-
#: php/qmn_options_questions_tab.php:
|
| 1248 |
-
#: php/qmn_options_questions_tab.php:
|
| 1249 |
msgid "Question Type"
|
| 1250 |
msgstr "Spørgsmål type"
|
| 1251 |
|
| 1252 |
-
#: php/qmn_options_questions_tab.php:
|
| 1253 |
-
#: php/qmn_options_questions_tab.php:
|
| 1254 |
msgid "Category"
|
| 1255 |
msgstr "Kategori"
|
| 1256 |
|
| 1257 |
-
#: php/qmn_options_questions_tab.php:
|
| 1258 |
msgid "Question"
|
| 1259 |
msgstr "Spørgsmål"
|
| 1260 |
|
| 1261 |
-
#: php/qmn_options_questions_tab.php:
|
| 1262 |
msgid "Answers"
|
| 1263 |
msgstr "Svar"
|
| 1264 |
|
| 1265 |
-
#: php/qmn_options_questions_tab.php:
|
| 1266 |
msgid "Points Worth"
|
| 1267 |
msgstr "Værdi af point"
|
| 1268 |
|
| 1269 |
-
#: php/qmn_options_questions_tab.php:
|
| 1270 |
msgid "Correct Answer"
|
| 1271 |
msgstr "Korrekt svar"
|
| 1272 |
|
| 1273 |
-
#: php/qmn_options_questions_tab.php:
|
| 1274 |
msgid "Add New Answer!"
|
| 1275 |
msgstr "Tilføj nyt svar!"
|
| 1276 |
|
| 1277 |
-
#: php/qmn_options_questions_tab.php:
|
| 1278 |
msgid "Correct Answer Info"
|
| 1279 |
msgstr "Info for korrekt svar"
|
| 1280 |
|
| 1281 |
-
#: php/qmn_options_questions_tab.php:
|
| 1282 |
msgid "Comment Field"
|
| 1283 |
msgstr "KOmmentar felt"
|
| 1284 |
|
| 1285 |
-
#: php/qmn_options_questions_tab.php:
|
| 1286 |
msgid "Small Text Field"
|
| 1287 |
msgstr "Lille tekst felt"
|
| 1288 |
|
| 1289 |
-
#: php/qmn_options_questions_tab.php:
|
| 1290 |
msgid "Large Text Field"
|
| 1291 |
msgstr "Stort tekst felt"
|
| 1292 |
|
| 1293 |
-
#: php/qmn_options_questions_tab.php:
|
| 1294 |
msgid "None"
|
| 1295 |
msgstr "Ingen"
|
| 1296 |
|
| 1297 |
-
#: php/qmn_options_questions_tab.php:
|
| 1298 |
msgid "Required?"
|
| 1299 |
msgstr "Obligatorisk"
|
| 1300 |
|
| 1301 |
-
#: php/qmn_options_questions_tab.php:
|
| 1302 |
msgid "Create Question"
|
| 1303 |
msgstr "Opret spørgsmål"
|
| 1304 |
|
| 1305 |
-
#: php/qmn_options_questions_tab.php:
|
| 1306 |
msgid "Are you sure you want to delete this question?"
|
| 1307 |
msgstr "Er du sikker på du vil slette dette spørgsmål"
|
| 1308 |
|
| 1309 |
-
#: php/qmn_options_questions_tab.php:
|
| 1310 |
msgid "Delete Question"
|
| 1311 |
msgstr "Slet spørgsmål"
|
| 1312 |
|
| 1313 |
-
#: php/qmn_options_questions_tab.php:
|
| 1314 |
msgid "Are you sure you want to duplicate this question?"
|
| 1315 |
msgstr "Er du sikker på du vil kopiere dette spørgsmål?"
|
| 1316 |
|
| 1317 |
-
#: php/qmn_options_questions_tab.php:
|
| 1318 |
msgid "Duplicate Question"
|
| 1319 |
msgstr "Kopieret spørgsmål"
|
| 1320 |
|
|
@@ -1363,46 +1363,46 @@ msgstr "Klokken"
|
|
| 1363 |
msgid "Your results has been deleted successfully."
|
| 1364 |
msgstr "Dine resultater er blevet slettet."
|
| 1365 |
|
| 1366 |
-
#: php/qmn_results.php:
|
| 1367 |
#, php-format
|
| 1368 |
msgid "One result"
|
| 1369 |
msgid_plural "%s results"
|
| 1370 |
msgstr[0] "Et resultat"
|
| 1371 |
msgstr[1] "%s resultater"
|
| 1372 |
|
| 1373 |
-
#: php/qmn_results.php:
|
| 1374 |
msgid "Actions"
|
| 1375 |
msgstr "Handlinger"
|
| 1376 |
|
| 1377 |
-
#: php/qmn_results.php:
|
| 1378 |
msgid "Score"
|
| 1379 |
msgstr "Skore"
|
| 1380 |
|
| 1381 |
-
#: php/qmn_results.php:
|
| 1382 |
msgid "Time To Complete"
|
| 1383 |
msgstr "Tid til at færdiggøre"
|
| 1384 |
|
| 1385 |
-
#: php/qmn_results.php:
|
| 1386 |
msgid "Business"
|
| 1387 |
msgstr "Forretning"
|
| 1388 |
|
| 1389 |
-
#: php/qmn_results.php:
|
| 1390 |
msgid "Email"
|
| 1391 |
msgstr "Email"
|
| 1392 |
|
| 1393 |
-
#: php/qmn_results.php:
|
| 1394 |
msgid "Phone"
|
| 1395 |
msgstr "Telefon"
|
| 1396 |
|
| 1397 |
-
#: php/qmn_results.php:
|
| 1398 |
msgid "Time Taken"
|
| 1399 |
msgstr "Forbrugt tid"
|
| 1400 |
|
| 1401 |
-
#: php/qmn_results.php:
|
| 1402 |
msgid "Are you sure you want to delete these results?"
|
| 1403 |
msgstr "Er du sikker på at du vil slette disse resultater ?"
|
| 1404 |
|
| 1405 |
-
#: php/qmn_results.php:
|
| 1406 |
msgid "Delete Results"
|
| 1407 |
msgstr "Slet resultater"
|
| 1408 |
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Quiz Master Next\n"
|
| 7 |
"Report-Msgid-Bugs-To: \n"
|
| 8 |
+
"POT-Creation-Date: 2015-09-30 18:10-0500\n"
|
| 9 |
"PO-Revision-Date: \n"
|
| 10 |
"Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
|
| 11 |
+
"Language-Team: My Local Webstop <support@mylocalwebstop.com>\n"
|
| 12 |
"Language: da_DK\n"
|
| 13 |
"MIME-Version: 1.0\n"
|
| 14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 112 |
msgid "Accept"
|
| 113 |
msgstr "Accepter"
|
| 114 |
|
| 115 |
+
#: php/qmn_question_types.php:693
|
| 116 |
msgid "Captcha"
|
| 117 |
msgstr "CAPTCHA"
|
| 118 |
|
| 119 |
+
#: php/qmn_question_types.php:751
|
| 120 |
msgid "Horizontal Multiple Response"
|
| 121 |
msgstr "Vandret Multiple svar"
|
| 122 |
|
| 123 |
+
#: php/qmn_question_types.php:862
|
| 124 |
msgid ""
|
| 125 |
"For fill in the blank types, use %BLANK% to represent where to put the text "
|
| 126 |
"box in your text."
|
| 127 |
msgstr ""
|
| 128 |
|
| 129 |
+
#: php/qmn_question_types.php:866
|
| 130 |
msgid "Fill In The Blank"
|
| 131 |
msgstr ""
|
| 132 |
|
| 144 |
#: php/qmn_options_certificate_tab.php:83 php/qmn_options_tools_tab.php:68
|
| 145 |
#: php/qmn_options_text_tab.php:123 php/qmn_options_results_page_tab.php:76
|
| 146 |
#: php/qmn_options_results_page_tab.php:125
|
| 147 |
+
#: php/qmn_options_questions_tab.php:190 php/qmn_options_questions_tab.php:235
|
| 148 |
+
#: php/qmn_options_questions_tab.php:327 php/qmn_options_questions_tab.php:424
|
| 149 |
#: php/qmn_results.php:58 php/qmn_quiz_creator.php:408
|
| 150 |
#: php/qmn_quiz_creator.php:483 php/qmn_quiz_creator.php:534
|
| 151 |
#: php/qmn_quiz_creator.php:701 php/qmn_quiz_creator.php:767
|
| 172 |
msgid "Points"
|
| 173 |
msgstr "Point"
|
| 174 |
|
| 175 |
+
#: php/qmn_options_option_tab.php:172 php/qmn_results.php:340
|
| 176 |
msgid "Not Graded"
|
| 177 |
msgstr "Ikke Graded"
|
| 178 |
|
| 188 |
#: php/qmn_options_option_tab.php:306 php/qmn_options_email_tab.php:381
|
| 189 |
#: php/qmn_options_email_tab.php:388 php/qmn_options_certificate_tab.php:117
|
| 190 |
#: php/qmn_options_results_page_tab.php:282
|
| 191 |
+
#: php/qmn_options_questions_tab.php:701
|
| 192 |
msgid "Yes"
|
| 193 |
msgstr "Ja"
|
| 194 |
|
| 201 |
#: php/qmn_options_email_tab.php:382 php/qmn_options_email_tab.php:389
|
| 202 |
#: php/qmn_options_certificate_tab.php:118
|
| 203 |
#: php/qmn_options_results_page_tab.php:282
|
| 204 |
+
#: php/qmn_options_questions_tab.php:702
|
| 205 |
msgid "No"
|
| 206 |
msgstr "Nej"
|
| 207 |
|
| 814 |
msgid "Please complete all required fields!"
|
| 815 |
msgstr "Venligst udfyld alle obligatoriske felter"
|
| 816 |
|
| 817 |
+
#: php/qmn_quiz.php:495 php/qmn_options_questions_tab.php:680
|
| 818 |
msgid "Hint"
|
| 819 |
msgstr "Hint"
|
| 820 |
|
| 839 |
msgid "Do not allow"
|
| 840 |
msgstr "Tillad ikke"
|
| 841 |
|
| 842 |
+
#: php/qmn_results_details.php:20 php/qmn_results.php:196
|
| 843 |
msgid "Quiz Results"
|
| 844 |
msgstr "Quiz resultater"
|
| 845 |
|
| 993 |
msgstr[1] "%s quizzer"
|
| 994 |
|
| 995 |
#: php/qmn_quiz_admin.php:259 php/qmn_quiz_admin.php:310
|
| 996 |
+
#: php/qmn_results.php:294
|
| 997 |
msgid "Name"
|
| 998 |
msgstr "Navn"
|
| 999 |
|
| 1046 |
msgid "Create New Quiz Or Survey"
|
| 1047 |
msgstr "Opret ny quiz"
|
| 1048 |
|
| 1049 |
+
#: php/qmn_quiz_admin.php:378 php/qmn_results.php:291
|
| 1050 |
msgid "Quiz Name"
|
| 1051 |
msgstr "Quiz navn"
|
| 1052 |
|
| 1101 |
msgid "People Who Make QMN Possible"
|
| 1102 |
msgstr ""
|
| 1103 |
|
| 1104 |
+
#: php/qmn_credits.php:102
|
| 1105 |
#, php-format
|
| 1106 |
msgid "View %s"
|
| 1107 |
msgstr ""
|
| 1204 |
msgid "Answer"
|
| 1205 |
msgstr "Svar:"
|
| 1206 |
|
| 1207 |
+
#: php/qmn_options_questions_tab.php:64
|
| 1208 |
msgid "The question order has been updated successfully."
|
| 1209 |
msgstr ""
|
| 1210 |
|
| 1211 |
+
#: php/qmn_options_questions_tab.php:169
|
| 1212 |
msgid "The question has been updated successfully."
|
| 1213 |
msgstr "Spørgsmålet er blevet opdateret."
|
| 1214 |
|
| 1215 |
+
#: php/qmn_options_questions_tab.php:214
|
| 1216 |
msgid "The question has been deleted successfully."
|
| 1217 |
msgstr "Dine resultater er blevet slettet."
|
| 1218 |
|
| 1219 |
+
#: php/qmn_options_questions_tab.php:306
|
| 1220 |
msgid "The question has been duplicated successfully."
|
| 1221 |
msgstr "Din Spørgsmål er blevet dublikeret."
|
| 1222 |
|
| 1223 |
+
#: php/qmn_options_questions_tab.php:403
|
| 1224 |
msgid "The question has been created successfully."
|
| 1225 |
msgstr "Spørgsmålet er blevet oprettet."
|
| 1226 |
|
| 1227 |
+
#: php/qmn_options_questions_tab.php:538
|
| 1228 |
msgid "Add Question"
|
| 1229 |
msgstr "Nyt spørgsmål"
|
| 1230 |
|
| 1231 |
+
#: php/qmn_options_questions_tab.php:539
|
| 1232 |
msgid "Save Question Order"
|
| 1233 |
msgstr ""
|
| 1234 |
|
| 1235 |
+
#: php/qmn_options_questions_tab.php:552
|
| 1236 |
#, php-format
|
| 1237 |
msgid "One question"
|
| 1238 |
msgid_plural "%s questions"
|
| 1239 |
msgstr[0] "Et spørgsmål"
|
| 1240 |
msgstr[1] "%s spørgsmål"
|
| 1241 |
|
| 1242 |
+
#: php/qmn_options_questions_tab.php:558 php/qmn_options_questions_tab.php:566
|
| 1243 |
+
#: php/qmn_options_questions_tab.php:694
|
| 1244 |
msgid "Question Order"
|
| 1245 |
msgstr "Rækkefølge spørgsmål"
|
| 1246 |
|
| 1247 |
+
#: php/qmn_options_questions_tab.php:559 php/qmn_options_questions_tab.php:567
|
| 1248 |
+
#: php/qmn_options_questions_tab.php:644
|
| 1249 |
msgid "Question Type"
|
| 1250 |
msgstr "Spørgsmål type"
|
| 1251 |
|
| 1252 |
+
#: php/qmn_options_questions_tab.php:560 php/qmn_options_questions_tab.php:568
|
| 1253 |
+
#: php/qmn_options_questions_tab.php:707
|
| 1254 |
msgid "Category"
|
| 1255 |
msgstr "Kategori"
|
| 1256 |
|
| 1257 |
+
#: php/qmn_options_questions_tab.php:561 php/qmn_options_questions_tab.php:569
|
| 1258 |
msgid "Question"
|
| 1259 |
msgstr "Spørgsmål"
|
| 1260 |
|
| 1261 |
+
#: php/qmn_options_questions_tab.php:662
|
| 1262 |
msgid "Answers"
|
| 1263 |
msgstr "Svar"
|
| 1264 |
|
| 1265 |
+
#: php/qmn_options_questions_tab.php:663
|
| 1266 |
msgid "Points Worth"
|
| 1267 |
msgstr "Værdi af point"
|
| 1268 |
|
| 1269 |
+
#: php/qmn_options_questions_tab.php:664
|
| 1270 |
msgid "Correct Answer"
|
| 1271 |
msgstr "Korrekt svar"
|
| 1272 |
|
| 1273 |
+
#: php/qmn_options_questions_tab.php:669
|
| 1274 |
msgid "Add New Answer!"
|
| 1275 |
msgstr "Tilføj nyt svar!"
|
| 1276 |
|
| 1277 |
+
#: php/qmn_options_questions_tab.php:675
|
| 1278 |
msgid "Correct Answer Info"
|
| 1279 |
msgstr "Info for korrekt svar"
|
| 1280 |
|
| 1281 |
+
#: php/qmn_options_questions_tab.php:685
|
| 1282 |
msgid "Comment Field"
|
| 1283 |
msgstr "KOmmentar felt"
|
| 1284 |
|
| 1285 |
+
#: php/qmn_options_questions_tab.php:687
|
| 1286 |
msgid "Small Text Field"
|
| 1287 |
msgstr "Lille tekst felt"
|
| 1288 |
|
| 1289 |
+
#: php/qmn_options_questions_tab.php:688
|
| 1290 |
msgid "Large Text Field"
|
| 1291 |
msgstr "Stort tekst felt"
|
| 1292 |
|
| 1293 |
+
#: php/qmn_options_questions_tab.php:689
|
| 1294 |
msgid "None"
|
| 1295 |
msgstr "Ingen"
|
| 1296 |
|
| 1297 |
+
#: php/qmn_options_questions_tab.php:699
|
| 1298 |
msgid "Required?"
|
| 1299 |
msgstr "Obligatorisk"
|
| 1300 |
|
| 1301 |
+
#: php/qmn_options_questions_tab.php:730
|
| 1302 |
msgid "Create Question"
|
| 1303 |
msgstr "Opret spørgsmål"
|
| 1304 |
|
| 1305 |
+
#: php/qmn_options_questions_tab.php:735
|
| 1306 |
msgid "Are you sure you want to delete this question?"
|
| 1307 |
msgstr "Er du sikker på du vil slette dette spørgsmål"
|
| 1308 |
|
| 1309 |
+
#: php/qmn_options_questions_tab.php:740
|
| 1310 |
msgid "Delete Question"
|
| 1311 |
msgstr "Slet spørgsmål"
|
| 1312 |
|
| 1313 |
+
#: php/qmn_options_questions_tab.php:745
|
| 1314 |
msgid "Are you sure you want to duplicate this question?"
|
| 1315 |
msgstr "Er du sikker på du vil kopiere dette spørgsmål?"
|
| 1316 |
|
| 1317 |
+
#: php/qmn_options_questions_tab.php:750
|
| 1318 |
msgid "Duplicate Question"
|
| 1319 |
msgstr "Kopieret spørgsmål"
|
| 1320 |
|
| 1363 |
msgid "Your results has been deleted successfully."
|
| 1364 |
msgstr "Dine resultater er blevet slettet."
|
| 1365 |
|
| 1366 |
+
#: php/qmn_results.php:205
|
| 1367 |
#, php-format
|
| 1368 |
msgid "One result"
|
| 1369 |
msgid_plural "%s results"
|
| 1370 |
msgstr[0] "Et resultat"
|
| 1371 |
msgstr[1] "%s resultater"
|
| 1372 |
|
| 1373 |
+
#: php/qmn_results.php:290
|
| 1374 |
msgid "Actions"
|
| 1375 |
msgstr "Handlinger"
|
| 1376 |
|
| 1377 |
+
#: php/qmn_results.php:292
|
| 1378 |
msgid "Score"
|
| 1379 |
msgstr "Skore"
|
| 1380 |
|
| 1381 |
+
#: php/qmn_results.php:293
|
| 1382 |
msgid "Time To Complete"
|
| 1383 |
msgstr "Tid til at færdiggøre"
|
| 1384 |
|
| 1385 |
+
#: php/qmn_results.php:295
|
| 1386 |
msgid "Business"
|
| 1387 |
msgstr "Forretning"
|
| 1388 |
|
| 1389 |
+
#: php/qmn_results.php:296
|
| 1390 |
msgid "Email"
|
| 1391 |
msgstr "Email"
|
| 1392 |
|
| 1393 |
+
#: php/qmn_results.php:297
|
| 1394 |
msgid "Phone"
|
| 1395 |
msgstr "Telefon"
|
| 1396 |
|
| 1397 |
+
#: php/qmn_results.php:298
|
| 1398 |
msgid "Time Taken"
|
| 1399 |
msgstr "Forbrugt tid"
|
| 1400 |
|
| 1401 |
+
#: php/qmn_results.php:357
|
| 1402 |
msgid "Are you sure you want to delete these results?"
|
| 1403 |
msgstr "Er du sikker på at du vil slette disse resultater ?"
|
| 1404 |
|
| 1405 |
+
#: php/qmn_results.php:362
|
| 1406 |
msgid "Delete Results"
|
| 1407 |
msgstr "Slet resultater"
|
| 1408 |
|
languages/quiz-master-next-es_ES.mo
CHANGED
|
Binary file
|
languages/quiz-master-next-es_ES.po
CHANGED
|
@@ -2,10 +2,10 @@ msgid ""
|
|
| 2 |
msgstr ""
|
| 3 |
"Project-Id-Version: Quiz Master Next\n"
|
| 4 |
"Report-Msgid-Bugs-To: \n"
|
| 5 |
-
"POT-Creation-Date: 2015-09-
|
| 6 |
-
"PO-Revision-Date: 2015-09-
|
| 7 |
"Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
|
| 8 |
-
"Language-Team: My Local Webstop <
|
| 9 |
"Language: es_ES\n"
|
| 10 |
"MIME-Version: 1.0\n"
|
| 11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -115,23 +115,23 @@ msgstr "Número"
|
|
| 115 |
msgid "Accept"
|
| 116 |
msgstr "Aceptar"
|
| 117 |
|
| 118 |
-
#: php/qmn_question_types.php:
|
| 119 |
msgid "Captcha"
|
| 120 |
msgstr ""
|
| 121 |
"Source text:\n"
|
| 122 |
"Captcha"
|
| 123 |
|
| 124 |
-
#: php/qmn_question_types.php:
|
| 125 |
msgid "Horizontal Multiple Response"
|
| 126 |
msgstr "Múltiples Respuestas Horizontal"
|
| 127 |
|
| 128 |
-
#: php/qmn_question_types.php:
|
| 129 |
msgid ""
|
| 130 |
"For fill in the blank types, use %BLANK% to represent where to put the text "
|
| 131 |
"box in your text."
|
| 132 |
msgstr ""
|
| 133 |
|
| 134 |
-
#: php/qmn_question_types.php:
|
| 135 |
msgid "Fill In The Blank"
|
| 136 |
msgstr ""
|
| 137 |
|
|
@@ -149,8 +149,8 @@ msgstr "Las opciones han sido actualizadas correctamente."
|
|
| 149 |
#: php/qmn_options_certificate_tab.php:83 php/qmn_options_tools_tab.php:68
|
| 150 |
#: php/qmn_options_text_tab.php:123 php/qmn_options_results_page_tab.php:76
|
| 151 |
#: php/qmn_options_results_page_tab.php:125
|
| 152 |
-
#: php/qmn_options_questions_tab.php:
|
| 153 |
-
#: php/qmn_options_questions_tab.php:
|
| 154 |
#: php/qmn_results.php:58 php/qmn_quiz_creator.php:408
|
| 155 |
#: php/qmn_quiz_creator.php:483 php/qmn_quiz_creator.php:534
|
| 156 |
#: php/qmn_quiz_creator.php:701 php/qmn_quiz_creator.php:767
|
|
@@ -179,7 +179,7 @@ msgstr "Correcto/Incorrecto"
|
|
| 179 |
msgid "Points"
|
| 180 |
msgstr "Puntos"
|
| 181 |
|
| 182 |
-
#: php/qmn_options_option_tab.php:172 php/qmn_results.php:
|
| 183 |
msgid "Not Graded"
|
| 184 |
msgstr "No clasificada"
|
| 185 |
|
|
@@ -196,7 +196,7 @@ msgstr ""
|
|
| 196 |
#: php/qmn_options_option_tab.php:306 php/qmn_options_email_tab.php:381
|
| 197 |
#: php/qmn_options_email_tab.php:388 php/qmn_options_certificate_tab.php:117
|
| 198 |
#: php/qmn_options_results_page_tab.php:282
|
| 199 |
-
#: php/qmn_options_questions_tab.php:
|
| 200 |
msgid "Yes"
|
| 201 |
msgstr "sí"
|
| 202 |
|
|
@@ -209,7 +209,7 @@ msgstr "sí"
|
|
| 209 |
#: php/qmn_options_email_tab.php:382 php/qmn_options_email_tab.php:389
|
| 210 |
#: php/qmn_options_certificate_tab.php:118
|
| 211 |
#: php/qmn_options_results_page_tab.php:282
|
| 212 |
-
#: php/qmn_options_questions_tab.php:
|
| 213 |
msgid "No"
|
| 214 |
msgstr "No"
|
| 215 |
|
|
@@ -837,7 +837,7 @@ msgstr "El texto introducido no es correcto!"
|
|
| 837 |
msgid "Please complete all required fields!"
|
| 838 |
msgstr "Por favor, complete todas los campos obligatorios!"
|
| 839 |
|
| 840 |
-
#: php/qmn_quiz.php:
|
| 841 |
msgid "Hint"
|
| 842 |
msgstr "Indicación"
|
| 843 |
|
|
@@ -864,7 +864,7 @@ msgstr "Permitir"
|
|
| 864 |
msgid "Do not allow"
|
| 865 |
msgstr "No permitir"
|
| 866 |
|
| 867 |
-
#: php/qmn_results_details.php:20 php/qmn_results.php:
|
| 868 |
msgid "Quiz Results"
|
| 869 |
msgstr "Resultados de la encuesta."
|
| 870 |
|
|
@@ -1017,7 +1017,7 @@ msgstr[0] "Un cuestionarios"
|
|
| 1017 |
msgstr[1] "%s cuestionarios"
|
| 1018 |
|
| 1019 |
#: php/qmn_quiz_admin.php:259 php/qmn_quiz_admin.php:310
|
| 1020 |
-
#: php/qmn_results.php:
|
| 1021 |
msgid "Name"
|
| 1022 |
msgstr "Nombre"
|
| 1023 |
|
|
@@ -1070,7 +1070,7 @@ msgstr "Eliminar"
|
|
| 1070 |
msgid "Create New Quiz Or Survey"
|
| 1071 |
msgstr "Crear un Nuevo Cuestionario"
|
| 1072 |
|
| 1073 |
-
#: php/qmn_quiz_admin.php:378 php/qmn_results.php:
|
| 1074 |
msgid "Quiz Name"
|
| 1075 |
msgstr "Nombre del Cuestionario"
|
| 1076 |
|
|
@@ -1125,7 +1125,7 @@ msgstr "Historial de modificaciones"
|
|
| 1125 |
msgid "People Who Make QMN Possible"
|
| 1126 |
msgstr ""
|
| 1127 |
|
| 1128 |
-
#: php/qmn_credits.php:
|
| 1129 |
#, php-format
|
| 1130 |
msgid "View %s"
|
| 1131 |
msgstr ""
|
|
@@ -1231,117 +1231,117 @@ msgstr "Preguntas"
|
|
| 1231 |
msgid "Answer"
|
| 1232 |
msgstr "Respuesta"
|
| 1233 |
|
| 1234 |
-
#: php/qmn_options_questions_tab.php:
|
| 1235 |
msgid "The question order has been updated successfully."
|
| 1236 |
msgstr ""
|
| 1237 |
|
| 1238 |
-
#: php/qmn_options_questions_tab.php:
|
| 1239 |
msgid "The question has been updated successfully."
|
| 1240 |
msgstr "La pregunta ha sido actualizada correctamente."
|
| 1241 |
|
| 1242 |
-
#: php/qmn_options_questions_tab.php:
|
| 1243 |
msgid "The question has been deleted successfully."
|
| 1244 |
msgstr "La pregunta ha sido eliminada correctamente."
|
| 1245 |
|
| 1246 |
-
#: php/qmn_options_questions_tab.php:
|
| 1247 |
msgid "The question has been duplicated successfully."
|
| 1248 |
msgstr "La pregunta ha sido duplicada correctamente."
|
| 1249 |
|
| 1250 |
-
#: php/qmn_options_questions_tab.php:
|
| 1251 |
msgid "The question has been created successfully."
|
| 1252 |
msgstr "La pregunta ha sido creada correctamente."
|
| 1253 |
|
| 1254 |
-
#: php/qmn_options_questions_tab.php:
|
| 1255 |
msgid "Add Question"
|
| 1256 |
msgstr "Añadir pregunta"
|
| 1257 |
|
| 1258 |
-
#: php/qmn_options_questions_tab.php:
|
| 1259 |
msgid "Save Question Order"
|
| 1260 |
msgstr ""
|
| 1261 |
|
| 1262 |
-
#: php/qmn_options_questions_tab.php:
|
| 1263 |
#, php-format
|
| 1264 |
msgid "One question"
|
| 1265 |
msgid_plural "%s questions"
|
| 1266 |
msgstr[0] "Una pregunta"
|
| 1267 |
msgstr[1] "%s preguntas"
|
| 1268 |
|
| 1269 |
-
#: php/qmn_options_questions_tab.php:
|
| 1270 |
-
#: php/qmn_options_questions_tab.php:
|
| 1271 |
msgid "Question Order"
|
| 1272 |
msgstr "Orden de preguntas"
|
| 1273 |
|
| 1274 |
-
#: php/qmn_options_questions_tab.php:
|
| 1275 |
-
#: php/qmn_options_questions_tab.php:
|
| 1276 |
msgid "Question Type"
|
| 1277 |
msgstr "Tipo de pregunta"
|
| 1278 |
|
| 1279 |
-
#: php/qmn_options_questions_tab.php:
|
| 1280 |
-
#: php/qmn_options_questions_tab.php:
|
| 1281 |
msgid "Category"
|
| 1282 |
msgstr "Categoria"
|
| 1283 |
|
| 1284 |
-
#: php/qmn_options_questions_tab.php:
|
| 1285 |
msgid "Question"
|
| 1286 |
msgstr "Pregunta"
|
| 1287 |
|
| 1288 |
-
#: php/qmn_options_questions_tab.php:
|
| 1289 |
msgid "Answers"
|
| 1290 |
msgstr "Respuestas"
|
| 1291 |
|
| 1292 |
-
#: php/qmn_options_questions_tab.php:
|
| 1293 |
msgid "Points Worth"
|
| 1294 |
msgstr "Puntuación"
|
| 1295 |
|
| 1296 |
-
#: php/qmn_options_questions_tab.php:
|
| 1297 |
msgid "Correct Answer"
|
| 1298 |
msgstr "Respuesta correcta"
|
| 1299 |
|
| 1300 |
-
#: php/qmn_options_questions_tab.php:
|
| 1301 |
msgid "Add New Answer!"
|
| 1302 |
msgstr "Añada nueva respuesta!"
|
| 1303 |
|
| 1304 |
-
#: php/qmn_options_questions_tab.php:
|
| 1305 |
msgid "Correct Answer Info"
|
| 1306 |
msgstr "Información acerca de la respuesta correcta"
|
| 1307 |
|
| 1308 |
-
#: php/qmn_options_questions_tab.php:
|
| 1309 |
msgid "Comment Field"
|
| 1310 |
msgstr "Campo de Comentario"
|
| 1311 |
|
| 1312 |
-
#: php/qmn_options_questions_tab.php:
|
| 1313 |
msgid "Small Text Field"
|
| 1314 |
msgstr "Campo de texto corto"
|
| 1315 |
|
| 1316 |
-
#: php/qmn_options_questions_tab.php:
|
| 1317 |
msgid "Large Text Field"
|
| 1318 |
msgstr "Campo de texto largo"
|
| 1319 |
|
| 1320 |
-
#: php/qmn_options_questions_tab.php:
|
| 1321 |
msgid "None"
|
| 1322 |
msgstr "Ninguna"
|
| 1323 |
|
| 1324 |
-
#: php/qmn_options_questions_tab.php:
|
| 1325 |
msgid "Required?"
|
| 1326 |
msgstr "¿Obligatorio?"
|
| 1327 |
|
| 1328 |
-
#: php/qmn_options_questions_tab.php:
|
| 1329 |
msgid "Create Question"
|
| 1330 |
msgstr "Crear Pregunta"
|
| 1331 |
|
| 1332 |
-
#: php/qmn_options_questions_tab.php:
|
| 1333 |
msgid "Are you sure you want to delete this question?"
|
| 1334 |
msgstr "¿Está seguro que desea eliminar esta pregunta?"
|
| 1335 |
|
| 1336 |
-
#: php/qmn_options_questions_tab.php:
|
| 1337 |
msgid "Delete Question"
|
| 1338 |
msgstr "Eliminar pregunta"
|
| 1339 |
|
| 1340 |
-
#: php/qmn_options_questions_tab.php:
|
| 1341 |
msgid "Are you sure you want to duplicate this question?"
|
| 1342 |
msgstr "¿Está seguro que desea duplicar esta pregunta?"
|
| 1343 |
|
| 1344 |
-
#: php/qmn_options_questions_tab.php:
|
| 1345 |
msgid "Duplicate Question"
|
| 1346 |
msgstr "Duplicar Pregunta"
|
| 1347 |
|
|
@@ -1393,46 +1393,46 @@ msgstr "Tiempo"
|
|
| 1393 |
msgid "Your results has been deleted successfully."
|
| 1394 |
msgstr "Sus resultados han sido eliminados correctamente."
|
| 1395 |
|
| 1396 |
-
#: php/qmn_results.php:
|
| 1397 |
#, php-format
|
| 1398 |
msgid "One result"
|
| 1399 |
msgid_plural "%s results"
|
| 1400 |
msgstr[0] "Un resultado"
|
| 1401 |
msgstr[1] "%s resultados"
|
| 1402 |
|
| 1403 |
-
#: php/qmn_results.php:
|
| 1404 |
msgid "Actions"
|
| 1405 |
msgstr "Acciones"
|
| 1406 |
|
| 1407 |
-
#: php/qmn_results.php:
|
| 1408 |
msgid "Score"
|
| 1409 |
msgstr "Puntuación"
|
| 1410 |
|
| 1411 |
-
#: php/qmn_results.php:
|
| 1412 |
msgid "Time To Complete"
|
| 1413 |
msgstr "Tiempo para completar"
|
| 1414 |
|
| 1415 |
-
#: php/qmn_results.php:
|
| 1416 |
msgid "Business"
|
| 1417 |
msgstr "Asunto"
|
| 1418 |
|
| 1419 |
-
#: php/qmn_results.php:
|
| 1420 |
msgid "Email"
|
| 1421 |
msgstr "Email"
|
| 1422 |
|
| 1423 |
-
#: php/qmn_results.php:
|
| 1424 |
msgid "Phone"
|
| 1425 |
msgstr "Teléfono"
|
| 1426 |
|
| 1427 |
-
#: php/qmn_results.php:
|
| 1428 |
msgid "Time Taken"
|
| 1429 |
msgstr "Tiempo empleado"
|
| 1430 |
|
| 1431 |
-
#: php/qmn_results.php:
|
| 1432 |
msgid "Are you sure you want to delete these results?"
|
| 1433 |
msgstr "¿Está seguro de que desea eliminar estos resultados?"
|
| 1434 |
|
| 1435 |
-
#: php/qmn_results.php:
|
| 1436 |
msgid "Delete Results"
|
| 1437 |
msgstr "Eliminar resultados"
|
| 1438 |
|
| 2 |
msgstr ""
|
| 3 |
"Project-Id-Version: Quiz Master Next\n"
|
| 4 |
"Report-Msgid-Bugs-To: \n"
|
| 5 |
+
"POT-Creation-Date: 2015-09-30 18:10-0500\n"
|
| 6 |
+
"PO-Revision-Date: 2015-09-30 18:10-0500\n"
|
| 7 |
"Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
|
| 8 |
+
"Language-Team: My Local Webstop <support@mylocalwebstop.com>\n"
|
| 9 |
"Language: es_ES\n"
|
| 10 |
"MIME-Version: 1.0\n"
|
| 11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 115 |
msgid "Accept"
|
| 116 |
msgstr "Aceptar"
|
| 117 |
|
| 118 |
+
#: php/qmn_question_types.php:693
|
| 119 |
msgid "Captcha"
|
| 120 |
msgstr ""
|
| 121 |
"Source text:\n"
|
| 122 |
"Captcha"
|
| 123 |
|
| 124 |
+
#: php/qmn_question_types.php:751
|
| 125 |
msgid "Horizontal Multiple Response"
|
| 126 |
msgstr "Múltiples Respuestas Horizontal"
|
| 127 |
|
| 128 |
+
#: php/qmn_question_types.php:862
|
| 129 |
msgid ""
|
| 130 |
"For fill in the blank types, use %BLANK% to represent where to put the text "
|
| 131 |
"box in your text."
|
| 132 |
msgstr ""
|
| 133 |
|
| 134 |
+
#: php/qmn_question_types.php:866
|
| 135 |
msgid "Fill In The Blank"
|
| 136 |
msgstr ""
|
| 137 |
|
| 149 |
#: php/qmn_options_certificate_tab.php:83 php/qmn_options_tools_tab.php:68
|
| 150 |
#: php/qmn_options_text_tab.php:123 php/qmn_options_results_page_tab.php:76
|
| 151 |
#: php/qmn_options_results_page_tab.php:125
|
| 152 |
+
#: php/qmn_options_questions_tab.php:190 php/qmn_options_questions_tab.php:235
|
| 153 |
+
#: php/qmn_options_questions_tab.php:327 php/qmn_options_questions_tab.php:424
|
| 154 |
#: php/qmn_results.php:58 php/qmn_quiz_creator.php:408
|
| 155 |
#: php/qmn_quiz_creator.php:483 php/qmn_quiz_creator.php:534
|
| 156 |
#: php/qmn_quiz_creator.php:701 php/qmn_quiz_creator.php:767
|
| 179 |
msgid "Points"
|
| 180 |
msgstr "Puntos"
|
| 181 |
|
| 182 |
+
#: php/qmn_options_option_tab.php:172 php/qmn_results.php:340
|
| 183 |
msgid "Not Graded"
|
| 184 |
msgstr "No clasificada"
|
| 185 |
|
| 196 |
#: php/qmn_options_option_tab.php:306 php/qmn_options_email_tab.php:381
|
| 197 |
#: php/qmn_options_email_tab.php:388 php/qmn_options_certificate_tab.php:117
|
| 198 |
#: php/qmn_options_results_page_tab.php:282
|
| 199 |
+
#: php/qmn_options_questions_tab.php:701
|
| 200 |
msgid "Yes"
|
| 201 |
msgstr "sí"
|
| 202 |
|
| 209 |
#: php/qmn_options_email_tab.php:382 php/qmn_options_email_tab.php:389
|
| 210 |
#: php/qmn_options_certificate_tab.php:118
|
| 211 |
#: php/qmn_options_results_page_tab.php:282
|
| 212 |
+
#: php/qmn_options_questions_tab.php:702
|
| 213 |
msgid "No"
|
| 214 |
msgstr "No"
|
| 215 |
|
| 837 |
msgid "Please complete all required fields!"
|
| 838 |
msgstr "Por favor, complete todas los campos obligatorios!"
|
| 839 |
|
| 840 |
+
#: php/qmn_quiz.php:495 php/qmn_options_questions_tab.php:680
|
| 841 |
msgid "Hint"
|
| 842 |
msgstr "Indicación"
|
| 843 |
|
| 864 |
msgid "Do not allow"
|
| 865 |
msgstr "No permitir"
|
| 866 |
|
| 867 |
+
#: php/qmn_results_details.php:20 php/qmn_results.php:196
|
| 868 |
msgid "Quiz Results"
|
| 869 |
msgstr "Resultados de la encuesta."
|
| 870 |
|
| 1017 |
msgstr[1] "%s cuestionarios"
|
| 1018 |
|
| 1019 |
#: php/qmn_quiz_admin.php:259 php/qmn_quiz_admin.php:310
|
| 1020 |
+
#: php/qmn_results.php:294
|
| 1021 |
msgid "Name"
|
| 1022 |
msgstr "Nombre"
|
| 1023 |
|
| 1070 |
msgid "Create New Quiz Or Survey"
|
| 1071 |
msgstr "Crear un Nuevo Cuestionario"
|
| 1072 |
|
| 1073 |
+
#: php/qmn_quiz_admin.php:378 php/qmn_results.php:291
|
| 1074 |
msgid "Quiz Name"
|
| 1075 |
msgstr "Nombre del Cuestionario"
|
| 1076 |
|
| 1125 |
msgid "People Who Make QMN Possible"
|
| 1126 |
msgstr ""
|
| 1127 |
|
| 1128 |
+
#: php/qmn_credits.php:102
|
| 1129 |
#, php-format
|
| 1130 |
msgid "View %s"
|
| 1131 |
msgstr ""
|
| 1231 |
msgid "Answer"
|
| 1232 |
msgstr "Respuesta"
|
| 1233 |
|
| 1234 |
+
#: php/qmn_options_questions_tab.php:64
|
| 1235 |
msgid "The question order has been updated successfully."
|
| 1236 |
msgstr ""
|
| 1237 |
|
| 1238 |
+
#: php/qmn_options_questions_tab.php:169
|
| 1239 |
msgid "The question has been updated successfully."
|
| 1240 |
msgstr "La pregunta ha sido actualizada correctamente."
|
| 1241 |
|
| 1242 |
+
#: php/qmn_options_questions_tab.php:214
|
| 1243 |
msgid "The question has been deleted successfully."
|
| 1244 |
msgstr "La pregunta ha sido eliminada correctamente."
|
| 1245 |
|
| 1246 |
+
#: php/qmn_options_questions_tab.php:306
|
| 1247 |
msgid "The question has been duplicated successfully."
|
| 1248 |
msgstr "La pregunta ha sido duplicada correctamente."
|
| 1249 |
|
| 1250 |
+
#: php/qmn_options_questions_tab.php:403
|
| 1251 |
msgid "The question has been created successfully."
|
| 1252 |
msgstr "La pregunta ha sido creada correctamente."
|
| 1253 |
|
| 1254 |
+
#: php/qmn_options_questions_tab.php:538
|
| 1255 |
msgid "Add Question"
|
| 1256 |
msgstr "Añadir pregunta"
|
| 1257 |
|
| 1258 |
+
#: php/qmn_options_questions_tab.php:539
|
| 1259 |
msgid "Save Question Order"
|
| 1260 |
msgstr ""
|
| 1261 |
|
| 1262 |
+
#: php/qmn_options_questions_tab.php:552
|
| 1263 |
#, php-format
|
| 1264 |
msgid "One question"
|
| 1265 |
msgid_plural "%s questions"
|
| 1266 |
msgstr[0] "Una pregunta"
|
| 1267 |
msgstr[1] "%s preguntas"
|
| 1268 |
|
| 1269 |
+
#: php/qmn_options_questions_tab.php:558 php/qmn_options_questions_tab.php:566
|
| 1270 |
+
#: php/qmn_options_questions_tab.php:694
|
| 1271 |
msgid "Question Order"
|
| 1272 |
msgstr "Orden de preguntas"
|
| 1273 |
|
| 1274 |
+
#: php/qmn_options_questions_tab.php:559 php/qmn_options_questions_tab.php:567
|
| 1275 |
+
#: php/qmn_options_questions_tab.php:644
|
| 1276 |
msgid "Question Type"
|
| 1277 |
msgstr "Tipo de pregunta"
|
| 1278 |
|
| 1279 |
+
#: php/qmn_options_questions_tab.php:560 php/qmn_options_questions_tab.php:568
|
| 1280 |
+
#: php/qmn_options_questions_tab.php:707
|
| 1281 |
msgid "Category"
|
| 1282 |
msgstr "Categoria"
|
| 1283 |
|
| 1284 |
+
#: php/qmn_options_questions_tab.php:561 php/qmn_options_questions_tab.php:569
|
| 1285 |
msgid "Question"
|
| 1286 |
msgstr "Pregunta"
|
| 1287 |
|
| 1288 |
+
#: php/qmn_options_questions_tab.php:662
|
| 1289 |
msgid "Answers"
|
| 1290 |
msgstr "Respuestas"
|
| 1291 |
|
| 1292 |
+
#: php/qmn_options_questions_tab.php:663
|
| 1293 |
msgid "Points Worth"
|
| 1294 |
msgstr "Puntuación"
|
| 1295 |
|
| 1296 |
+
#: php/qmn_options_questions_tab.php:664
|
| 1297 |
msgid "Correct Answer"
|
| 1298 |
msgstr "Respuesta correcta"
|
| 1299 |
|
| 1300 |
+
#: php/qmn_options_questions_tab.php:669
|
| 1301 |
msgid "Add New Answer!"
|
| 1302 |
msgstr "Añada nueva respuesta!"
|
| 1303 |
|
| 1304 |
+
#: php/qmn_options_questions_tab.php:675
|
| 1305 |
msgid "Correct Answer Info"
|
| 1306 |
msgstr "Información acerca de la respuesta correcta"
|
| 1307 |
|
| 1308 |
+
#: php/qmn_options_questions_tab.php:685
|
| 1309 |
msgid "Comment Field"
|
| 1310 |
msgstr "Campo de Comentario"
|
| 1311 |
|
| 1312 |
+
#: php/qmn_options_questions_tab.php:687
|
| 1313 |
msgid "Small Text Field"
|
| 1314 |
msgstr "Campo de texto corto"
|
| 1315 |
|
| 1316 |
+
#: php/qmn_options_questions_tab.php:688
|
| 1317 |
msgid "Large Text Field"
|
| 1318 |
msgstr "Campo de texto largo"
|
| 1319 |
|
| 1320 |
+
#: php/qmn_options_questions_tab.php:689
|
| 1321 |
msgid "None"
|
| 1322 |
msgstr "Ninguna"
|
| 1323 |
|
| 1324 |
+
#: php/qmn_options_questions_tab.php:699
|
| 1325 |
msgid "Required?"
|
| 1326 |
msgstr "¿Obligatorio?"
|
| 1327 |
|
| 1328 |
+
#: php/qmn_options_questions_tab.php:730
|
| 1329 |
msgid "Create Question"
|
| 1330 |
msgstr "Crear Pregunta"
|
| 1331 |
|
| 1332 |
+
#: php/qmn_options_questions_tab.php:735
|
| 1333 |
msgid "Are you sure you want to delete this question?"
|
| 1334 |
msgstr "¿Está seguro que desea eliminar esta pregunta?"
|
| 1335 |
|
| 1336 |
+
#: php/qmn_options_questions_tab.php:740
|
| 1337 |
msgid "Delete Question"
|
| 1338 |
msgstr "Eliminar pregunta"
|
| 1339 |
|
| 1340 |
+
#: php/qmn_options_questions_tab.php:745
|
| 1341 |
msgid "Are you sure you want to duplicate this question?"
|
| 1342 |
msgstr "¿Está seguro que desea duplicar esta pregunta?"
|
| 1343 |
|
| 1344 |
+
#: php/qmn_options_questions_tab.php:750
|
| 1345 |
msgid "Duplicate Question"
|
| 1346 |
msgstr "Duplicar Pregunta"
|
| 1347 |
|
| 1393 |
msgid "Your results has been deleted successfully."
|
| 1394 |
msgstr "Sus resultados han sido eliminados correctamente."
|
| 1395 |
|
| 1396 |
+
#: php/qmn_results.php:205
|
| 1397 |
#, php-format
|
| 1398 |
msgid "One result"
|
| 1399 |
msgid_plural "%s results"
|
| 1400 |
msgstr[0] "Un resultado"
|
| 1401 |
msgstr[1] "%s resultados"
|
| 1402 |
|
| 1403 |
+
#: php/qmn_results.php:290
|
| 1404 |
msgid "Actions"
|
| 1405 |
msgstr "Acciones"
|
| 1406 |
|
| 1407 |
+
#: php/qmn_results.php:292
|
| 1408 |
msgid "Score"
|
| 1409 |
msgstr "Puntuación"
|
| 1410 |
|
| 1411 |
+
#: php/qmn_results.php:293
|
| 1412 |
msgid "Time To Complete"
|
| 1413 |
msgstr "Tiempo para completar"
|
| 1414 |
|
| 1415 |
+
#: php/qmn_results.php:295
|
| 1416 |
msgid "Business"
|
| 1417 |
msgstr "Asunto"
|
| 1418 |
|
| 1419 |
+
#: php/qmn_results.php:296
|
| 1420 |
msgid "Email"
|
| 1421 |
msgstr "Email"
|
| 1422 |
|
| 1423 |
+
#: php/qmn_results.php:297
|
| 1424 |
msgid "Phone"
|
| 1425 |
msgstr "Teléfono"
|
| 1426 |
|
| 1427 |
+
#: php/qmn_results.php:298
|
| 1428 |
msgid "Time Taken"
|
| 1429 |
msgstr "Tiempo empleado"
|
| 1430 |
|
| 1431 |
+
#: php/qmn_results.php:357
|
| 1432 |
msgid "Are you sure you want to delete these results?"
|
| 1433 |
msgstr "¿Está seguro de que desea eliminar estos resultados?"
|
| 1434 |
|
| 1435 |
+
#: php/qmn_results.php:362
|
| 1436 |
msgid "Delete Results"
|
| 1437 |
msgstr "Eliminar resultados"
|
| 1438 |
|
languages/quiz-master-next-it_IT.mo
CHANGED
|
Binary file
|
languages/quiz-master-next-it_IT.po
CHANGED
|
@@ -5,10 +5,10 @@ msgid ""
|
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Quiz Master Next\n"
|
| 7 |
"Report-Msgid-Bugs-To: \n"
|
| 8 |
-
"POT-Creation-Date: 2015-09-
|
| 9 |
"PO-Revision-Date: \n"
|
| 10 |
"Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
|
| 11 |
-
"Language-Team: My Local Webstop <
|
| 12 |
"Language: it_IT\n"
|
| 13 |
"MIME-Version: 1.0\n"
|
| 14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -112,21 +112,21 @@ msgstr "Numero"
|
|
| 112 |
msgid "Accept"
|
| 113 |
msgstr "Casella da spuntare"
|
| 114 |
|
| 115 |
-
#: php/qmn_question_types.php:
|
| 116 |
msgid "Captcha"
|
| 117 |
msgstr "Captcha"
|
| 118 |
|
| 119 |
-
#: php/qmn_question_types.php:
|
| 120 |
msgid "Horizontal Multiple Response"
|
| 121 |
msgstr "Risposte Multiple Orizzontali"
|
| 122 |
|
| 123 |
-
#: php/qmn_question_types.php:
|
| 124 |
msgid ""
|
| 125 |
"For fill in the blank types, use %BLANK% to represent where to put the text "
|
| 126 |
"box in your text."
|
| 127 |
msgstr ""
|
| 128 |
|
| 129 |
-
#: php/qmn_question_types.php:
|
| 130 |
msgid "Fill In The Blank"
|
| 131 |
msgstr ""
|
| 132 |
|
|
@@ -144,8 +144,8 @@ msgstr "Le opzioni sono state aggiornate con successo."
|
|
| 144 |
#: php/qmn_options_certificate_tab.php:83 php/qmn_options_tools_tab.php:68
|
| 145 |
#: php/qmn_options_text_tab.php:123 php/qmn_options_results_page_tab.php:76
|
| 146 |
#: php/qmn_options_results_page_tab.php:125
|
| 147 |
-
#: php/qmn_options_questions_tab.php:
|
| 148 |
-
#: php/qmn_options_questions_tab.php:
|
| 149 |
#: php/qmn_results.php:58 php/qmn_quiz_creator.php:408
|
| 150 |
#: php/qmn_quiz_creator.php:483 php/qmn_quiz_creator.php:534
|
| 151 |
#: php/qmn_quiz_creator.php:701 php/qmn_quiz_creator.php:767
|
|
@@ -173,7 +173,7 @@ msgstr "Giuste/Sbagliate"
|
|
| 173 |
msgid "Points"
|
| 174 |
msgstr "Punti"
|
| 175 |
|
| 176 |
-
#: php/qmn_options_option_tab.php:172 php/qmn_results.php:
|
| 177 |
msgid "Not Graded"
|
| 178 |
msgstr "Non valutato"
|
| 179 |
|
|
@@ -189,7 +189,7 @@ msgstr "E' richiesto all'utente di fare login per svolgere questo quiz?"
|
|
| 189 |
#: php/qmn_options_option_tab.php:306 php/qmn_options_email_tab.php:381
|
| 190 |
#: php/qmn_options_email_tab.php:388 php/qmn_options_certificate_tab.php:117
|
| 191 |
#: php/qmn_options_results_page_tab.php:282
|
| 192 |
-
#: php/qmn_options_questions_tab.php:
|
| 193 |
msgid "Yes"
|
| 194 |
msgstr "Sì"
|
| 195 |
|
|
@@ -202,7 +202,7 @@ msgstr "Sì"
|
|
| 202 |
#: php/qmn_options_email_tab.php:382 php/qmn_options_email_tab.php:389
|
| 203 |
#: php/qmn_options_certificate_tab.php:118
|
| 204 |
#: php/qmn_options_results_page_tab.php:282
|
| 205 |
-
#: php/qmn_options_questions_tab.php:
|
| 206 |
msgid "No"
|
| 207 |
msgstr "No"
|
| 208 |
|
|
@@ -823,7 +823,7 @@ msgstr "Il testo inserito non è corretto!"
|
|
| 823 |
msgid "Please complete all required fields!"
|
| 824 |
msgstr "Per favore completa tutti i campi richiesti!"
|
| 825 |
|
| 826 |
-
#: php/qmn_quiz.php:
|
| 827 |
msgid "Hint"
|
| 828 |
msgstr "Indizio"
|
| 829 |
|
|
@@ -848,7 +848,7 @@ msgstr "Consento"
|
|
| 848 |
msgid "Do not allow"
|
| 849 |
msgstr "Non consento"
|
| 850 |
|
| 851 |
-
#: php/qmn_results_details.php:20 php/qmn_results.php:
|
| 852 |
msgid "Quiz Results"
|
| 853 |
msgstr "Risultati Quiz"
|
| 854 |
|
|
@@ -1003,7 +1003,7 @@ msgstr[0] "Un quiz"
|
|
| 1003 |
msgstr[1] "%s quiz"
|
| 1004 |
|
| 1005 |
#: php/qmn_quiz_admin.php:259 php/qmn_quiz_admin.php:310
|
| 1006 |
-
#: php/qmn_results.php:
|
| 1007 |
msgid "Name"
|
| 1008 |
msgstr "Nome"
|
| 1009 |
|
|
@@ -1056,7 +1056,7 @@ msgstr "Cancella"
|
|
| 1056 |
msgid "Create New Quiz Or Survey"
|
| 1057 |
msgstr "Crea Nuovo Quiz"
|
| 1058 |
|
| 1059 |
-
#: php/qmn_quiz_admin.php:378 php/qmn_results.php:
|
| 1060 |
msgid "Quiz Name"
|
| 1061 |
msgstr "Nome Quiz"
|
| 1062 |
|
|
@@ -1111,7 +1111,7 @@ msgstr "Changelog"
|
|
| 1111 |
msgid "People Who Make QMN Possible"
|
| 1112 |
msgstr ""
|
| 1113 |
|
| 1114 |
-
#: php/qmn_credits.php:
|
| 1115 |
#, php-format
|
| 1116 |
msgid "View %s"
|
| 1117 |
msgstr ""
|
|
@@ -1215,117 +1215,117 @@ msgstr "Domande"
|
|
| 1215 |
msgid "Answer"
|
| 1216 |
msgstr "Risposta"
|
| 1217 |
|
| 1218 |
-
#: php/qmn_options_questions_tab.php:
|
| 1219 |
msgid "The question order has been updated successfully."
|
| 1220 |
msgstr ""
|
| 1221 |
|
| 1222 |
-
#: php/qmn_options_questions_tab.php:
|
| 1223 |
msgid "The question has been updated successfully."
|
| 1224 |
msgstr "La domanda è stata aggiornata con successo."
|
| 1225 |
|
| 1226 |
-
#: php/qmn_options_questions_tab.php:
|
| 1227 |
msgid "The question has been deleted successfully."
|
| 1228 |
msgstr "La domanda è stata cancellata con successo."
|
| 1229 |
|
| 1230 |
-
#: php/qmn_options_questions_tab.php:
|
| 1231 |
msgid "The question has been duplicated successfully."
|
| 1232 |
msgstr "La domanda è stata duplicata con successo."
|
| 1233 |
|
| 1234 |
-
#: php/qmn_options_questions_tab.php:
|
| 1235 |
msgid "The question has been created successfully."
|
| 1236 |
msgstr "La domanda è stata creata con successo."
|
| 1237 |
|
| 1238 |
-
#: php/qmn_options_questions_tab.php:
|
| 1239 |
msgid "Add Question"
|
| 1240 |
msgstr "Aggiungi Domanda"
|
| 1241 |
|
| 1242 |
-
#: php/qmn_options_questions_tab.php:
|
| 1243 |
msgid "Save Question Order"
|
| 1244 |
msgstr ""
|
| 1245 |
|
| 1246 |
-
#: php/qmn_options_questions_tab.php:
|
| 1247 |
#, php-format
|
| 1248 |
msgid "One question"
|
| 1249 |
msgid_plural "%s questions"
|
| 1250 |
msgstr[0] "Una domanda"
|
| 1251 |
msgstr[1] "%s domande"
|
| 1252 |
|
| 1253 |
-
#: php/qmn_options_questions_tab.php:
|
| 1254 |
-
#: php/qmn_options_questions_tab.php:
|
| 1255 |
msgid "Question Order"
|
| 1256 |
msgstr "Ordine Domanda"
|
| 1257 |
|
| 1258 |
-
#: php/qmn_options_questions_tab.php:
|
| 1259 |
-
#: php/qmn_options_questions_tab.php:
|
| 1260 |
msgid "Question Type"
|
| 1261 |
msgstr "Tipo di Domanda"
|
| 1262 |
|
| 1263 |
-
#: php/qmn_options_questions_tab.php:
|
| 1264 |
-
#: php/qmn_options_questions_tab.php:
|
| 1265 |
msgid "Category"
|
| 1266 |
msgstr "Categoria"
|
| 1267 |
|
| 1268 |
-
#: php/qmn_options_questions_tab.php:
|
| 1269 |
msgid "Question"
|
| 1270 |
msgstr "Domanda"
|
| 1271 |
|
| 1272 |
-
#: php/qmn_options_questions_tab.php:
|
| 1273 |
msgid "Answers"
|
| 1274 |
msgstr "Risposte"
|
| 1275 |
|
| 1276 |
-
#: php/qmn_options_questions_tab.php:
|
| 1277 |
msgid "Points Worth"
|
| 1278 |
msgstr "Valore in Punti"
|
| 1279 |
|
| 1280 |
-
#: php/qmn_options_questions_tab.php:
|
| 1281 |
msgid "Correct Answer"
|
| 1282 |
msgstr "Risposta Corretta"
|
| 1283 |
|
| 1284 |
-
#: php/qmn_options_questions_tab.php:
|
| 1285 |
msgid "Add New Answer!"
|
| 1286 |
msgstr "Aggiungi una Nuova Risposta!"
|
| 1287 |
|
| 1288 |
-
#: php/qmn_options_questions_tab.php:
|
| 1289 |
msgid "Correct Answer Info"
|
| 1290 |
msgstr "Informazioni Risposta Corretta"
|
| 1291 |
|
| 1292 |
-
#: php/qmn_options_questions_tab.php:
|
| 1293 |
msgid "Comment Field"
|
| 1294 |
msgstr "Campo Commenti"
|
| 1295 |
|
| 1296 |
-
#: php/qmn_options_questions_tab.php:
|
| 1297 |
msgid "Small Text Field"
|
| 1298 |
msgstr "Campo Testo Piccolo"
|
| 1299 |
|
| 1300 |
-
#: php/qmn_options_questions_tab.php:
|
| 1301 |
msgid "Large Text Field"
|
| 1302 |
msgstr "Campo Testo Grande"
|
| 1303 |
|
| 1304 |
-
#: php/qmn_options_questions_tab.php:
|
| 1305 |
msgid "None"
|
| 1306 |
msgstr "No"
|
| 1307 |
|
| 1308 |
-
#: php/qmn_options_questions_tab.php:
|
| 1309 |
msgid "Required?"
|
| 1310 |
msgstr "Obbligatoria?"
|
| 1311 |
|
| 1312 |
-
#: php/qmn_options_questions_tab.php:
|
| 1313 |
msgid "Create Question"
|
| 1314 |
msgstr "Crea Una Domanda"
|
| 1315 |
|
| 1316 |
-
#: php/qmn_options_questions_tab.php:
|
| 1317 |
msgid "Are you sure you want to delete this question?"
|
| 1318 |
msgstr "Sei sicuro di voler cancellare questa domanda?"
|
| 1319 |
|
| 1320 |
-
#: php/qmn_options_questions_tab.php:
|
| 1321 |
msgid "Delete Question"
|
| 1322 |
msgstr "Cancella Domanda"
|
| 1323 |
|
| 1324 |
-
#: php/qmn_options_questions_tab.php:
|
| 1325 |
msgid "Are you sure you want to duplicate this question?"
|
| 1326 |
msgstr "Sei sicuro di voler duplicare questa domanda?"
|
| 1327 |
|
| 1328 |
-
#: php/qmn_options_questions_tab.php:
|
| 1329 |
msgid "Duplicate Question"
|
| 1330 |
msgstr "Duplica Domanda"
|
| 1331 |
|
|
@@ -1375,46 +1375,46 @@ msgstr "Tempo"
|
|
| 1375 |
msgid "Your results has been deleted successfully."
|
| 1376 |
msgstr "I tuoi risultati sono stati cancellati con successo."
|
| 1377 |
|
| 1378 |
-
#: php/qmn_results.php:
|
| 1379 |
#, php-format
|
| 1380 |
msgid "One result"
|
| 1381 |
msgid_plural "%s results"
|
| 1382 |
msgstr[0] "Un risultato"
|
| 1383 |
msgstr[1] "%s risultati"
|
| 1384 |
|
| 1385 |
-
#: php/qmn_results.php:
|
| 1386 |
msgid "Actions"
|
| 1387 |
msgstr "Azioni"
|
| 1388 |
|
| 1389 |
-
#: php/qmn_results.php:
|
| 1390 |
msgid "Score"
|
| 1391 |
msgstr "Punteggio"
|
| 1392 |
|
| 1393 |
-
#: php/qmn_results.php:
|
| 1394 |
msgid "Time To Complete"
|
| 1395 |
msgstr "Tempo Impiegato"
|
| 1396 |
|
| 1397 |
-
#: php/qmn_results.php:
|
| 1398 |
msgid "Business"
|
| 1399 |
msgstr "Azienda"
|
| 1400 |
|
| 1401 |
-
#: php/qmn_results.php:
|
| 1402 |
msgid "Email"
|
| 1403 |
msgstr "Email"
|
| 1404 |
|
| 1405 |
-
#: php/qmn_results.php:
|
| 1406 |
msgid "Phone"
|
| 1407 |
msgstr "Telefono"
|
| 1408 |
|
| 1409 |
-
#: php/qmn_results.php:
|
| 1410 |
msgid "Time Taken"
|
| 1411 |
msgstr "Data"
|
| 1412 |
|
| 1413 |
-
#: php/qmn_results.php:
|
| 1414 |
msgid "Are you sure you want to delete these results?"
|
| 1415 |
msgstr "Sicuro di voler eliminare questi risultati?"
|
| 1416 |
|
| 1417 |
-
#: php/qmn_results.php:
|
| 1418 |
msgid "Delete Results"
|
| 1419 |
msgstr "Elimina Risultati"
|
| 1420 |
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Quiz Master Next\n"
|
| 7 |
"Report-Msgid-Bugs-To: \n"
|
| 8 |
+
"POT-Creation-Date: 2015-09-30 18:10-0500\n"
|
| 9 |
"PO-Revision-Date: \n"
|
| 10 |
"Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
|
| 11 |
+
"Language-Team: My Local Webstop <support@mylocalwebstop.com>\n"
|
| 12 |
"Language: it_IT\n"
|
| 13 |
"MIME-Version: 1.0\n"
|
| 14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 112 |
msgid "Accept"
|
| 113 |
msgstr "Casella da spuntare"
|
| 114 |
|
| 115 |
+
#: php/qmn_question_types.php:693
|
| 116 |
msgid "Captcha"
|
| 117 |
msgstr "Captcha"
|
| 118 |
|
| 119 |
+
#: php/qmn_question_types.php:751
|
| 120 |
msgid "Horizontal Multiple Response"
|
| 121 |
msgstr "Risposte Multiple Orizzontali"
|
| 122 |
|
| 123 |
+
#: php/qmn_question_types.php:862
|
| 124 |
msgid ""
|
| 125 |
"For fill in the blank types, use %BLANK% to represent where to put the text "
|
| 126 |
"box in your text."
|
| 127 |
msgstr ""
|
| 128 |
|
| 129 |
+
#: php/qmn_question_types.php:866
|
| 130 |
msgid "Fill In The Blank"
|
| 131 |
msgstr ""
|
| 132 |
|
| 144 |
#: php/qmn_options_certificate_tab.php:83 php/qmn_options_tools_tab.php:68
|
| 145 |
#: php/qmn_options_text_tab.php:123 php/qmn_options_results_page_tab.php:76
|
| 146 |
#: php/qmn_options_results_page_tab.php:125
|
| 147 |
+
#: php/qmn_options_questions_tab.php:190 php/qmn_options_questions_tab.php:235
|
| 148 |
+
#: php/qmn_options_questions_tab.php:327 php/qmn_options_questions_tab.php:424
|
| 149 |
#: php/qmn_results.php:58 php/qmn_quiz_creator.php:408
|
| 150 |
#: php/qmn_quiz_creator.php:483 php/qmn_quiz_creator.php:534
|
| 151 |
#: php/qmn_quiz_creator.php:701 php/qmn_quiz_creator.php:767
|
| 173 |
msgid "Points"
|
| 174 |
msgstr "Punti"
|
| 175 |
|
| 176 |
+
#: php/qmn_options_option_tab.php:172 php/qmn_results.php:340
|
| 177 |
msgid "Not Graded"
|
| 178 |
msgstr "Non valutato"
|
| 179 |
|
| 189 |
#: php/qmn_options_option_tab.php:306 php/qmn_options_email_tab.php:381
|
| 190 |
#: php/qmn_options_email_tab.php:388 php/qmn_options_certificate_tab.php:117
|
| 191 |
#: php/qmn_options_results_page_tab.php:282
|
| 192 |
+
#: php/qmn_options_questions_tab.php:701
|
| 193 |
msgid "Yes"
|
| 194 |
msgstr "Sì"
|
| 195 |
|
| 202 |
#: php/qmn_options_email_tab.php:382 php/qmn_options_email_tab.php:389
|
| 203 |
#: php/qmn_options_certificate_tab.php:118
|
| 204 |
#: php/qmn_options_results_page_tab.php:282
|
| 205 |
+
#: php/qmn_options_questions_tab.php:702
|
| 206 |
msgid "No"
|
| 207 |
msgstr "No"
|
| 208 |
|
| 823 |
msgid "Please complete all required fields!"
|
| 824 |
msgstr "Per favore completa tutti i campi richiesti!"
|
| 825 |
|
| 826 |
+
#: php/qmn_quiz.php:495 php/qmn_options_questions_tab.php:680
|
| 827 |
msgid "Hint"
|
| 828 |
msgstr "Indizio"
|
| 829 |
|
| 848 |
msgid "Do not allow"
|
| 849 |
msgstr "Non consento"
|
| 850 |
|
| 851 |
+
#: php/qmn_results_details.php:20 php/qmn_results.php:196
|
| 852 |
msgid "Quiz Results"
|
| 853 |
msgstr "Risultati Quiz"
|
| 854 |
|
| 1003 |
msgstr[1] "%s quiz"
|
| 1004 |
|
| 1005 |
#: php/qmn_quiz_admin.php:259 php/qmn_quiz_admin.php:310
|
| 1006 |
+
#: php/qmn_results.php:294
|
| 1007 |
msgid "Name"
|
| 1008 |
msgstr "Nome"
|
| 1009 |
|
| 1056 |
msgid "Create New Quiz Or Survey"
|
| 1057 |
msgstr "Crea Nuovo Quiz"
|
| 1058 |
|
| 1059 |
+
#: php/qmn_quiz_admin.php:378 php/qmn_results.php:291
|
| 1060 |
msgid "Quiz Name"
|
| 1061 |
msgstr "Nome Quiz"
|
| 1062 |
|
| 1111 |
msgid "People Who Make QMN Possible"
|
| 1112 |
msgstr ""
|
| 1113 |
|
| 1114 |
+
#: php/qmn_credits.php:102
|
| 1115 |
#, php-format
|
| 1116 |
msgid "View %s"
|
| 1117 |
msgstr ""
|
| 1215 |
msgid "Answer"
|
| 1216 |
msgstr "Risposta"
|
| 1217 |
|
| 1218 |
+
#: php/qmn_options_questions_tab.php:64
|
| 1219 |
msgid "The question order has been updated successfully."
|
| 1220 |
msgstr ""
|
| 1221 |
|
| 1222 |
+
#: php/qmn_options_questions_tab.php:169
|
| 1223 |
msgid "The question has been updated successfully."
|
| 1224 |
msgstr "La domanda è stata aggiornata con successo."
|
| 1225 |
|
| 1226 |
+
#: php/qmn_options_questions_tab.php:214
|
| 1227 |
msgid "The question has been deleted successfully."
|
| 1228 |
msgstr "La domanda è stata cancellata con successo."
|
| 1229 |
|
| 1230 |
+
#: php/qmn_options_questions_tab.php:306
|
| 1231 |
msgid "The question has been duplicated successfully."
|
| 1232 |
msgstr "La domanda è stata duplicata con successo."
|
| 1233 |
|
| 1234 |
+
#: php/qmn_options_questions_tab.php:403
|
| 1235 |
msgid "The question has been created successfully."
|
| 1236 |
msgstr "La domanda è stata creata con successo."
|
| 1237 |
|
| 1238 |
+
#: php/qmn_options_questions_tab.php:538
|
| 1239 |
msgid "Add Question"
|
| 1240 |
msgstr "Aggiungi Domanda"
|
| 1241 |
|
| 1242 |
+
#: php/qmn_options_questions_tab.php:539
|
| 1243 |
msgid "Save Question Order"
|
| 1244 |
msgstr ""
|
| 1245 |
|
| 1246 |
+
#: php/qmn_options_questions_tab.php:552
|
| 1247 |
#, php-format
|
| 1248 |
msgid "One question"
|
| 1249 |
msgid_plural "%s questions"
|
| 1250 |
msgstr[0] "Una domanda"
|
| 1251 |
msgstr[1] "%s domande"
|
| 1252 |
|
| 1253 |
+
#: php/qmn_options_questions_tab.php:558 php/qmn_options_questions_tab.php:566
|
| 1254 |
+
#: php/qmn_options_questions_tab.php:694
|
| 1255 |
msgid "Question Order"
|
| 1256 |
msgstr "Ordine Domanda"
|
| 1257 |
|
| 1258 |
+
#: php/qmn_options_questions_tab.php:559 php/qmn_options_questions_tab.php:567
|
| 1259 |
+
#: php/qmn_options_questions_tab.php:644
|
| 1260 |
msgid "Question Type"
|
| 1261 |
msgstr "Tipo di Domanda"
|
| 1262 |
|
| 1263 |
+
#: php/qmn_options_questions_tab.php:560 php/qmn_options_questions_tab.php:568
|
| 1264 |
+
#: php/qmn_options_questions_tab.php:707
|
| 1265 |
msgid "Category"
|
| 1266 |
msgstr "Categoria"
|
| 1267 |
|
| 1268 |
+
#: php/qmn_options_questions_tab.php:561 php/qmn_options_questions_tab.php:569
|
| 1269 |
msgid "Question"
|
| 1270 |
msgstr "Domanda"
|
| 1271 |
|
| 1272 |
+
#: php/qmn_options_questions_tab.php:662
|
| 1273 |
msgid "Answers"
|
| 1274 |
msgstr "Risposte"
|
| 1275 |
|
| 1276 |
+
#: php/qmn_options_questions_tab.php:663
|
| 1277 |
msgid "Points Worth"
|
| 1278 |
msgstr "Valore in Punti"
|
| 1279 |
|
| 1280 |
+
#: php/qmn_options_questions_tab.php:664
|
| 1281 |
msgid "Correct Answer"
|
| 1282 |
msgstr "Risposta Corretta"
|
| 1283 |
|
| 1284 |
+
#: php/qmn_options_questions_tab.php:669
|
| 1285 |
msgid "Add New Answer!"
|
| 1286 |
msgstr "Aggiungi una Nuova Risposta!"
|
| 1287 |
|
| 1288 |
+
#: php/qmn_options_questions_tab.php:675
|
| 1289 |
msgid "Correct Answer Info"
|
| 1290 |
msgstr "Informazioni Risposta Corretta"
|
| 1291 |
|
| 1292 |
+
#: php/qmn_options_questions_tab.php:685
|
| 1293 |
msgid "Comment Field"
|
| 1294 |
msgstr "Campo Commenti"
|
| 1295 |
|
| 1296 |
+
#: php/qmn_options_questions_tab.php:687
|
| 1297 |
msgid "Small Text Field"
|
| 1298 |
msgstr "Campo Testo Piccolo"
|
| 1299 |
|
| 1300 |
+
#: php/qmn_options_questions_tab.php:688
|
| 1301 |
msgid "Large Text Field"
|
| 1302 |
msgstr "Campo Testo Grande"
|
| 1303 |
|
| 1304 |
+
#: php/qmn_options_questions_tab.php:689
|
| 1305 |
msgid "None"
|
| 1306 |
msgstr "No"
|
| 1307 |
|
| 1308 |
+
#: php/qmn_options_questions_tab.php:699
|
| 1309 |
msgid "Required?"
|
| 1310 |
msgstr "Obbligatoria?"
|
| 1311 |
|
| 1312 |
+
#: php/qmn_options_questions_tab.php:730
|
| 1313 |
msgid "Create Question"
|
| 1314 |
msgstr "Crea Una Domanda"
|
| 1315 |
|
| 1316 |
+
#: php/qmn_options_questions_tab.php:735
|
| 1317 |
msgid "Are you sure you want to delete this question?"
|
| 1318 |
msgstr "Sei sicuro di voler cancellare questa domanda?"
|
| 1319 |
|
| 1320 |
+
#: php/qmn_options_questions_tab.php:740
|
| 1321 |
msgid "Delete Question"
|
| 1322 |
msgstr "Cancella Domanda"
|
| 1323 |
|
| 1324 |
+
#: php/qmn_options_questions_tab.php:745
|
| 1325 |
msgid "Are you sure you want to duplicate this question?"
|
| 1326 |
msgstr "Sei sicuro di voler duplicare questa domanda?"
|
| 1327 |
|
| 1328 |
+
#: php/qmn_options_questions_tab.php:750
|
| 1329 |
msgid "Duplicate Question"
|
| 1330 |
msgstr "Duplica Domanda"
|
| 1331 |
|
| 1375 |
msgid "Your results has been deleted successfully."
|
| 1376 |
msgstr "I tuoi risultati sono stati cancellati con successo."
|
| 1377 |
|
| 1378 |
+
#: php/qmn_results.php:205
|
| 1379 |
#, php-format
|
| 1380 |
msgid "One result"
|
| 1381 |
msgid_plural "%s results"
|
| 1382 |
msgstr[0] "Un risultato"
|
| 1383 |
msgstr[1] "%s risultati"
|
| 1384 |
|
| 1385 |
+
#: php/qmn_results.php:290
|
| 1386 |
msgid "Actions"
|
| 1387 |
msgstr "Azioni"
|
| 1388 |
|
| 1389 |
+
#: php/qmn_results.php:292
|
| 1390 |
msgid "Score"
|
| 1391 |
msgstr "Punteggio"
|
| 1392 |
|
| 1393 |
+
#: php/qmn_results.php:293
|
| 1394 |
msgid "Time To Complete"
|
| 1395 |
msgstr "Tempo Impiegato"
|
| 1396 |
|
| 1397 |
+
#: php/qmn_results.php:295
|
| 1398 |
msgid "Business"
|
| 1399 |
msgstr "Azienda"
|
| 1400 |
|
| 1401 |
+
#: php/qmn_results.php:296
|
| 1402 |
msgid "Email"
|
| 1403 |
msgstr "Email"
|
| 1404 |
|
| 1405 |
+
#: php/qmn_results.php:297
|
| 1406 |
msgid "Phone"
|
| 1407 |
msgstr "Telefono"
|
| 1408 |
|
| 1409 |
+
#: php/qmn_results.php:298
|
| 1410 |
msgid "Time Taken"
|
| 1411 |
msgstr "Data"
|
| 1412 |
|
| 1413 |
+
#: php/qmn_results.php:357
|
| 1414 |
msgid "Are you sure you want to delete these results?"
|
| 1415 |
msgstr "Sicuro di voler eliminare questi risultati?"
|
| 1416 |
|
| 1417 |
+
#: php/qmn_results.php:362
|
| 1418 |
msgid "Delete Results"
|
| 1419 |
msgstr "Elimina Risultati"
|
| 1420 |
|
languages/{quiz-master-next-nl-NL.mo → quiz-master-next-nl_NL.mo}
RENAMED
|
Binary file
|
languages/{quiz-master-next-nl-NL.po → quiz-master-next-nl_NL.po}
RENAMED
|
@@ -5,11 +5,11 @@ msgid ""
|
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Quiz Master Next\n"
|
| 7 |
"Report-Msgid-Bugs-To: \n"
|
| 8 |
-
"POT-Creation-Date: 2015-09-
|
| 9 |
"PO-Revision-Date: \n"
|
| 10 |
"Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
|
| 11 |
-
"Language-Team: My Local Webstop <
|
| 12 |
-
"Language:
|
| 13 |
"MIME-Version: 1.0\n"
|
| 14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 15 |
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -112,15 +112,15 @@ msgstr "Nummer"
|
|
| 112 |
msgid "Accept"
|
| 113 |
msgstr "Accepteer"
|
| 114 |
|
| 115 |
-
#: php/qmn_question_types.php:
|
| 116 |
msgid "Captcha"
|
| 117 |
msgstr "Captcha"
|
| 118 |
|
| 119 |
-
#: php/qmn_question_types.php:
|
| 120 |
msgid "Horizontal Multiple Response"
|
| 121 |
msgstr "Horizontale meerdere antwoorden"
|
| 122 |
|
| 123 |
-
#: php/qmn_question_types.php:
|
| 124 |
msgid ""
|
| 125 |
"For fill in the blank types, use %BLANK% to represent where to put the text "
|
| 126 |
"box in your text."
|
|
@@ -128,7 +128,7 @@ msgstr ""
|
|
| 128 |
"Voor vul het lege veld in types, gebruik %BLANK% om aan te geven waar je in "
|
| 129 |
"je tekst de tekstbox wil hebben."
|
| 130 |
|
| 131 |
-
#: php/qmn_question_types.php:
|
| 132 |
msgid "Fill In The Blank"
|
| 133 |
msgstr "Vul het lege veld in"
|
| 134 |
|
|
@@ -146,8 +146,8 @@ msgstr "De opties zijn succesvol bijgewerkt."
|
|
| 146 |
#: php/qmn_options_certificate_tab.php:83 php/qmn_options_tools_tab.php:68
|
| 147 |
#: php/qmn_options_text_tab.php:123 php/qmn_options_results_page_tab.php:76
|
| 148 |
#: php/qmn_options_results_page_tab.php:125
|
| 149 |
-
#: php/qmn_options_questions_tab.php:
|
| 150 |
-
#: php/qmn_options_questions_tab.php:
|
| 151 |
#: php/qmn_results.php:58 php/qmn_quiz_creator.php:408
|
| 152 |
#: php/qmn_quiz_creator.php:483 php/qmn_quiz_creator.php:534
|
| 153 |
#: php/qmn_quiz_creator.php:701 php/qmn_quiz_creator.php:767
|
|
@@ -175,7 +175,7 @@ msgstr "Goed/Fout"
|
|
| 175 |
msgid "Points"
|
| 176 |
msgstr "Punten"
|
| 177 |
|
| 178 |
-
#: php/qmn_options_option_tab.php:172 php/qmn_results.php:
|
| 179 |
msgid "Not Graded"
|
| 180 |
msgstr "Niet ingedeeld"
|
| 181 |
|
|
@@ -191,7 +191,7 @@ msgstr "Moet de gebruiker verplicht inloggen om een quiz te kunnen spelen?"
|
|
| 191 |
#: php/qmn_options_option_tab.php:306 php/qmn_options_email_tab.php:381
|
| 192 |
#: php/qmn_options_email_tab.php:388 php/qmn_options_certificate_tab.php:117
|
| 193 |
#: php/qmn_options_results_page_tab.php:282
|
| 194 |
-
#: php/qmn_options_questions_tab.php:
|
| 195 |
msgid "Yes"
|
| 196 |
msgstr "Ja"
|
| 197 |
|
|
@@ -204,7 +204,7 @@ msgstr "Ja"
|
|
| 204 |
#: php/qmn_options_email_tab.php:382 php/qmn_options_email_tab.php:389
|
| 205 |
#: php/qmn_options_certificate_tab.php:118
|
| 206 |
#: php/qmn_options_results_page_tab.php:282
|
| 207 |
-
#: php/qmn_options_questions_tab.php:
|
| 208 |
msgid "No"
|
| 209 |
msgstr "Nee"
|
| 210 |
|
|
@@ -832,7 +832,7 @@ msgstr "De ingevoerde tekst is niet correct!"
|
|
| 832 |
msgid "Please complete all required fields!"
|
| 833 |
msgstr "Vul alle verplichte velden in!"
|
| 834 |
|
| 835 |
-
#: php/qmn_quiz.php:
|
| 836 |
msgid "Hint"
|
| 837 |
msgstr "Aanwijzing"
|
| 838 |
|
|
@@ -858,7 +858,7 @@ msgstr "Toestaan"
|
|
| 858 |
msgid "Do not allow"
|
| 859 |
msgstr "Niet toestaan"
|
| 860 |
|
| 861 |
-
#: php/qmn_results_details.php:20 php/qmn_results.php:
|
| 862 |
msgid "Quiz Results"
|
| 863 |
msgstr "Quiz resultaten"
|
| 864 |
|
|
@@ -1014,7 +1014,7 @@ msgstr[0] "Een quiz"
|
|
| 1014 |
msgstr[1] "%s quizzen"
|
| 1015 |
|
| 1016 |
#: php/qmn_quiz_admin.php:259 php/qmn_quiz_admin.php:310
|
| 1017 |
-
#: php/qmn_results.php:
|
| 1018 |
msgid "Name"
|
| 1019 |
msgstr "Naam"
|
| 1020 |
|
|
@@ -1067,7 +1067,7 @@ msgstr "Verwijder"
|
|
| 1067 |
msgid "Create New Quiz Or Survey"
|
| 1068 |
msgstr "Maak nieuwe quiz"
|
| 1069 |
|
| 1070 |
-
#: php/qmn_quiz_admin.php:378 php/qmn_results.php:
|
| 1071 |
msgid "Quiz Name"
|
| 1072 |
msgstr "Quiz naam"
|
| 1073 |
|
|
@@ -1122,7 +1122,7 @@ msgstr "Overzicht wijzigingen"
|
|
| 1122 |
msgid "People Who Make QMN Possible"
|
| 1123 |
msgstr ""
|
| 1124 |
|
| 1125 |
-
#: php/qmn_credits.php:
|
| 1126 |
#, php-format
|
| 1127 |
msgid "View %s"
|
| 1128 |
msgstr ""
|
|
@@ -1226,117 +1226,117 @@ msgstr "Vragen"
|
|
| 1226 |
msgid "Answer"
|
| 1227 |
msgstr "Antwoord"
|
| 1228 |
|
| 1229 |
-
#: php/qmn_options_questions_tab.php:
|
| 1230 |
msgid "The question order has been updated successfully."
|
| 1231 |
msgstr ""
|
| 1232 |
|
| 1233 |
-
#: php/qmn_options_questions_tab.php:
|
| 1234 |
msgid "The question has been updated successfully."
|
| 1235 |
msgstr "De vraag is succesvol bijgewerkt."
|
| 1236 |
|
| 1237 |
-
#: php/qmn_options_questions_tab.php:
|
| 1238 |
msgid "The question has been deleted successfully."
|
| 1239 |
msgstr "De vraag is succesvol verwijderd."
|
| 1240 |
|
| 1241 |
-
#: php/qmn_options_questions_tab.php:
|
| 1242 |
msgid "The question has been duplicated successfully."
|
| 1243 |
msgstr "De vraag is succesvol gedupliceerd."
|
| 1244 |
|
| 1245 |
-
#: php/qmn_options_questions_tab.php:
|
| 1246 |
msgid "The question has been created successfully."
|
| 1247 |
msgstr "De vraag is succesvol gemaakt."
|
| 1248 |
|
| 1249 |
-
#: php/qmn_options_questions_tab.php:
|
| 1250 |
msgid "Add Question"
|
| 1251 |
msgstr "Vraag toevoegen"
|
| 1252 |
|
| 1253 |
-
#: php/qmn_options_questions_tab.php:
|
| 1254 |
msgid "Save Question Order"
|
| 1255 |
msgstr ""
|
| 1256 |
|
| 1257 |
-
#: php/qmn_options_questions_tab.php:
|
| 1258 |
#, php-format
|
| 1259 |
msgid "One question"
|
| 1260 |
msgid_plural "%s questions"
|
| 1261 |
msgstr[0] "Een vraag"
|
| 1262 |
msgstr[1] "%s vragen"
|
| 1263 |
|
| 1264 |
-
#: php/qmn_options_questions_tab.php:
|
| 1265 |
-
#: php/qmn_options_questions_tab.php:
|
| 1266 |
msgid "Question Order"
|
| 1267 |
msgstr "Vraag volgorde"
|
| 1268 |
|
| 1269 |
-
#: php/qmn_options_questions_tab.php:
|
| 1270 |
-
#: php/qmn_options_questions_tab.php:
|
| 1271 |
msgid "Question Type"
|
| 1272 |
msgstr "Vraag type"
|
| 1273 |
|
| 1274 |
-
#: php/qmn_options_questions_tab.php:
|
| 1275 |
-
#: php/qmn_options_questions_tab.php:
|
| 1276 |
msgid "Category"
|
| 1277 |
msgstr "Categorie"
|
| 1278 |
|
| 1279 |
-
#: php/qmn_options_questions_tab.php:
|
| 1280 |
msgid "Question"
|
| 1281 |
msgstr "Vraag"
|
| 1282 |
|
| 1283 |
-
#: php/qmn_options_questions_tab.php:
|
| 1284 |
msgid "Answers"
|
| 1285 |
msgstr "Antwoorden"
|
| 1286 |
|
| 1287 |
-
#: php/qmn_options_questions_tab.php:
|
| 1288 |
msgid "Points Worth"
|
| 1289 |
msgstr "Punten waard"
|
| 1290 |
|
| 1291 |
-
#: php/qmn_options_questions_tab.php:
|
| 1292 |
msgid "Correct Answer"
|
| 1293 |
msgstr "Goed antwoord"
|
| 1294 |
|
| 1295 |
-
#: php/qmn_options_questions_tab.php:
|
| 1296 |
msgid "Add New Answer!"
|
| 1297 |
msgstr "Voeg nieuw antwoord toe!"
|
| 1298 |
|
| 1299 |
-
#: php/qmn_options_questions_tab.php:
|
| 1300 |
msgid "Correct Answer Info"
|
| 1301 |
msgstr "Juiste antwoord informatie"
|
| 1302 |
|
| 1303 |
-
#: php/qmn_options_questions_tab.php:
|
| 1304 |
msgid "Comment Field"
|
| 1305 |
msgstr "Opmerkingenveld"
|
| 1306 |
|
| 1307 |
-
#: php/qmn_options_questions_tab.php:
|
| 1308 |
msgid "Small Text Field"
|
| 1309 |
msgstr "Klein tekstveld"
|
| 1310 |
|
| 1311 |
-
#: php/qmn_options_questions_tab.php:
|
| 1312 |
msgid "Large Text Field"
|
| 1313 |
msgstr "Groot tekstveld"
|
| 1314 |
|
| 1315 |
-
#: php/qmn_options_questions_tab.php:
|
| 1316 |
msgid "None"
|
| 1317 |
msgstr "Geen"
|
| 1318 |
|
| 1319 |
-
#: php/qmn_options_questions_tab.php:
|
| 1320 |
msgid "Required?"
|
| 1321 |
msgstr "Vereist?"
|
| 1322 |
|
| 1323 |
-
#: php/qmn_options_questions_tab.php:
|
| 1324 |
msgid "Create Question"
|
| 1325 |
msgstr "Maak vraag"
|
| 1326 |
|
| 1327 |
-
#: php/qmn_options_questions_tab.php:
|
| 1328 |
msgid "Are you sure you want to delete this question?"
|
| 1329 |
msgstr "Weet je zeker dat je deze vraag wil verwijderen?"
|
| 1330 |
|
| 1331 |
-
#: php/qmn_options_questions_tab.php:
|
| 1332 |
msgid "Delete Question"
|
| 1333 |
msgstr "Verwijder vraag"
|
| 1334 |
|
| 1335 |
-
#: php/qmn_options_questions_tab.php:
|
| 1336 |
msgid "Are you sure you want to duplicate this question?"
|
| 1337 |
msgstr "Weet je zeker dat je deze vraag wil dupliceren?"
|
| 1338 |
|
| 1339 |
-
#: php/qmn_options_questions_tab.php:
|
| 1340 |
msgid "Duplicate Question"
|
| 1341 |
msgstr "Dupliceer vraag"
|
| 1342 |
|
|
@@ -1386,46 +1386,46 @@ msgstr "Tijd"
|
|
| 1386 |
msgid "Your results has been deleted successfully."
|
| 1387 |
msgstr "Je resultaten zijn succesvol verwijderd."
|
| 1388 |
|
| 1389 |
-
#: php/qmn_results.php:
|
| 1390 |
#, php-format
|
| 1391 |
msgid "One result"
|
| 1392 |
msgid_plural "%s results"
|
| 1393 |
msgstr[0] "Een resultaat"
|
| 1394 |
msgstr[1] "%s resultaten"
|
| 1395 |
|
| 1396 |
-
#: php/qmn_results.php:
|
| 1397 |
msgid "Actions"
|
| 1398 |
msgstr "Akties"
|
| 1399 |
|
| 1400 |
-
#: php/qmn_results.php:
|
| 1401 |
msgid "Score"
|
| 1402 |
msgstr "Score"
|
| 1403 |
|
| 1404 |
-
#: php/qmn_results.php:
|
| 1405 |
msgid "Time To Complete"
|
| 1406 |
msgstr "Gebruikte tijd"
|
| 1407 |
|
| 1408 |
-
#: php/qmn_results.php:
|
| 1409 |
msgid "Business"
|
| 1410 |
msgstr "Bedrijf"
|
| 1411 |
|
| 1412 |
-
#: php/qmn_results.php:
|
| 1413 |
msgid "Email"
|
| 1414 |
msgstr "Email"
|
| 1415 |
|
| 1416 |
-
#: php/qmn_results.php:
|
| 1417 |
msgid "Phone"
|
| 1418 |
msgstr "Telefoon"
|
| 1419 |
|
| 1420 |
-
#: php/qmn_results.php:
|
| 1421 |
msgid "Time Taken"
|
| 1422 |
msgstr "Benodigde tijd"
|
| 1423 |
|
| 1424 |
-
#: php/qmn_results.php:
|
| 1425 |
msgid "Are you sure you want to delete these results?"
|
| 1426 |
msgstr "Weet je zeker dat je deze resultaten wil verwijderen?"
|
| 1427 |
|
| 1428 |
-
#: php/qmn_results.php:
|
| 1429 |
msgid "Delete Results"
|
| 1430 |
msgstr "Verwijder resultaten"
|
| 1431 |
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Quiz Master Next\n"
|
| 7 |
"Report-Msgid-Bugs-To: \n"
|
| 8 |
+
"POT-Creation-Date: 2015-09-30 18:11-0500\n"
|
| 9 |
"PO-Revision-Date: \n"
|
| 10 |
"Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
|
| 11 |
+
"Language-Team: My Local Webstop <support@mylocalwebstop.com>\n"
|
| 12 |
+
"Language: nl_NL\n"
|
| 13 |
"MIME-Version: 1.0\n"
|
| 14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 15 |
"Content-Transfer-Encoding: 8bit\n"
|
| 112 |
msgid "Accept"
|
| 113 |
msgstr "Accepteer"
|
| 114 |
|
| 115 |
+
#: php/qmn_question_types.php:693
|
| 116 |
msgid "Captcha"
|
| 117 |
msgstr "Captcha"
|
| 118 |
|
| 119 |
+
#: php/qmn_question_types.php:751
|
| 120 |
msgid "Horizontal Multiple Response"
|
| 121 |
msgstr "Horizontale meerdere antwoorden"
|
| 122 |
|
| 123 |
+
#: php/qmn_question_types.php:862
|
| 124 |
msgid ""
|
| 125 |
"For fill in the blank types, use %BLANK% to represent where to put the text "
|
| 126 |
"box in your text."
|
| 128 |
"Voor vul het lege veld in types, gebruik %BLANK% om aan te geven waar je in "
|
| 129 |
"je tekst de tekstbox wil hebben."
|
| 130 |
|
| 131 |
+
#: php/qmn_question_types.php:866
|
| 132 |
msgid "Fill In The Blank"
|
| 133 |
msgstr "Vul het lege veld in"
|
| 134 |
|
| 146 |
#: php/qmn_options_certificate_tab.php:83 php/qmn_options_tools_tab.php:68
|
| 147 |
#: php/qmn_options_text_tab.php:123 php/qmn_options_results_page_tab.php:76
|
| 148 |
#: php/qmn_options_results_page_tab.php:125
|
| 149 |
+
#: php/qmn_options_questions_tab.php:190 php/qmn_options_questions_tab.php:235
|
| 150 |
+
#: php/qmn_options_questions_tab.php:327 php/qmn_options_questions_tab.php:424
|
| 151 |
#: php/qmn_results.php:58 php/qmn_quiz_creator.php:408
|
| 152 |
#: php/qmn_quiz_creator.php:483 php/qmn_quiz_creator.php:534
|
| 153 |
#: php/qmn_quiz_creator.php:701 php/qmn_quiz_creator.php:767
|
| 175 |
msgid "Points"
|
| 176 |
msgstr "Punten"
|
| 177 |
|
| 178 |
+
#: php/qmn_options_option_tab.php:172 php/qmn_results.php:340
|
| 179 |
msgid "Not Graded"
|
| 180 |
msgstr "Niet ingedeeld"
|
| 181 |
|
| 191 |
#: php/qmn_options_option_tab.php:306 php/qmn_options_email_tab.php:381
|
| 192 |
#: php/qmn_options_email_tab.php:388 php/qmn_options_certificate_tab.php:117
|
| 193 |
#: php/qmn_options_results_page_tab.php:282
|
| 194 |
+
#: php/qmn_options_questions_tab.php:701
|
| 195 |
msgid "Yes"
|
| 196 |
msgstr "Ja"
|
| 197 |
|
| 204 |
#: php/qmn_options_email_tab.php:382 php/qmn_options_email_tab.php:389
|
| 205 |
#: php/qmn_options_certificate_tab.php:118
|
| 206 |
#: php/qmn_options_results_page_tab.php:282
|
| 207 |
+
#: php/qmn_options_questions_tab.php:702
|
| 208 |
msgid "No"
|
| 209 |
msgstr "Nee"
|
| 210 |
|
| 832 |
msgid "Please complete all required fields!"
|
| 833 |
msgstr "Vul alle verplichte velden in!"
|
| 834 |
|
| 835 |
+
#: php/qmn_quiz.php:495 php/qmn_options_questions_tab.php:680
|
| 836 |
msgid "Hint"
|
| 837 |
msgstr "Aanwijzing"
|
| 838 |
|
| 858 |
msgid "Do not allow"
|
| 859 |
msgstr "Niet toestaan"
|
| 860 |
|
| 861 |
+
#: php/qmn_results_details.php:20 php/qmn_results.php:196
|
| 862 |
msgid "Quiz Results"
|
| 863 |
msgstr "Quiz resultaten"
|
| 864 |
|
| 1014 |
msgstr[1] "%s quizzen"
|
| 1015 |
|
| 1016 |
#: php/qmn_quiz_admin.php:259 php/qmn_quiz_admin.php:310
|
| 1017 |
+
#: php/qmn_results.php:294
|
| 1018 |
msgid "Name"
|
| 1019 |
msgstr "Naam"
|
| 1020 |
|
| 1067 |
msgid "Create New Quiz Or Survey"
|
| 1068 |
msgstr "Maak nieuwe quiz"
|
| 1069 |
|
| 1070 |
+
#: php/qmn_quiz_admin.php:378 php/qmn_results.php:291
|
| 1071 |
msgid "Quiz Name"
|
| 1072 |
msgstr "Quiz naam"
|
| 1073 |
|
| 1122 |
msgid "People Who Make QMN Possible"
|
| 1123 |
msgstr ""
|
| 1124 |
|
| 1125 |
+
#: php/qmn_credits.php:102
|
| 1126 |
#, php-format
|
| 1127 |
msgid "View %s"
|
| 1128 |
msgstr ""
|
| 1226 |
msgid "Answer"
|
| 1227 |
msgstr "Antwoord"
|
| 1228 |
|
| 1229 |
+
#: php/qmn_options_questions_tab.php:64
|
| 1230 |
msgid "The question order has been updated successfully."
|
| 1231 |
msgstr ""
|
| 1232 |
|
| 1233 |
+
#: php/qmn_options_questions_tab.php:169
|
| 1234 |
msgid "The question has been updated successfully."
|
| 1235 |
msgstr "De vraag is succesvol bijgewerkt."
|
| 1236 |
|
| 1237 |
+
#: php/qmn_options_questions_tab.php:214
|
| 1238 |
msgid "The question has been deleted successfully."
|
| 1239 |
msgstr "De vraag is succesvol verwijderd."
|
| 1240 |
|
| 1241 |
+
#: php/qmn_options_questions_tab.php:306
|
| 1242 |
msgid "The question has been duplicated successfully."
|
| 1243 |
msgstr "De vraag is succesvol gedupliceerd."
|
| 1244 |
|
| 1245 |
+
#: php/qmn_options_questions_tab.php:403
|
| 1246 |
msgid "The question has been created successfully."
|
| 1247 |
msgstr "De vraag is succesvol gemaakt."
|
| 1248 |
|
| 1249 |
+
#: php/qmn_options_questions_tab.php:538
|
| 1250 |
msgid "Add Question"
|
| 1251 |
msgstr "Vraag toevoegen"
|
| 1252 |
|
| 1253 |
+
#: php/qmn_options_questions_tab.php:539
|
| 1254 |
msgid "Save Question Order"
|
| 1255 |
msgstr ""
|
| 1256 |
|
| 1257 |
+
#: php/qmn_options_questions_tab.php:552
|
| 1258 |
#, php-format
|
| 1259 |
msgid "One question"
|
| 1260 |
msgid_plural "%s questions"
|
| 1261 |
msgstr[0] "Een vraag"
|
| 1262 |
msgstr[1] "%s vragen"
|
| 1263 |
|
| 1264 |
+
#: php/qmn_options_questions_tab.php:558 php/qmn_options_questions_tab.php:566
|
| 1265 |
+
#: php/qmn_options_questions_tab.php:694
|
| 1266 |
msgid "Question Order"
|
| 1267 |
msgstr "Vraag volgorde"
|
| 1268 |
|
| 1269 |
+
#: php/qmn_options_questions_tab.php:559 php/qmn_options_questions_tab.php:567
|
| 1270 |
+
#: php/qmn_options_questions_tab.php:644
|
| 1271 |
msgid "Question Type"
|
| 1272 |
msgstr "Vraag type"
|
| 1273 |
|
| 1274 |
+
#: php/qmn_options_questions_tab.php:560 php/qmn_options_questions_tab.php:568
|
| 1275 |
+
#: php/qmn_options_questions_tab.php:707
|
| 1276 |
msgid "Category"
|
| 1277 |
msgstr "Categorie"
|
| 1278 |
|
| 1279 |
+
#: php/qmn_options_questions_tab.php:561 php/qmn_options_questions_tab.php:569
|
| 1280 |
msgid "Question"
|
| 1281 |
msgstr "Vraag"
|
| 1282 |
|
| 1283 |
+
#: php/qmn_options_questions_tab.php:662
|
| 1284 |
msgid "Answers"
|
| 1285 |
msgstr "Antwoorden"
|
| 1286 |
|
| 1287 |
+
#: php/qmn_options_questions_tab.php:663
|
| 1288 |
msgid "Points Worth"
|
| 1289 |
msgstr "Punten waard"
|
| 1290 |
|
| 1291 |
+
#: php/qmn_options_questions_tab.php:664
|
| 1292 |
msgid "Correct Answer"
|
| 1293 |
msgstr "Goed antwoord"
|
| 1294 |
|
| 1295 |
+
#: php/qmn_options_questions_tab.php:669
|
| 1296 |
msgid "Add New Answer!"
|
| 1297 |
msgstr "Voeg nieuw antwoord toe!"
|
| 1298 |
|
| 1299 |
+
#: php/qmn_options_questions_tab.php:675
|
| 1300 |
msgid "Correct Answer Info"
|
| 1301 |
msgstr "Juiste antwoord informatie"
|
| 1302 |
|
| 1303 |
+
#: php/qmn_options_questions_tab.php:685
|
| 1304 |
msgid "Comment Field"
|
| 1305 |
msgstr "Opmerkingenveld"
|
| 1306 |
|
| 1307 |
+
#: php/qmn_options_questions_tab.php:687
|
| 1308 |
msgid "Small Text Field"
|
| 1309 |
msgstr "Klein tekstveld"
|
| 1310 |
|
| 1311 |
+
#: php/qmn_options_questions_tab.php:688
|
| 1312 |
msgid "Large Text Field"
|
| 1313 |
msgstr "Groot tekstveld"
|
| 1314 |
|
| 1315 |
+
#: php/qmn_options_questions_tab.php:689
|
| 1316 |
msgid "None"
|
| 1317 |
msgstr "Geen"
|
| 1318 |
|
| 1319 |
+
#: php/qmn_options_questions_tab.php:699
|
| 1320 |
msgid "Required?"
|
| 1321 |
msgstr "Vereist?"
|
| 1322 |
|
| 1323 |
+
#: php/qmn_options_questions_tab.php:730
|
| 1324 |
msgid "Create Question"
|
| 1325 |
msgstr "Maak vraag"
|
| 1326 |
|
| 1327 |
+
#: php/qmn_options_questions_tab.php:735
|
| 1328 |
msgid "Are you sure you want to delete this question?"
|
| 1329 |
msgstr "Weet je zeker dat je deze vraag wil verwijderen?"
|
| 1330 |
|
| 1331 |
+
#: php/qmn_options_questions_tab.php:740
|
| 1332 |
msgid "Delete Question"
|
| 1333 |
msgstr "Verwijder vraag"
|
| 1334 |
|
| 1335 |
+
#: php/qmn_options_questions_tab.php:745
|
| 1336 |
msgid "Are you sure you want to duplicate this question?"
|
| 1337 |
msgstr "Weet je zeker dat je deze vraag wil dupliceren?"
|
| 1338 |
|
| 1339 |
+
#: php/qmn_options_questions_tab.php:750
|
| 1340 |
msgid "Duplicate Question"
|
| 1341 |
msgstr "Dupliceer vraag"
|
| 1342 |
|
| 1386 |
msgid "Your results has been deleted successfully."
|
| 1387 |
msgstr "Je resultaten zijn succesvol verwijderd."
|
| 1388 |
|
| 1389 |
+
#: php/qmn_results.php:205
|
| 1390 |
#, php-format
|
| 1391 |
msgid "One result"
|
| 1392 |
msgid_plural "%s results"
|
| 1393 |
msgstr[0] "Een resultaat"
|
| 1394 |
msgstr[1] "%s resultaten"
|
| 1395 |
|
| 1396 |
+
#: php/qmn_results.php:290
|
| 1397 |
msgid "Actions"
|
| 1398 |
msgstr "Akties"
|
| 1399 |
|
| 1400 |
+
#: php/qmn_results.php:292
|
| 1401 |
msgid "Score"
|
| 1402 |
msgstr "Score"
|
| 1403 |
|
| 1404 |
+
#: php/qmn_results.php:293
|
| 1405 |
msgid "Time To Complete"
|
| 1406 |
msgstr "Gebruikte tijd"
|
| 1407 |
|
| 1408 |
+
#: php/qmn_results.php:295
|
| 1409 |
msgid "Business"
|
| 1410 |
msgstr "Bedrijf"
|
| 1411 |
|
| 1412 |
+
#: php/qmn_results.php:296
|
| 1413 |
msgid "Email"
|
| 1414 |
msgstr "Email"
|
| 1415 |
|
| 1416 |
+
#: php/qmn_results.php:297
|
| 1417 |
msgid "Phone"
|
| 1418 |
msgstr "Telefoon"
|
| 1419 |
|
| 1420 |
+
#: php/qmn_results.php:298
|
| 1421 |
msgid "Time Taken"
|
| 1422 |
msgstr "Benodigde tijd"
|
| 1423 |
|
| 1424 |
+
#: php/qmn_results.php:357
|
| 1425 |
msgid "Are you sure you want to delete these results?"
|
| 1426 |
msgstr "Weet je zeker dat je deze resultaten wil verwijderen?"
|
| 1427 |
|
| 1428 |
+
#: php/qmn_results.php:362
|
| 1429 |
msgid "Delete Results"
|
| 1430 |
msgstr "Verwijder resultaten"
|
| 1431 |
|
languages/quiz-master-next-pt_BR.mo
CHANGED
|
Binary file
|
languages/quiz-master-next-pt_BR.po
CHANGED
|
@@ -5,10 +5,10 @@ msgid ""
|
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Quiz Master Next\n"
|
| 7 |
"Report-Msgid-Bugs-To: \n"
|
| 8 |
-
"POT-Creation-Date: 2015-09-
|
| 9 |
"PO-Revision-Date: \n"
|
| 10 |
"Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
|
| 11 |
-
"Language-Team:
|
| 12 |
"Language: pt_BR\n"
|
| 13 |
"MIME-Version: 1.0\n"
|
| 14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -20,6 +20,7 @@ msgstr ""
|
|
| 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-Generator: Poedit 1.5.4\n"
|
|
|
|
| 23 |
"X-Poedit-SearchPath-0: ..\n"
|
| 24 |
|
| 25 |
#: ../mlw_quizmaster2.php:224 ../php/qmn_quiz_admin.php:196
|
|
@@ -113,21 +114,21 @@ msgstr "Numero"
|
|
| 113 |
msgid "Accept"
|
| 114 |
msgstr "Aceitar"
|
| 115 |
|
| 116 |
-
#: ../php/qmn_question_types.php:
|
| 117 |
msgid "Captcha"
|
| 118 |
msgstr "captcha"
|
| 119 |
|
| 120 |
-
#: ../php/qmn_question_types.php:
|
| 121 |
msgid "Horizontal Multiple Response"
|
| 122 |
msgstr "Respostas múltiplas horizontais"
|
| 123 |
|
| 124 |
-
#: ../php/qmn_question_types.php:
|
| 125 |
msgid ""
|
| 126 |
"For fill in the blank types, use %BLANK% to represent where to put the text "
|
| 127 |
"box in your text."
|
| 128 |
msgstr ""
|
| 129 |
|
| 130 |
-
#: ../php/qmn_question_types.php:
|
| 131 |
msgid "Fill In The Blank"
|
| 132 |
msgstr ""
|
| 133 |
|
|
@@ -147,10 +148,10 @@ msgstr "As Opções foram atualizadas com sucesso."
|
|
| 147 |
#: ../php/qmn_options_tools_tab.php:68 ../php/qmn_options_text_tab.php:123
|
| 148 |
#: ../php/qmn_options_results_page_tab.php:76
|
| 149 |
#: ../php/qmn_options_results_page_tab.php:125
|
| 150 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 151 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 152 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 153 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 154 |
#: ../php/qmn_quiz_creator.php:408 ../php/qmn_quiz_creator.php:483
|
| 155 |
#: ../php/qmn_quiz_creator.php:534 ../php/qmn_quiz_creator.php:701
|
| 156 |
#: ../php/qmn_quiz_creator.php:767
|
|
@@ -178,7 +179,7 @@ msgstr "Correto/Incorreto"
|
|
| 178 |
msgid "Points"
|
| 179 |
msgstr "Pontos"
|
| 180 |
|
| 181 |
-
#: ../php/qmn_options_option_tab.php:172 ../php/qmn_results.php:
|
| 182 |
msgid "Not Graded"
|
| 183 |
msgstr "Sem Classificação"
|
| 184 |
|
|
@@ -195,7 +196,7 @@ msgstr "O usuário deve estar logado para fazer este teste?"
|
|
| 195 |
#: ../php/qmn_options_email_tab.php:388
|
| 196 |
#: ../php/qmn_options_certificate_tab.php:117
|
| 197 |
#: ../php/qmn_options_results_page_tab.php:282
|
| 198 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 199 |
msgid "Yes"
|
| 200 |
msgstr "Sim"
|
| 201 |
|
|
@@ -208,7 +209,7 @@ msgstr "Sim"
|
|
| 208 |
#: ../php/qmn_options_email_tab.php:382 ../php/qmn_options_email_tab.php:389
|
| 209 |
#: ../php/qmn_options_certificate_tab.php:118
|
| 210 |
#: ../php/qmn_options_results_page_tab.php:282
|
| 211 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 212 |
msgid "No"
|
| 213 |
msgstr "Não"
|
| 214 |
|
|
@@ -835,7 +836,7 @@ msgstr "Texto digitado não está correto!"
|
|
| 835 |
msgid "Please complete all required fields!"
|
| 836 |
msgstr "Por Favor preencha todos campos obrigatórios!"
|
| 837 |
|
| 838 |
-
#: ../php/qmn_quiz.php:
|
| 839 |
msgid "Hint"
|
| 840 |
msgstr "Sugestão"
|
| 841 |
|
|
@@ -861,7 +862,7 @@ msgstr ""
|
|
| 861 |
msgid "Do not allow"
|
| 862 |
msgstr ""
|
| 863 |
|
| 864 |
-
#: ../php/qmn_results_details.php:20 ../php/qmn_results.php:
|
| 865 |
msgid "Quiz Results"
|
| 866 |
msgstr "Resultados"
|
| 867 |
|
|
@@ -1018,7 +1019,7 @@ msgstr[0] "Uma questão"
|
|
| 1018 |
msgstr[1] "%s questões"
|
| 1019 |
|
| 1020 |
#: ../php/qmn_quiz_admin.php:259 ../php/qmn_quiz_admin.php:310
|
| 1021 |
-
#: ../php/qmn_results.php:
|
| 1022 |
#, fuzzy
|
| 1023 |
msgid "Name"
|
| 1024 |
msgstr "Nome da Avaliação"
|
|
@@ -1074,7 +1075,7 @@ msgstr "Delete Questionário"
|
|
| 1074 |
msgid "Create New Quiz Or Survey"
|
| 1075 |
msgstr "Criar Novo teste"
|
| 1076 |
|
| 1077 |
-
#: ../php/qmn_quiz_admin.php:378 ../php/qmn_results.php:
|
| 1078 |
msgid "Quiz Name"
|
| 1079 |
msgstr "Nome da Avaliação"
|
| 1080 |
|
|
@@ -1129,7 +1130,7 @@ msgstr ""
|
|
| 1129 |
msgid "People Who Make QMN Possible"
|
| 1130 |
msgstr ""
|
| 1131 |
|
| 1132 |
-
#: ../php/qmn_credits.php:
|
| 1133 |
#, php-format
|
| 1134 |
msgid "View %s"
|
| 1135 |
msgstr ""
|
|
@@ -1235,123 +1236,123 @@ msgstr "Questões"
|
|
| 1235 |
msgid "Answer"
|
| 1236 |
msgstr "Resposta"
|
| 1237 |
|
| 1238 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1239 |
#, fuzzy
|
| 1240 |
msgid "The question order has been updated successfully."
|
| 1241 |
msgstr "A questão foi atualizado com sucesso."
|
| 1242 |
|
| 1243 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1244 |
msgid "The question has been updated successfully."
|
| 1245 |
msgstr "A questão foi atualizado com sucesso."
|
| 1246 |
|
| 1247 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1248 |
msgid "The question has been deleted successfully."
|
| 1249 |
msgstr "A questão foi deletada com sucesso."
|
| 1250 |
|
| 1251 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1252 |
msgid "The question has been duplicated successfully."
|
| 1253 |
msgstr "A questão foi duplicada com sucesso."
|
| 1254 |
|
| 1255 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1256 |
msgid "The question has been created successfully."
|
| 1257 |
msgstr "A questão foi criada com sucesso."
|
| 1258 |
|
| 1259 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1260 |
msgid "Add Question"
|
| 1261 |
msgstr "Adicionar Pergunta"
|
| 1262 |
|
| 1263 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1264 |
#, fuzzy
|
| 1265 |
msgid "Save Question Order"
|
| 1266 |
msgstr "Ordem das perguntas"
|
| 1267 |
|
| 1268 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1269 |
#, php-format
|
| 1270 |
msgid "One question"
|
| 1271 |
msgid_plural "%s questions"
|
| 1272 |
msgstr[0] "Uma questão"
|
| 1273 |
msgstr[1] "%s Questões"
|
| 1274 |
|
| 1275 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1276 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1277 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1278 |
msgid "Question Order"
|
| 1279 |
msgstr "Ordem das perguntas"
|
| 1280 |
|
| 1281 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1282 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1283 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1284 |
msgid "Question Type"
|
| 1285 |
msgstr "Tipo de pergunta"
|
| 1286 |
|
| 1287 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1288 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1289 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1290 |
msgid "Category"
|
| 1291 |
msgstr ""
|
| 1292 |
|
| 1293 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1294 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1295 |
msgid "Question"
|
| 1296 |
msgstr "Pergunta"
|
| 1297 |
|
| 1298 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1299 |
msgid "Answers"
|
| 1300 |
msgstr "Respostas"
|
| 1301 |
|
| 1302 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1303 |
msgid "Points Worth"
|
| 1304 |
msgstr "Vale Pontos"
|
| 1305 |
|
| 1306 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1307 |
msgid "Correct Answer"
|
| 1308 |
msgstr "Resposta correta"
|
| 1309 |
|
| 1310 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1311 |
msgid "Add New Answer!"
|
| 1312 |
msgstr "Adicionar nova Resposta"
|
| 1313 |
|
| 1314 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1315 |
msgid "Correct Answer Info"
|
| 1316 |
msgstr "Informação da resposta correta"
|
| 1317 |
|
| 1318 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1319 |
msgid "Comment Field"
|
| 1320 |
msgstr "Comentários"
|
| 1321 |
|
| 1322 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1323 |
msgid "Small Text Field"
|
| 1324 |
msgstr "Campo de texto pequeno"
|
| 1325 |
|
| 1326 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1327 |
msgid "Large Text Field"
|
| 1328 |
msgstr "Campo de texto Grande"
|
| 1329 |
|
| 1330 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1331 |
msgid "None"
|
| 1332 |
msgstr ""
|
| 1333 |
|
| 1334 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1335 |
msgid "Required?"
|
| 1336 |
msgstr "Exigido?"
|
| 1337 |
|
| 1338 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1339 |
msgid "Create Question"
|
| 1340 |
msgstr "Criar Pergunta"
|
| 1341 |
|
| 1342 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1343 |
msgid "Are you sure you want to delete this question?"
|
| 1344 |
msgstr "Tem certeza de que deseja excluir esta pergunta?"
|
| 1345 |
|
| 1346 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1347 |
msgid "Delete Question"
|
| 1348 |
msgstr "Apagar Perguntas"
|
| 1349 |
|
| 1350 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1351 |
msgid "Are you sure you want to duplicate this question?"
|
| 1352 |
msgstr "Tem certeza de que deseja duplicar esta pergunta?"
|
| 1353 |
|
| 1354 |
-
#: ../php/qmn_options_questions_tab.php:
|
| 1355 |
msgid "Duplicate Question"
|
| 1356 |
msgstr "Duplicar Pergunta"
|
| 1357 |
|
|
@@ -1402,47 +1403,47 @@ msgstr "Tempo"
|
|
| 1402 |
msgid "Your results has been deleted successfully."
|
| 1403 |
msgstr "Seus resultados foram apagados com sucesso!"
|
| 1404 |
|
| 1405 |
-
#: ../php/qmn_results.php:
|
| 1406 |
#, php-format
|
| 1407 |
msgid "One result"
|
| 1408 |
msgid_plural "%s results"
|
| 1409 |
msgstr[0] "Um resultado"
|
| 1410 |
msgstr[1] "%s resultados"
|
| 1411 |
|
| 1412 |
-
#: ../php/qmn_results.php:
|
| 1413 |
#, fuzzy
|
| 1414 |
msgid "Actions"
|
| 1415 |
msgstr "Opções"
|
| 1416 |
|
| 1417 |
-
#: ../php/qmn_results.php:
|
| 1418 |
msgid "Score"
|
| 1419 |
msgstr "Placar"
|
| 1420 |
|
| 1421 |
-
#: ../php/qmn_results.php:
|
| 1422 |
msgid "Time To Complete"
|
| 1423 |
msgstr "Tempo para concluir"
|
| 1424 |
|
| 1425 |
-
#: ../php/qmn_results.php:
|
| 1426 |
msgid "Business"
|
| 1427 |
msgstr "Empresa"
|
| 1428 |
|
| 1429 |
-
#: ../php/qmn_results.php:
|
| 1430 |
msgid "Email"
|
| 1431 |
msgstr ""
|
| 1432 |
|
| 1433 |
-
#: ../php/qmn_results.php:
|
| 1434 |
msgid "Phone"
|
| 1435 |
msgstr "Fone"
|
| 1436 |
|
| 1437 |
-
#: ../php/qmn_results.php:
|
| 1438 |
msgid "Time Taken"
|
| 1439 |
msgstr "Tempo necessário"
|
| 1440 |
|
| 1441 |
-
#: ../php/qmn_results.php:
|
| 1442 |
msgid "Are you sure you want to delete these results?"
|
| 1443 |
msgstr "Tem certeza de que deseja apagar estes resultados?"
|
| 1444 |
|
| 1445 |
-
#: ../php/qmn_results.php:
|
| 1446 |
msgid "Delete Results"
|
| 1447 |
msgstr "Deletar Resultados"
|
| 1448 |
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Quiz Master Next\n"
|
| 7 |
"Report-Msgid-Bugs-To: \n"
|
| 8 |
+
"POT-Creation-Date: 2015-09-30 18:11-0500\n"
|
| 9 |
"PO-Revision-Date: \n"
|
| 10 |
"Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
|
| 11 |
+
"Language-Team: My Local Webstop <support@mylocalwebstop.com>\n"
|
| 12 |
"Language: pt_BR\n"
|
| 13 |
"MIME-Version: 1.0\n"
|
| 14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 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-Generator: Poedit 1.5.4\n"
|
| 23 |
+
"X-Poedit-Basepath: .\n"
|
| 24 |
"X-Poedit-SearchPath-0: ..\n"
|
| 25 |
|
| 26 |
#: ../mlw_quizmaster2.php:224 ../php/qmn_quiz_admin.php:196
|
| 114 |
msgid "Accept"
|
| 115 |
msgstr "Aceitar"
|
| 116 |
|
| 117 |
+
#: ../php/qmn_question_types.php:693
|
| 118 |
msgid "Captcha"
|
| 119 |
msgstr "captcha"
|
| 120 |
|
| 121 |
+
#: ../php/qmn_question_types.php:751
|
| 122 |
msgid "Horizontal Multiple Response"
|
| 123 |
msgstr "Respostas múltiplas horizontais"
|
| 124 |
|
| 125 |
+
#: ../php/qmn_question_types.php:862
|
| 126 |
msgid ""
|
| 127 |
"For fill in the blank types, use %BLANK% to represent where to put the text "
|
| 128 |
"box in your text."
|
| 129 |
msgstr ""
|
| 130 |
|
| 131 |
+
#: ../php/qmn_question_types.php:866
|
| 132 |
msgid "Fill In The Blank"
|
| 133 |
msgstr ""
|
| 134 |
|
| 148 |
#: ../php/qmn_options_tools_tab.php:68 ../php/qmn_options_text_tab.php:123
|
| 149 |
#: ../php/qmn_options_results_page_tab.php:76
|
| 150 |
#: ../php/qmn_options_results_page_tab.php:125
|
| 151 |
+
#: ../php/qmn_options_questions_tab.php:190
|
| 152 |
+
#: ../php/qmn_options_questions_tab.php:235
|
| 153 |
+
#: ../php/qmn_options_questions_tab.php:327
|
| 154 |
+
#: ../php/qmn_options_questions_tab.php:424 ../php/qmn_results.php:58
|
| 155 |
#: ../php/qmn_quiz_creator.php:408 ../php/qmn_quiz_creator.php:483
|
| 156 |
#: ../php/qmn_quiz_creator.php:534 ../php/qmn_quiz_creator.php:701
|
| 157 |
#: ../php/qmn_quiz_creator.php:767
|
| 179 |
msgid "Points"
|
| 180 |
msgstr "Pontos"
|
| 181 |
|
| 182 |
+
#: ../php/qmn_options_option_tab.php:172 ../php/qmn_results.php:340
|
| 183 |
msgid "Not Graded"
|
| 184 |
msgstr "Sem Classificação"
|
| 185 |
|
| 196 |
#: ../php/qmn_options_email_tab.php:388
|
| 197 |
#: ../php/qmn_options_certificate_tab.php:117
|
| 198 |
#: ../php/qmn_options_results_page_tab.php:282
|
| 199 |
+
#: ../php/qmn_options_questions_tab.php:701
|
| 200 |
msgid "Yes"
|
| 201 |
msgstr "Sim"
|
| 202 |
|
| 209 |
#: ../php/qmn_options_email_tab.php:382 ../php/qmn_options_email_tab.php:389
|
| 210 |
#: ../php/qmn_options_certificate_tab.php:118
|
| 211 |
#: ../php/qmn_options_results_page_tab.php:282
|
| 212 |
+
#: ../php/qmn_options_questions_tab.php:702
|
| 213 |
msgid "No"
|
| 214 |
msgstr "Não"
|
| 215 |
|
| 836 |
msgid "Please complete all required fields!"
|
| 837 |
msgstr "Por Favor preencha todos campos obrigatórios!"
|
| 838 |
|
| 839 |
+
#: ../php/qmn_quiz.php:495 ../php/qmn_options_questions_tab.php:680
|
| 840 |
msgid "Hint"
|
| 841 |
msgstr "Sugestão"
|
| 842 |
|
| 862 |
msgid "Do not allow"
|
| 863 |
msgstr ""
|
| 864 |
|
| 865 |
+
#: ../php/qmn_results_details.php:20 ../php/qmn_results.php:196
|
| 866 |
msgid "Quiz Results"
|
| 867 |
msgstr "Resultados"
|
| 868 |
|
| 1019 |
msgstr[1] "%s questões"
|
| 1020 |
|
| 1021 |
#: ../php/qmn_quiz_admin.php:259 ../php/qmn_quiz_admin.php:310
|
| 1022 |
+
#: ../php/qmn_results.php:294
|
| 1023 |
#, fuzzy
|
| 1024 |
msgid "Name"
|
| 1025 |
msgstr "Nome da Avaliação"
|
| 1075 |
msgid "Create New Quiz Or Survey"
|
| 1076 |
msgstr "Criar Novo teste"
|
| 1077 |
|
| 1078 |
+
#: ../php/qmn_quiz_admin.php:378 ../php/qmn_results.php:291
|
| 1079 |
msgid "Quiz Name"
|
| 1080 |
msgstr "Nome da Avaliação"
|
| 1081 |
|
| 1130 |
msgid "People Who Make QMN Possible"
|
| 1131 |
msgstr ""
|
| 1132 |
|
| 1133 |
+
#: ../php/qmn_credits.php:102
|
| 1134 |
#, php-format
|
| 1135 |
msgid "View %s"
|
| 1136 |
msgstr ""
|
| 1236 |
msgid "Answer"
|
| 1237 |
msgstr "Resposta"
|
| 1238 |
|
| 1239 |
+
#: ../php/qmn_options_questions_tab.php:64
|
| 1240 |
#, fuzzy
|
| 1241 |
msgid "The question order has been updated successfully."
|
| 1242 |
msgstr "A questão foi atualizado com sucesso."
|
| 1243 |
|
| 1244 |
+
#: ../php/qmn_options_questions_tab.php:169
|
| 1245 |
msgid "The question has been updated successfully."
|
| 1246 |
msgstr "A questão foi atualizado com sucesso."
|
| 1247 |
|
| 1248 |
+
#: ../php/qmn_options_questions_tab.php:214
|
| 1249 |
msgid "The question has been deleted successfully."
|
| 1250 |
msgstr "A questão foi deletada com sucesso."
|
| 1251 |
|
| 1252 |
+
#: ../php/qmn_options_questions_tab.php:306
|
| 1253 |
msgid "The question has been duplicated successfully."
|
| 1254 |
msgstr "A questão foi duplicada com sucesso."
|
| 1255 |
|
| 1256 |
+
#: ../php/qmn_options_questions_tab.php:403
|
| 1257 |
msgid "The question has been created successfully."
|
| 1258 |
msgstr "A questão foi criada com sucesso."
|
| 1259 |
|
| 1260 |
+
#: ../php/qmn_options_questions_tab.php:538
|
| 1261 |
msgid "Add Question"
|
| 1262 |
msgstr "Adicionar Pergunta"
|
| 1263 |
|
| 1264 |
+
#: ../php/qmn_options_questions_tab.php:539
|
| 1265 |
#, fuzzy
|
| 1266 |
msgid "Save Question Order"
|
| 1267 |
msgstr "Ordem das perguntas"
|
| 1268 |
|
| 1269 |
+
#: ../php/qmn_options_questions_tab.php:552
|
| 1270 |
#, php-format
|
| 1271 |
msgid "One question"
|
| 1272 |
msgid_plural "%s questions"
|
| 1273 |
msgstr[0] "Uma questão"
|
| 1274 |
msgstr[1] "%s Questões"
|
| 1275 |
|
| 1276 |
+
#: ../php/qmn_options_questions_tab.php:558
|
| 1277 |
+
#: ../php/qmn_options_questions_tab.php:566
|
| 1278 |
+
#: ../php/qmn_options_questions_tab.php:694
|
| 1279 |
msgid "Question Order"
|
| 1280 |
msgstr "Ordem das perguntas"
|
| 1281 |
|
| 1282 |
+
#: ../php/qmn_options_questions_tab.php:559
|
| 1283 |
+
#: ../php/qmn_options_questions_tab.php:567
|
| 1284 |
+
#: ../php/qmn_options_questions_tab.php:644
|
| 1285 |
msgid "Question Type"
|
| 1286 |
msgstr "Tipo de pergunta"
|
| 1287 |
|
| 1288 |
+
#: ../php/qmn_options_questions_tab.php:560
|
| 1289 |
+
#: ../php/qmn_options_questions_tab.php:568
|
| 1290 |
+
#: ../php/qmn_options_questions_tab.php:707
|
| 1291 |
msgid "Category"
|
| 1292 |
msgstr ""
|
| 1293 |
|
| 1294 |
+
#: ../php/qmn_options_questions_tab.php:561
|
| 1295 |
+
#: ../php/qmn_options_questions_tab.php:569
|
| 1296 |
msgid "Question"
|
| 1297 |
msgstr "Pergunta"
|
| 1298 |
|
| 1299 |
+
#: ../php/qmn_options_questions_tab.php:662
|
| 1300 |
msgid "Answers"
|
| 1301 |
msgstr "Respostas"
|
| 1302 |
|
| 1303 |
+
#: ../php/qmn_options_questions_tab.php:663
|
| 1304 |
msgid "Points Worth"
|
| 1305 |
msgstr "Vale Pontos"
|
| 1306 |
|
| 1307 |
+
#: ../php/qmn_options_questions_tab.php:664
|
| 1308 |
msgid "Correct Answer"
|
| 1309 |
msgstr "Resposta correta"
|
| 1310 |
|
| 1311 |
+
#: ../php/qmn_options_questions_tab.php:669
|
| 1312 |
msgid "Add New Answer!"
|
| 1313 |
msgstr "Adicionar nova Resposta"
|
| 1314 |
|
| 1315 |
+
#: ../php/qmn_options_questions_tab.php:675
|
| 1316 |
msgid "Correct Answer Info"
|
| 1317 |
msgstr "Informação da resposta correta"
|
| 1318 |
|
| 1319 |
+
#: ../php/qmn_options_questions_tab.php:685
|
| 1320 |
msgid "Comment Field"
|
| 1321 |
msgstr "Comentários"
|
| 1322 |
|
| 1323 |
+
#: ../php/qmn_options_questions_tab.php:687
|
| 1324 |
msgid "Small Text Field"
|
| 1325 |
msgstr "Campo de texto pequeno"
|
| 1326 |
|
| 1327 |
+
#: ../php/qmn_options_questions_tab.php:688
|
| 1328 |
msgid "Large Text Field"
|
| 1329 |
msgstr "Campo de texto Grande"
|
| 1330 |
|
| 1331 |
+
#: ../php/qmn_options_questions_tab.php:689
|
| 1332 |
msgid "None"
|
| 1333 |
msgstr ""
|
| 1334 |
|
| 1335 |
+
#: ../php/qmn_options_questions_tab.php:699
|
| 1336 |
msgid "Required?"
|
| 1337 |
msgstr "Exigido?"
|
| 1338 |
|
| 1339 |
+
#: ../php/qmn_options_questions_tab.php:730
|
| 1340 |
msgid "Create Question"
|
| 1341 |
msgstr "Criar Pergunta"
|
| 1342 |
|
| 1343 |
+
#: ../php/qmn_options_questions_tab.php:735
|
| 1344 |
msgid "Are you sure you want to delete this question?"
|
| 1345 |
msgstr "Tem certeza de que deseja excluir esta pergunta?"
|
| 1346 |
|
| 1347 |
+
#: ../php/qmn_options_questions_tab.php:740
|
| 1348 |
msgid "Delete Question"
|
| 1349 |
msgstr "Apagar Perguntas"
|
| 1350 |
|
| 1351 |
+
#: ../php/qmn_options_questions_tab.php:745
|
| 1352 |
msgid "Are you sure you want to duplicate this question?"
|
| 1353 |
msgstr "Tem certeza de que deseja duplicar esta pergunta?"
|
| 1354 |
|
| 1355 |
+
#: ../php/qmn_options_questions_tab.php:750
|
| 1356 |
msgid "Duplicate Question"
|
| 1357 |
msgstr "Duplicar Pergunta"
|
| 1358 |
|
| 1403 |
msgid "Your results has been deleted successfully."
|
| 1404 |
msgstr "Seus resultados foram apagados com sucesso!"
|
| 1405 |
|
| 1406 |
+
#: ../php/qmn_results.php:205
|
| 1407 |
#, php-format
|
| 1408 |
msgid "One result"
|
| 1409 |
msgid_plural "%s results"
|
| 1410 |
msgstr[0] "Um resultado"
|
| 1411 |
msgstr[1] "%s resultados"
|
| 1412 |
|
| 1413 |
+
#: ../php/qmn_results.php:290
|
| 1414 |
#, fuzzy
|
| 1415 |
msgid "Actions"
|
| 1416 |
msgstr "Opções"
|
| 1417 |
|
| 1418 |
+
#: ../php/qmn_results.php:292
|
| 1419 |
msgid "Score"
|
| 1420 |
msgstr "Placar"
|
| 1421 |
|
| 1422 |
+
#: ../php/qmn_results.php:293
|
| 1423 |
msgid "Time To Complete"
|
| 1424 |
msgstr "Tempo para concluir"
|
| 1425 |
|
| 1426 |
+
#: ../php/qmn_results.php:295
|
| 1427 |
msgid "Business"
|
| 1428 |
msgstr "Empresa"
|
| 1429 |
|
| 1430 |
+
#: ../php/qmn_results.php:296
|
| 1431 |
msgid "Email"
|
| 1432 |
msgstr ""
|
| 1433 |
|
| 1434 |
+
#: ../php/qmn_results.php:297
|
| 1435 |
msgid "Phone"
|
| 1436 |
msgstr "Fone"
|
| 1437 |
|
| 1438 |
+
#: ../php/qmn_results.php:298
|
| 1439 |
msgid "Time Taken"
|
| 1440 |
msgstr "Tempo necessário"
|
| 1441 |
|
| 1442 |
+
#: ../php/qmn_results.php:357
|
| 1443 |
msgid "Are you sure you want to delete these results?"
|
| 1444 |
msgstr "Tem certeza de que deseja apagar estes resultados?"
|
| 1445 |
|
| 1446 |
+
#: ../php/qmn_results.php:362
|
| 1447 |
msgid "Delete Results"
|
| 1448 |
msgstr "Deletar Resultados"
|
| 1449 |
|
languages/quiz-master-next-th.mo
CHANGED
|
Binary file
|
languages/quiz-master-next-th.po
CHANGED
|
@@ -5,11 +5,11 @@ msgid ""
|
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Quiz Master Next\n"
|
| 7 |
"Report-Msgid-Bugs-To: \n"
|
| 8 |
-
"POT-Creation-Date: 2015-09-
|
| 9 |
"PO-Revision-Date: \n"
|
| 10 |
"Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
|
| 11 |
-
"Language-Team: My Local Webstop <
|
| 12 |
-
"Language:
|
| 13 |
"MIME-Version: 1.0\n"
|
| 14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 15 |
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -112,21 +112,21 @@ msgstr "ตัวเลข"
|
|
| 112 |
msgid "Accept"
|
| 113 |
msgstr "ยอมรับ"
|
| 114 |
|
| 115 |
-
#: php/qmn_question_types.php:
|
| 116 |
msgid "Captcha"
|
| 117 |
msgstr "Captcha"
|
| 118 |
|
| 119 |
-
#: php/qmn_question_types.php:
|
| 120 |
msgid "Horizontal Multiple Response"
|
| 121 |
msgstr "เลือกได้หลายคำตอบแนวนอน"
|
| 122 |
|
| 123 |
-
#: php/qmn_question_types.php:
|
| 124 |
msgid ""
|
| 125 |
"For fill in the blank types, use %BLANK% to represent where to put the text "
|
| 126 |
"box in your text."
|
| 127 |
msgstr ""
|
| 128 |
|
| 129 |
-
#: php/qmn_question_types.php:
|
| 130 |
msgid "Fill In The Blank"
|
| 131 |
msgstr ""
|
| 132 |
|
|
@@ -144,8 +144,8 @@ msgstr "อัพเดทตัวเลือกเรียบร้อย"
|
|
| 144 |
#: php/qmn_options_certificate_tab.php:83 php/qmn_options_tools_tab.php:68
|
| 145 |
#: php/qmn_options_text_tab.php:123 php/qmn_options_results_page_tab.php:76
|
| 146 |
#: php/qmn_options_results_page_tab.php:125
|
| 147 |
-
#: php/qmn_options_questions_tab.php:
|
| 148 |
-
#: php/qmn_options_questions_tab.php:
|
| 149 |
#: php/qmn_results.php:58 php/qmn_quiz_creator.php:408
|
| 150 |
#: php/qmn_quiz_creator.php:483 php/qmn_quiz_creator.php:534
|
| 151 |
#: php/qmn_quiz_creator.php:701 php/qmn_quiz_creator.php:767
|
|
@@ -171,7 +171,7 @@ msgstr "ข้อถูก/ข้อผิด"
|
|
| 171 |
msgid "Points"
|
| 172 |
msgstr "คะแนนรวม"
|
| 173 |
|
| 174 |
-
#: php/qmn_options_option_tab.php:172 php/qmn_results.php:
|
| 175 |
msgid "Not Graded"
|
| 176 |
msgstr "ไม่คิดคะแนน"
|
| 177 |
|
|
@@ -187,7 +187,7 @@ msgstr "ผู้ใช้งานต้อง ลงชื่อเข้า
|
|
| 187 |
#: php/qmn_options_option_tab.php:306 php/qmn_options_email_tab.php:381
|
| 188 |
#: php/qmn_options_email_tab.php:388 php/qmn_options_certificate_tab.php:117
|
| 189 |
#: php/qmn_options_results_page_tab.php:282
|
| 190 |
-
#: php/qmn_options_questions_tab.php:
|
| 191 |
msgid "Yes"
|
| 192 |
msgstr "ใช่"
|
| 193 |
|
|
@@ -200,7 +200,7 @@ msgstr "ใช่"
|
|
| 200 |
#: php/qmn_options_email_tab.php:382 php/qmn_options_email_tab.php:389
|
| 201 |
#: php/qmn_options_certificate_tab.php:118
|
| 202 |
#: php/qmn_options_results_page_tab.php:282
|
| 203 |
-
#: php/qmn_options_questions_tab.php:
|
| 204 |
msgid "No"
|
| 205 |
msgstr "ไม่ใช่"
|
| 206 |
|
|
@@ -799,7 +799,7 @@ msgstr "ข้อความที่กรอกไม่ถูกต้อง
|
|
| 799 |
msgid "Please complete all required fields!"
|
| 800 |
msgstr "กรุณาตอบช่องบังคับทุกช่อง!"
|
| 801 |
|
| 802 |
-
#: php/qmn_quiz.php:
|
| 803 |
msgid "Hint"
|
| 804 |
msgstr "บอกใบ้"
|
| 805 |
|
|
@@ -821,7 +821,7 @@ msgstr ""
|
|
| 821 |
msgid "Do not allow"
|
| 822 |
msgstr ""
|
| 823 |
|
| 824 |
-
#: php/qmn_results_details.php:20 php/qmn_results.php:
|
| 825 |
msgid "Quiz Results"
|
| 826 |
msgstr "ผลลัพธ์แบบทดสอบ"
|
| 827 |
|
|
@@ -969,7 +969,7 @@ msgstr[0] "หนึ่งแบบทดสอบ"
|
|
| 969 |
msgstr[1] "%s แบบทดสอบ"
|
| 970 |
|
| 971 |
#: php/qmn_quiz_admin.php:259 php/qmn_quiz_admin.php:310
|
| 972 |
-
#: php/qmn_results.php:
|
| 973 |
msgid "Name"
|
| 974 |
msgstr "ชื่อ"
|
| 975 |
|
|
@@ -1022,7 +1022,7 @@ msgstr "ลบ"
|
|
| 1022 |
msgid "Create New Quiz Or Survey"
|
| 1023 |
msgstr "สร้างแบบทดสอบใหม่"
|
| 1024 |
|
| 1025 |
-
#: php/qmn_quiz_admin.php:378 php/qmn_results.php:
|
| 1026 |
msgid "Quiz Name"
|
| 1027 |
msgstr "ชื่อแบบทดสอบ"
|
| 1028 |
|
|
@@ -1077,7 +1077,7 @@ msgstr "บันทึกการเปลี่ยนแปลง"
|
|
| 1077 |
msgid "People Who Make QMN Possible"
|
| 1078 |
msgstr ""
|
| 1079 |
|
| 1080 |
-
#: php/qmn_credits.php:
|
| 1081 |
#, php-format
|
| 1082 |
msgid "View %s"
|
| 1083 |
msgstr ""
|
|
@@ -1179,117 +1179,117 @@ msgstr "คำถาม"
|
|
| 1179 |
msgid "Answer"
|
| 1180 |
msgstr "คำตอบ"
|
| 1181 |
|
| 1182 |
-
#: php/qmn_options_questions_tab.php:
|
| 1183 |
msgid "The question order has been updated successfully."
|
| 1184 |
msgstr ""
|
| 1185 |
|
| 1186 |
-
#: php/qmn_options_questions_tab.php:
|
| 1187 |
msgid "The question has been updated successfully."
|
| 1188 |
msgstr "ปรับปรุงคำถามเรียบร้อย"
|
| 1189 |
|
| 1190 |
-
#: php/qmn_options_questions_tab.php:
|
| 1191 |
msgid "The question has been deleted successfully."
|
| 1192 |
msgstr "ลบคำถามเรียบร้อย"
|
| 1193 |
|
| 1194 |
-
#: php/qmn_options_questions_tab.php:
|
| 1195 |
msgid "The question has been duplicated successfully."
|
| 1196 |
msgstr "ทำสำเนาคำถามเรียบร้อย"
|
| 1197 |
|
| 1198 |
-
#: php/qmn_options_questions_tab.php:
|
| 1199 |
msgid "The question has been created successfully."
|
| 1200 |
msgstr "สร้างคำถามเรียบร้อย"
|
| 1201 |
|
| 1202 |
-
#: php/qmn_options_questions_tab.php:
|
| 1203 |
msgid "Add Question"
|
| 1204 |
msgstr "เพิ่มคำถาม"
|
| 1205 |
|
| 1206 |
-
#: php/qmn_options_questions_tab.php:
|
| 1207 |
msgid "Save Question Order"
|
| 1208 |
msgstr ""
|
| 1209 |
|
| 1210 |
-
#: php/qmn_options_questions_tab.php:
|
| 1211 |
#, php-format
|
| 1212 |
msgid "One question"
|
| 1213 |
msgid_plural "%s questions"
|
| 1214 |
msgstr[0] "หนึ่งคำถาม"
|
| 1215 |
msgstr[1] "%s คำถาม"
|
| 1216 |
|
| 1217 |
-
#: php/qmn_options_questions_tab.php:
|
| 1218 |
-
#: php/qmn_options_questions_tab.php:
|
| 1219 |
msgid "Question Order"
|
| 1220 |
msgstr "ลำดับคำถาม"
|
| 1221 |
|
| 1222 |
-
#: php/qmn_options_questions_tab.php:
|
| 1223 |
-
#: php/qmn_options_questions_tab.php:
|
| 1224 |
msgid "Question Type"
|
| 1225 |
msgstr "ชนิดคำถาม"
|
| 1226 |
|
| 1227 |
-
#: php/qmn_options_questions_tab.php:
|
| 1228 |
-
#: php/qmn_options_questions_tab.php:
|
| 1229 |
msgid "Category"
|
| 1230 |
msgstr "หมวดหมู่"
|
| 1231 |
|
| 1232 |
-
#: php/qmn_options_questions_tab.php:
|
| 1233 |
msgid "Question"
|
| 1234 |
msgstr "คำถาม"
|
| 1235 |
|
| 1236 |
-
#: php/qmn_options_questions_tab.php:
|
| 1237 |
msgid "Answers"
|
| 1238 |
msgstr "คำตอบ"
|
| 1239 |
|
| 1240 |
-
#: php/qmn_options_questions_tab.php:
|
| 1241 |
msgid "Points Worth"
|
| 1242 |
msgstr "ค่าคะแนน"
|
| 1243 |
|
| 1244 |
-
#: php/qmn_options_questions_tab.php:
|
| 1245 |
msgid "Correct Answer"
|
| 1246 |
msgstr "ข้อที่ถูกต้อง"
|
| 1247 |
|
| 1248 |
-
#: php/qmn_options_questions_tab.php:
|
| 1249 |
msgid "Add New Answer!"
|
| 1250 |
msgstr "เพิ่มคำตอบใหม่"
|
| 1251 |
|
| 1252 |
-
#: php/qmn_options_questions_tab.php:
|
| 1253 |
msgid "Correct Answer Info"
|
| 1254 |
msgstr "ข้อความข้อที่ถูกต้อง"
|
| 1255 |
|
| 1256 |
-
#: php/qmn_options_questions_tab.php:
|
| 1257 |
msgid "Comment Field"
|
| 1258 |
msgstr "ข้อเสนอแนะ"
|
| 1259 |
|
| 1260 |
-
#: php/qmn_options_questions_tab.php:
|
| 1261 |
msgid "Small Text Field"
|
| 1262 |
msgstr "ข้อความสั้น"
|
| 1263 |
|
| 1264 |
-
#: php/qmn_options_questions_tab.php:
|
| 1265 |
msgid "Large Text Field"
|
| 1266 |
msgstr "ข้อความยาว"
|
| 1267 |
|
| 1268 |
-
#: php/qmn_options_questions_tab.php:
|
| 1269 |
msgid "None"
|
| 1270 |
msgstr "ไม่มี"
|
| 1271 |
|
| 1272 |
-
#: php/qmn_options_questions_tab.php:
|
| 1273 |
msgid "Required?"
|
| 1274 |
msgstr "บังคับ?"
|
| 1275 |
|
| 1276 |
-
#: php/qmn_options_questions_tab.php:
|
| 1277 |
msgid "Create Question"
|
| 1278 |
msgstr "สร้างคำถาม"
|
| 1279 |
|
| 1280 |
-
#: php/qmn_options_questions_tab.php:
|
| 1281 |
msgid "Are you sure you want to delete this question?"
|
| 1282 |
msgstr "คุณแน่ใจหรือไม่ที่จะลบคำถามนี้?"
|
| 1283 |
|
| 1284 |
-
#: php/qmn_options_questions_tab.php:
|
| 1285 |
msgid "Delete Question"
|
| 1286 |
msgstr "ลบคำถาม"
|
| 1287 |
|
| 1288 |
-
#: php/qmn_options_questions_tab.php:
|
| 1289 |
msgid "Are you sure you want to duplicate this question?"
|
| 1290 |
msgstr "คุณแน่ใจหรือไม่ที่จะสำเนาคำถามนี้?"
|
| 1291 |
|
| 1292 |
-
#: php/qmn_options_questions_tab.php:
|
| 1293 |
msgid "Duplicate Question"
|
| 1294 |
msgstr "ทำสำเนาคำถาม"
|
| 1295 |
|
|
@@ -1337,46 +1337,46 @@ msgstr "เวลา"
|
|
| 1337 |
msgid "Your results has been deleted successfully."
|
| 1338 |
msgstr "ผลลัพท์ของท่านได้ถูกลบเรียบร้อย"
|
| 1339 |
|
| 1340 |
-
#: php/qmn_results.php:
|
| 1341 |
#, php-format
|
| 1342 |
msgid "One result"
|
| 1343 |
msgid_plural "%s results"
|
| 1344 |
msgstr[0] ""
|
| 1345 |
msgstr[1] ""
|
| 1346 |
|
| 1347 |
-
#: php/qmn_results.php:
|
| 1348 |
msgid "Actions"
|
| 1349 |
msgstr "กระทำ"
|
| 1350 |
|
| 1351 |
-
#: php/qmn_results.php:
|
| 1352 |
msgid "Score"
|
| 1353 |
msgstr "คำแนน"
|
| 1354 |
|
| 1355 |
-
#: php/qmn_results.php:
|
| 1356 |
msgid "Time To Complete"
|
| 1357 |
msgstr "เวลาที่ทำสำเร็จ"
|
| 1358 |
|
| 1359 |
-
#: php/qmn_results.php:
|
| 1360 |
msgid "Business"
|
| 1361 |
msgstr "ที่ทำงาน"
|
| 1362 |
|
| 1363 |
-
#: php/qmn_results.php:
|
| 1364 |
msgid "Email"
|
| 1365 |
msgstr "อีเมล์"
|
| 1366 |
|
| 1367 |
-
#: php/qmn_results.php:
|
| 1368 |
msgid "Phone"
|
| 1369 |
msgstr "โทรศัพท์"
|
| 1370 |
|
| 1371 |
-
#: php/qmn_results.php:
|
| 1372 |
msgid "Time Taken"
|
| 1373 |
msgstr "ใช้เวลาไป"
|
| 1374 |
|
| 1375 |
-
#: php/qmn_results.php:
|
| 1376 |
msgid "Are you sure you want to delete these results?"
|
| 1377 |
msgstr "คุณแน่ใจหรือไม่ที่จะลบผลลัพธ์"
|
| 1378 |
|
| 1379 |
-
#: php/qmn_results.php:
|
| 1380 |
msgid "Delete Results"
|
| 1381 |
msgstr "ลบผลลัพธ์"
|
| 1382 |
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Quiz Master Next\n"
|
| 7 |
"Report-Msgid-Bugs-To: \n"
|
| 8 |
+
"POT-Creation-Date: 2015-09-30 18:12-0500\n"
|
| 9 |
"PO-Revision-Date: \n"
|
| 10 |
"Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
|
| 11 |
+
"Language-Team: My Local Webstop <support@mylocalwebstop.com>\n"
|
| 12 |
+
"Language: th\n"
|
| 13 |
"MIME-Version: 1.0\n"
|
| 14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 15 |
"Content-Transfer-Encoding: 8bit\n"
|
| 112 |
msgid "Accept"
|
| 113 |
msgstr "ยอมรับ"
|
| 114 |
|
| 115 |
+
#: php/qmn_question_types.php:693
|
| 116 |
msgid "Captcha"
|
| 117 |
msgstr "Captcha"
|
| 118 |
|
| 119 |
+
#: php/qmn_question_types.php:751
|
| 120 |
msgid "Horizontal Multiple Response"
|
| 121 |
msgstr "เลือกได้หลายคำตอบแนวนอน"
|
| 122 |
|
| 123 |
+
#: php/qmn_question_types.php:862
|
| 124 |
msgid ""
|
| 125 |
"For fill in the blank types, use %BLANK% to represent where to put the text "
|
| 126 |
"box in your text."
|
| 127 |
msgstr ""
|
| 128 |
|
| 129 |
+
#: php/qmn_question_types.php:866
|
| 130 |
msgid "Fill In The Blank"
|
| 131 |
msgstr ""
|
| 132 |
|
| 144 |
#: php/qmn_options_certificate_tab.php:83 php/qmn_options_tools_tab.php:68
|
| 145 |
#: php/qmn_options_text_tab.php:123 php/qmn_options_results_page_tab.php:76
|
| 146 |
#: php/qmn_options_results_page_tab.php:125
|
| 147 |
+
#: php/qmn_options_questions_tab.php:190 php/qmn_options_questions_tab.php:235
|
| 148 |
+
#: php/qmn_options_questions_tab.php:327 php/qmn_options_questions_tab.php:424
|
| 149 |
#: php/qmn_results.php:58 php/qmn_quiz_creator.php:408
|
| 150 |
#: php/qmn_quiz_creator.php:483 php/qmn_quiz_creator.php:534
|
| 151 |
#: php/qmn_quiz_creator.php:701 php/qmn_quiz_creator.php:767
|
| 171 |
msgid "Points"
|
| 172 |
msgstr "คะแนนรวม"
|
| 173 |
|
| 174 |
+
#: php/qmn_options_option_tab.php:172 php/qmn_results.php:340
|
| 175 |
msgid "Not Graded"
|
| 176 |
msgstr "ไม่คิดคะแนน"
|
| 177 |
|
| 187 |
#: php/qmn_options_option_tab.php:306 php/qmn_options_email_tab.php:381
|
| 188 |
#: php/qmn_options_email_tab.php:388 php/qmn_options_certificate_tab.php:117
|
| 189 |
#: php/qmn_options_results_page_tab.php:282
|
| 190 |
+
#: php/qmn_options_questions_tab.php:701
|
| 191 |
msgid "Yes"
|
| 192 |
msgstr "ใช่"
|
| 193 |
|
| 200 |
#: php/qmn_options_email_tab.php:382 php/qmn_options_email_tab.php:389
|
| 201 |
#: php/qmn_options_certificate_tab.php:118
|
| 202 |
#: php/qmn_options_results_page_tab.php:282
|
| 203 |
+
#: php/qmn_options_questions_tab.php:702
|
| 204 |
msgid "No"
|
| 205 |
msgstr "ไม่ใช่"
|
| 206 |
|
| 799 |
msgid "Please complete all required fields!"
|
| 800 |
msgstr "กรุณาตอบช่องบังคับทุกช่อง!"
|
| 801 |
|
| 802 |
+
#: php/qmn_quiz.php:495 php/qmn_options_questions_tab.php:680
|
| 803 |
msgid "Hint"
|
| 804 |
msgstr "บอกใบ้"
|
| 805 |
|
| 821 |
msgid "Do not allow"
|
| 822 |
msgstr ""
|
| 823 |
|
| 824 |
+
#: php/qmn_results_details.php:20 php/qmn_results.php:196
|
| 825 |
msgid "Quiz Results"
|
| 826 |
msgstr "ผลลัพธ์แบบทดสอบ"
|
| 827 |
|
| 969 |
msgstr[1] "%s แบบทดสอบ"
|
| 970 |
|
| 971 |
#: php/qmn_quiz_admin.php:259 php/qmn_quiz_admin.php:310
|
| 972 |
+
#: php/qmn_results.php:294
|
| 973 |
msgid "Name"
|
| 974 |
msgstr "ชื่อ"
|
| 975 |
|
| 1022 |
msgid "Create New Quiz Or Survey"
|
| 1023 |
msgstr "สร้างแบบทดสอบใหม่"
|
| 1024 |
|
| 1025 |
+
#: php/qmn_quiz_admin.php:378 php/qmn_results.php:291
|
| 1026 |
msgid "Quiz Name"
|
| 1027 |
msgstr "ชื่อแบบทดสอบ"
|
| 1028 |
|
| 1077 |
msgid "People Who Make QMN Possible"
|
| 1078 |
msgstr ""
|
| 1079 |
|
| 1080 |
+
#: php/qmn_credits.php:102
|
| 1081 |
#, php-format
|
| 1082 |
msgid "View %s"
|
| 1083 |
msgstr ""
|
| 1179 |
msgid "Answer"
|
| 1180 |
msgstr "คำตอบ"
|
| 1181 |
|
| 1182 |
+
#: php/qmn_options_questions_tab.php:64
|
| 1183 |
msgid "The question order has been updated successfully."
|
| 1184 |
msgstr ""
|
| 1185 |
|
| 1186 |
+
#: php/qmn_options_questions_tab.php:169
|
| 1187 |
msgid "The question has been updated successfully."
|
| 1188 |
msgstr "ปรับปรุงคำถามเรียบร้อย"
|
| 1189 |
|
| 1190 |
+
#: php/qmn_options_questions_tab.php:214
|
| 1191 |
msgid "The question has been deleted successfully."
|
| 1192 |
msgstr "ลบคำถามเรียบร้อย"
|
| 1193 |
|
| 1194 |
+
#: php/qmn_options_questions_tab.php:306
|
| 1195 |
msgid "The question has been duplicated successfully."
|
| 1196 |
msgstr "ทำสำเนาคำถามเรียบร้อย"
|
| 1197 |
|
| 1198 |
+
#: php/qmn_options_questions_tab.php:403
|
| 1199 |
msgid "The question has been created successfully."
|
| 1200 |
msgstr "สร้างคำถามเรียบร้อย"
|
| 1201 |
|
| 1202 |
+
#: php/qmn_options_questions_tab.php:538
|
| 1203 |
msgid "Add Question"
|
| 1204 |
msgstr "เพิ่มคำถาม"
|
| 1205 |
|
| 1206 |
+
#: php/qmn_options_questions_tab.php:539
|
| 1207 |
msgid "Save Question Order"
|
| 1208 |
msgstr ""
|
| 1209 |
|
| 1210 |
+
#: php/qmn_options_questions_tab.php:552
|
| 1211 |
#, php-format
|
| 1212 |
msgid "One question"
|
| 1213 |
msgid_plural "%s questions"
|
| 1214 |
msgstr[0] "หนึ่งคำถาม"
|
| 1215 |
msgstr[1] "%s คำถาม"
|
| 1216 |
|
| 1217 |
+
#: php/qmn_options_questions_tab.php:558 php/qmn_options_questions_tab.php:566
|
| 1218 |
+
#: php/qmn_options_questions_tab.php:694
|
| 1219 |
msgid "Question Order"
|
| 1220 |
msgstr "ลำดับคำถาม"
|
| 1221 |
|
| 1222 |
+
#: php/qmn_options_questions_tab.php:559 php/qmn_options_questions_tab.php:567
|
| 1223 |
+
#: php/qmn_options_questions_tab.php:644
|
| 1224 |
msgid "Question Type"
|
| 1225 |
msgstr "ชนิดคำถาม"
|
| 1226 |
|
| 1227 |
+
#: php/qmn_options_questions_tab.php:560 php/qmn_options_questions_tab.php:568
|
| 1228 |
+
#: php/qmn_options_questions_tab.php:707
|
| 1229 |
msgid "Category"
|
| 1230 |
msgstr "หมวดหมู่"
|
| 1231 |
|
| 1232 |
+
#: php/qmn_options_questions_tab.php:561 php/qmn_options_questions_tab.php:569
|
| 1233 |
msgid "Question"
|
| 1234 |
msgstr "คำถาม"
|
| 1235 |
|
| 1236 |
+
#: php/qmn_options_questions_tab.php:662
|
| 1237 |
msgid "Answers"
|
| 1238 |
msgstr "คำตอบ"
|
| 1239 |
|
| 1240 |
+
#: php/qmn_options_questions_tab.php:663
|
| 1241 |
msgid "Points Worth"
|
| 1242 |
msgstr "ค่าคะแนน"
|
| 1243 |
|
| 1244 |
+
#: php/qmn_options_questions_tab.php:664
|
| 1245 |
msgid "Correct Answer"
|
| 1246 |
msgstr "ข้อที่ถูกต้อง"
|
| 1247 |
|
| 1248 |
+
#: php/qmn_options_questions_tab.php:669
|
| 1249 |
msgid "Add New Answer!"
|
| 1250 |
msgstr "เพิ่มคำตอบใหม่"
|
| 1251 |
|
| 1252 |
+
#: php/qmn_options_questions_tab.php:675
|
| 1253 |
msgid "Correct Answer Info"
|
| 1254 |
msgstr "ข้อความข้อที่ถูกต้อง"
|
| 1255 |
|
| 1256 |
+
#: php/qmn_options_questions_tab.php:685
|
| 1257 |
msgid "Comment Field"
|
| 1258 |
msgstr "ข้อเสนอแนะ"
|
| 1259 |
|
| 1260 |
+
#: php/qmn_options_questions_tab.php:687
|
| 1261 |
msgid "Small Text Field"
|
| 1262 |
msgstr "ข้อความสั้น"
|
| 1263 |
|
| 1264 |
+
#: php/qmn_options_questions_tab.php:688
|
| 1265 |
msgid "Large Text Field"
|
| 1266 |
msgstr "ข้อความยาว"
|
| 1267 |
|
| 1268 |
+
#: php/qmn_options_questions_tab.php:689
|
| 1269 |
msgid "None"
|
| 1270 |
msgstr "ไม่มี"
|
| 1271 |
|
| 1272 |
+
#: php/qmn_options_questions_tab.php:699
|
| 1273 |
msgid "Required?"
|
| 1274 |
msgstr "บังคับ?"
|
| 1275 |
|
| 1276 |
+
#: php/qmn_options_questions_tab.php:730
|
| 1277 |
msgid "Create Question"
|
| 1278 |
msgstr "สร้างคำถาม"
|
| 1279 |
|
| 1280 |
+
#: php/qmn_options_questions_tab.php:735
|
| 1281 |
msgid "Are you sure you want to delete this question?"
|
| 1282 |
msgstr "คุณแน่ใจหรือไม่ที่จะลบคำถามนี้?"
|
| 1283 |
|
| 1284 |
+
#: php/qmn_options_questions_tab.php:740
|
| 1285 |
msgid "Delete Question"
|
| 1286 |
msgstr "ลบคำถาม"
|
| 1287 |
|
| 1288 |
+
#: php/qmn_options_questions_tab.php:745
|
| 1289 |
msgid "Are you sure you want to duplicate this question?"
|
| 1290 |
msgstr "คุณแน่ใจหรือไม่ที่จะสำเนาคำถามนี้?"
|
| 1291 |
|
| 1292 |
+
#: php/qmn_options_questions_tab.php:750
|
| 1293 |
msgid "Duplicate Question"
|
| 1294 |
msgstr "ทำสำเนาคำถาม"
|
| 1295 |
|
| 1337 |
msgid "Your results has been deleted successfully."
|
| 1338 |
msgstr "ผลลัพท์ของท่านได้ถูกลบเรียบร้อย"
|
| 1339 |
|
| 1340 |
+
#: php/qmn_results.php:205
|
| 1341 |
#, php-format
|
| 1342 |
msgid "One result"
|
| 1343 |
msgid_plural "%s results"
|
| 1344 |
msgstr[0] ""
|
| 1345 |
msgstr[1] ""
|
| 1346 |
|
| 1347 |
+
#: php/qmn_results.php:290
|
| 1348 |
msgid "Actions"
|
| 1349 |
msgstr "กระทำ"
|
| 1350 |
|
| 1351 |
+
#: php/qmn_results.php:292
|
| 1352 |
msgid "Score"
|
| 1353 |
msgstr "คำแนน"
|
| 1354 |
|
| 1355 |
+
#: php/qmn_results.php:293
|
| 1356 |
msgid "Time To Complete"
|
| 1357 |
msgstr "เวลาที่ทำสำเร็จ"
|
| 1358 |
|
| 1359 |
+
#: php/qmn_results.php:295
|
| 1360 |
msgid "Business"
|
| 1361 |
msgstr "ที่ทำงาน"
|
| 1362 |
|
| 1363 |
+
#: php/qmn_results.php:296
|
| 1364 |
msgid "Email"
|
| 1365 |
msgstr "อีเมล์"
|
| 1366 |
|
| 1367 |
+
#: php/qmn_results.php:297
|
| 1368 |
msgid "Phone"
|
| 1369 |
msgstr "โทรศัพท์"
|
| 1370 |
|
| 1371 |
+
#: php/qmn_results.php:298
|
| 1372 |
msgid "Time Taken"
|
| 1373 |
msgstr "ใช้เวลาไป"
|
| 1374 |
|
| 1375 |
+
#: php/qmn_results.php:357
|
| 1376 |
msgid "Are you sure you want to delete these results?"
|
| 1377 |
msgstr "คุณแน่ใจหรือไม่ที่จะลบผลลัพธ์"
|
| 1378 |
|
| 1379 |
+
#: php/qmn_results.php:362
|
| 1380 |
msgid "Delete Results"
|
| 1381 |
msgstr "ลบผลลัพธ์"
|
| 1382 |
|
languages/quiz-master-next.pot
CHANGED
|
@@ -5,10 +5,10 @@ msgid ""
|
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Quiz Master Next\n"
|
| 7 |
"Report-Msgid-Bugs-To: \n"
|
| 8 |
-
"POT-Creation-Date: 2015-09-
|
| 9 |
"PO-Revision-Date: \n"
|
| 10 |
"Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
|
| 11 |
-
"Language-Team: My Local Webstop <
|
| 12 |
"Language: en_US\n"
|
| 13 |
"MIME-Version: 1.0\n"
|
| 14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -109,21 +109,21 @@ msgstr ""
|
|
| 109 |
msgid "Accept"
|
| 110 |
msgstr ""
|
| 111 |
|
| 112 |
-
#: php/qmn_question_types.php:
|
| 113 |
msgid "Captcha"
|
| 114 |
msgstr ""
|
| 115 |
|
| 116 |
-
#: php/qmn_question_types.php:
|
| 117 |
msgid "Horizontal Multiple Response"
|
| 118 |
msgstr ""
|
| 119 |
|
| 120 |
-
#: php/qmn_question_types.php:
|
| 121 |
msgid ""
|
| 122 |
"For fill in the blank types, use %BLANK% to represent where to put the text "
|
| 123 |
"box in your text."
|
| 124 |
msgstr ""
|
| 125 |
|
| 126 |
-
#: php/qmn_question_types.php:
|
| 127 |
msgid "Fill In The Blank"
|
| 128 |
msgstr ""
|
| 129 |
|
|
@@ -141,8 +141,8 @@ msgstr ""
|
|
| 141 |
#: php/qmn_options_certificate_tab.php:83 php/qmn_options_tools_tab.php:68
|
| 142 |
#: php/qmn_options_text_tab.php:123 php/qmn_options_results_page_tab.php:76
|
| 143 |
#: php/qmn_options_results_page_tab.php:125
|
| 144 |
-
#: php/qmn_options_questions_tab.php:
|
| 145 |
-
#: php/qmn_options_questions_tab.php:
|
| 146 |
#: php/qmn_results.php:58 php/qmn_quiz_creator.php:408
|
| 147 |
#: php/qmn_quiz_creator.php:483 php/qmn_quiz_creator.php:534
|
| 148 |
#: php/qmn_quiz_creator.php:701 php/qmn_quiz_creator.php:767
|
|
@@ -168,7 +168,7 @@ msgstr ""
|
|
| 168 |
msgid "Points"
|
| 169 |
msgstr ""
|
| 170 |
|
| 171 |
-
#: php/qmn_options_option_tab.php:172 php/qmn_results.php:
|
| 172 |
msgid "Not Graded"
|
| 173 |
msgstr ""
|
| 174 |
|
|
@@ -184,7 +184,7 @@ msgstr ""
|
|
| 184 |
#: php/qmn_options_option_tab.php:306 php/qmn_options_email_tab.php:381
|
| 185 |
#: php/qmn_options_email_tab.php:388 php/qmn_options_certificate_tab.php:117
|
| 186 |
#: php/qmn_options_results_page_tab.php:282
|
| 187 |
-
#: php/qmn_options_questions_tab.php:
|
| 188 |
msgid "Yes"
|
| 189 |
msgstr ""
|
| 190 |
|
|
@@ -197,7 +197,7 @@ msgstr ""
|
|
| 197 |
#: php/qmn_options_email_tab.php:382 php/qmn_options_email_tab.php:389
|
| 198 |
#: php/qmn_options_certificate_tab.php:118
|
| 199 |
#: php/qmn_options_results_page_tab.php:282
|
| 200 |
-
#: php/qmn_options_questions_tab.php:
|
| 201 |
msgid "No"
|
| 202 |
msgstr ""
|
| 203 |
|
|
@@ -789,7 +789,7 @@ msgstr ""
|
|
| 789 |
msgid "Please complete all required fields!"
|
| 790 |
msgstr ""
|
| 791 |
|
| 792 |
-
#: php/qmn_quiz.php:
|
| 793 |
msgid "Hint"
|
| 794 |
msgstr ""
|
| 795 |
|
|
@@ -811,7 +811,7 @@ msgstr ""
|
|
| 811 |
msgid "Do not allow"
|
| 812 |
msgstr ""
|
| 813 |
|
| 814 |
-
#: php/qmn_results_details.php:20 php/qmn_results.php:
|
| 815 |
msgid "Quiz Results"
|
| 816 |
msgstr ""
|
| 817 |
|
|
@@ -957,7 +957,7 @@ msgstr[0] ""
|
|
| 957 |
msgstr[1] ""
|
| 958 |
|
| 959 |
#: php/qmn_quiz_admin.php:259 php/qmn_quiz_admin.php:310
|
| 960 |
-
#: php/qmn_results.php:
|
| 961 |
msgid "Name"
|
| 962 |
msgstr ""
|
| 963 |
|
|
@@ -1006,7 +1006,7 @@ msgstr ""
|
|
| 1006 |
msgid "Create New Quiz Or Survey"
|
| 1007 |
msgstr ""
|
| 1008 |
|
| 1009 |
-
#: php/qmn_quiz_admin.php:378 php/qmn_results.php:
|
| 1010 |
msgid "Quiz Name"
|
| 1011 |
msgstr ""
|
| 1012 |
|
|
@@ -1054,7 +1054,7 @@ msgstr ""
|
|
| 1054 |
msgid "People Who Make QMN Possible"
|
| 1055 |
msgstr ""
|
| 1056 |
|
| 1057 |
-
#: php/qmn_credits.php:
|
| 1058 |
#, php-format
|
| 1059 |
msgid "View %s"
|
| 1060 |
msgstr ""
|
|
@@ -1154,117 +1154,117 @@ msgstr ""
|
|
| 1154 |
msgid "Answer"
|
| 1155 |
msgstr ""
|
| 1156 |
|
| 1157 |
-
#: php/qmn_options_questions_tab.php:
|
| 1158 |
msgid "The question order has been updated successfully."
|
| 1159 |
msgstr ""
|
| 1160 |
|
| 1161 |
-
#: php/qmn_options_questions_tab.php:
|
| 1162 |
msgid "The question has been updated successfully."
|
| 1163 |
msgstr ""
|
| 1164 |
|
| 1165 |
-
#: php/qmn_options_questions_tab.php:
|
| 1166 |
msgid "The question has been deleted successfully."
|
| 1167 |
msgstr ""
|
| 1168 |
|
| 1169 |
-
#: php/qmn_options_questions_tab.php:
|
| 1170 |
msgid "The question has been duplicated successfully."
|
| 1171 |
msgstr ""
|
| 1172 |
|
| 1173 |
-
#: php/qmn_options_questions_tab.php:
|
| 1174 |
msgid "The question has been created successfully."
|
| 1175 |
msgstr ""
|
| 1176 |
|
| 1177 |
-
#: php/qmn_options_questions_tab.php:
|
| 1178 |
msgid "Add Question"
|
| 1179 |
msgstr ""
|
| 1180 |
|
| 1181 |
-
#: php/qmn_options_questions_tab.php:
|
| 1182 |
msgid "Save Question Order"
|
| 1183 |
msgstr ""
|
| 1184 |
|
| 1185 |
-
#: php/qmn_options_questions_tab.php:
|
| 1186 |
#, php-format
|
| 1187 |
msgid "One question"
|
| 1188 |
msgid_plural "%s questions"
|
| 1189 |
msgstr[0] ""
|
| 1190 |
msgstr[1] ""
|
| 1191 |
|
| 1192 |
-
#: php/qmn_options_questions_tab.php:
|
| 1193 |
-
#: php/qmn_options_questions_tab.php:
|
| 1194 |
msgid "Question Order"
|
| 1195 |
msgstr ""
|
| 1196 |
|
| 1197 |
-
#: php/qmn_options_questions_tab.php:
|
| 1198 |
-
#: php/qmn_options_questions_tab.php:
|
| 1199 |
msgid "Question Type"
|
| 1200 |
msgstr ""
|
| 1201 |
|
| 1202 |
-
#: php/qmn_options_questions_tab.php:
|
| 1203 |
-
#: php/qmn_options_questions_tab.php:
|
| 1204 |
msgid "Category"
|
| 1205 |
msgstr ""
|
| 1206 |
|
| 1207 |
-
#: php/qmn_options_questions_tab.php:
|
| 1208 |
msgid "Question"
|
| 1209 |
msgstr ""
|
| 1210 |
|
| 1211 |
-
#: php/qmn_options_questions_tab.php:
|
| 1212 |
msgid "Answers"
|
| 1213 |
msgstr ""
|
| 1214 |
|
| 1215 |
-
#: php/qmn_options_questions_tab.php:
|
| 1216 |
msgid "Points Worth"
|
| 1217 |
msgstr ""
|
| 1218 |
|
| 1219 |
-
#: php/qmn_options_questions_tab.php:
|
| 1220 |
msgid "Correct Answer"
|
| 1221 |
msgstr ""
|
| 1222 |
|
| 1223 |
-
#: php/qmn_options_questions_tab.php:
|
| 1224 |
msgid "Add New Answer!"
|
| 1225 |
msgstr ""
|
| 1226 |
|
| 1227 |
-
#: php/qmn_options_questions_tab.php:
|
| 1228 |
msgid "Correct Answer Info"
|
| 1229 |
msgstr ""
|
| 1230 |
|
| 1231 |
-
#: php/qmn_options_questions_tab.php:
|
| 1232 |
msgid "Comment Field"
|
| 1233 |
msgstr ""
|
| 1234 |
|
| 1235 |
-
#: php/qmn_options_questions_tab.php:
|
| 1236 |
msgid "Small Text Field"
|
| 1237 |
msgstr ""
|
| 1238 |
|
| 1239 |
-
#: php/qmn_options_questions_tab.php:
|
| 1240 |
msgid "Large Text Field"
|
| 1241 |
msgstr ""
|
| 1242 |
|
| 1243 |
-
#: php/qmn_options_questions_tab.php:
|
| 1244 |
msgid "None"
|
| 1245 |
msgstr ""
|
| 1246 |
|
| 1247 |
-
#: php/qmn_options_questions_tab.php:
|
| 1248 |
msgid "Required?"
|
| 1249 |
msgstr ""
|
| 1250 |
|
| 1251 |
-
#: php/qmn_options_questions_tab.php:
|
| 1252 |
msgid "Create Question"
|
| 1253 |
msgstr ""
|
| 1254 |
|
| 1255 |
-
#: php/qmn_options_questions_tab.php:
|
| 1256 |
msgid "Are you sure you want to delete this question?"
|
| 1257 |
msgstr ""
|
| 1258 |
|
| 1259 |
-
#: php/qmn_options_questions_tab.php:
|
| 1260 |
msgid "Delete Question"
|
| 1261 |
msgstr ""
|
| 1262 |
|
| 1263 |
-
#: php/qmn_options_questions_tab.php:
|
| 1264 |
msgid "Are you sure you want to duplicate this question?"
|
| 1265 |
msgstr ""
|
| 1266 |
|
| 1267 |
-
#: php/qmn_options_questions_tab.php:
|
| 1268 |
msgid "Duplicate Question"
|
| 1269 |
msgstr ""
|
| 1270 |
|
|
@@ -1312,46 +1312,46 @@ msgstr ""
|
|
| 1312 |
msgid "Your results has been deleted successfully."
|
| 1313 |
msgstr ""
|
| 1314 |
|
| 1315 |
-
#: php/qmn_results.php:
|
| 1316 |
#, php-format
|
| 1317 |
msgid "One result"
|
| 1318 |
msgid_plural "%s results"
|
| 1319 |
msgstr[0] ""
|
| 1320 |
msgstr[1] ""
|
| 1321 |
|
| 1322 |
-
#: php/qmn_results.php:
|
| 1323 |
msgid "Actions"
|
| 1324 |
msgstr ""
|
| 1325 |
|
| 1326 |
-
#: php/qmn_results.php:
|
| 1327 |
msgid "Score"
|
| 1328 |
msgstr ""
|
| 1329 |
|
| 1330 |
-
#: php/qmn_results.php:
|
| 1331 |
msgid "Time To Complete"
|
| 1332 |
msgstr ""
|
| 1333 |
|
| 1334 |
-
#: php/qmn_results.php:
|
| 1335 |
msgid "Business"
|
| 1336 |
msgstr ""
|
| 1337 |
|
| 1338 |
-
#: php/qmn_results.php:
|
| 1339 |
msgid "Email"
|
| 1340 |
msgstr ""
|
| 1341 |
|
| 1342 |
-
#: php/qmn_results.php:
|
| 1343 |
msgid "Phone"
|
| 1344 |
msgstr ""
|
| 1345 |
|
| 1346 |
-
#: php/qmn_results.php:
|
| 1347 |
msgid "Time Taken"
|
| 1348 |
msgstr ""
|
| 1349 |
|
| 1350 |
-
#: php/qmn_results.php:
|
| 1351 |
msgid "Are you sure you want to delete these results?"
|
| 1352 |
msgstr ""
|
| 1353 |
|
| 1354 |
-
#: php/qmn_results.php:
|
| 1355 |
msgid "Delete Results"
|
| 1356 |
msgstr ""
|
| 1357 |
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Quiz Master Next\n"
|
| 7 |
"Report-Msgid-Bugs-To: \n"
|
| 8 |
+
"POT-Creation-Date: 2015-09-30 18:10-0500\n"
|
| 9 |
"PO-Revision-Date: \n"
|
| 10 |
"Last-Translator: Frank Corso <frank@mylocalwebstop.com>\n"
|
| 11 |
+
"Language-Team: My Local Webstop <support@mylocalwebstop.com>\n"
|
| 12 |
"Language: en_US\n"
|
| 13 |
"MIME-Version: 1.0\n"
|
| 14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 109 |
msgid "Accept"
|
| 110 |
msgstr ""
|
| 111 |
|
| 112 |
+
#: php/qmn_question_types.php:693
|
| 113 |
msgid "Captcha"
|
| 114 |
msgstr ""
|
| 115 |
|
| 116 |
+
#: php/qmn_question_types.php:751
|
| 117 |
msgid "Horizontal Multiple Response"
|
| 118 |
msgstr ""
|
| 119 |
|
| 120 |
+
#: php/qmn_question_types.php:862
|
| 121 |
msgid ""
|
| 122 |
"For fill in the blank types, use %BLANK% to represent where to put the text "
|
| 123 |
"box in your text."
|
| 124 |
msgstr ""
|
| 125 |
|
| 126 |
+
#: php/qmn_question_types.php:866
|
| 127 |
msgid "Fill In The Blank"
|
| 128 |
msgstr ""
|
| 129 |
|
| 141 |
#: php/qmn_options_certificate_tab.php:83 php/qmn_options_tools_tab.php:68
|
| 142 |
#: php/qmn_options_text_tab.php:123 php/qmn_options_results_page_tab.php:76
|
| 143 |
#: php/qmn_options_results_page_tab.php:125
|
| 144 |
+
#: php/qmn_options_questions_tab.php:190 php/qmn_options_questions_tab.php:235
|
| 145 |
+
#: php/qmn_options_questions_tab.php:327 php/qmn_options_questions_tab.php:424
|
| 146 |
#: php/qmn_results.php:58 php/qmn_quiz_creator.php:408
|
| 147 |
#: php/qmn_quiz_creator.php:483 php/qmn_quiz_creator.php:534
|
| 148 |
#: php/qmn_quiz_creator.php:701 php/qmn_quiz_creator.php:767
|
| 168 |
msgid "Points"
|
| 169 |
msgstr ""
|
| 170 |
|
| 171 |
+
#: php/qmn_options_option_tab.php:172 php/qmn_results.php:340
|
| 172 |
msgid "Not Graded"
|
| 173 |
msgstr ""
|
| 174 |
|
| 184 |
#: php/qmn_options_option_tab.php:306 php/qmn_options_email_tab.php:381
|
| 185 |
#: php/qmn_options_email_tab.php:388 php/qmn_options_certificate_tab.php:117
|
| 186 |
#: php/qmn_options_results_page_tab.php:282
|
| 187 |
+
#: php/qmn_options_questions_tab.php:701
|
| 188 |
msgid "Yes"
|
| 189 |
msgstr ""
|
| 190 |
|
| 197 |
#: php/qmn_options_email_tab.php:382 php/qmn_options_email_tab.php:389
|
| 198 |
#: php/qmn_options_certificate_tab.php:118
|
| 199 |
#: php/qmn_options_results_page_tab.php:282
|
| 200 |
+
#: php/qmn_options_questions_tab.php:702
|
| 201 |
msgid "No"
|
| 202 |
msgstr ""
|
| 203 |
|
| 789 |
msgid "Please complete all required fields!"
|
| 790 |
msgstr ""
|
| 791 |
|
| 792 |
+
#: php/qmn_quiz.php:495 php/qmn_options_questions_tab.php:680
|
| 793 |
msgid "Hint"
|
| 794 |
msgstr ""
|
| 795 |
|
| 811 |
msgid "Do not allow"
|
| 812 |
msgstr ""
|
| 813 |
|
| 814 |
+
#: php/qmn_results_details.php:20 php/qmn_results.php:196
|
| 815 |
msgid "Quiz Results"
|
| 816 |
msgstr ""
|
| 817 |
|
| 957 |
msgstr[1] ""
|
| 958 |
|
| 959 |
#: php/qmn_quiz_admin.php:259 php/qmn_quiz_admin.php:310
|
| 960 |
+
#: php/qmn_results.php:294
|
| 961 |
msgid "Name"
|
| 962 |
msgstr ""
|
| 963 |
|
| 1006 |
msgid "Create New Quiz Or Survey"
|
| 1007 |
msgstr ""
|
| 1008 |
|
| 1009 |
+
#: php/qmn_quiz_admin.php:378 php/qmn_results.php:291
|
| 1010 |
msgid "Quiz Name"
|
| 1011 |
msgstr ""
|
| 1012 |
|
| 1054 |
msgid "People Who Make QMN Possible"
|
| 1055 |
msgstr ""
|
| 1056 |
|
| 1057 |
+
#: php/qmn_credits.php:102
|
| 1058 |
#, php-format
|
| 1059 |
msgid "View %s"
|
| 1060 |
msgstr ""
|
| 1154 |
msgid "Answer"
|
| 1155 |
msgstr ""
|
| 1156 |
|
| 1157 |
+
#: php/qmn_options_questions_tab.php:64
|
| 1158 |
msgid "The question order has been updated successfully."
|
| 1159 |
msgstr ""
|
| 1160 |
|
| 1161 |
+
#: php/qmn_options_questions_tab.php:169
|
| 1162 |
msgid "The question has been updated successfully."
|
| 1163 |
msgstr ""
|
| 1164 |
|
| 1165 |
+
#: php/qmn_options_questions_tab.php:214
|
| 1166 |
msgid "The question has been deleted successfully."
|
| 1167 |
msgstr ""
|
| 1168 |
|
| 1169 |
+
#: php/qmn_options_questions_tab.php:306
|
| 1170 |
msgid "The question has been duplicated successfully."
|
| 1171 |
msgstr ""
|
| 1172 |
|
| 1173 |
+
#: php/qmn_options_questions_tab.php:403
|
| 1174 |
msgid "The question has been created successfully."
|
| 1175 |
msgstr ""
|
| 1176 |
|
| 1177 |
+
#: php/qmn_options_questions_tab.php:538
|
| 1178 |
msgid "Add Question"
|
| 1179 |
msgstr ""
|
| 1180 |
|
| 1181 |
+
#: php/qmn_options_questions_tab.php:539
|
| 1182 |
msgid "Save Question Order"
|
| 1183 |
msgstr ""
|
| 1184 |
|
| 1185 |
+
#: php/qmn_options_questions_tab.php:552
|
| 1186 |
#, php-format
|
| 1187 |
msgid "One question"
|
| 1188 |
msgid_plural "%s questions"
|
| 1189 |
msgstr[0] ""
|
| 1190 |
msgstr[1] ""
|
| 1191 |
|
| 1192 |
+
#: php/qmn_options_questions_tab.php:558 php/qmn_options_questions_tab.php:566
|
| 1193 |
+
#: php/qmn_options_questions_tab.php:694
|
| 1194 |
msgid "Question Order"
|
| 1195 |
msgstr ""
|
| 1196 |
|
| 1197 |
+
#: php/qmn_options_questions_tab.php:559 php/qmn_options_questions_tab.php:567
|
| 1198 |
+
#: php/qmn_options_questions_tab.php:644
|
| 1199 |
msgid "Question Type"
|
| 1200 |
msgstr ""
|
| 1201 |
|
| 1202 |
+
#: php/qmn_options_questions_tab.php:560 php/qmn_options_questions_tab.php:568
|
| 1203 |
+
#: php/qmn_options_questions_tab.php:707
|
| 1204 |
msgid "Category"
|
| 1205 |
msgstr ""
|
| 1206 |
|
| 1207 |
+
#: php/qmn_options_questions_tab.php:561 php/qmn_options_questions_tab.php:569
|
| 1208 |
msgid "Question"
|
| 1209 |
msgstr ""
|
| 1210 |
|
| 1211 |
+
#: php/qmn_options_questions_tab.php:662
|
| 1212 |
msgid "Answers"
|
| 1213 |
msgstr ""
|
| 1214 |
|
| 1215 |
+
#: php/qmn_options_questions_tab.php:663
|
| 1216 |
msgid "Points Worth"
|
| 1217 |
msgstr ""
|
| 1218 |
|
| 1219 |
+
#: php/qmn_options_questions_tab.php:664
|
| 1220 |
msgid "Correct Answer"
|
| 1221 |
msgstr ""
|
| 1222 |
|
| 1223 |
+
#: php/qmn_options_questions_tab.php:669
|
| 1224 |
msgid "Add New Answer!"
|
| 1225 |
msgstr ""
|
| 1226 |
|
| 1227 |
+
#: php/qmn_options_questions_tab.php:675
|
| 1228 |
msgid "Correct Answer Info"
|
| 1229 |
msgstr ""
|
| 1230 |
|
| 1231 |
+
#: php/qmn_options_questions_tab.php:685
|
| 1232 |
msgid "Comment Field"
|
| 1233 |
msgstr ""
|
| 1234 |
|
| 1235 |
+
#: php/qmn_options_questions_tab.php:687
|
| 1236 |
msgid "Small Text Field"
|
| 1237 |
msgstr ""
|
| 1238 |
|
| 1239 |
+
#: php/qmn_options_questions_tab.php:688
|
| 1240 |
msgid "Large Text Field"
|
| 1241 |
msgstr ""
|
| 1242 |
|
| 1243 |
+
#: php/qmn_options_questions_tab.php:689
|
| 1244 |
msgid "None"
|
| 1245 |
msgstr ""
|
| 1246 |
|
| 1247 |
+
#: php/qmn_options_questions_tab.php:699
|
| 1248 |
msgid "Required?"
|
| 1249 |
msgstr ""
|
| 1250 |
|
| 1251 |
+
#: php/qmn_options_questions_tab.php:730
|
| 1252 |
msgid "Create Question"
|
| 1253 |
msgstr ""
|
| 1254 |
|
| 1255 |
+
#: php/qmn_options_questions_tab.php:735
|
| 1256 |
msgid "Are you sure you want to delete this question?"
|
| 1257 |
msgstr ""
|
| 1258 |
|
| 1259 |
+
#: php/qmn_options_questions_tab.php:740
|
| 1260 |
msgid "Delete Question"
|
| 1261 |
msgstr ""
|
| 1262 |
|
| 1263 |
+
#: php/qmn_options_questions_tab.php:745
|
| 1264 |
msgid "Are you sure you want to duplicate this question?"
|
| 1265 |
msgstr ""
|
| 1266 |
|
| 1267 |
+
#: php/qmn_options_questions_tab.php:750
|
| 1268 |
msgid "Duplicate Question"
|
| 1269 |
msgstr ""
|
| 1270 |
|
| 1312 |
msgid "Your results has been deleted successfully."
|
| 1313 |
msgstr ""
|
| 1314 |
|
| 1315 |
+
#: php/qmn_results.php:205
|
| 1316 |
#, php-format
|
| 1317 |
msgid "One result"
|
| 1318 |
msgid_plural "%s results"
|
| 1319 |
msgstr[0] ""
|
| 1320 |
msgstr[1] ""
|
| 1321 |
|
| 1322 |
+
#: php/qmn_results.php:290
|
| 1323 |
msgid "Actions"
|
| 1324 |
msgstr ""
|
| 1325 |
|
| 1326 |
+
#: php/qmn_results.php:292
|
| 1327 |
msgid "Score"
|
| 1328 |
msgstr ""
|
| 1329 |
|
| 1330 |
+
#: php/qmn_results.php:293
|
| 1331 |
msgid "Time To Complete"
|
| 1332 |
msgstr ""
|
| 1333 |
|
| 1334 |
+
#: php/qmn_results.php:295
|
| 1335 |
msgid "Business"
|
| 1336 |
msgstr ""
|
| 1337 |
|
| 1338 |
+
#: php/qmn_results.php:296
|
| 1339 |
msgid "Email"
|
| 1340 |
msgstr ""
|
| 1341 |
|
| 1342 |
+
#: php/qmn_results.php:297
|
| 1343 |
msgid "Phone"
|
| 1344 |
msgstr ""
|
| 1345 |
|
| 1346 |
+
#: php/qmn_results.php:298
|
| 1347 |
msgid "Time Taken"
|
| 1348 |
msgstr ""
|
| 1349 |
|
| 1350 |
+
#: php/qmn_results.php:357
|
| 1351 |
msgid "Are you sure you want to delete these results?"
|
| 1352 |
msgstr ""
|
| 1353 |
|
| 1354 |
+
#: php/qmn_results.php:362
|
| 1355 |
msgid "Delete Results"
|
| 1356 |
msgstr ""
|
| 1357 |
|
mlw_quizmaster2.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
/**
|
| 3 |
* Plugin Name: Quiz And Survey Master
|
| 4 |
* Description: Easily and quickly add quizzes and surveys to your website.
|
| 5 |
-
* Version: 4.5.
|
| 6 |
* Author: Frank Corso
|
| 7 |
* Author URI: http://www.mylocalwebstop.com/
|
| 8 |
* Plugin URI: http://www.quizandsurveymaster.com/
|
|
@@ -10,7 +10,7 @@
|
|
| 10 |
* Domain Path: /languages
|
| 11 |
*
|
| 12 |
* @author Frank Corso
|
| 13 |
-
* @version 4.5.
|
| 14 |
*/
|
| 15 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
| 16 |
/**
|
|
@@ -28,7 +28,7 @@ class MLWQuizMasterNext
|
|
| 28 |
* @var string
|
| 29 |
* @since 4.0.0
|
| 30 |
*/
|
| 31 |
-
public $version = '4.5.
|
| 32 |
|
| 33 |
/**
|
| 34 |
* QMN Alert Manager Object
|
| 2 |
/**
|
| 3 |
* Plugin Name: Quiz And Survey Master
|
| 4 |
* Description: Easily and quickly add quizzes and surveys to your website.
|
| 5 |
+
* Version: 4.5.5
|
| 6 |
* Author: Frank Corso
|
| 7 |
* Author URI: http://www.mylocalwebstop.com/
|
| 8 |
* Plugin URI: http://www.quizandsurveymaster.com/
|
| 10 |
* Domain Path: /languages
|
| 11 |
*
|
| 12 |
* @author Frank Corso
|
| 13 |
+
* @version 4.5.5
|
| 14 |
*/
|
| 15 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
| 16 |
/**
|
| 28 |
* @var string
|
| 29 |
* @since 4.0.0
|
| 30 |
*/
|
| 31 |
+
public $version = '4.5.5';
|
| 32 |
|
| 33 |
/**
|
| 34 |
* QMN Alert Manager Object
|
php/qmn-default-templates.php
CHANGED
|
@@ -2,6 +2,10 @@
|
|
| 2 |
function qmn_register_default_templates() {
|
| 3 |
global $mlwQuizMasterNext;
|
| 4 |
$mlwQuizMasterNext->pluginHelper->register_quiz_template( 'Primary', 'qmn_primary.css');
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
}
|
| 6 |
add_action( 'plugins_loaded', 'qmn_register_default_templates' );
|
| 7 |
?>
|
| 2 |
function qmn_register_default_templates() {
|
| 3 |
global $mlwQuizMasterNext;
|
| 4 |
$mlwQuizMasterNext->pluginHelper->register_quiz_template( 'Primary', 'qmn_primary.css');
|
| 5 |
+
$mlwQuizMasterNext->pluginHelper->register_quiz_template( 'Amethyst', 'qmn_amethyst.css');
|
| 6 |
+
$mlwQuizMasterNext->pluginHelper->register_quiz_template( 'Emerald', 'qmn_emerald.css');
|
| 7 |
+
$mlwQuizMasterNext->pluginHelper->register_quiz_template( 'Turquoise', 'qmn_turquoise.css');
|
| 8 |
+
$mlwQuizMasterNext->pluginHelper->register_quiz_template( 'Gray', 'qmn_gray.css');
|
| 9 |
}
|
| 10 |
add_action( 'plugins_loaded', 'qmn_register_default_templates' );
|
| 11 |
?>
|
php/qmn_addons.php
CHANGED
|
@@ -48,7 +48,7 @@ function qmn_addons_page()
|
|
| 48 |
}
|
| 49 |
|
| 50 |
/**
|
| 51 |
-
* Displays the contents of the featured add ons page.
|
| 52 |
*
|
| 53 |
* @return void
|
| 54 |
* @since 4.4.0
|
|
@@ -58,6 +58,11 @@ function qmn_generate_featured_addons()
|
|
| 58 |
wp_enqueue_style( 'qmn_addons_style', plugins_url( '../css/qmn_addons_page.css' , __FILE__ ) );
|
| 59 |
?>
|
| 60 |
<p><?php _e('These addons extend the functionality of Quiz And Survey Master', 'quiz-master-next'); ?></p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
<div class="qmn_addons">
|
| 62 |
<h3 class="qmn_addons_title">Export Results</h3>
|
| 63 |
<p class="qmn_addons_desc">This add-on gives you the ability to export your quiz results as a CSV file.</p>
|
|
@@ -73,11 +78,6 @@ function qmn_generate_featured_addons()
|
|
| 73 |
<p class="qmn_addons_desc">Grow your list of subscribers in MailPoet by using this add-on to add users who take your quizzes!</p>
|
| 74 |
<a href="http://quizandsurveymaster.com/downloads/mailpoet-integration/" target="_blank" class="button">Get This Addon</a>
|
| 75 |
</div>
|
| 76 |
-
<div class="qmn_addons">
|
| 77 |
-
<h3 class="qmn_addons_title">Advanced Leaderboard</h3>
|
| 78 |
-
<p class="qmn_addons_desc">This add-on gives you 4 new leaderboard shortcodes and 2 new widgets that you can customize per use. You can edit how many results are listed, the name of the leaderboard, and the order the results are listed in.</p>
|
| 79 |
-
<a href="http://quizandsurveymaster.com/downloads/advanced-leaderboard/" target="_blank" class="button">Get This Addon</a>
|
| 80 |
-
</div>
|
| 81 |
<div class="qmn_addons">
|
| 82 |
<h3 class="qmn_addons_title">Slack Integration</h3>
|
| 83 |
<p class="qmn_addons_desc">This addon will allow you to post a message to your slack when a user takes a quiz or test.</p>
|
|
@@ -106,7 +106,7 @@ function qmn_generate_featured_addons()
|
|
| 106 |
|
| 107 |
|
| 108 |
/**
|
| 109 |
-
* This function registers the feature add ons tab.
|
| 110 |
*
|
| 111 |
* @return void
|
| 112 |
* @since 4.4.0
|
| 48 |
}
|
| 49 |
|
| 50 |
/**
|
| 51 |
+
* Displays the contents of the featured add ons page.
|
| 52 |
*
|
| 53 |
* @return void
|
| 54 |
* @since 4.4.0
|
| 58 |
wp_enqueue_style( 'qmn_addons_style', plugins_url( '../css/qmn_addons_page.css' , __FILE__ ) );
|
| 59 |
?>
|
| 60 |
<p><?php _e('These addons extend the functionality of Quiz And Survey Master', 'quiz-master-next'); ?></p>
|
| 61 |
+
<div class="qmn_addons">
|
| 62 |
+
<h3 class="qmn_addons_title">Results Analysis</h3>
|
| 63 |
+
<p class="qmn_addons_desc">Analyze your quiz's or survey's results to see the percentage of users who chose each answer displayed on useful charts, number of submissions, average points earned, and average score earned.</p>
|
| 64 |
+
<a href="http://quizandsurveymaster.com/downloads/results-analysis/" target="_blank" class="button">Get This Addon</a>
|
| 65 |
+
</div>
|
| 66 |
<div class="qmn_addons">
|
| 67 |
<h3 class="qmn_addons_title">Export Results</h3>
|
| 68 |
<p class="qmn_addons_desc">This add-on gives you the ability to export your quiz results as a CSV file.</p>
|
| 78 |
<p class="qmn_addons_desc">Grow your list of subscribers in MailPoet by using this add-on to add users who take your quizzes!</p>
|
| 79 |
<a href="http://quizandsurveymaster.com/downloads/mailpoet-integration/" target="_blank" class="button">Get This Addon</a>
|
| 80 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 81 |
<div class="qmn_addons">
|
| 82 |
<h3 class="qmn_addons_title">Slack Integration</h3>
|
| 83 |
<p class="qmn_addons_desc">This addon will allow you to post a message to your slack when a user takes a quiz or test.</p>
|
| 106 |
|
| 107 |
|
| 108 |
/**
|
| 109 |
+
* This function registers the feature add ons tab.
|
| 110 |
*
|
| 111 |
* @return void
|
| 112 |
* @since 4.4.0
|
php/qmn_credits.php
CHANGED
|
@@ -66,16 +66,18 @@ function mlw_generate_about_page()
|
|
| 66 |
</div>
|
| 67 |
<div id="mlw_quiz_changelog" class="qmn_tab" style="display: none;">
|
| 68 |
<h2>Changelog</h2>
|
| 69 |
-
<h3><?php echo $mlw_quiz_version; ?> (
|
| 70 |
<ul class="changelog">
|
| 71 |
<!--
|
| 72 |
Examples:
|
| 73 |
<li class="add"><div class="two">Add</div>Some feature was added</li>
|
| 74 |
<li class="fixed"><div class="two">Fixed</div>Fixed some bug</li>
|
| 75 |
-->
|
| 76 |
-
<li class="add"><div class="two">Add</div>*
|
| 77 |
-
<li class="fixed"><div class="two">Fixed</div>* Fixes
|
| 78 |
-
<li class="fixed"><div class="two">Fixed</div>* Fixes
|
|
|
|
|
|
|
| 79 |
</ul>
|
| 80 |
</div>
|
| 81 |
<div id="qmn_contributors" class="qmn_tab" style="display:none;">
|
| 66 |
</div>
|
| 67 |
<div id="mlw_quiz_changelog" class="qmn_tab" style="display: none;">
|
| 68 |
<h2>Changelog</h2>
|
| 69 |
+
<h3><?php echo $mlw_quiz_version; ?> (October 1, 2015)</h3>
|
| 70 |
<ul class="changelog">
|
| 71 |
<!--
|
| 72 |
Examples:
|
| 73 |
<li class="add"><div class="two">Add</div>Some feature was added</li>
|
| 74 |
<li class="fixed"><div class="two">Fixed</div>Fixed some bug</li>
|
| 75 |
-->
|
| 76 |
+
<li class="add"><div class="two">Add</div>* 4 new style templates to choose from</li>
|
| 77 |
+
<li class="fixed"><div class="two">Fixed</div>* Fixes Dutch translation <a href='https://github.com/fpcorso/quiz_master_next/issues/285'>GitHub Issue 285</a></li>
|
| 78 |
+
<li class="fixed"><div class="two">Fixed</div>* Fixes quiz results losing search filters after first page <a href='https://github.com/fpcorso/quiz_master_next/issues/293'>GitHub Issue 293</a></li>
|
| 79 |
+
<li class="fixed"><div class="two">Fixed</div>* Fixes question drag and drop not working on certain installs <a href='https://github.com/fpcorso/quiz_master_next/issues/295'>GitHub Issue 295</a></li>
|
| 80 |
+
<li class="fixed"><div class="two">Fixed</div>* Fixes Required? question setting where the Yes or No value did not show when editing <a href='https://github.com/fpcorso/quiz_master_next/issues/296'>GitHub Issue 296</a></li>
|
| 81 |
</ul>
|
| 82 |
</div>
|
| 83 |
<div id="qmn_contributors" class="qmn_tab" style="display:none;">
|
php/qmn_options_option_tab.php
CHANGED
|
@@ -105,7 +105,7 @@ function mlw_options_option_tab_content()
|
|
| 105 |
),
|
| 106 |
array( '%d' )
|
| 107 |
);
|
| 108 |
-
if ($results
|
| 109 |
{
|
| 110 |
$mlwQuizMasterNext->alertManager->newAlert(__('The options has been updated successfully.', 'quiz-master-next'), 'success');
|
| 111 |
|
| 105 |
),
|
| 106 |
array( '%d' )
|
| 107 |
);
|
| 108 |
+
if ($results !== false)
|
| 109 |
{
|
| 110 |
$mlwQuizMasterNext->alertManager->newAlert(__('The options has been updated successfully.', 'quiz-master-next'), 'success');
|
| 111 |
|
php/qmn_options_questions_tab.php
CHANGED
|
@@ -28,10 +28,11 @@ function mlw_options_questions_tab_content()
|
|
| 28 |
var answer_text = '<?php _e('Answer', 'quiz-master-next'); ?>';
|
| 29 |
</script>
|
| 30 |
<?php
|
| 31 |
-
wp_enqueue_script('qmn_admin_question_js', plugins_url( '../js/admin_question.js' , __FILE__ ));
|
| 32 |
-
wp_enqueue_script( 'math_jax', '//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML' );
|
| 33 |
wp_enqueue_script( 'jquery' );
|
| 34 |
wp_enqueue_script( 'jquery-ui-sortable' );
|
|
|
|
|
|
|
|
|
|
| 35 |
global $wpdb;
|
| 36 |
global $mlwQuizMasterNext;
|
| 37 |
$quiz_id = $_GET["quiz_id"];
|
|
@@ -466,9 +467,9 @@ function mlw_options_questions_tab_content()
|
|
| 466 |
foreach($questions as $question) {
|
| 467 |
|
| 468 |
//Load Required
|
| 469 |
-
if (is_serialized($
|
| 470 |
{
|
| 471 |
-
$mlw_question_settings = @unserialize($
|
| 472 |
}
|
| 473 |
else
|
| 474 |
{
|
| 28 |
var answer_text = '<?php _e('Answer', 'quiz-master-next'); ?>';
|
| 29 |
</script>
|
| 30 |
<?php
|
|
|
|
|
|
|
| 31 |
wp_enqueue_script( 'jquery' );
|
| 32 |
wp_enqueue_script( 'jquery-ui-sortable' );
|
| 33 |
+
wp_enqueue_script('qmn_admin_question_js', plugins_url( '../js/admin_question.js' , __FILE__ ), array( 'jquery-ui-sortable' ) );
|
| 34 |
+
wp_enqueue_script( 'math_jax', '//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML' );
|
| 35 |
+
|
| 36 |
global $wpdb;
|
| 37 |
global $mlwQuizMasterNext;
|
| 38 |
$quiz_id = $_GET["quiz_id"];
|
| 467 |
foreach($questions as $question) {
|
| 468 |
|
| 469 |
//Load Required
|
| 470 |
+
if (is_serialized($question->question_settings) && is_array(@unserialize($question->question_settings)))
|
| 471 |
{
|
| 472 |
+
$mlw_question_settings = @unserialize($question->question_settings);
|
| 473 |
}
|
| 474 |
else
|
| 475 |
{
|
php/qmn_question_types.php
CHANGED
|
@@ -663,9 +663,10 @@ function qmn_accept_display($id, $question, $answers)
|
|
| 663 |
global $mlwQuizMasterNext;
|
| 664 |
$required = $mlwQuizMasterNext->pluginHelper->get_question_setting($id, 'required');
|
| 665 |
if ($required == 0) {$mlw_requireClass = "mlwRequiredAccept";} else {$mlw_requireClass = "";}
|
|
|
|
| 666 |
$question_display .= "<input type='checkbox' id='mlwAcceptance' class='$mlw_requireClass ' />";
|
| 667 |
-
$question_display .= "<label for='mlwAcceptance'><span class='
|
| 668 |
-
$question_display .= "
|
| 669 |
return $question_display;
|
| 670 |
}
|
| 671 |
|
| 663 |
global $mlwQuizMasterNext;
|
| 664 |
$required = $mlwQuizMasterNext->pluginHelper->get_question_setting($id, 'required');
|
| 665 |
if ($required == 0) {$mlw_requireClass = "mlwRequiredAccept";} else {$mlw_requireClass = "";}
|
| 666 |
+
$question_display .= "<div class='qmn_accept_answers'>";
|
| 667 |
$question_display .= "<input type='checkbox' id='mlwAcceptance' class='$mlw_requireClass ' />";
|
| 668 |
+
$question_display .= "<label for='mlwAcceptance'><span class='qmn_accept_text'>".do_shortcode(htmlspecialchars_decode($question, ENT_QUOTES))."</span></label>";
|
| 669 |
+
$question_display .= "</div>";
|
| 670 |
return $question_display;
|
| 671 |
}
|
| 672 |
|
php/qmn_quiz.php
CHANGED
|
@@ -388,8 +388,9 @@ class QMNQuizManager
|
|
| 388 |
global $mlw_qmn_section_count;
|
| 389 |
$mlw_qmn_section_count = 0;
|
| 390 |
|
| 391 |
-
$quiz_display .= "<div class='mlw_qmn_quiz'>";
|
| 392 |
-
$quiz_display .= "<form name='quizForm' id='quizForm' action='' method='post' class='mlw_quiz_form' onsubmit='return mlw_validateForm()' novalidate >";
|
|
|
|
| 393 |
$quiz_display .= "<span id='mlw_top_of_quiz'></span>";
|
| 394 |
$quiz_display = apply_filters('qmn_begin_quiz_form', $quiz_display, $qmn_quiz_options, $qmn_array_for_variables);
|
| 395 |
$quiz_display .= $this->display_begin_section($qmn_quiz_options, $qmn_array_for_variables);
|
|
@@ -399,6 +400,7 @@ class QMNQuizManager
|
|
| 399 |
$quiz_display .= $this->display_comment_section($qmn_quiz_options, $qmn_array_for_variables);
|
| 400 |
$quiz_display = apply_filters('qmn_after_comment_section', $quiz_display, $qmn_quiz_options, $qmn_array_for_variables);
|
| 401 |
$quiz_display .= $this->display_end_section($qmn_quiz_options, $qmn_array_for_variables);
|
|
|
|
| 402 |
$quiz_display .= "<input type='hidden' name='total_questions' id='total_questions' value='".$qmn_total_questions."'/>";
|
| 403 |
$quiz_display .= "<input type='hidden' name='timer' id='timer' value='0'/>";
|
| 404 |
$quiz_display .= "<input type='hidden' name='qmn_quiz_id' id='qmn_quiz_id' value='".$qmn_array_for_variables["quiz_id"]."'/>";
|
|
@@ -424,7 +426,6 @@ class QMNQuizManager
|
|
| 424 |
public function display_begin_section($qmn_quiz_options, $qmn_array_for_variables)
|
| 425 |
{
|
| 426 |
$section_display = "";
|
| 427 |
-
$section_display .= "<span name='mlw_error_message' id='mlw_error_message' class='qmn_error'></span><br />";
|
| 428 |
if (!empty($qmn_quiz_options->message_before) OR $qmn_quiz_options->contact_info_location == 0)
|
| 429 |
{
|
| 430 |
$section_display.= "<script> var firstPage = true; </script>";
|
|
@@ -435,7 +436,7 @@ class QMNQuizManager
|
|
| 435 |
$message_before = wpautop(htmlspecialchars_decode($qmn_quiz_options->message_before, ENT_QUOTES));
|
| 436 |
$message_before = apply_filters( 'mlw_qmn_template_variable_quiz_page', $message_before, $qmn_array_for_variables);
|
| 437 |
|
| 438 |
-
$section_display .= "<
|
| 439 |
|
| 440 |
if ($qmn_quiz_options->contact_info_location == 0)
|
| 441 |
{
|
|
@@ -564,8 +565,7 @@ class QMNQuizManager
|
|
| 564 |
$section_display .= ob_get_contents();
|
| 565 |
ob_end_clean();
|
| 566 |
|
| 567 |
-
$section_display .= "<input type='submit' value='".esc_attr(htmlspecialchars_decode($qmn_quiz_options->submit_button_text, ENT_QUOTES))."' />";
|
| 568 |
-
$section_display .= "<span name='mlw_error_message_bottom' id='mlw_error_message_bottom' class='qmn_error'></span><br />";
|
| 569 |
$section_display .= "</div>";
|
| 570 |
|
| 571 |
return $section_display;
|
| 388 |
global $mlw_qmn_section_count;
|
| 389 |
$mlw_qmn_section_count = 0;
|
| 390 |
|
| 391 |
+
$quiz_display .= "<div class='qmn_quiz_container mlw_qmn_quiz'>";
|
| 392 |
+
$quiz_display .= "<form name='quizForm' id='quizForm' action='' method='post' class='qmn_quiz_form mlw_quiz_form' onsubmit='return mlw_validateForm()' novalidate >";
|
| 393 |
+
$quiz_display .= "<div name='mlw_error_message' id='mlw_error_message'></div>";
|
| 394 |
$quiz_display .= "<span id='mlw_top_of_quiz'></span>";
|
| 395 |
$quiz_display = apply_filters('qmn_begin_quiz_form', $quiz_display, $qmn_quiz_options, $qmn_array_for_variables);
|
| 396 |
$quiz_display .= $this->display_begin_section($qmn_quiz_options, $qmn_array_for_variables);
|
| 400 |
$quiz_display .= $this->display_comment_section($qmn_quiz_options, $qmn_array_for_variables);
|
| 401 |
$quiz_display = apply_filters('qmn_after_comment_section', $quiz_display, $qmn_quiz_options, $qmn_array_for_variables);
|
| 402 |
$quiz_display .= $this->display_end_section($qmn_quiz_options, $qmn_array_for_variables);
|
| 403 |
+
$quiz_display .= "<div name='mlw_error_message_bottom' id='mlw_error_message_bottom'></div>";
|
| 404 |
$quiz_display .= "<input type='hidden' name='total_questions' id='total_questions' value='".$qmn_total_questions."'/>";
|
| 405 |
$quiz_display .= "<input type='hidden' name='timer' id='timer' value='0'/>";
|
| 406 |
$quiz_display .= "<input type='hidden' name='qmn_quiz_id' id='qmn_quiz_id' value='".$qmn_array_for_variables["quiz_id"]."'/>";
|
| 426 |
public function display_begin_section($qmn_quiz_options, $qmn_array_for_variables)
|
| 427 |
{
|
| 428 |
$section_display = "";
|
|
|
|
| 429 |
if (!empty($qmn_quiz_options->message_before) OR $qmn_quiz_options->contact_info_location == 0)
|
| 430 |
{
|
| 431 |
$section_display.= "<script> var firstPage = true; </script>";
|
| 436 |
$message_before = wpautop(htmlspecialchars_decode($qmn_quiz_options->message_before, ENT_QUOTES));
|
| 437 |
$message_before = apply_filters( 'mlw_qmn_template_variable_quiz_page', $message_before, $qmn_array_for_variables);
|
| 438 |
|
| 439 |
+
$section_display .= "<div class='mlw_qmn_message_before'>$message_before</div>";
|
| 440 |
|
| 441 |
if ($qmn_quiz_options->contact_info_location == 0)
|
| 442 |
{
|
| 565 |
$section_display .= ob_get_contents();
|
| 566 |
ob_end_clean();
|
| 567 |
|
| 568 |
+
$section_display .= "<input type='submit' class='qmn_btn' value='".esc_attr(htmlspecialchars_decode($qmn_quiz_options->submit_button_text, ENT_QUOTES))."' />";
|
|
|
|
| 569 |
$section_display .= "</div>";
|
| 570 |
|
| 571 |
return $section_display;
|
php/qmn_results.php
CHANGED
|
@@ -106,33 +106,35 @@ function mlw_generate_quiz_results()
|
|
| 106 |
$order_by_sql = 'ORDER BY result_id DESC';
|
| 107 |
if ( isset( $_GET["qmn_search_phrase"] ) && !empty( $_GET["qmn_search_phrase"] ) ) {
|
| 108 |
$search_phrase = $_GET["qmn_search_phrase"];
|
|
|
|
| 109 |
$search_phrase_sql = " AND (quiz_name LIKE '%$search_phrase%' OR name LIKE '%$search_phrase%')";
|
|
|
|
|
|
|
| 110 |
}
|
| 111 |
if ( isset( $_GET["qmn_order_by"] ) ) {
|
| 112 |
switch ( $_GET["qmn_order_by"] )
|
| 113 |
{
|
| 114 |
case 'quiz_name':
|
| 115 |
-
$order_by_sql = "ORDER BY quiz_name DESC";
|
| 116 |
break;
|
| 117 |
case 'name':
|
| 118 |
-
$order_by_sql = "ORDER BY name DESC";
|
| 119 |
break;
|
| 120 |
case 'point_score':
|
| 121 |
-
$order_by_sql = "ORDER BY point_score DESC";
|
| 122 |
break;
|
| 123 |
case 'correct_score':
|
| 124 |
-
$order_by_sql = "ORDER BY correct_score DESC";
|
| 125 |
break;
|
| 126 |
default:
|
| 127 |
-
$order_by_sql = "ORDER BY result_id DESC";
|
| 128 |
}
|
| 129 |
}
|
| 130 |
|
| 131 |
-
$mlw_qmn_results_count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(result_id) FROM " . $wpdb->prefix . "mlw_results WHERE deleted='0'%s", $search_phrase_sql ) );
|
| 132 |
|
| 133 |
if( isset($_GET['mlw_result_page'] ) )
|
| 134 |
{
|
| 135 |
-
$mlw_qmn_result_page = $_GET['mlw_result_page'] + 1;
|
| 136 |
$mlw_qmn_result_begin = $mlw_qmn_table_limit * $mlw_qmn_result_page ;
|
| 137 |
}
|
| 138 |
else
|
|
@@ -143,7 +145,8 @@ function mlw_generate_quiz_results()
|
|
| 143 |
$mlw_qmn_result_left = $mlw_qmn_results_count - ($mlw_qmn_result_page * $mlw_qmn_table_limit);
|
| 144 |
if (isset($_GET["quiz_id"]) && $_GET["quiz_id"] != "")
|
| 145 |
{
|
| 146 |
-
$
|
|
|
|
| 147 |
}
|
| 148 |
else
|
| 149 |
{
|
|
@@ -205,35 +208,49 @@ function mlw_generate_quiz_results()
|
|
| 205 |
$mlw_qmn_previous_page = 0;
|
| 206 |
$mlw_current_page = $mlw_qmn_result_page+1;
|
| 207 |
$mlw_total_pages = ceil($mlw_qmn_results_count/$mlw_qmn_table_limit);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 208 |
if( $mlw_qmn_result_page > 0 )
|
| 209 |
{
|
| 210 |
$mlw_qmn_previous_page = $mlw_qmn_result_page - 2;
|
| 211 |
-
echo "<a class=\"prev-page\" title=\"Go to the previous page\" href=\"?page=mlw_quiz_results&&mlw_result_page=$mlw_qmn_previous_page\"><</a>";
|
| 212 |
echo "<span class=\"paging-input\">$mlw_current_page of $mlw_total_pages</span>";
|
| 213 |
if( $mlw_qmn_result_left > $mlw_qmn_table_limit )
|
| 214 |
{
|
| 215 |
-
echo "<a class=\"next-page\" title=\"Go to the next page\" href=\"?page=mlw_quiz_results&&mlw_result_page=$mlw_qmn_result_page\">></a>";
|
| 216 |
}
|
| 217 |
else
|
| 218 |
{
|
| 219 |
-
echo "<a class=\"next-page disabled\" title=\"Go to the next page\" href=\"?page=mlw_quiz_results&&mlw_result_page=$mlw_qmn_result_page\">></a>";
|
| 220 |
}
|
| 221 |
}
|
| 222 |
else if( $mlw_qmn_result_page == 0 )
|
| 223 |
{
|
| 224 |
if( $mlw_qmn_result_left > $mlw_qmn_table_limit )
|
| 225 |
{
|
| 226 |
-
echo "<a class=\"prev-page disabled\" title=\"Go to the previous page\" href=\"?page=mlw_quiz_results&&mlw_result_page=$mlw_qmn_previous_page\"><</a>";
|
| 227 |
echo "<span class=\"paging-input\">$mlw_current_page of $mlw_total_pages</span>";
|
| 228 |
-
echo "<a class=\"next-page\" title=\"Go to the next page\" href=\"?page=mlw_quiz_results&&mlw_result_page=$mlw_qmn_result_page\">></a>";
|
| 229 |
}
|
| 230 |
}
|
| 231 |
else if( $mlw_qmn_result_left < $mlw_qmn_table_limit )
|
| 232 |
{
|
| 233 |
$mlw_qmn_previous_page = $mlw_qmn_result_page - 2;
|
| 234 |
-
echo "<a class=\"prev-page\" title=\"Go to the previous page\" href=\"?page=mlw_quiz_results&&mlw_result_page=$mlw_qmn_previous_page\"><</a>";
|
| 235 |
echo "<span class=\"paging-input\">$mlw_current_page of $mlw_total_pages</span>";
|
| 236 |
-
echo "<a class=\"next-page disabled\" title=\"Go to the next page\" href=\"?page=mlw_quiz_results&&mlw_result_page=$mlw_qmn_result_page\">></a>";
|
| 237 |
}
|
| 238 |
?>
|
| 239 |
</span>
|
|
@@ -241,6 +258,13 @@ function mlw_generate_quiz_results()
|
|
| 241 |
</div>
|
| 242 |
</div>
|
| 243 |
<form action='' method="get">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 244 |
<input type="hidden" name="page" value="mlw_quiz_results">
|
| 245 |
<p class="search-box">
|
| 246 |
<label for="qmn_search_phrase">Search Results:</label>
|
| 106 |
$order_by_sql = 'ORDER BY result_id DESC';
|
| 107 |
if ( isset( $_GET["qmn_search_phrase"] ) && !empty( $_GET["qmn_search_phrase"] ) ) {
|
| 108 |
$search_phrase = $_GET["qmn_search_phrase"];
|
| 109 |
+
$mlw_qmn_results_count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(result_id) FROM " . $wpdb->prefix . "mlw_results WHERE deleted='0' AND (quiz_name LIKE %s OR name LIKE %s)", '%' . $wpdb->esc_like($search_phrase) . '%', '%' . $wpdb->esc_like($search_phrase) . '%' ) );
|
| 110 |
$search_phrase_sql = " AND (quiz_name LIKE '%$search_phrase%' OR name LIKE '%$search_phrase%')";
|
| 111 |
+
} else {
|
| 112 |
+
$mlw_qmn_results_count = $wpdb->get_var( "SELECT COUNT(result_id) FROM " . $wpdb->prefix . "mlw_results WHERE deleted='0'" );
|
| 113 |
}
|
| 114 |
if ( isset( $_GET["qmn_order_by"] ) ) {
|
| 115 |
switch ( $_GET["qmn_order_by"] )
|
| 116 |
{
|
| 117 |
case 'quiz_name':
|
| 118 |
+
$order_by_sql = " ORDER BY quiz_name DESC";
|
| 119 |
break;
|
| 120 |
case 'name':
|
| 121 |
+
$order_by_sql = " ORDER BY name DESC";
|
| 122 |
break;
|
| 123 |
case 'point_score':
|
| 124 |
+
$order_by_sql = " ORDER BY point_score DESC";
|
| 125 |
break;
|
| 126 |
case 'correct_score':
|
| 127 |
+
$order_by_sql = " ORDER BY correct_score DESC";
|
| 128 |
break;
|
| 129 |
default:
|
| 130 |
+
$order_by_sql = " ORDER BY result_id DESC";
|
| 131 |
}
|
| 132 |
}
|
| 133 |
|
|
|
|
| 134 |
|
| 135 |
if( isset($_GET['mlw_result_page'] ) )
|
| 136 |
{
|
| 137 |
+
$mlw_qmn_result_page = intval( $_GET['mlw_result_page'] ) + 1;
|
| 138 |
$mlw_qmn_result_begin = $mlw_qmn_table_limit * $mlw_qmn_result_page ;
|
| 139 |
}
|
| 140 |
else
|
| 145 |
$mlw_qmn_result_left = $mlw_qmn_results_count - ($mlw_qmn_result_page * $mlw_qmn_table_limit);
|
| 146 |
if (isset($_GET["quiz_id"]) && $_GET["quiz_id"] != "")
|
| 147 |
{
|
| 148 |
+
$quiz_id = intval( $_GET["quiz_id"] );
|
| 149 |
+
$mlw_quiz_data = $wpdb->get_results( "SELECT * FROM " . $wpdb->prefix . "mlw_results WHERE deleted='0' AND quiz_id=$quiz_id $search_phrase_sql $order_by_sql LIMIT $mlw_qmn_result_begin, $mlw_qmn_table_limit" );
|
| 150 |
}
|
| 151 |
else
|
| 152 |
{
|
| 208 |
$mlw_qmn_previous_page = 0;
|
| 209 |
$mlw_current_page = $mlw_qmn_result_page+1;
|
| 210 |
$mlw_total_pages = ceil($mlw_qmn_results_count/$mlw_qmn_table_limit);
|
| 211 |
+
|
| 212 |
+
$url_query_string = '';
|
| 213 |
+
if ( isset( $_GET["quiz_id"] ) && $_GET["quiz_id"] != "" ) {
|
| 214 |
+
$url_query_string .= '&&quiz_id='.intval( $_GET["quiz_id"] );
|
| 215 |
+
}
|
| 216 |
+
|
| 217 |
+
if ( isset( $_GET["qmn_search_phrase"] ) && !empty( $_GET["qmn_search_phrase"] ) ) {
|
| 218 |
+
$url_query_string .= '&&qmn_search_phrase='.$_GET["qmn_search_phrase"];
|
| 219 |
+
}
|
| 220 |
+
|
| 221 |
+
if ( isset( $_GET["qmn_order_by"] ) && !empty( $_GET["qmn_order_by"] ) ) {
|
| 222 |
+
$url_query_string .= '&&qmn_order_by='.$_GET["qmn_order_by"];
|
| 223 |
+
}
|
| 224 |
+
|
| 225 |
if( $mlw_qmn_result_page > 0 )
|
| 226 |
{
|
| 227 |
$mlw_qmn_previous_page = $mlw_qmn_result_page - 2;
|
| 228 |
+
echo "<a class=\"prev-page\" title=\"Go to the previous page\" href=\"?page=mlw_quiz_results&&mlw_result_page=$mlw_qmn_previous_page$url_query_string\"><</a>";
|
| 229 |
echo "<span class=\"paging-input\">$mlw_current_page of $mlw_total_pages</span>";
|
| 230 |
if( $mlw_qmn_result_left > $mlw_qmn_table_limit )
|
| 231 |
{
|
| 232 |
+
echo "<a class=\"next-page\" title=\"Go to the next page\" href=\"?page=mlw_quiz_results&&mlw_result_page=$mlw_qmn_result_page$url_query_string\">></a>";
|
| 233 |
}
|
| 234 |
else
|
| 235 |
{
|
| 236 |
+
echo "<a class=\"next-page disabled\" title=\"Go to the next page\" href=\"?page=mlw_quiz_results&&mlw_result_page=$mlw_qmn_result_page$url_query_string\">></a>";
|
| 237 |
}
|
| 238 |
}
|
| 239 |
else if( $mlw_qmn_result_page == 0 )
|
| 240 |
{
|
| 241 |
if( $mlw_qmn_result_left > $mlw_qmn_table_limit )
|
| 242 |
{
|
| 243 |
+
echo "<a class=\"prev-page disabled\" title=\"Go to the previous page\" href=\"?page=mlw_quiz_results&&mlw_result_page=$mlw_qmn_previous_page$url_query_string\"><</a>";
|
| 244 |
echo "<span class=\"paging-input\">$mlw_current_page of $mlw_total_pages</span>";
|
| 245 |
+
echo "<a class=\"next-page\" title=\"Go to the next page\" href=\"?page=mlw_quiz_results&&mlw_result_page=$mlw_qmn_result_page$url_query_string\">></a>";
|
| 246 |
}
|
| 247 |
}
|
| 248 |
else if( $mlw_qmn_result_left < $mlw_qmn_table_limit )
|
| 249 |
{
|
| 250 |
$mlw_qmn_previous_page = $mlw_qmn_result_page - 2;
|
| 251 |
+
echo "<a class=\"prev-page\" title=\"Go to the previous page\" href=\"?page=mlw_quiz_results&&mlw_result_page=$mlw_qmn_previous_page$url_query_string\"><</a>";
|
| 252 |
echo "<span class=\"paging-input\">$mlw_current_page of $mlw_total_pages</span>";
|
| 253 |
+
echo "<a class=\"next-page disabled\" title=\"Go to the next page\" href=\"?page=mlw_quiz_results&&mlw_result_page=$mlw_qmn_result_page$url_query_string\">></a>";
|
| 254 |
}
|
| 255 |
?>
|
| 256 |
</span>
|
| 258 |
</div>
|
| 259 |
</div>
|
| 260 |
<form action='' method="get">
|
| 261 |
+
<?php
|
| 262 |
+
if ( isset( $_GET["quiz_id"] ) ) {
|
| 263 |
+
?>
|
| 264 |
+
<input type="hidden" name="quiz_id" value="<?php echo $_GET["quiz_id"]; ?>" />
|
| 265 |
+
<?php
|
| 266 |
+
}
|
| 267 |
+
?>
|
| 268 |
<input type="hidden" name="page" value="mlw_quiz_results">
|
| 269 |
<p class="search-box">
|
| 270 |
<label for="qmn_search_phrase">Search Results:</label>
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Donate link: http://mylocalwebstop.com/downloads/donation-service-payment/
|
|
| 4 |
Tags: quiz, survey, test, score, exam, questionnaire, email, answer, question, certificate, points, results, math
|
| 5 |
Requires at least: 3.8.1
|
| 6 |
Tested up to: 4.3
|
| 7 |
-
Stable tag: 4.5.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -126,18 +126,24 @@ This is usually a theme conflict. You can [checkout out our common conflict solu
|
|
| 126 |
4. Example Quiz
|
| 127 |
5. Example Survey
|
| 128 |
6. Quiz/Survey Results Page
|
| 129 |
-
7. Example Contact Form
|
| 130 |
8. Example Quiz With Styling
|
| 131 |
|
| 132 |
== Changelog ==
|
| 133 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 134 |
= 4.5.4 (September 3, 2015) =
|
| 135 |
* Rebrand as Quiz And Survey Master
|
| 136 |
* Fixes scroll to top pagination bug
|
| 137 |
* Fixes leaderboard widget bug
|
| 138 |
|
| 139 |
= 4.5.3 (August 21, 2015) =
|
| 140 |
-
* Fixed an issue where Quiz Views and Quiz Taken stats in the Quizzes screen was reseting to 1 instead of 0. ([Github Issue #
|
| 141 |
|
| 142 |
= 4.5.2 (August 14, 2015) =
|
| 143 |
* Ensured compatibility with Wordpress version 4.3
|
|
@@ -169,14 +175,11 @@ This is usually a theme conflict. You can [checkout out our common conflict solu
|
|
| 169 |
|
| 170 |
== Upgrade Notice ==
|
| 171 |
|
|
|
|
|
|
|
|
|
|
| 172 |
= 4.5.4 =
|
| 173 |
Upgrade to fix scroll to top pagination bug and leaderboard widget bug
|
| 174 |
|
| 175 |
= 4.5.3 =
|
| 176 |
Upgrade to fix a issue with reseting the stats for Quiz Taken and Quiz Views. It was reseting to 1 instead of 0.
|
| 177 |
-
|
| 178 |
-
= 4.5.2 =
|
| 179 |
-
Upgrade to fix a Required error in IE and to ensure compatability with Wordpress version 4.3
|
| 180 |
-
|
| 181 |
-
= 4.5.1 =
|
| 182 |
-
Upgrade to fix parse error on hosts with older PHP versions
|
| 4 |
Tags: quiz, survey, test, score, exam, questionnaire, email, answer, question, certificate, points, results, math
|
| 5 |
Requires at least: 3.8.1
|
| 6 |
Tested up to: 4.3
|
| 7 |
+
Stable tag: 4.5.5
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 126 |
4. Example Quiz
|
| 127 |
5. Example Survey
|
| 128 |
6. Quiz/Survey Results Page
|
|
|
|
| 129 |
8. Example Quiz With Styling
|
| 130 |
|
| 131 |
== Changelog ==
|
| 132 |
|
| 133 |
+
= 4.5.5 (October 1, 2015) =
|
| 134 |
+
* Adds 4 new style templates to choose from
|
| 135 |
+
* Fixes Dutch translation ([Github Issue #285](https://github.com/fpcorso/quiz_master_next/issues/285))
|
| 136 |
+
* Fixes quiz results losing search filters after first page ([Github Issue #293](https://github.com/fpcorso/quiz_master_next/issues/293))
|
| 137 |
+
* Fixes question drag and drop not working on certain installs ([Github Issue #295](https://github.com/fpcorso/quiz_master_next/issues/295))
|
| 138 |
+
* Fixes Required? question setting where the Yes or No value did not show when editing ([Github Issue #296](https://github.com/fpcorso/quiz_master_next/issues/296))
|
| 139 |
+
|
| 140 |
= 4.5.4 (September 3, 2015) =
|
| 141 |
* Rebrand as Quiz And Survey Master
|
| 142 |
* Fixes scroll to top pagination bug
|
| 143 |
* Fixes leaderboard widget bug
|
| 144 |
|
| 145 |
= 4.5.3 (August 21, 2015) =
|
| 146 |
+
* Fixed an issue where Quiz Views and Quiz Taken stats in the Quizzes screen was reseting to 1 instead of 0. ([Github Issue #277](https://github.com/fpcorso/quiz_master_next/issues/277))
|
| 147 |
|
| 148 |
= 4.5.2 (August 14, 2015) =
|
| 149 |
* Ensured compatibility with Wordpress version 4.3
|
| 175 |
|
| 176 |
== Upgrade Notice ==
|
| 177 |
|
| 178 |
+
= 4.5.5 =
|
| 179 |
+
Upgrade to use 5 new style templates as well as a variety of bug fixes
|
| 180 |
+
|
| 181 |
= 4.5.4 =
|
| 182 |
Upgrade to fix scroll to top pagination bug and leaderboard widget bug
|
| 183 |
|
| 184 |
= 4.5.3 =
|
| 185 |
Upgrade to fix a issue with reseting the stats for Quiz Taken and Quiz Views. It was reseting to 1 instead of 0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
templates/qmn_amethyst.css
ADDED
|
@@ -0,0 +1,349 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.ui-tooltip {
|
| 2 |
+
max-width: 500px !important;
|
| 3 |
+
}
|
| 4 |
+
.ui-tooltip-content {
|
| 5 |
+
max-width: 500px !important;
|
| 6 |
+
}
|
| 7 |
+
.mlw_qmn_hint_link {
|
| 8 |
+
text-decoration:underline;
|
| 9 |
+
color:rgb(0,0,255);
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
.mlw_qmn_message_before {
|
| 14 |
+
color: #666;
|
| 15 |
+
font-size: 18px;
|
| 16 |
+
display: block;
|
| 17 |
+
margin-bottom: 20px;
|
| 18 |
+
padding-bottom: 10px;
|
| 19 |
+
border-bottom: 1px solid #f3f3f3;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
.mlw_qmn_message_before p { margin: 0 0 10px 0; }
|
| 23 |
+
|
| 24 |
+
.quiz_section {
|
| 25 |
+
display: block;
|
| 26 |
+
border: 0;
|
| 27 |
+
margin: 0;
|
| 28 |
+
padding: 15px 0 15px 0;
|
| 29 |
+
font-size: 16px;
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
.quiz_section.border {
|
| 33 |
+
border-top: 1px solid #f3f3f3;
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
.quiz_section label,
|
| 37 |
+
.quiz_section .mlw_qmn_question {
|
| 38 |
+
display: block;
|
| 39 |
+
margin: 0 0 5px 0;
|
| 40 |
+
font-weight: bold;
|
| 41 |
+
-webkit-box-sizing: border-box;
|
| 42 |
+
-moz-box-sizing: border-box;
|
| 43 |
+
box-sizing: border-box;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
label.inline,
|
| 47 |
+
label.inline .mlw_qmn_question,
|
| 48 |
+
.quiz_section.inline .mlw_horizontal_multiple {
|
| 49 |
+
display: inline-block;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
.quiz_section p.form-help {
|
| 53 |
+
margin: 5px 0 0 0;
|
| 54 |
+
font-size: 12px;
|
| 55 |
+
color: #999;
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
.quiz_section iframe { margin-bottom: 10px; }
|
| 59 |
+
|
| 60 |
+
.qmn_mc_answer_wrap {
|
| 61 |
+
display: block;
|
| 62 |
+
margin: 5px 0 5px 0;
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
.quiz_section .qmn_radio_answers label,
|
| 66 |
+
.quiz_section .qmn_check_answers label,
|
| 67 |
+
.quiz_section .qmn_accept_answers label {
|
| 68 |
+
display: inline;
|
| 69 |
+
margin: 0 10px 0 5px;
|
| 70 |
+
font-weight: normal;
|
| 71 |
+
font-size: 14px;
|
| 72 |
+
cursor: pointer;
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
.quiz_section.text-block h2 {
|
| 76 |
+
display: block;
|
| 77 |
+
margin: 0 0 10px 0;
|
| 78 |
+
}
|
| 79 |
+
|
| 80 |
+
.quiz_section select,
|
| 81 |
+
.quiz_section textarea,
|
| 82 |
+
.quiz_section input[type="text"],
|
| 83 |
+
.quiz_section input[type="email"],
|
| 84 |
+
.quiz_section input[type="number"] {
|
| 85 |
+
width: 70%;
|
| 86 |
+
display: inline-block;
|
| 87 |
+
padding: 10px 8px 10px 8px;
|
| 88 |
+
font-size: 14px;
|
| 89 |
+
color: #555;
|
| 90 |
+
background: #fff;
|
| 91 |
+
border: 1px solid #e3e3e3;
|
| 92 |
+
-webkit-border-radius: 3px;
|
| 93 |
+
-moz-border-radius: 3px;
|
| 94 |
+
border-radius: 3px;
|
| 95 |
+
-webkit-box-sizing: border-box;
|
| 96 |
+
-moz-box-sizing: border-box;
|
| 97 |
+
box-sizing: border-box;
|
| 98 |
+
-webkit-transition: all .5s ease-in-out;
|
| 99 |
+
-moz-transition: all .5s ease-in-out;
|
| 100 |
+
transition: all .5s ease-in-out;
|
| 101 |
+
}
|
| 102 |
+
|
| 103 |
+
.quiz_section select { height: 38px; }
|
| 104 |
+
|
| 105 |
+
.quiz_section select:hover,
|
| 106 |
+
.quiz_section textarea:hover,
|
| 107 |
+
.quiz_section input[type="text"]:hover,
|
| 108 |
+
.quiz_section input[type="email"]:hover,
|
| 109 |
+
.quiz_section input[type="number"]:hover,
|
| 110 |
+
.quiz_section select:focus,
|
| 111 |
+
.quiz_section textarea:focus,
|
| 112 |
+
.quiz_section input[type="text"]:focus,
|
| 113 |
+
.quiz_section input[type="email"]:focus,
|
| 114 |
+
.quiz_section input[type="number"]:focus {
|
| 115 |
+
outline: 0;
|
| 116 |
+
background: #f7f7f7;
|
| 117 |
+
border: 1px solid #bdc3c7;
|
| 118 |
+
-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.15);
|
| 119 |
+
-moz-box-shadow: 0 0 10px rgba(0,0,0,0.15);
|
| 120 |
+
box-shadow: 0 0 10px rgba(0,0,0,0.15);
|
| 121 |
+
}
|
| 122 |
+
|
| 123 |
+
.qmn_fill_blank {
|
| 124 |
+
margin: 0 5px 0 5px;
|
| 125 |
+
width: 100px !important;
|
| 126 |
+
}
|
| 127 |
+
|
| 128 |
+
.qmn_fill_blank.small { width: 50px; }
|
| 129 |
+
.qmn_fill_blank.medium { width: 100px; }
|
| 130 |
+
.qmn_fill_blank.large { width: 150px; }
|
| 131 |
+
|
| 132 |
+
|
| 133 |
+
/* Alerts and error state */
|
| 134 |
+
|
| 135 |
+
.qmn_error_message {
|
| 136 |
+
color: #da4f49;
|
| 137 |
+
border: 1px solid #da4f49;
|
| 138 |
+
background: #F2DEDE;
|
| 139 |
+
display: block;
|
| 140 |
+
padding: 10px;
|
| 141 |
+
margin: 10px 0 10px 0;
|
| 142 |
+
-webkit-border-radius: 3px;
|
| 143 |
+
-moz-border-radius: 3px;
|
| 144 |
+
border-radius: 3px;
|
| 145 |
+
}
|
| 146 |
+
|
| 147 |
+
.quiz_section.qmn_error select,
|
| 148 |
+
.quiz_section.qmn_error textarea,
|
| 149 |
+
.quiz_section.qmn_error input[type="text"],
|
| 150 |
+
.quiz_section.qmn_error input[type="number"],
|
| 151 |
+
.quiz_section.qmn_error input[type="email"],
|
| 152 |
+
.quiz_section.qmn_error select:hover,
|
| 153 |
+
.quiz_section.qmn_error textarea:hover,
|
| 154 |
+
.quiz_section.qmn_error input[type="text"]:hover,
|
| 155 |
+
.quiz_section.qmn_error input[type="number"]:hover,
|
| 156 |
+
.quiz_section.qmn_error input[type="email"]:hover,
|
| 157 |
+
.quiz_section.qmn_error select:focus,
|
| 158 |
+
.quiz_section.qmn_error textarea:focus,
|
| 159 |
+
.quiz_section.qmn_error input[type="text"]:focus,
|
| 160 |
+
.quiz_section.qmn_error input[type="number"]:focus,
|
| 161 |
+
.quiz_section.qmn_error input[type="email"]:focus {
|
| 162 |
+
position: relative;
|
| 163 |
+
border: 1px solid #da4f49;
|
| 164 |
+
background: #F2DEDE;
|
| 165 |
+
-webkit-box-shadow: 0 0 10px rgba(218, 79, 73, .35);
|
| 166 |
+
-moz-box-shadow: 0 0 10px rgba(218, 79, 73, .35);
|
| 167 |
+
box-shadow: 0 0 10px rgba(218, 79, 73, .35);
|
| 168 |
+
}
|
| 169 |
+
|
| 170 |
+
.quiz_section.qmn_error { position: relative; }
|
| 171 |
+
|
| 172 |
+
.quiz_section.qmn_error:after {
|
| 173 |
+
content: '-';
|
| 174 |
+
color: #fff;
|
| 175 |
+
font-size: 20px;
|
| 176 |
+
font-family: 'Helvetica', Arial, sans-serif;
|
| 177 |
+
background: #da4f49;
|
| 178 |
+
text-align: center;
|
| 179 |
+
display: inline-block;
|
| 180 |
+
height: 20px;
|
| 181 |
+
line-height: 20px;
|
| 182 |
+
width: 20px;
|
| 183 |
+
position: absolute;
|
| 184 |
+
right: 0;
|
| 185 |
+
top: 12px;
|
| 186 |
+
-webkit-border-radius: 20px;
|
| 187 |
+
-moz-border-radius: 20px;
|
| 188 |
+
border-radius: 20px;
|
| 189 |
+
|
| 190 |
+
}
|
| 191 |
+
|
| 192 |
+
.quiz_section.qmn_error .qmn_radio_answers,
|
| 193 |
+
.quiz_section.qmn_error .qmn_check_answers,
|
| 194 |
+
.quiz_section.qmn_error .qmn_accept_answers {
|
| 195 |
+
border: 1px solid #da4f49;
|
| 196 |
+
background: #F2DEDE;
|
| 197 |
+
padding: 5px;
|
| 198 |
+
-webkit-border-radius: 3px;
|
| 199 |
+
-moz-border-radius: 3px;
|
| 200 |
+
border-radius: 3px;
|
| 201 |
+
}
|
| 202 |
+
|
| 203 |
+
.qmn_btn, .btn {
|
| 204 |
+
display: relative;
|
| 205 |
+
display: inline-block;
|
| 206 |
+
color: #666 !important;
|
| 207 |
+
background: #ccc !important;
|
| 208 |
+
font-size: 16px !important;
|
| 209 |
+
padding: 10px 20px 10px 20px !important;
|
| 210 |
+
text-decoration: none !important;
|
| 211 |
+
-webkit-border-radius: 3px;
|
| 212 |
+
-moz-border-radius: 3px;
|
| 213 |
+
border-radius: 3px;
|
| 214 |
+
-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,.05);
|
| 215 |
+
-moz-box-shadow: 0px 0px 6px rgba(0,0,0,.05);
|
| 216 |
+
box-shadow: 0px 0px 6px rgba(0,0,0,.05);
|
| 217 |
+
-webkit-transition: background .25s ease-out;
|
| 218 |
+
-moz-transition: background .25s ease-out;
|
| 219 |
+
transition: background .25s ease-out;
|
| 220 |
+
}
|
| 221 |
+
|
| 222 |
+
.qmn_btn:hover, .btn:hover {
|
| 223 |
+
color: #fff;
|
| 224 |
+
background: #666;
|
| 225 |
+
}
|
| 226 |
+
|
| 227 |
+
.qmn_pagination {
|
| 228 |
+
position: relative;
|
| 229 |
+
display: block;
|
| 230 |
+
padding: 15px 0 15px 0;
|
| 231 |
+
border-top: 1px solid #f3f3f3;
|
| 232 |
+
}
|
| 233 |
+
|
| 234 |
+
.mlw_previous,
|
| 235 |
+
.mlw_next {
|
| 236 |
+
position: absolute;
|
| 237 |
+
top: 15px;
|
| 238 |
+
font-size: 14px;
|
| 239 |
+
text-transform: uppercase;
|
| 240 |
+
}
|
| 241 |
+
|
| 242 |
+
.mlw_previous { left: 0; }
|
| 243 |
+
.mlw_next { right: 0; }
|
| 244 |
+
|
| 245 |
+
.qmn_page_counter_message {
|
| 246 |
+
font-size: 14px;
|
| 247 |
+
color: #999;
|
| 248 |
+
width: 100px;
|
| 249 |
+
padding: 10px 20px 10px 20px;
|
| 250 |
+
margin: 0 auto;
|
| 251 |
+
text-align: center;
|
| 252 |
+
}
|
| 253 |
+
|
| 254 |
+
.mlw_qmn_timer {
|
| 255 |
+
z-index: 999;
|
| 256 |
+
display: inline-block;
|
| 257 |
+
position: fixed;
|
| 258 |
+
bottom: 20px;
|
| 259 |
+
right: 20px;
|
| 260 |
+
height: 50px;
|
| 261 |
+
line-height: 50px;
|
| 262 |
+
padding: 0 20px;
|
| 263 |
+
background: #34495e;
|
| 264 |
+
color: #fff;
|
| 265 |
+
-webkit-border-radius: 50px;
|
| 266 |
+
-moz-border-radius: 50px;
|
| 267 |
+
border-radius: 50px;
|
| 268 |
+
-webkit-box-shadow: 0 4px 8px rgba(0,0,0,.10);
|
| 269 |
+
-moz-box-shadow: 0 4px 8px rgba(0,0,0,.10);
|
| 270 |
+
box-shadow: 0 4px 8px rgba(0,0,0,.10);
|
| 271 |
+
}
|
| 272 |
+
|
| 273 |
+
.qmn_quiz_container select,
|
| 274 |
+
.qmn_quiz_container textarea,
|
| 275 |
+
.qmn_quiz_container input[type="text"],
|
| 276 |
+
.qmn_quiz_container input[type="email"],
|
| 277 |
+
.qmn_quiz_container input[type="number"] {
|
| 278 |
+
background: #fff;
|
| 279 |
+
border: 1px solid #9b59b6;
|
| 280 |
+
}
|
| 281 |
+
|
| 282 |
+
.qmn_quiz_container select:hover,
|
| 283 |
+
.qmn_quiz_container textarea:hover,
|
| 284 |
+
.qmn_quiz_container input[type="text"]:hover,
|
| 285 |
+
.qmn_quiz_container input[type="email"]:hover,
|
| 286 |
+
.qmn_quiz_container input[type="number"]:hover,
|
| 287 |
+
.qmn_quiz_container select:focus,
|
| 288 |
+
.qmn_quiz_container textarea:focus,
|
| 289 |
+
.qmn_quiz_container input[type="text"]:focus,
|
| 290 |
+
.qmn_quiz_container input[type="email"]:focus,
|
| 291 |
+
.qmn_quiz_container input[type="number"]:focus{
|
| 292 |
+
outline: 0;
|
| 293 |
+
background: #fff;
|
| 294 |
+
border: 1px solid #9b59b6;
|
| 295 |
+
-webkit-box-shadow: 0 0 10px rgba(155, 89, 182, .35);
|
| 296 |
+
-moz-box-shadow: 0 0 10px rgba(155, 89, 182, .35);
|
| 297 |
+
box-shadow: 0 0 10px rgba(155, 89, 182, .35);
|
| 298 |
+
}
|
| 299 |
+
|
| 300 |
+
.qmn_quiz_container .qmn_btn, .qmn_quiz_container .btn {
|
| 301 |
+
color: #fff !important;
|
| 302 |
+
background: #9b59b6 !important;
|
| 303 |
+
}
|
| 304 |
+
|
| 305 |
+
.qmn_quiz_container .qmn_btn:hover, .qmn_quiz_container .btn:hover { background: #8e44ad !important; }
|
| 306 |
+
|
| 307 |
+
/* Helper classes */
|
| 308 |
+
|
| 309 |
+
.border-none { border: 0; }
|
| 310 |
+
.margin-bottom { margin-bottom: 20px; }
|
| 311 |
+
|
| 312 |
+
|
| 313 |
+
@media (max-width: 768px) {
|
| 314 |
+
|
| 315 |
+
.quiz_section label,
|
| 316 |
+
.quiz_section .mlw_qmn_question {
|
| 317 |
+
font-size: 18px;
|
| 318 |
+
}
|
| 319 |
+
|
| 320 |
+
.quiz_section.radio .qmn_mc_answer_wrap label {
|
| 321 |
+
font-size: 18px;
|
| 322 |
+
}
|
| 323 |
+
|
| 324 |
+
.quiz_section p.form-help { font-size: 14px; }
|
| 325 |
+
|
| 326 |
+
.quiz_section select,
|
| 327 |
+
.quiz_section textarea,
|
| 328 |
+
.quiz_section input[type="text"] {
|
| 329 |
+
display: block;
|
| 330 |
+
width: 100%;
|
| 331 |
+
padding: 12px 10px 12px 10px;
|
| 332 |
+
font-size: 16px;
|
| 333 |
+
}
|
| 334 |
+
|
| 335 |
+
.mlw_previous,
|
| 336 |
+
.mlw_next,
|
| 337 |
+
.qmn_page_counter_message {
|
| 338 |
+
display: inline-block;
|
| 339 |
+
max-width: 100px;
|
| 340 |
+
text-align: center;
|
| 341 |
+
position: relative;
|
| 342 |
+
top: 0;
|
| 343 |
+
left: 0;
|
| 344 |
+
right: 0;
|
| 345 |
+
}
|
| 346 |
+
|
| 347 |
+
.mlw_qmn_timer { top: 20px; }
|
| 348 |
+
|
| 349 |
+
}
|
templates/qmn_base.css
ADDED
|
@@ -0,0 +1,497 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.ui-tooltip {
|
| 2 |
+
max-width: 500px !important;
|
| 3 |
+
}
|
| 4 |
+
.ui-tooltip-content {
|
| 5 |
+
max-width: 500px !important;
|
| 6 |
+
}
|
| 7 |
+
.mlw_qmn_hint_link {
|
| 8 |
+
text-decoration:underline;
|
| 9 |
+
color:rgb(0,0,255);
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
.mlw_qmn_message_before {
|
| 14 |
+
color: #666;
|
| 15 |
+
font-size: 18px;
|
| 16 |
+
display: block;
|
| 17 |
+
margin-bottom: 20px;
|
| 18 |
+
padding-bottom: 10px;
|
| 19 |
+
border-bottom: 1px solid #f3f3f3;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
.mlw_qmn_message_before p { margin: 0 0 10px 0; }
|
| 23 |
+
|
| 24 |
+
.quiz_section {
|
| 25 |
+
display: block;
|
| 26 |
+
border: 0;
|
| 27 |
+
margin: 0;
|
| 28 |
+
padding: 15px 0 15px 0;
|
| 29 |
+
font-size: 16px;
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
.quiz_section.border {
|
| 33 |
+
border-top: 1px solid #f3f3f3;
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
.quiz_section label,
|
| 37 |
+
.quiz_section .mlw_qmn_question {
|
| 38 |
+
display: block;
|
| 39 |
+
margin: 0 0 5px 0;
|
| 40 |
+
font-weight: bold;
|
| 41 |
+
-webkit-box-sizing: border-box;
|
| 42 |
+
-moz-box-sizing: border-box;
|
| 43 |
+
box-sizing: border-box;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
label.inline,
|
| 47 |
+
label.inline .mlw_qmn_question,
|
| 48 |
+
.quiz_section.inline .mlw_horizontal_multiple {
|
| 49 |
+
display: inline-block;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
.quiz_section p.form-help {
|
| 53 |
+
margin: 5px 0 0 0;
|
| 54 |
+
font-size: 12px;
|
| 55 |
+
color: #999;
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
.quiz_section iframe { margin-bottom: 10px; }
|
| 59 |
+
|
| 60 |
+
.qmn_mc_answer_wrap {
|
| 61 |
+
display: block;
|
| 62 |
+
margin: 5px 0 5px 0;
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
.quiz_section .qmn_radio_answers label,
|
| 66 |
+
.quiz_section .qmn_check_answers label,
|
| 67 |
+
.quiz_section .qmn_accept_answers label {
|
| 68 |
+
display: inline;
|
| 69 |
+
margin: 0 10px 0 5px;
|
| 70 |
+
font-weight: normal;
|
| 71 |
+
font-size: 14px;
|
| 72 |
+
cursor: pointer;
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
.quiz_section.text-block h2 {
|
| 76 |
+
display: block;
|
| 77 |
+
margin: 0 0 10px 0;
|
| 78 |
+
}
|
| 79 |
+
|
| 80 |
+
.quiz_section select,
|
| 81 |
+
.quiz_section textarea,
|
| 82 |
+
.quiz_section input[type="text"],
|
| 83 |
+
.quiz_section input[type="email"],
|
| 84 |
+
.quiz_section input[type="number"] {
|
| 85 |
+
width: 70%;
|
| 86 |
+
display: inline-block;
|
| 87 |
+
padding: 10px 8px 10px 8px;
|
| 88 |
+
font-size: 14px;
|
| 89 |
+
color: #555;
|
| 90 |
+
background: #fff;
|
| 91 |
+
border: 1px solid #e3e3e3;
|
| 92 |
+
-webkit-border-radius: 3px;
|
| 93 |
+
-moz-border-radius: 3px;
|
| 94 |
+
border-radius: 3px;
|
| 95 |
+
-webkit-box-sizing: border-box;
|
| 96 |
+
-moz-box-sizing: border-box;
|
| 97 |
+
box-sizing: border-box;
|
| 98 |
+
-webkit-transition: all .5s ease-in-out;
|
| 99 |
+
-moz-transition: all .5s ease-in-out;
|
| 100 |
+
transition: all .5s ease-in-out;
|
| 101 |
+
}
|
| 102 |
+
|
| 103 |
+
.quiz_section select { height: 38px; }
|
| 104 |
+
|
| 105 |
+
.quiz_section select:hover,
|
| 106 |
+
.quiz_section textarea:hover,
|
| 107 |
+
.quiz_section input[type="text"]:hover,
|
| 108 |
+
.quiz_section input[type="email"]:hover,
|
| 109 |
+
.quiz_section input[type="number"]:hover,
|
| 110 |
+
.quiz_section select:focus,
|
| 111 |
+
.quiz_section textarea:focus,
|
| 112 |
+
.quiz_section input[type="text"]:focus,
|
| 113 |
+
.quiz_section input[type="email"]:focus,
|
| 114 |
+
.quiz_section input[type="number"]:focus {
|
| 115 |
+
outline: 0;
|
| 116 |
+
background: #f7f7f7;
|
| 117 |
+
border: 1px solid #bdc3c7;
|
| 118 |
+
-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.15);
|
| 119 |
+
-moz-box-shadow: 0 0 10px rgba(0,0,0,0.15);
|
| 120 |
+
box-shadow: 0 0 10px rgba(0,0,0,0.15);
|
| 121 |
+
}
|
| 122 |
+
|
| 123 |
+
.qmn_fill_blank {
|
| 124 |
+
margin: 0 5px 0 5px;
|
| 125 |
+
width: 100px !important;
|
| 126 |
+
}
|
| 127 |
+
|
| 128 |
+
.qmn_fill_blank.small { width: 50px; }
|
| 129 |
+
.qmn_fill_blank.medium { width: 100px; }
|
| 130 |
+
.qmn_fill_blank.large { width: 150px; }
|
| 131 |
+
|
| 132 |
+
|
| 133 |
+
/* Alerts and error state */
|
| 134 |
+
|
| 135 |
+
.qmn_error_message {
|
| 136 |
+
color: #da4f49;
|
| 137 |
+
border: 1px solid #da4f49;
|
| 138 |
+
background: #F2DEDE;
|
| 139 |
+
display: block;
|
| 140 |
+
padding: 10px;
|
| 141 |
+
margin: 10px 0 10px 0;
|
| 142 |
+
-webkit-border-radius: 3px;
|
| 143 |
+
-moz-border-radius: 3px;
|
| 144 |
+
border-radius: 3px;
|
| 145 |
+
}
|
| 146 |
+
|
| 147 |
+
.quiz_section.qmn_error select,
|
| 148 |
+
.quiz_section.qmn_error textarea,
|
| 149 |
+
.quiz_section.qmn_error input[type="text"],
|
| 150 |
+
.quiz_section.qmn_error input[type="number"],
|
| 151 |
+
.quiz_section.qmn_error input[type="email"],
|
| 152 |
+
.quiz_section.qmn_error select:hover,
|
| 153 |
+
.quiz_section.qmn_error textarea:hover,
|
| 154 |
+
.quiz_section.qmn_error input[type="text"]:hover,
|
| 155 |
+
.quiz_section.qmn_error input[type="number"]:hover,
|
| 156 |
+
.quiz_section.qmn_error input[type="email"]:hover,
|
| 157 |
+
.quiz_section.qmn_error select:focus,
|
| 158 |
+
.quiz_section.qmn_error textarea:focus,
|
| 159 |
+
.quiz_section.qmn_error input[type="text"]:focus,
|
| 160 |
+
.quiz_section.qmn_error input[type="number"]:focus,
|
| 161 |
+
.quiz_section.qmn_error input[type="email"]:focus {
|
| 162 |
+
position: relative;
|
| 163 |
+
border: 1px solid #da4f49;
|
| 164 |
+
background: #F2DEDE;
|
| 165 |
+
-webkit-box-shadow: 0 0 10px rgba(218, 79, 73, .35);
|
| 166 |
+
-moz-box-shadow: 0 0 10px rgba(218, 79, 73, .35);
|
| 167 |
+
box-shadow: 0 0 10px rgba(218, 79, 73, .35);
|
| 168 |
+
}
|
| 169 |
+
|
| 170 |
+
.quiz_section.qmn_error { position: relative; }
|
| 171 |
+
|
| 172 |
+
.quiz_section.qmn_error:after {
|
| 173 |
+
content: '-';
|
| 174 |
+
color: #fff;
|
| 175 |
+
font-size: 20px;
|
| 176 |
+
font-family: 'Helvetica', Arial, sans-serif;
|
| 177 |
+
background: #da4f49;
|
| 178 |
+
text-align: center;
|
| 179 |
+
display: inline-block;
|
| 180 |
+
height: 20px;
|
| 181 |
+
line-height: 20px;
|
| 182 |
+
width: 20px;
|
| 183 |
+
position: absolute;
|
| 184 |
+
right: 0;
|
| 185 |
+
top: 12px;
|
| 186 |
+
-webkit-border-radius: 20px;
|
| 187 |
+
-moz-border-radius: 20px;
|
| 188 |
+
border-radius: 20px;
|
| 189 |
+
|
| 190 |
+
}
|
| 191 |
+
|
| 192 |
+
.quiz_section.qmn_error .qmn_radio_answers,
|
| 193 |
+
.quiz_section.qmn_error .qmn_check_answers,
|
| 194 |
+
.quiz_section.qmn_error .qmn_accept_answers {
|
| 195 |
+
border: 1px solid #da4f49;
|
| 196 |
+
background: #F2DEDE;
|
| 197 |
+
padding: 5px;
|
| 198 |
+
-webkit-border-radius: 3px;
|
| 199 |
+
-moz-border-radius: 3px;
|
| 200 |
+
border-radius: 3px;
|
| 201 |
+
}
|
| 202 |
+
|
| 203 |
+
.qmn_btn, .btn {
|
| 204 |
+
display: relative;
|
| 205 |
+
display: inline-block;
|
| 206 |
+
color: #666 !important;
|
| 207 |
+
background: #ccc !important;
|
| 208 |
+
font-size: 16px !important;
|
| 209 |
+
padding: 10px 20px 10px 20px !important;
|
| 210 |
+
text-decoration: none !important;
|
| 211 |
+
-webkit-border-radius: 3px;
|
| 212 |
+
-moz-border-radius: 3px;
|
| 213 |
+
border-radius: 3px;
|
| 214 |
+
-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,.05);
|
| 215 |
+
-moz-box-shadow: 0px 0px 6px rgba(0,0,0,.05);
|
| 216 |
+
box-shadow: 0px 0px 6px rgba(0,0,0,.05);
|
| 217 |
+
-webkit-transition: background .25s ease-out;
|
| 218 |
+
-moz-transition: background .25s ease-out;
|
| 219 |
+
transition: background .25s ease-out;
|
| 220 |
+
}
|
| 221 |
+
|
| 222 |
+
.qmn_btn:hover, .btn:hover {
|
| 223 |
+
color: #fff;
|
| 224 |
+
background: #666;
|
| 225 |
+
}
|
| 226 |
+
|
| 227 |
+
.qmn_pagination {
|
| 228 |
+
position: relative;
|
| 229 |
+
display: block;
|
| 230 |
+
padding: 15px 0 15px 0;
|
| 231 |
+
border-top: 1px solid #f3f3f3;
|
| 232 |
+
}
|
| 233 |
+
|
| 234 |
+
.mlw_previous,
|
| 235 |
+
.mlw_next {
|
| 236 |
+
position: absolute;
|
| 237 |
+
top: 15px;
|
| 238 |
+
font-size: 14px;
|
| 239 |
+
text-transform: uppercase;
|
| 240 |
+
}
|
| 241 |
+
|
| 242 |
+
.mlw_previous { left: 0; }
|
| 243 |
+
.mlw_next { right: 0; }
|
| 244 |
+
|
| 245 |
+
.qmn_page_counter_message {
|
| 246 |
+
font-size: 14px;
|
| 247 |
+
color: #999;
|
| 248 |
+
width: 100px;
|
| 249 |
+
padding: 10px 20px 10px 20px;
|
| 250 |
+
margin: 0 auto;
|
| 251 |
+
text-align: center;
|
| 252 |
+
}
|
| 253 |
+
|
| 254 |
+
.mlw_qmn_timer {
|
| 255 |
+
z-index: 999;
|
| 256 |
+
display: inline-block;
|
| 257 |
+
position: fixed;
|
| 258 |
+
bottom: 20px;
|
| 259 |
+
right: 20px;
|
| 260 |
+
height: 50px;
|
| 261 |
+
line-height: 50px;
|
| 262 |
+
padding: 0 20px;
|
| 263 |
+
background: #34495e;
|
| 264 |
+
color: #fff;
|
| 265 |
+
-webkit-border-radius: 50px;
|
| 266 |
+
-moz-border-radius: 50px;
|
| 267 |
+
border-radius: 50px;
|
| 268 |
+
-webkit-box-shadow: 0 4px 8px rgba(0,0,0,.10);
|
| 269 |
+
-moz-box-shadow: 0 4px 8px rgba(0,0,0,.10);
|
| 270 |
+
box-shadow: 0 4px 8px rgba(0,0,0,.10);
|
| 271 |
+
}
|
| 272 |
+
|
| 273 |
+
/* Amethyst */
|
| 274 |
+
|
| 275 |
+
.amethyst .select,
|
| 276 |
+
.amethyst textarea,
|
| 277 |
+
.amethyst input[type="text"],
|
| 278 |
+
.amethyst input[type="email"],
|
| 279 |
+
.amethyst input[type="number"] {
|
| 280 |
+
background: #fff;
|
| 281 |
+
border: 1px solid #9b59b6;
|
| 282 |
+
}
|
| 283 |
+
|
| 284 |
+
.amethyst select:hover,
|
| 285 |
+
.amethyst textarea:hover,
|
| 286 |
+
.amethyst input[type="text"]:hover,
|
| 287 |
+
.amethyst input[type="email"]:hover,
|
| 288 |
+
.amethyst input[type="number"]:hover,
|
| 289 |
+
.amethyst select:focus,
|
| 290 |
+
.amethyst textarea:focus,
|
| 291 |
+
.amethyst input[type="text"]:focus,
|
| 292 |
+
.amethyst input[type="email"]:focus,
|
| 293 |
+
.amethyst input[type="number"]:focus {
|
| 294 |
+
outline: 0;
|
| 295 |
+
background: #fff;
|
| 296 |
+
border: 1px solid #9b59b6;
|
| 297 |
+
-webkit-box-shadow: 0 0 10px rgba(155, 89, 182, .35);
|
| 298 |
+
-moz-box-shadow: 0 0 10px rgba(155, 89, 182, .35);
|
| 299 |
+
box-shadow: 0 0 10px rgba(155, 89, 182, .35);
|
| 300 |
+
}
|
| 301 |
+
|
| 302 |
+
.amethyst .btn {
|
| 303 |
+
color: #fff;
|
| 304 |
+
background: #9b59b6;
|
| 305 |
+
}
|
| 306 |
+
|
| 307 |
+
.amethyst .btn:hover { background: #8e44ad; }
|
| 308 |
+
|
| 309 |
+
|
| 310 |
+
/* emerald */
|
| 311 |
+
|
| 312 |
+
.emerald .select,
|
| 313 |
+
.emerald textarea,
|
| 314 |
+
.emerald input[type="text"],
|
| 315 |
+
.emerald input[type="email"],
|
| 316 |
+
.emerald input[type="number"] {
|
| 317 |
+
background: #fff;
|
| 318 |
+
border: 1px solid #2ecc71;
|
| 319 |
+
}
|
| 320 |
+
|
| 321 |
+
.emerald select:hover,
|
| 322 |
+
.emerald textarea:hover,
|
| 323 |
+
.emerald input[type="text"]:hover,
|
| 324 |
+
.emerald input[type="email"]:hover,
|
| 325 |
+
.emerald input[type="number"]:hover,
|
| 326 |
+
.emerald select:focus,
|
| 327 |
+
.emerald textarea:focus,
|
| 328 |
+
.emerald input[type="text"]:focus,
|
| 329 |
+
.emerald input[type="email"]:focus,
|
| 330 |
+
.emerald input[type="number"]:focus{
|
| 331 |
+
outline: 0;
|
| 332 |
+
background: #fff;
|
| 333 |
+
border: 1px solid #2ecc71;
|
| 334 |
+
-webkit-box-shadow: 0 0 10px rgba(46, 204, 113, .35);
|
| 335 |
+
-moz-box-shadow: 0 0 10px rgba(46, 204, 113, .35);
|
| 336 |
+
box-shadow: 0 0 10px rgba(46, 204, 113, .35);
|
| 337 |
+
}
|
| 338 |
+
|
| 339 |
+
.emerald .btn {
|
| 340 |
+
color: #fff;
|
| 341 |
+
background: #2ecc71;
|
| 342 |
+
}
|
| 343 |
+
|
| 344 |
+
.emerald .btn:hover { background: #27ae60; }
|
| 345 |
+
|
| 346 |
+
/* turquoise */
|
| 347 |
+
|
| 348 |
+
.turquoise .select,
|
| 349 |
+
.turquoise textarea,
|
| 350 |
+
.turquoise input[type="text"],
|
| 351 |
+
.turquoise input[type="email"],
|
| 352 |
+
.turquoise input[type="number"] {
|
| 353 |
+
background: #fff;
|
| 354 |
+
border: 1px solid #1abc9c;
|
| 355 |
+
}
|
| 356 |
+
|
| 357 |
+
.turquoise select:hover,
|
| 358 |
+
.turquoise textarea:hover,
|
| 359 |
+
.turquoise input[type="text"]:hover,
|
| 360 |
+
.turquoise input[type="email"]:hover,
|
| 361 |
+
.turquoise input[type="number"]:hover,
|
| 362 |
+
.turquoise select:focus,
|
| 363 |
+
.turquoise textarea:focus,
|
| 364 |
+
.turquoise input[type="text"]:focus,
|
| 365 |
+
.turquoise input[type="email"]:focus,
|
| 366 |
+
.turquoise input[type="number"]:focus{
|
| 367 |
+
outline: 0;
|
| 368 |
+
background: #fff;
|
| 369 |
+
border: 1px solid #1abc9c;
|
| 370 |
+
-webkit-box-shadow: 0 0 10px rgba(26, 188, 156, .35);
|
| 371 |
+
-moz-box-shadow: 0 0 10px rgba(26, 188, 156, .35);
|
| 372 |
+
box-shadow: 0 0 10px rgba(26, 188, 156, .35);
|
| 373 |
+
}
|
| 374 |
+
|
| 375 |
+
.turquoise .btn {
|
| 376 |
+
color: #fff;
|
| 377 |
+
background: #1abc9c;
|
| 378 |
+
}
|
| 379 |
+
|
| 380 |
+
.turquoise .btn:hover { background: #16a085; }
|
| 381 |
+
|
| 382 |
+
/* turquoise */
|
| 383 |
+
|
| 384 |
+
.turquoise .select,
|
| 385 |
+
.turquoise textarea,
|
| 386 |
+
.turquoise input[type="text"],
|
| 387 |
+
.turquoise input[type="email"],
|
| 388 |
+
.turquoise input[type="number"] {
|
| 389 |
+
background: #fff;
|
| 390 |
+
border: 1px solid #1abc9c;
|
| 391 |
+
}
|
| 392 |
+
|
| 393 |
+
.turquoise select:hover,
|
| 394 |
+
.turquoise textarea:hover,
|
| 395 |
+
.turquoise input[type="text"]:hover,
|
| 396 |
+
.turquoise input[type="email"]:hover,
|
| 397 |
+
.turquoise input[type="number"]:hover,
|
| 398 |
+
.turquoise select:focus,
|
| 399 |
+
.turquoise textarea:focus,
|
| 400 |
+
.turquoise input[type="text"]:focus,
|
| 401 |
+
.turquoise input[type="email"]:focus,
|
| 402 |
+
.turquoise input[type="number"]:focus{
|
| 403 |
+
outline: 0;
|
| 404 |
+
background: #fff;
|
| 405 |
+
border: 1px solid #1abc9c;
|
| 406 |
+
-webkit-box-shadow: 0 0 10px rgba(26, 188, 156, .35);
|
| 407 |
+
-moz-box-shadow: 0 0 10px rgba(26, 188, 156, .35);
|
| 408 |
+
box-shadow: 0 0 10px rgba(26, 188, 156, .35);
|
| 409 |
+
}
|
| 410 |
+
|
| 411 |
+
.turquoise .btn {
|
| 412 |
+
color: #fff;
|
| 413 |
+
background: #1abc9c;
|
| 414 |
+
}
|
| 415 |
+
|
| 416 |
+
.turquoise .btn:hover { background: #16a085; }
|
| 417 |
+
|
| 418 |
+
|
| 419 |
+
/* blue */
|
| 420 |
+
|
| 421 |
+
.blue .select,
|
| 422 |
+
.blue textarea,
|
| 423 |
+
.blue input[type="text"],
|
| 424 |
+
.blue input[type="email"],
|
| 425 |
+
.blue input[type="number"] {
|
| 426 |
+
background: #fff;
|
| 427 |
+
border: 1px solid #3498db;
|
| 428 |
+
}
|
| 429 |
+
|
| 430 |
+
.blue select:hover,
|
| 431 |
+
.blue textarea:hover,
|
| 432 |
+
.blue input[type="text"]:hover,
|
| 433 |
+
.blue input[type="email"]:hover,
|
| 434 |
+
.blue input[type="number"]:hover,
|
| 435 |
+
.blue select:focus,
|
| 436 |
+
.blue textarea:focus,
|
| 437 |
+
.blue input[type="text"]:focus,
|
| 438 |
+
.blue input[type="email"]:focus,
|
| 439 |
+
.blue input[type="number"]:focus{
|
| 440 |
+
outline: 0;
|
| 441 |
+
background: #fff;
|
| 442 |
+
border: 1px solid #3498db;
|
| 443 |
+
-webkit-box-shadow: 0 0 10px rgba(52, 152, 219, .35);
|
| 444 |
+
-moz-box-shadow: 0 0 10px rgba(52, 152, 219, .35);
|
| 445 |
+
box-shadow: 0 0 10px rgba(52, 152, 219, .35);
|
| 446 |
+
}
|
| 447 |
+
|
| 448 |
+
.blue .btn {
|
| 449 |
+
color: #fff;
|
| 450 |
+
background: #3498db;
|
| 451 |
+
}
|
| 452 |
+
|
| 453 |
+
.blue .btn:hover { background: #2980b9; }
|
| 454 |
+
|
| 455 |
+
/* Helper classes */
|
| 456 |
+
|
| 457 |
+
.border-none { border: 0; }
|
| 458 |
+
.margin-bottom { margin-bottom: 20px; }
|
| 459 |
+
|
| 460 |
+
|
| 461 |
+
@media (max-width: 768px) {
|
| 462 |
+
|
| 463 |
+
.quiz_section label,
|
| 464 |
+
.quiz_section .mlw_qmn_question {
|
| 465 |
+
font-size: 18px;
|
| 466 |
+
}
|
| 467 |
+
|
| 468 |
+
.quiz_section.radio .qmn_mc_answer_wrap label {
|
| 469 |
+
font-size: 18px;
|
| 470 |
+
}
|
| 471 |
+
|
| 472 |
+
.quiz_section p.form-help { font-size: 14px; }
|
| 473 |
+
|
| 474 |
+
.quiz_section select,
|
| 475 |
+
.quiz_section textarea,
|
| 476 |
+
.quiz_section input[type="text"] {
|
| 477 |
+
display: block;
|
| 478 |
+
width: 100%;
|
| 479 |
+
padding: 12px 10px 12px 10px;
|
| 480 |
+
font-size: 16px;
|
| 481 |
+
}
|
| 482 |
+
|
| 483 |
+
.mlw_previous,
|
| 484 |
+
.mlw_next,
|
| 485 |
+
.qmn_page_counter_message {
|
| 486 |
+
display: inline-block;
|
| 487 |
+
max-width: 100px;
|
| 488 |
+
text-align: center;
|
| 489 |
+
position: relative;
|
| 490 |
+
top: 0;
|
| 491 |
+
left: 0;
|
| 492 |
+
right: 0;
|
| 493 |
+
}
|
| 494 |
+
|
| 495 |
+
.mlw_qmn_timer { top: 20px; }
|
| 496 |
+
|
| 497 |
+
}
|
templates/qmn_emerald.css
ADDED
|
@@ -0,0 +1,349 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.ui-tooltip {
|
| 2 |
+
max-width: 500px !important;
|
| 3 |
+
}
|
| 4 |
+
.ui-tooltip-content {
|
| 5 |
+
max-width: 500px !important;
|
| 6 |
+
}
|
| 7 |
+
.mlw_qmn_hint_link {
|
| 8 |
+
text-decoration:underline;
|
| 9 |
+
color:rgb(0,0,255);
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
.mlw_qmn_message_before {
|
| 14 |
+
color: #666;
|
| 15 |
+
font-size: 18px;
|
| 16 |
+
display: block;
|
| 17 |
+
margin-bottom: 20px;
|
| 18 |
+
padding-bottom: 10px;
|
| 19 |
+
border-bottom: 1px solid #f3f3f3;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
.mlw_qmn_message_before p { margin: 0 0 10px 0; }
|
| 23 |
+
|
| 24 |
+
.quiz_section {
|
| 25 |
+
display: block;
|
| 26 |
+
border: 0;
|
| 27 |
+
margin: 0;
|
| 28 |
+
padding: 15px 0 15px 0;
|
| 29 |
+
font-size: 16px;
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
.quiz_section.border {
|
| 33 |
+
border-top: 1px solid #f3f3f3;
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
.quiz_section label,
|
| 37 |
+
.quiz_section .mlw_qmn_question {
|
| 38 |
+
display: block;
|
| 39 |
+
margin: 0 0 5px 0;
|
| 40 |
+
font-weight: bold;
|
| 41 |
+
-webkit-box-sizing: border-box;
|
| 42 |
+
-moz-box-sizing: border-box;
|
| 43 |
+
box-sizing: border-box;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
label.inline,
|
| 47 |
+
label.inline .mlw_qmn_question,
|
| 48 |
+
.quiz_section.inline .mlw_horizontal_multiple {
|
| 49 |
+
display: inline-block;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
.quiz_section p.form-help {
|
| 53 |
+
margin: 5px 0 0 0;
|
| 54 |
+
font-size: 12px;
|
| 55 |
+
color: #999;
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
.quiz_section iframe { margin-bottom: 10px; }
|
| 59 |
+
|
| 60 |
+
.qmn_mc_answer_wrap {
|
| 61 |
+
display: block;
|
| 62 |
+
margin: 5px 0 5px 0;
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
.quiz_section .qmn_radio_answers label,
|
| 66 |
+
.quiz_section .qmn_check_answers label,
|
| 67 |
+
.quiz_section .qmn_accept_answers label {
|
| 68 |
+
display: inline;
|
| 69 |
+
margin: 0 10px 0 5px;
|
| 70 |
+
font-weight: normal;
|
| 71 |
+
font-size: 14px;
|
| 72 |
+
cursor: pointer;
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
.quiz_section.text-block h2 {
|
| 76 |
+
display: block;
|
| 77 |
+
margin: 0 0 10px 0;
|
| 78 |
+
}
|
| 79 |
+
|
| 80 |
+
.quiz_section select,
|
| 81 |
+
.quiz_section textarea,
|
| 82 |
+
.quiz_section input[type="text"],
|
| 83 |
+
.quiz_section input[type="email"],
|
| 84 |
+
.quiz_section input[type="number"] {
|
| 85 |
+
width: 70%;
|
| 86 |
+
display: inline-block;
|
| 87 |
+
padding: 10px 8px 10px 8px;
|
| 88 |
+
font-size: 14px;
|
| 89 |
+
color: #555;
|
| 90 |
+
background: #fff;
|
| 91 |
+
border: 1px solid #e3e3e3;
|
| 92 |
+
-webkit-border-radius: 3px;
|
| 93 |
+
-moz-border-radius: 3px;
|
| 94 |
+
border-radius: 3px;
|
| 95 |
+
-webkit-box-sizing: border-box;
|
| 96 |
+
-moz-box-sizing: border-box;
|
| 97 |
+
box-sizing: border-box;
|
| 98 |
+
-webkit-transition: all .5s ease-in-out;
|
| 99 |
+
-moz-transition: all .5s ease-in-out;
|
| 100 |
+
transition: all .5s ease-in-out;
|
| 101 |
+
}
|
| 102 |
+
|
| 103 |
+
.quiz_section select { height: 38px; }
|
| 104 |
+
|
| 105 |
+
.quiz_section select:hover,
|
| 106 |
+
.quiz_section textarea:hover,
|
| 107 |
+
.quiz_section input[type="text"]:hover,
|
| 108 |
+
.quiz_section input[type="email"]:hover,
|
| 109 |
+
.quiz_section input[type="number"]:hover,
|
| 110 |
+
.quiz_section select:focus,
|
| 111 |
+
.quiz_section textarea:focus,
|
| 112 |
+
.quiz_section input[type="text"]:focus,
|
| 113 |
+
.quiz_section input[type="email"]:focus,
|
| 114 |
+
.quiz_section input[type="number"]:focus {
|
| 115 |
+
outline: 0;
|
| 116 |
+
background: #f7f7f7;
|
| 117 |
+
border: 1px solid #bdc3c7;
|
| 118 |
+
-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.15);
|
| 119 |
+
-moz-box-shadow: 0 0 10px rgba(0,0,0,0.15);
|
| 120 |
+
box-shadow: 0 0 10px rgba(0,0,0,0.15);
|
| 121 |
+
}
|
| 122 |
+
|
| 123 |
+
.qmn_fill_blank {
|
| 124 |
+
margin: 0 5px 0 5px;
|
| 125 |
+
width: 100px !important;
|
| 126 |
+
}
|
| 127 |
+
|
| 128 |
+
.qmn_fill_blank.small { width: 50px; }
|
| 129 |
+
.qmn_fill_blank.medium { width: 100px; }
|
| 130 |
+
.qmn_fill_blank.large { width: 150px; }
|
| 131 |
+
|
| 132 |
+
|
| 133 |
+
/* Alerts and error state */
|
| 134 |
+
|
| 135 |
+
.qmn_error_message {
|
| 136 |
+
color: #da4f49;
|
| 137 |
+
border: 1px solid #da4f49;
|
| 138 |
+
background: #F2DEDE;
|
| 139 |
+
display: block;
|
| 140 |
+
padding: 10px;
|
| 141 |
+
margin: 10px 0 10px 0;
|
| 142 |
+
-webkit-border-radius: 3px;
|
| 143 |
+
-moz-border-radius: 3px;
|
| 144 |
+
border-radius: 3px;
|
| 145 |
+
}
|
| 146 |
+
|
| 147 |
+
.quiz_section.qmn_error select,
|
| 148 |
+
.quiz_section.qmn_error textarea,
|
| 149 |
+
.quiz_section.qmn_error input[type="text"],
|
| 150 |
+
.quiz_section.qmn_error input[type="number"],
|
| 151 |
+
.quiz_section.qmn_error input[type="email"],
|
| 152 |
+
.quiz_section.qmn_error select:hover,
|
| 153 |
+
.quiz_section.qmn_error textarea:hover,
|
| 154 |
+
.quiz_section.qmn_error input[type="text"]:hover,
|
| 155 |
+
.quiz_section.qmn_error input[type="number"]:hover,
|
| 156 |
+
.quiz_section.qmn_error input[type="email"]:hover,
|
| 157 |
+
.quiz_section.qmn_error select:focus,
|
| 158 |
+
.quiz_section.qmn_error textarea:focus,
|
| 159 |
+
.quiz_section.qmn_error input[type="text"]:focus,
|
| 160 |
+
.quiz_section.qmn_error input[type="number"]:focus,
|
| 161 |
+
.quiz_section.qmn_error input[type="email"]:focus {
|
| 162 |
+
position: relative;
|
| 163 |
+
border: 1px solid #da4f49;
|
| 164 |
+
background: #F2DEDE;
|
| 165 |
+
-webkit-box-shadow: 0 0 10px rgba(218, 79, 73, .35);
|
| 166 |
+
-moz-box-shadow: 0 0 10px rgba(218, 79, 73, .35);
|
| 167 |
+
box-shadow: 0 0 10px rgba(218, 79, 73, .35);
|
| 168 |
+
}
|
| 169 |
+
|
| 170 |
+
.quiz_section.qmn_error { position: relative; }
|
| 171 |
+
|
| 172 |
+
.quiz_section.qmn_error:after {
|
| 173 |
+
content: '-';
|
| 174 |
+
color: #fff;
|
| 175 |
+
font-size: 20px;
|
| 176 |
+
font-family: 'Helvetica', Arial, sans-serif;
|
| 177 |
+
background: #da4f49;
|
| 178 |
+
text-align: center;
|
| 179 |
+
display: inline-block;
|
| 180 |
+
height: 20px;
|
| 181 |
+
line-height: 20px;
|
| 182 |
+
width: 20px;
|
| 183 |
+
position: absolute;
|
| 184 |
+
right: 0;
|
| 185 |
+
top: 12px;
|
| 186 |
+
-webkit-border-radius: 20px;
|
| 187 |
+
-moz-border-radius: 20px;
|
| 188 |
+
border-radius: 20px;
|
| 189 |
+
|
| 190 |
+
}
|
| 191 |
+
|
| 192 |
+
.quiz_section.qmn_error .qmn_radio_answers,
|
| 193 |
+
.quiz_section.qmn_error .qmn_check_answers,
|
| 194 |
+
.quiz_section.qmn_error .qmn_accept_answers {
|
| 195 |
+
border: 1px solid #da4f49;
|
| 196 |
+
background: #F2DEDE;
|
| 197 |
+
padding: 5px;
|
| 198 |
+
-webkit-border-radius: 3px;
|
| 199 |
+
-moz-border-radius: 3px;
|
| 200 |
+
border-radius: 3px;
|
| 201 |
+
}
|
| 202 |
+
|
| 203 |
+
.qmn_btn, .btn {
|
| 204 |
+
display: relative;
|
| 205 |
+
display: inline-block;
|
| 206 |
+
color: #666 !important;
|
| 207 |
+
background: #ccc !important;
|
| 208 |
+
font-size: 16px !important;
|
| 209 |
+
padding: 10px 20px 10px 20px !important;
|
| 210 |
+
text-decoration: none !important;
|
| 211 |
+
-webkit-border-radius: 3px;
|
| 212 |
+
-moz-border-radius: 3px;
|
| 213 |
+
border-radius: 3px;
|
| 214 |
+
-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,.05);
|
| 215 |
+
-moz-box-shadow: 0px 0px 6px rgba(0,0,0,.05);
|
| 216 |
+
box-shadow: 0px 0px 6px rgba(0,0,0,.05);
|
| 217 |
+
-webkit-transition: background .25s ease-out;
|
| 218 |
+
-moz-transition: background .25s ease-out;
|
| 219 |
+
transition: background .25s ease-out;
|
| 220 |
+
}
|
| 221 |
+
|
| 222 |
+
.qmn_btn:hover, .btn:hover {
|
| 223 |
+
color: #fff;
|
| 224 |
+
background: #666;
|
| 225 |
+
}
|
| 226 |
+
|
| 227 |
+
.qmn_pagination {
|
| 228 |
+
position: relative;
|
| 229 |
+
display: block;
|
| 230 |
+
padding: 15px 0 15px 0;
|
| 231 |
+
border-top: 1px solid #f3f3f3;
|
| 232 |
+
}
|
| 233 |
+
|
| 234 |
+
.mlw_previous,
|
| 235 |
+
.mlw_next {
|
| 236 |
+
position: absolute;
|
| 237 |
+
top: 15px;
|
| 238 |
+
font-size: 14px;
|
| 239 |
+
text-transform: uppercase;
|
| 240 |
+
}
|
| 241 |
+
|
| 242 |
+
.mlw_previous { left: 0; }
|
| 243 |
+
.mlw_next { right: 0; }
|
| 244 |
+
|
| 245 |
+
.qmn_page_counter_message {
|
| 246 |
+
font-size: 14px;
|
| 247 |
+
color: #999;
|
| 248 |
+
width: 100px;
|
| 249 |
+
padding: 10px 20px 10px 20px;
|
| 250 |
+
margin: 0 auto;
|
| 251 |
+
text-align: center;
|
| 252 |
+
}
|
| 253 |
+
|
| 254 |
+
.mlw_qmn_timer {
|
| 255 |
+
z-index: 999;
|
| 256 |
+
display: inline-block;
|
| 257 |
+
position: fixed;
|
| 258 |
+
bottom: 20px;
|
| 259 |
+
right: 20px;
|
| 260 |
+
height: 50px;
|
| 261 |
+
line-height: 50px;
|
| 262 |
+
padding: 0 20px;
|
| 263 |
+
background: #34495e;
|
| 264 |
+
color: #fff;
|
| 265 |
+
-webkit-border-radius: 50px;
|
| 266 |
+
-moz-border-radius: 50px;
|
| 267 |
+
border-radius: 50px;
|
| 268 |
+
-webkit-box-shadow: 0 4px 8px rgba(0,0,0,.10);
|
| 269 |
+
-moz-box-shadow: 0 4px 8px rgba(0,0,0,.10);
|
| 270 |
+
box-shadow: 0 4px 8px rgba(0,0,0,.10);
|
| 271 |
+
}
|
| 272 |
+
|
| 273 |
+
.qmn_quiz_container select,
|
| 274 |
+
.qmn_quiz_container textarea,
|
| 275 |
+
.qmn_quiz_container input[type="text"],
|
| 276 |
+
.qmn_quiz_container input[type="email"],
|
| 277 |
+
.qmn_quiz_container input[type="number"] {
|
| 278 |
+
background: #fff;
|
| 279 |
+
border: 1px solid #2ecc71;
|
| 280 |
+
}
|
| 281 |
+
|
| 282 |
+
.qmn_quiz_container select:hover,
|
| 283 |
+
.qmn_quiz_container textarea:hover,
|
| 284 |
+
.qmn_quiz_container input[type="text"]:hover,
|
| 285 |
+
.qmn_quiz_container input[type="email"]:hover,
|
| 286 |
+
.qmn_quiz_container input[type="number"]:hover,
|
| 287 |
+
.qmn_quiz_container select:focus,
|
| 288 |
+
.qmn_quiz_container textarea:focus,
|
| 289 |
+
.qmn_quiz_container input[type="text"]:focus,
|
| 290 |
+
.qmn_quiz_container input[type="email"]:focus,
|
| 291 |
+
.qmn_quiz_container input[type="number"]:focus{
|
| 292 |
+
outline: 0;
|
| 293 |
+
background: #fff;
|
| 294 |
+
border: 1px solid #2ecc71;
|
| 295 |
+
-webkit-box-shadow: 0 0 10px rgba(46, 204, 113, .35);
|
| 296 |
+
-moz-box-shadow: 0 0 10px rgba(46, 204, 113, .35);
|
| 297 |
+
box-shadow: 0 0 10px rgba(46, 204, 113, .35);
|
| 298 |
+
}
|
| 299 |
+
|
| 300 |
+
.qmn_quiz_container .qmn_btn, .qmn_quiz_container .btn {
|
| 301 |
+
color: #fff !important;
|
| 302 |
+
background: #2ecc71 !important;
|
| 303 |
+
}
|
| 304 |
+
|
| 305 |
+
.qmn_quiz_container .qmn_btn:hover, .qmn_quiz_container .btn:hover { background: #27ae60 !important; }
|
| 306 |
+
|
| 307 |
+
/* Helper classes */
|
| 308 |
+
|
| 309 |
+
.border-none { border: 0; }
|
| 310 |
+
.margin-bottom { margin-bottom: 20px; }
|
| 311 |
+
|
| 312 |
+
|
| 313 |
+
@media (max-width: 768px) {
|
| 314 |
+
|
| 315 |
+
.quiz_section label,
|
| 316 |
+
.quiz_section .mlw_qmn_question {
|
| 317 |
+
font-size: 18px;
|
| 318 |
+
}
|
| 319 |
+
|
| 320 |
+
.quiz_section.radio .qmn_mc_answer_wrap label {
|
| 321 |
+
font-size: 18px;
|
| 322 |
+
}
|
| 323 |
+
|
| 324 |
+
.quiz_section p.form-help { font-size: 14px; }
|
| 325 |
+
|
| 326 |
+
.quiz_section select,
|
| 327 |
+
.quiz_section textarea,
|
| 328 |
+
.quiz_section input[type="text"] {
|
| 329 |
+
display: block;
|
| 330 |
+
width: 100%;
|
| 331 |
+
padding: 12px 10px 12px 10px;
|
| 332 |
+
font-size: 16px;
|
| 333 |
+
}
|
| 334 |
+
|
| 335 |
+
.mlw_previous,
|
| 336 |
+
.mlw_next,
|
| 337 |
+
.qmn_page_counter_message {
|
| 338 |
+
display: inline-block;
|
| 339 |
+
max-width: 100px;
|
| 340 |
+
text-align: center;
|
| 341 |
+
position: relative;
|
| 342 |
+
top: 0;
|
| 343 |
+
left: 0;
|
| 344 |
+
right: 0;
|
| 345 |
+
}
|
| 346 |
+
|
| 347 |
+
.mlw_qmn_timer { top: 20px; }
|
| 348 |
+
|
| 349 |
+
}
|
templates/qmn_gray.css
ADDED
|
@@ -0,0 +1,315 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.ui-tooltip {
|
| 2 |
+
max-width: 500px !important;
|
| 3 |
+
}
|
| 4 |
+
.ui-tooltip-content {
|
| 5 |
+
max-width: 500px !important;
|
| 6 |
+
}
|
| 7 |
+
.mlw_qmn_hint_link {
|
| 8 |
+
text-decoration:underline;
|
| 9 |
+
color:rgb(0,0,255);
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
.mlw_qmn_message_before {
|
| 14 |
+
color: #666;
|
| 15 |
+
font-size: 18px;
|
| 16 |
+
display: block;
|
| 17 |
+
margin-bottom: 20px;
|
| 18 |
+
padding-bottom: 10px;
|
| 19 |
+
border-bottom: 1px solid #f3f3f3;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
.mlw_qmn_message_before p { margin: 0 0 10px 0; }
|
| 23 |
+
|
| 24 |
+
.quiz_section {
|
| 25 |
+
display: block;
|
| 26 |
+
border: 0;
|
| 27 |
+
margin: 0;
|
| 28 |
+
padding: 15px 0 15px 0;
|
| 29 |
+
font-size: 16px;
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
.quiz_section.border {
|
| 33 |
+
border-top: 1px solid #f3f3f3;
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
.quiz_section label,
|
| 37 |
+
.quiz_section .mlw_qmn_question {
|
| 38 |
+
display: block;
|
| 39 |
+
margin: 0 0 5px 0;
|
| 40 |
+
font-weight: bold;
|
| 41 |
+
-webkit-box-sizing: border-box;
|
| 42 |
+
-moz-box-sizing: border-box;
|
| 43 |
+
box-sizing: border-box;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
label.inline,
|
| 47 |
+
label.inline .mlw_qmn_question,
|
| 48 |
+
.quiz_section.inline .mlw_horizontal_multiple {
|
| 49 |
+
display: inline-block;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
.quiz_section p.form-help {
|
| 53 |
+
margin: 5px 0 0 0;
|
| 54 |
+
font-size: 12px;
|
| 55 |
+
color: #999;
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
.quiz_section iframe { margin-bottom: 10px; }
|
| 59 |
+
|
| 60 |
+
.qmn_mc_answer_wrap {
|
| 61 |
+
display: block;
|
| 62 |
+
margin: 5px 0 5px 0;
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
.quiz_section .qmn_radio_answers label,
|
| 66 |
+
.quiz_section .qmn_check_answers label,
|
| 67 |
+
.quiz_section .qmn_accept_answers label {
|
| 68 |
+
display: inline;
|
| 69 |
+
margin: 0 10px 0 5px;
|
| 70 |
+
font-weight: normal;
|
| 71 |
+
font-size: 14px;
|
| 72 |
+
cursor: pointer;
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
.quiz_section.text-block h2 {
|
| 76 |
+
display: block;
|
| 77 |
+
margin: 0 0 10px 0;
|
| 78 |
+
}
|
| 79 |
+
|
| 80 |
+
.quiz_section select,
|
| 81 |
+
.quiz_section textarea,
|
| 82 |
+
.quiz_section input[type="text"],
|
| 83 |
+
.quiz_section input[type="email"],
|
| 84 |
+
.quiz_section input[type="number"] {
|
| 85 |
+
width: 70%;
|
| 86 |
+
display: inline-block;
|
| 87 |
+
padding: 10px 8px 10px 8px;
|
| 88 |
+
font-size: 14px;
|
| 89 |
+
color: #555;
|
| 90 |
+
background: #fff;
|
| 91 |
+
border: 1px solid #e3e3e3;
|
| 92 |
+
-webkit-border-radius: 3px;
|
| 93 |
+
-moz-border-radius: 3px;
|
| 94 |
+
border-radius: 3px;
|
| 95 |
+
-webkit-box-sizing: border-box;
|
| 96 |
+
-moz-box-sizing: border-box;
|
| 97 |
+
box-sizing: border-box;
|
| 98 |
+
-webkit-transition: all .5s ease-in-out;
|
| 99 |
+
-moz-transition: all .5s ease-in-out;
|
| 100 |
+
transition: all .5s ease-in-out;
|
| 101 |
+
}
|
| 102 |
+
|
| 103 |
+
.quiz_section select { height: 38px; }
|
| 104 |
+
|
| 105 |
+
.quiz_section select:hover,
|
| 106 |
+
.quiz_section textarea:hover,
|
| 107 |
+
.quiz_section input[type="text"]:hover,
|
| 108 |
+
.quiz_section input[type="email"]:hover,
|
| 109 |
+
.quiz_section input[type="number"]:hover,
|
| 110 |
+
.quiz_section select:focus,
|
| 111 |
+
.quiz_section textarea:focus,
|
| 112 |
+
.quiz_section input[type="text"]:focus,
|
| 113 |
+
.quiz_section input[type="email"]:focus,
|
| 114 |
+
.quiz_section input[type="number"]:focus {
|
| 115 |
+
outline: 0;
|
| 116 |
+
background: #f7f7f7;
|
| 117 |
+
border: 1px solid #bdc3c7;
|
| 118 |
+
-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.15);
|
| 119 |
+
-moz-box-shadow: 0 0 10px rgba(0,0,0,0.15);
|
| 120 |
+
box-shadow: 0 0 10px rgba(0,0,0,0.15);
|
| 121 |
+
}
|
| 122 |
+
|
| 123 |
+
.qmn_fill_blank {
|
| 124 |
+
margin: 0 5px 0 5px;
|
| 125 |
+
width: 100px !important;
|
| 126 |
+
}
|
| 127 |
+
|
| 128 |
+
.qmn_fill_blank.small { width: 50px; }
|
| 129 |
+
.qmn_fill_blank.medium { width: 100px; }
|
| 130 |
+
.qmn_fill_blank.large { width: 150px; }
|
| 131 |
+
|
| 132 |
+
|
| 133 |
+
/* Alerts and error state */
|
| 134 |
+
|
| 135 |
+
.qmn_error_message {
|
| 136 |
+
color: #da4f49;
|
| 137 |
+
border: 1px solid #da4f49;
|
| 138 |
+
background: #F2DEDE;
|
| 139 |
+
display: block;
|
| 140 |
+
padding: 10px;
|
| 141 |
+
margin: 10px 0 10px 0;
|
| 142 |
+
-webkit-border-radius: 3px;
|
| 143 |
+
-moz-border-radius: 3px;
|
| 144 |
+
border-radius: 3px;
|
| 145 |
+
}
|
| 146 |
+
|
| 147 |
+
.quiz_section.qmn_error select,
|
| 148 |
+
.quiz_section.qmn_error textarea,
|
| 149 |
+
.quiz_section.qmn_error input[type="text"],
|
| 150 |
+
.quiz_section.qmn_error input[type="number"],
|
| 151 |
+
.quiz_section.qmn_error input[type="email"],
|
| 152 |
+
.quiz_section.qmn_error select:hover,
|
| 153 |
+
.quiz_section.qmn_error textarea:hover,
|
| 154 |
+
.quiz_section.qmn_error input[type="text"]:hover,
|
| 155 |
+
.quiz_section.qmn_error input[type="number"]:hover,
|
| 156 |
+
.quiz_section.qmn_error input[type="email"]:hover,
|
| 157 |
+
.quiz_section.qmn_error select:focus,
|
| 158 |
+
.quiz_section.qmn_error textarea:focus,
|
| 159 |
+
.quiz_section.qmn_error input[type="text"]:focus,
|
| 160 |
+
.quiz_section.qmn_error input[type="number"]:focus,
|
| 161 |
+
.quiz_section.qmn_error input[type="email"]:focus {
|
| 162 |
+
position: relative;
|
| 163 |
+
border: 1px solid #da4f49;
|
| 164 |
+
background: #F2DEDE;
|
| 165 |
+
-webkit-box-shadow: 0 0 10px rgba(218, 79, 73, .35);
|
| 166 |
+
-moz-box-shadow: 0 0 10px rgba(218, 79, 73, .35);
|
| 167 |
+
box-shadow: 0 0 10px rgba(218, 79, 73, .35);
|
| 168 |
+
}
|
| 169 |
+
|
| 170 |
+
.quiz_section.qmn_error { position: relative; }
|
| 171 |
+
|
| 172 |
+
.quiz_section.qmn_error:after {
|
| 173 |
+
content: '-';
|
| 174 |
+
color: #fff;
|
| 175 |
+
font-size: 20px;
|
| 176 |
+
font-family: 'Helvetica', Arial, sans-serif;
|
| 177 |
+
background: #da4f49;
|
| 178 |
+
text-align: center;
|
| 179 |
+
display: inline-block;
|
| 180 |
+
height: 20px;
|
| 181 |
+
line-height: 20px;
|
| 182 |
+
width: 20px;
|
| 183 |
+
position: absolute;
|
| 184 |
+
right: 0;
|
| 185 |
+
top: 12px;
|
| 186 |
+
-webkit-border-radius: 20px;
|
| 187 |
+
-moz-border-radius: 20px;
|
| 188 |
+
border-radius: 20px;
|
| 189 |
+
|
| 190 |
+
}
|
| 191 |
+
|
| 192 |
+
.quiz_section.qmn_error .qmn_radio_answers,
|
| 193 |
+
.quiz_section.qmn_error .qmn_check_answers,
|
| 194 |
+
.quiz_section.qmn_error .qmn_accept_answers {
|
| 195 |
+
border: 1px solid #da4f49;
|
| 196 |
+
background: #F2DEDE;
|
| 197 |
+
padding: 5px;
|
| 198 |
+
-webkit-border-radius: 3px;
|
| 199 |
+
-moz-border-radius: 3px;
|
| 200 |
+
border-radius: 3px;
|
| 201 |
+
}
|
| 202 |
+
|
| 203 |
+
.qmn_btn, .btn {
|
| 204 |
+
display: relative;
|
| 205 |
+
display: inline-block;
|
| 206 |
+
color: #666 !important;
|
| 207 |
+
background: #ccc !important;
|
| 208 |
+
font-size: 16px !important;
|
| 209 |
+
padding: 10px 20px 10px 20px !important;
|
| 210 |
+
text-decoration: none !important;
|
| 211 |
+
-webkit-border-radius: 3px;
|
| 212 |
+
-moz-border-radius: 3px;
|
| 213 |
+
border-radius: 3px;
|
| 214 |
+
-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,.05);
|
| 215 |
+
-moz-box-shadow: 0px 0px 6px rgba(0,0,0,.05);
|
| 216 |
+
box-shadow: 0px 0px 6px rgba(0,0,0,.05);
|
| 217 |
+
-webkit-transition: background .25s ease-out;
|
| 218 |
+
-moz-transition: background .25s ease-out;
|
| 219 |
+
transition: background .25s ease-out;
|
| 220 |
+
}
|
| 221 |
+
|
| 222 |
+
.qmn_btn:hover, .btn:hover {
|
| 223 |
+
color: #fff;
|
| 224 |
+
background: #666;
|
| 225 |
+
}
|
| 226 |
+
|
| 227 |
+
.qmn_pagination {
|
| 228 |
+
position: relative;
|
| 229 |
+
display: block;
|
| 230 |
+
padding: 15px 0 15px 0;
|
| 231 |
+
border-top: 1px solid #f3f3f3;
|
| 232 |
+
}
|
| 233 |
+
|
| 234 |
+
.mlw_previous,
|
| 235 |
+
.mlw_next {
|
| 236 |
+
position: absolute;
|
| 237 |
+
top: 15px;
|
| 238 |
+
font-size: 14px;
|
| 239 |
+
text-transform: uppercase;
|
| 240 |
+
}
|
| 241 |
+
|
| 242 |
+
.mlw_previous { left: 0; }
|
| 243 |
+
.mlw_next { right: 0; }
|
| 244 |
+
|
| 245 |
+
.qmn_page_counter_message {
|
| 246 |
+
font-size: 14px;
|
| 247 |
+
color: #999;
|
| 248 |
+
width: 100px;
|
| 249 |
+
padding: 10px 20px 10px 20px;
|
| 250 |
+
margin: 0 auto;
|
| 251 |
+
text-align: center;
|
| 252 |
+
}
|
| 253 |
+
|
| 254 |
+
.mlw_qmn_timer {
|
| 255 |
+
z-index: 999;
|
| 256 |
+
display: inline-block;
|
| 257 |
+
position: fixed;
|
| 258 |
+
bottom: 20px;
|
| 259 |
+
right: 20px;
|
| 260 |
+
height: 50px;
|
| 261 |
+
line-height: 50px;
|
| 262 |
+
padding: 0 20px;
|
| 263 |
+
background: #34495e;
|
| 264 |
+
color: #fff;
|
| 265 |
+
-webkit-border-radius: 50px;
|
| 266 |
+
-moz-border-radius: 50px;
|
| 267 |
+
border-radius: 50px;
|
| 268 |
+
-webkit-box-shadow: 0 4px 8px rgba(0,0,0,.10);
|
| 269 |
+
-moz-box-shadow: 0 4px 8px rgba(0,0,0,.10);
|
| 270 |
+
box-shadow: 0 4px 8px rgba(0,0,0,.10);
|
| 271 |
+
}
|
| 272 |
+
|
| 273 |
+
/* Helper classes */
|
| 274 |
+
|
| 275 |
+
.border-none { border: 0; }
|
| 276 |
+
.margin-bottom { margin-bottom: 20px; }
|
| 277 |
+
|
| 278 |
+
|
| 279 |
+
@media (max-width: 768px) {
|
| 280 |
+
|
| 281 |
+
.quiz_section label,
|
| 282 |
+
.quiz_section .mlw_qmn_question {
|
| 283 |
+
font-size: 18px;
|
| 284 |
+
}
|
| 285 |
+
|
| 286 |
+
.quiz_section.radio .qmn_mc_answer_wrap label {
|
| 287 |
+
font-size: 18px;
|
| 288 |
+
}
|
| 289 |
+
|
| 290 |
+
.quiz_section p.form-help { font-size: 14px; }
|
| 291 |
+
|
| 292 |
+
.quiz_section select,
|
| 293 |
+
.quiz_section textarea,
|
| 294 |
+
.quiz_section input[type="text"] {
|
| 295 |
+
display: block;
|
| 296 |
+
width: 100%;
|
| 297 |
+
padding: 12px 10px 12px 10px;
|
| 298 |
+
font-size: 16px;
|
| 299 |
+
}
|
| 300 |
+
|
| 301 |
+
.mlw_previous,
|
| 302 |
+
.mlw_next,
|
| 303 |
+
.qmn_page_counter_message {
|
| 304 |
+
display: inline-block;
|
| 305 |
+
max-width: 100px;
|
| 306 |
+
text-align: center;
|
| 307 |
+
position: relative;
|
| 308 |
+
top: 0;
|
| 309 |
+
left: 0;
|
| 310 |
+
right: 0;
|
| 311 |
+
}
|
| 312 |
+
|
| 313 |
+
.mlw_qmn_timer { top: 20px; }
|
| 314 |
+
|
| 315 |
+
}
|
templates/qmn_primary.css
CHANGED
|
@@ -1,96 +1,349 @@
|
|
| 1 |
-
.
|
| 2 |
-
display: inline;
|
| 3 |
-
}
|
| 4 |
-
.mlw_qmn_quiz input[type=radio] {
|
| 5 |
-
vertical-align: middle;
|
| 6 |
-
}
|
| 7 |
-
.ui-tooltip
|
| 8 |
-
{
|
| 9 |
max-width: 500px !important;
|
| 10 |
}
|
| 11 |
-
.ui-tooltip-content
|
| 12 |
-
{
|
| 13 |
max-width: 500px !important;
|
| 14 |
}
|
| 15 |
-
.
|
| 16 |
-
|
| 17 |
-
color:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
}
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
}
|
| 24 |
-
|
| 25 |
-
{
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
}
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
}
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
}
|
| 39 |
-
|
| 40 |
-
|
|
|
|
|
|
|
| 41 |
}
|
| 42 |
-
div.quiz_section {
|
| 43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
}
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
}
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
|
|
|
|
|
|
| 57 |
text-align: center;
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
.
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
.
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 96 |
}
|
| 1 |
+
.ui-tooltip {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
max-width: 500px !important;
|
| 3 |
}
|
| 4 |
+
.ui-tooltip-content {
|
|
|
|
| 5 |
max-width: 500px !important;
|
| 6 |
}
|
| 7 |
+
.mlw_qmn_hint_link {
|
| 8 |
+
text-decoration:underline;
|
| 9 |
+
color:rgb(0,0,255);
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
.mlw_qmn_message_before {
|
| 14 |
+
color: #666;
|
| 15 |
+
font-size: 18px;
|
| 16 |
+
display: block;
|
| 17 |
+
margin-bottom: 20px;
|
| 18 |
+
padding-bottom: 10px;
|
| 19 |
+
border-bottom: 1px solid #f3f3f3;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
.mlw_qmn_message_before p { margin: 0 0 10px 0; }
|
| 23 |
+
|
| 24 |
+
.quiz_section {
|
| 25 |
+
display: block;
|
| 26 |
+
border: 0;
|
| 27 |
+
margin: 0;
|
| 28 |
+
padding: 15px 0 15px 0;
|
| 29 |
+
font-size: 16px;
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
.quiz_section.border {
|
| 33 |
+
border-top: 1px solid #f3f3f3;
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
.quiz_section label,
|
| 37 |
+
.quiz_section .mlw_qmn_question {
|
| 38 |
+
display: block;
|
| 39 |
+
margin: 0 0 5px 0;
|
| 40 |
+
font-weight: bold;
|
| 41 |
+
-webkit-box-sizing: border-box;
|
| 42 |
+
-moz-box-sizing: border-box;
|
| 43 |
+
box-sizing: border-box;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
label.inline,
|
| 47 |
+
label.inline .mlw_qmn_question,
|
| 48 |
+
.quiz_section.inline .mlw_horizontal_multiple {
|
| 49 |
+
display: inline-block;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
.quiz_section p.form-help {
|
| 53 |
+
margin: 5px 0 0 0;
|
| 54 |
+
font-size: 12px;
|
| 55 |
+
color: #999;
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
.quiz_section iframe { margin-bottom: 10px; }
|
| 59 |
+
|
| 60 |
+
.qmn_mc_answer_wrap {
|
| 61 |
+
display: block;
|
| 62 |
+
margin: 5px 0 5px 0;
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
.quiz_section .qmn_radio_answers label,
|
| 66 |
+
.quiz_section .qmn_check_answers label,
|
| 67 |
+
.quiz_section .qmn_accept_answers label {
|
| 68 |
+
display: inline;
|
| 69 |
+
margin: 0 10px 0 5px;
|
| 70 |
+
font-weight: normal;
|
| 71 |
+
font-size: 14px;
|
| 72 |
+
cursor: pointer;
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
.quiz_section.text-block h2 {
|
| 76 |
+
display: block;
|
| 77 |
+
margin: 0 0 10px 0;
|
| 78 |
+
}
|
| 79 |
+
|
| 80 |
+
.quiz_section select,
|
| 81 |
+
.quiz_section textarea,
|
| 82 |
+
.quiz_section input[type="text"],
|
| 83 |
+
.quiz_section input[type="email"],
|
| 84 |
+
.quiz_section input[type="number"] {
|
| 85 |
+
width: 70%;
|
| 86 |
+
display: inline-block;
|
| 87 |
+
padding: 10px 8px 10px 8px;
|
| 88 |
+
font-size: 14px;
|
| 89 |
+
color: #555;
|
| 90 |
+
background: #fff;
|
| 91 |
+
border: 1px solid #e3e3e3;
|
| 92 |
+
-webkit-border-radius: 3px;
|
| 93 |
+
-moz-border-radius: 3px;
|
| 94 |
+
border-radius: 3px;
|
| 95 |
+
-webkit-box-sizing: border-box;
|
| 96 |
+
-moz-box-sizing: border-box;
|
| 97 |
+
box-sizing: border-box;
|
| 98 |
+
-webkit-transition: all .5s ease-in-out;
|
| 99 |
+
-moz-transition: all .5s ease-in-out;
|
| 100 |
+
transition: all .5s ease-in-out;
|
| 101 |
+
}
|
| 102 |
+
|
| 103 |
+
.quiz_section select { height: 38px; }
|
| 104 |
+
|
| 105 |
+
.quiz_section select:hover,
|
| 106 |
+
.quiz_section textarea:hover,
|
| 107 |
+
.quiz_section input[type="text"]:hover,
|
| 108 |
+
.quiz_section input[type="email"]:hover,
|
| 109 |
+
.quiz_section input[type="number"]:hover,
|
| 110 |
+
.quiz_section select:focus,
|
| 111 |
+
.quiz_section textarea:focus,
|
| 112 |
+
.quiz_section input[type="text"]:focus,
|
| 113 |
+
.quiz_section input[type="email"]:focus,
|
| 114 |
+
.quiz_section input[type="number"]:focus {
|
| 115 |
+
outline: 0;
|
| 116 |
+
background: #f7f7f7;
|
| 117 |
+
border: 1px solid #bdc3c7;
|
| 118 |
+
-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.15);
|
| 119 |
+
-moz-box-shadow: 0 0 10px rgba(0,0,0,0.15);
|
| 120 |
+
box-shadow: 0 0 10px rgba(0,0,0,0.15);
|
| 121 |
+
}
|
| 122 |
+
|
| 123 |
+
.qmn_fill_blank {
|
| 124 |
+
margin: 0 5px 0 5px;
|
| 125 |
+
width: 100px !important;
|
| 126 |
+
}
|
| 127 |
+
|
| 128 |
+
.qmn_fill_blank.small { width: 50px; }
|
| 129 |
+
.qmn_fill_blank.medium { width: 100px; }
|
| 130 |
+
.qmn_fill_blank.large { width: 150px; }
|
| 131 |
+
|
| 132 |
+
|
| 133 |
+
/* Alerts and error state */
|
| 134 |
+
|
| 135 |
+
.qmn_error_message {
|
| 136 |
+
color: #da4f49;
|
| 137 |
+
border: 1px solid #da4f49;
|
| 138 |
+
background: #F2DEDE;
|
| 139 |
+
display: block;
|
| 140 |
+
padding: 10px;
|
| 141 |
+
margin: 10px 0 10px 0;
|
| 142 |
+
-webkit-border-radius: 3px;
|
| 143 |
+
-moz-border-radius: 3px;
|
| 144 |
+
border-radius: 3px;
|
| 145 |
}
|
| 146 |
+
|
| 147 |
+
.quiz_section.qmn_error select,
|
| 148 |
+
.quiz_section.qmn_error textarea,
|
| 149 |
+
.quiz_section.qmn_error input[type="text"],
|
| 150 |
+
.quiz_section.qmn_error input[type="number"],
|
| 151 |
+
.quiz_section.qmn_error input[type="email"],
|
| 152 |
+
.quiz_section.qmn_error select:hover,
|
| 153 |
+
.quiz_section.qmn_error textarea:hover,
|
| 154 |
+
.quiz_section.qmn_error input[type="text"]:hover,
|
| 155 |
+
.quiz_section.qmn_error input[type="number"]:hover,
|
| 156 |
+
.quiz_section.qmn_error input[type="email"]:hover,
|
| 157 |
+
.quiz_section.qmn_error select:focus,
|
| 158 |
+
.quiz_section.qmn_error textarea:focus,
|
| 159 |
+
.quiz_section.qmn_error input[type="text"]:focus,
|
| 160 |
+
.quiz_section.qmn_error input[type="number"]:focus,
|
| 161 |
+
.quiz_section.qmn_error input[type="email"]:focus {
|
| 162 |
+
position: relative;
|
| 163 |
+
border: 1px solid #da4f49;
|
| 164 |
+
background: #F2DEDE;
|
| 165 |
+
-webkit-box-shadow: 0 0 10px rgba(218, 79, 73, .35);
|
| 166 |
+
-moz-box-shadow: 0 0 10px rgba(218, 79, 73, .35);
|
| 167 |
+
box-shadow: 0 0 10px rgba(218, 79, 73, .35);
|
| 168 |
}
|
| 169 |
+
|
| 170 |
+
.quiz_section.qmn_error { position: relative; }
|
| 171 |
+
|
| 172 |
+
.quiz_section.qmn_error:after {
|
| 173 |
+
content: '-';
|
| 174 |
+
color: #fff;
|
| 175 |
+
font-size: 20px;
|
| 176 |
+
font-family: 'Helvetica', Arial, sans-serif;
|
| 177 |
+
background: #da4f49;
|
| 178 |
+
text-align: center;
|
| 179 |
+
display: inline-block;
|
| 180 |
+
height: 20px;
|
| 181 |
+
line-height: 20px;
|
| 182 |
+
width: 20px;
|
| 183 |
+
position: absolute;
|
| 184 |
+
right: 0;
|
| 185 |
+
top: 12px;
|
| 186 |
+
-webkit-border-radius: 20px;
|
| 187 |
+
-moz-border-radius: 20px;
|
| 188 |
+
border-radius: 20px;
|
| 189 |
+
|
| 190 |
}
|
| 191 |
+
|
| 192 |
+
.quiz_section.qmn_error .qmn_radio_answers,
|
| 193 |
+
.quiz_section.qmn_error .qmn_check_answers,
|
| 194 |
+
.quiz_section.qmn_error .qmn_accept_answers {
|
| 195 |
+
border: 1px solid #da4f49;
|
| 196 |
+
background: #F2DEDE;
|
| 197 |
+
padding: 5px;
|
| 198 |
+
-webkit-border-radius: 3px;
|
| 199 |
+
-moz-border-radius: 3px;
|
| 200 |
+
border-radius: 3px;
|
| 201 |
}
|
| 202 |
+
|
| 203 |
+
.qmn_btn, .btn {
|
| 204 |
+
display: relative;
|
| 205 |
+
display: inline-block;
|
| 206 |
+
color: #666 !important;
|
| 207 |
+
background: #ccc !important;
|
| 208 |
+
font-size: 16px !important;
|
| 209 |
+
padding: 10px 20px 10px 20px !important;
|
| 210 |
+
text-decoration: none !important;
|
| 211 |
+
-webkit-border-radius: 3px;
|
| 212 |
+
-moz-border-radius: 3px;
|
| 213 |
+
border-radius: 3px;
|
| 214 |
+
-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,.05);
|
| 215 |
+
-moz-box-shadow: 0px 0px 6px rgba(0,0,0,.05);
|
| 216 |
+
box-shadow: 0px 0px 6px rgba(0,0,0,.05);
|
| 217 |
+
-webkit-transition: background .25s ease-out;
|
| 218 |
+
-moz-transition: background .25s ease-out;
|
| 219 |
+
transition: background .25s ease-out;
|
| 220 |
}
|
| 221 |
+
|
| 222 |
+
.qmn_btn:hover, .btn:hover {
|
| 223 |
+
color: #fff;
|
| 224 |
+
background: #666;
|
| 225 |
}
|
|
|
|
| 226 |
|
| 227 |
+
.qmn_pagination {
|
| 228 |
+
position: relative;
|
| 229 |
+
display: block;
|
| 230 |
+
padding: 15px 0 15px 0;
|
| 231 |
+
border-top: 1px solid #f3f3f3;
|
| 232 |
}
|
| 233 |
+
|
| 234 |
+
.mlw_previous,
|
| 235 |
+
.mlw_next {
|
| 236 |
+
position: absolute;
|
| 237 |
+
top: 15px;
|
| 238 |
+
font-size: 14px;
|
| 239 |
+
text-transform: uppercase;
|
| 240 |
}
|
| 241 |
+
|
| 242 |
+
.mlw_previous { left: 0; }
|
| 243 |
+
.mlw_next { right: 0; }
|
| 244 |
+
|
| 245 |
+
.qmn_page_counter_message {
|
| 246 |
+
font-size: 14px;
|
| 247 |
+
color: #999;
|
| 248 |
+
width: 100px;
|
| 249 |
+
padding: 10px 20px 10px 20px;
|
| 250 |
+
margin: 0 auto;
|
| 251 |
text-align: center;
|
| 252 |
+
}
|
| 253 |
+
|
| 254 |
+
.mlw_qmn_timer {
|
| 255 |
+
z-index: 999;
|
| 256 |
+
display: inline-block;
|
| 257 |
+
position: fixed;
|
| 258 |
+
bottom: 20px;
|
| 259 |
+
right: 20px;
|
| 260 |
+
height: 50px;
|
| 261 |
+
line-height: 50px;
|
| 262 |
+
padding: 0 20px;
|
| 263 |
+
background: #34495e;
|
| 264 |
+
color: #fff;
|
| 265 |
+
-webkit-border-radius: 50px;
|
| 266 |
+
-moz-border-radius: 50px;
|
| 267 |
+
border-radius: 50px;
|
| 268 |
+
-webkit-box-shadow: 0 4px 8px rgba(0,0,0,.10);
|
| 269 |
+
-moz-box-shadow: 0 4px 8px rgba(0,0,0,.10);
|
| 270 |
+
box-shadow: 0 4px 8px rgba(0,0,0,.10);
|
| 271 |
+
}
|
| 272 |
+
|
| 273 |
+
.qmn_quiz_container select,
|
| 274 |
+
.qmn_quiz_container textarea,
|
| 275 |
+
.qmn_quiz_container input[type="text"],
|
| 276 |
+
.qmn_quiz_container input[type="email"],
|
| 277 |
+
.qmn_quiz_container input[type="number"] {
|
| 278 |
+
background: #fff;
|
| 279 |
+
border: 1px solid #3498db;
|
| 280 |
+
}
|
| 281 |
+
|
| 282 |
+
.qmn_quiz_container select:hover,
|
| 283 |
+
.qmn_quiz_container textarea:hover,
|
| 284 |
+
.qmn_quiz_container input[type="text"]:hover,
|
| 285 |
+
.qmn_quiz_container input[type="email"]:hover,
|
| 286 |
+
.qmn_quiz_container input[type="number"]:hover,
|
| 287 |
+
.qmn_quiz_container select:focus,
|
| 288 |
+
.qmn_quiz_container textarea:focus,
|
| 289 |
+
.qmn_quiz_container input[type="text"]:focus,
|
| 290 |
+
.qmn_quiz_container input[type="email"]:focus,
|
| 291 |
+
.qmn_quiz_container input[type="number"]:focus{
|
| 292 |
+
outline: 0;
|
| 293 |
+
background: #fff;
|
| 294 |
+
border: 1px solid #3498db;
|
| 295 |
+
-webkit-box-shadow: 0 0 10px rgba(52, 152, 219, .35);
|
| 296 |
+
-moz-box-shadow: 0 0 10px rgba(52, 152, 219, .35);
|
| 297 |
+
box-shadow: 0 0 10px rgba(52, 152, 219, .35);
|
| 298 |
+
}
|
| 299 |
+
|
| 300 |
+
.qmn_quiz_container .qmn_btn, .qmn_quiz_container .btn {
|
| 301 |
+
color: #fff !important;
|
| 302 |
+
background: #3498db !important;
|
| 303 |
+
}
|
| 304 |
+
|
| 305 |
+
.qmn_quiz_container .qmn_btn:hover, .qmn_quiz_container .btn:hover { background: #2980b9 !important; }
|
| 306 |
+
|
| 307 |
+
/* Helper classes */
|
| 308 |
+
|
| 309 |
+
.border-none { border: 0; }
|
| 310 |
+
.margin-bottom { margin-bottom: 20px; }
|
| 311 |
+
|
| 312 |
+
|
| 313 |
+
@media (max-width: 768px) {
|
| 314 |
+
|
| 315 |
+
.quiz_section label,
|
| 316 |
+
.quiz_section .mlw_qmn_question {
|
| 317 |
+
font-size: 18px;
|
| 318 |
+
}
|
| 319 |
+
|
| 320 |
+
.quiz_section .qmn_radio_answers .qmn_mc_answer_wrap label {
|
| 321 |
+
font-size: 18px;
|
| 322 |
+
}
|
| 323 |
+
|
| 324 |
+
.quiz_section p.form-help { font-size: 14px; }
|
| 325 |
+
|
| 326 |
+
.quiz_section select,
|
| 327 |
+
.quiz_section textarea,
|
| 328 |
+
.quiz_section input[type="text"] {
|
| 329 |
+
display: block;
|
| 330 |
+
width: 100%;
|
| 331 |
+
padding: 12px 10px 12px 10px;
|
| 332 |
+
font-size: 16px;
|
| 333 |
+
}
|
| 334 |
+
|
| 335 |
+
.mlw_previous,
|
| 336 |
+
.mlw_next,
|
| 337 |
+
.qmn_page_counter_message {
|
| 338 |
+
display: inline-block;
|
| 339 |
+
max-width: 100px;
|
| 340 |
+
text-align: center;
|
| 341 |
+
position: relative;
|
| 342 |
+
top: 0;
|
| 343 |
+
left: 0;
|
| 344 |
+
right: 0;
|
| 345 |
+
}
|
| 346 |
+
|
| 347 |
+
.mlw_qmn_timer { top: 20px; }
|
| 348 |
+
|
| 349 |
}
|
templates/qmn_turquoise.css
ADDED
|
@@ -0,0 +1,349 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.ui-tooltip {
|
| 2 |
+
max-width: 500px !important;
|
| 3 |
+
}
|
| 4 |
+
.ui-tooltip-content {
|
| 5 |
+
max-width: 500px !important;
|
| 6 |
+
}
|
| 7 |
+
.mlw_qmn_hint_link {
|
| 8 |
+
text-decoration:underline;
|
| 9 |
+
color:rgb(0,0,255);
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
.mlw_qmn_message_before {
|
| 14 |
+
color: #666;
|
| 15 |
+
font-size: 18px;
|
| 16 |
+
display: block;
|
| 17 |
+
margin-bottom: 20px;
|
| 18 |
+
padding-bottom: 10px;
|
| 19 |
+
border-bottom: 1px solid #f3f3f3;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
.mlw_qmn_message_before p { margin: 0 0 10px 0; }
|
| 23 |
+
|
| 24 |
+
.quiz_section {
|
| 25 |
+
display: block;
|
| 26 |
+
border: 0;
|
| 27 |
+
margin: 0;
|
| 28 |
+
padding: 15px 0 15px 0;
|
| 29 |
+
font-size: 16px;
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
.quiz_section.border {
|
| 33 |
+
border-top: 1px solid #f3f3f3;
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
.quiz_section label,
|
| 37 |
+
.quiz_section .mlw_qmn_question {
|
| 38 |
+
display: block;
|
| 39 |
+
margin: 0 0 5px 0;
|
| 40 |
+
font-weight: bold;
|
| 41 |
+
-webkit-box-sizing: border-box;
|
| 42 |
+
-moz-box-sizing: border-box;
|
| 43 |
+
box-sizing: border-box;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
label.inline,
|
| 47 |
+
label.inline .mlw_qmn_question,
|
| 48 |
+
.quiz_section.inline .mlw_horizontal_multiple {
|
| 49 |
+
display: inline-block;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
.quiz_section p.form-help {
|
| 53 |
+
margin: 5px 0 0 0;
|
| 54 |
+
font-size: 12px;
|
| 55 |
+
color: #999;
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
.quiz_section iframe { margin-bottom: 10px; }
|
| 59 |
+
|
| 60 |
+
.qmn_mc_answer_wrap {
|
| 61 |
+
display: block;
|
| 62 |
+
margin: 5px 0 5px 0;
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
.quiz_section .qmn_radio_answers label,
|
| 66 |
+
.quiz_section .qmn_check_answers label,
|
| 67 |
+
.quiz_section .qmn_accept_answers label {
|
| 68 |
+
display: inline;
|
| 69 |
+
margin: 0 10px 0 5px;
|
| 70 |
+
font-weight: normal;
|
| 71 |
+
font-size: 14px;
|
| 72 |
+
cursor: pointer;
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
.quiz_section.text-block h2 {
|
| 76 |
+
display: block;
|
| 77 |
+
margin: 0 0 10px 0;
|
| 78 |
+
}
|
| 79 |
+
|
| 80 |
+
.quiz_section select,
|
| 81 |
+
.quiz_section textarea,
|
| 82 |
+
.quiz_section input[type="text"],
|
| 83 |
+
.quiz_section input[type="email"],
|
| 84 |
+
.quiz_section input[type="number"] {
|
| 85 |
+
width: 70%;
|
| 86 |
+
display: inline-block;
|
| 87 |
+
padding: 10px 8px 10px 8px;
|
| 88 |
+
font-size: 14px;
|
| 89 |
+
color: #555;
|
| 90 |
+
background: #fff;
|
| 91 |
+
border: 1px solid #e3e3e3;
|
| 92 |
+
-webkit-border-radius: 3px;
|
| 93 |
+
-moz-border-radius: 3px;
|
| 94 |
+
border-radius: 3px;
|
| 95 |
+
-webkit-box-sizing: border-box;
|
| 96 |
+
-moz-box-sizing: border-box;
|
| 97 |
+
box-sizing: border-box;
|
| 98 |
+
-webkit-transition: all .5s ease-in-out;
|
| 99 |
+
-moz-transition: all .5s ease-in-out;
|
| 100 |
+
transition: all .5s ease-in-out;
|
| 101 |
+
}
|
| 102 |
+
|
| 103 |
+
.quiz_section select { height: 38px; }
|
| 104 |
+
|
| 105 |
+
.quiz_section select:hover,
|
| 106 |
+
.quiz_section textarea:hover,
|
| 107 |
+
.quiz_section input[type="text"]:hover,
|
| 108 |
+
.quiz_section input[type="email"]:hover,
|
| 109 |
+
.quiz_section input[type="number"]:hover,
|
| 110 |
+
.quiz_section select:focus,
|
| 111 |
+
.quiz_section textarea:focus,
|
| 112 |
+
.quiz_section input[type="text"]:focus,
|
| 113 |
+
.quiz_section input[type="email"]:focus,
|
| 114 |
+
.quiz_section input[type="number"]:focus {
|
| 115 |
+
outline: 0;
|
| 116 |
+
background: #f7f7f7;
|
| 117 |
+
border: 1px solid #bdc3c7;
|
| 118 |
+
-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.15);
|
| 119 |
+
-moz-box-shadow: 0 0 10px rgba(0,0,0,0.15);
|
| 120 |
+
box-shadow: 0 0 10px rgba(0,0,0,0.15);
|
| 121 |
+
}
|
| 122 |
+
|
| 123 |
+
.qmn_fill_blank {
|
| 124 |
+
margin: 0 5px 0 5px;
|
| 125 |
+
width: 100px !important;
|
| 126 |
+
}
|
| 127 |
+
|
| 128 |
+
.qmn_fill_blank.small { width: 50px; }
|
| 129 |
+
.qmn_fill_blank.medium { width: 100px; }
|
| 130 |
+
.qmn_fill_blank.large { width: 150px; }
|
| 131 |
+
|
| 132 |
+
|
| 133 |
+
/* Alerts and error state */
|
| 134 |
+
|
| 135 |
+
.qmn_error_message {
|
| 136 |
+
color: #da4f49;
|
| 137 |
+
border: 1px solid #da4f49;
|
| 138 |
+
background: #F2DEDE;
|
| 139 |
+
display: block;
|
| 140 |
+
padding: 10px;
|
| 141 |
+
margin: 10px 0 10px 0;
|
| 142 |
+
-webkit-border-radius: 3px;
|
| 143 |
+
-moz-border-radius: 3px;
|
| 144 |
+
border-radius: 3px;
|
| 145 |
+
}
|
| 146 |
+
|
| 147 |
+
.quiz_section.qmn_error select,
|
| 148 |
+
.quiz_section.qmn_error textarea,
|
| 149 |
+
.quiz_section.qmn_error input[type="text"],
|
| 150 |
+
.quiz_section.qmn_error input[type="number"],
|
| 151 |
+
.quiz_section.qmn_error input[type="email"],
|
| 152 |
+
.quiz_section.qmn_error select:hover,
|
| 153 |
+
.quiz_section.qmn_error textarea:hover,
|
| 154 |
+
.quiz_section.qmn_error input[type="text"]:hover,
|
| 155 |
+
.quiz_section.qmn_error input[type="number"]:hover,
|
| 156 |
+
.quiz_section.qmn_error input[type="email"]:hover,
|
| 157 |
+
.quiz_section.qmn_error select:focus,
|
| 158 |
+
.quiz_section.qmn_error textarea:focus,
|
| 159 |
+
.quiz_section.qmn_error input[type="text"]:focus,
|
| 160 |
+
.quiz_section.qmn_error input[type="number"]:focus,
|
| 161 |
+
.quiz_section.qmn_error input[type="email"]:focus {
|
| 162 |
+
position: relative;
|
| 163 |
+
border: 1px solid #da4f49;
|
| 164 |
+
background: #F2DEDE;
|
| 165 |
+
-webkit-box-shadow: 0 0 10px rgba(218, 79, 73, .35);
|
| 166 |
+
-moz-box-shadow: 0 0 10px rgba(218, 79, 73, .35);
|
| 167 |
+
box-shadow: 0 0 10px rgba(218, 79, 73, .35);
|
| 168 |
+
}
|
| 169 |
+
|
| 170 |
+
.quiz_section.qmn_error { position: relative; }
|
| 171 |
+
|
| 172 |
+
.quiz_section.qmn_error:after {
|
| 173 |
+
content: '-';
|
| 174 |
+
color: #fff;
|
| 175 |
+
font-size: 20px;
|
| 176 |
+
font-family: 'Helvetica', Arial, sans-serif;
|
| 177 |
+
background: #da4f49;
|
| 178 |
+
text-align: center;
|
| 179 |
+
display: inline-block;
|
| 180 |
+
height: 20px;
|
| 181 |
+
line-height: 20px;
|
| 182 |
+
width: 20px;
|
| 183 |
+
position: absolute;
|
| 184 |
+
right: 0;
|
| 185 |
+
top: 12px;
|
| 186 |
+
-webkit-border-radius: 20px;
|
| 187 |
+
-moz-border-radius: 20px;
|
| 188 |
+
border-radius: 20px;
|
| 189 |
+
|
| 190 |
+
}
|
| 191 |
+
|
| 192 |
+
.quiz_section.qmn_error .qmn_radio_answers,
|
| 193 |
+
.quiz_section.qmn_error .qmn_check_answers,
|
| 194 |
+
.quiz_section.qmn_error .qmn_accept_answers {
|
| 195 |
+
border: 1px solid #da4f49;
|
| 196 |
+
background: #F2DEDE;
|
| 197 |
+
padding: 5px;
|
| 198 |
+
-webkit-border-radius: 3px;
|
| 199 |
+
-moz-border-radius: 3px;
|
| 200 |
+
border-radius: 3px;
|
| 201 |
+
}
|
| 202 |
+
|
| 203 |
+
.qmn_btn, .btn {
|
| 204 |
+
display: relative;
|
| 205 |
+
display: inline-block;
|
| 206 |
+
color: #666 !important;
|
| 207 |
+
background: #ccc !important;
|
| 208 |
+
font-size: 16px !important;
|
| 209 |
+
padding: 10px 20px 10px 20px !important;
|
| 210 |
+
text-decoration: none !important;
|
| 211 |
+
-webkit-border-radius: 3px;
|
| 212 |
+
-moz-border-radius: 3px;
|
| 213 |
+
border-radius: 3px;
|
| 214 |
+
-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,.05);
|
| 215 |
+
-moz-box-shadow: 0px 0px 6px rgba(0,0,0,.05);
|
| 216 |
+
box-shadow: 0px 0px 6px rgba(0,0,0,.05);
|
| 217 |
+
-webkit-transition: background .25s ease-out;
|
| 218 |
+
-moz-transition: background .25s ease-out;
|
| 219 |
+
transition: background .25s ease-out;
|
| 220 |
+
}
|
| 221 |
+
|
| 222 |
+
.qmn_btn:hover, .btn:hover {
|
| 223 |
+
color: #fff;
|
| 224 |
+
background: #666;
|
| 225 |
+
}
|
| 226 |
+
|
| 227 |
+
.qmn_pagination {
|
| 228 |
+
position: relative;
|
| 229 |
+
display: block;
|
| 230 |
+
padding: 15px 0 15px 0;
|
| 231 |
+
border-top: 1px solid #f3f3f3;
|
| 232 |
+
}
|
| 233 |
+
|
| 234 |
+
.mlw_previous,
|
| 235 |
+
.mlw_next {
|
| 236 |
+
position: absolute;
|
| 237 |
+
top: 15px;
|
| 238 |
+
font-size: 14px;
|
| 239 |
+
text-transform: uppercase;
|
| 240 |
+
}
|
| 241 |
+
|
| 242 |
+
.mlw_previous { left: 0; }
|
| 243 |
+
.mlw_next { right: 0; }
|
| 244 |
+
|
| 245 |
+
.qmn_page_counter_message {
|
| 246 |
+
font-size: 14px;
|
| 247 |
+
color: #999;
|
| 248 |
+
width: 100px;
|
| 249 |
+
padding: 10px 20px 10px 20px;
|
| 250 |
+
margin: 0 auto;
|
| 251 |
+
text-align: center;
|
| 252 |
+
}
|
| 253 |
+
|
| 254 |
+
.mlw_qmn_timer {
|
| 255 |
+
z-index: 999;
|
| 256 |
+
display: inline-block;
|
| 257 |
+
position: fixed;
|
| 258 |
+
bottom: 20px;
|
| 259 |
+
right: 20px;
|
| 260 |
+
height: 50px;
|
| 261 |
+
line-height: 50px;
|
| 262 |
+
padding: 0 20px;
|
| 263 |
+
background: #34495e;
|
| 264 |
+
color: #fff;
|
| 265 |
+
-webkit-border-radius: 50px;
|
| 266 |
+
-moz-border-radius: 50px;
|
| 267 |
+
border-radius: 50px;
|
| 268 |
+
-webkit-box-shadow: 0 4px 8px rgba(0,0,0,.10);
|
| 269 |
+
-moz-box-shadow: 0 4px 8px rgba(0,0,0,.10);
|
| 270 |
+
box-shadow: 0 4px 8px rgba(0,0,0,.10);
|
| 271 |
+
}
|
| 272 |
+
|
| 273 |
+
.qmn_quiz_container select,
|
| 274 |
+
.qmn_quiz_container textarea,
|
| 275 |
+
.qmn_quiz_container input[type="text"],
|
| 276 |
+
.qmn_quiz_container input[type="email"],
|
| 277 |
+
.qmn_quiz_container input[type="number"] {
|
| 278 |
+
background: #fff;
|
| 279 |
+
border: 1px solid #1abc9c;
|
| 280 |
+
}
|
| 281 |
+
|
| 282 |
+
.qmn_quiz_container select:hover,
|
| 283 |
+
.qmn_quiz_container textarea:hover,
|
| 284 |
+
.qmn_quiz_container input[type="text"]:hover,
|
| 285 |
+
.qmn_quiz_container input[type="email"]:hover,
|
| 286 |
+
.qmn_quiz_container input[type="number"]:hover,
|
| 287 |
+
.qmn_quiz_container select:focus,
|
| 288 |
+
.qmn_quiz_container textarea:focus,
|
| 289 |
+
.qmn_quiz_container input[type="text"]:focus,
|
| 290 |
+
.qmn_quiz_container input[type="email"]:focus,
|
| 291 |
+
.qmn_quiz_container input[type="number"]:focus{
|
| 292 |
+
outline: 0;
|
| 293 |
+
background: #fff;
|
| 294 |
+
border: 1px solid #1abc9c;
|
| 295 |
+
-webkit-box-shadow: 0 0 10px rgba(26, 188, 156, .35);
|
| 296 |
+
-moz-box-shadow: 0 0 10px rgba(26, 188, 156, .35);
|
| 297 |
+
box-shadow: 0 0 10px rgba(26, 188, 156, .35);
|
| 298 |
+
}
|
| 299 |
+
|
| 300 |
+
.qmn_quiz_container .qmn_btn, .qmn_quiz_container .btn {
|
| 301 |
+
color: #fff !important;
|
| 302 |
+
background: #1abc9c !important;
|
| 303 |
+
}
|
| 304 |
+
|
| 305 |
+
.qmn_quiz_container .qmn_btn:hover, .qmn_quiz_container .btn:hover { background: #16a085 !important; }
|
| 306 |
+
|
| 307 |
+
/* Helper classes */
|
| 308 |
+
|
| 309 |
+
.border-none { border: 0; }
|
| 310 |
+
.margin-bottom { margin-bottom: 20px; }
|
| 311 |
+
|
| 312 |
+
|
| 313 |
+
@media (max-width: 768px) {
|
| 314 |
+
|
| 315 |
+
.quiz_section label,
|
| 316 |
+
.quiz_section .mlw_qmn_question {
|
| 317 |
+
font-size: 18px;
|
| 318 |
+
}
|
| 319 |
+
|
| 320 |
+
.quiz_section.radio .qmn_mc_answer_wrap label {
|
| 321 |
+
font-size: 18px;
|
| 322 |
+
}
|
| 323 |
+
|
| 324 |
+
.quiz_section p.form-help { font-size: 14px; }
|
| 325 |
+
|
| 326 |
+
.quiz_section select,
|
| 327 |
+
.quiz_section textarea,
|
| 328 |
+
.quiz_section input[type="text"] {
|
| 329 |
+
display: block;
|
| 330 |
+
width: 100%;
|
| 331 |
+
padding: 12px 10px 12px 10px;
|
| 332 |
+
font-size: 16px;
|
| 333 |
+
}
|
| 334 |
+
|
| 335 |
+
.mlw_previous,
|
| 336 |
+
.mlw_next,
|
| 337 |
+
.qmn_page_counter_message {
|
| 338 |
+
display: inline-block;
|
| 339 |
+
max-width: 100px;
|
| 340 |
+
text-align: center;
|
| 341 |
+
position: relative;
|
| 342 |
+
top: 0;
|
| 343 |
+
left: 0;
|
| 344 |
+
right: 0;
|
| 345 |
+
}
|
| 346 |
+
|
| 347 |
+
.mlw_qmn_timer { top: 20px; }
|
| 348 |
+
|
| 349 |
+
}
|
