diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 6455323a0..c91fee708 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -4,6 +4,7 @@ - fixed #9818: deleteAttachedFiles bug (THE REVENGE) - fixed #9809: Pagination list up to 10/20: not working correctly on last pages. - fixed #9820: Survey: political party spelled wrong + - fixed #9819: Survey: hoverhelp showing instead of field name 7.6.13 - fixed AdSpace bug: impressions and clicks for most non-human web clients will not be counted. diff --git a/lib/WebGUI/Asset/Wobject/Survey.pm b/lib/WebGUI/Asset/Wobject/Survey.pm index d7c325389..de1463b34 100644 --- a/lib/WebGUI/Asset/Wobject/Survey.pm +++ b/lib/WebGUI/Asset/Wobject/Survey.pm @@ -107,7 +107,7 @@ sub definition { defaultValue => 'PBtmpl0000000000000063', namespace => 'Survey/Overview', label => $i18n->get('Survey Overview Template'), - hoverhelp => $i18n->get('Survey Overview Template help'), + hoverHelp => $i18n->get('Survey Overview Template help'), }, gradebookTemplateId => { tab => 'display', @@ -115,7 +115,7 @@ sub definition { defaultValue => 'PBtmpl0000000000000062', namespace => 'Survey/Gradebook', label => $i18n->get('Gradebook Template'), - hoverhelp => $i18n->get('Gradebook Template help'), + hoverHelp => $i18n->get('Gradebook Template help'), }, responseTemplateId => { tab => 'display', @@ -123,7 +123,7 @@ sub definition { defaultValue => 'PBtmpl0000000000000064', namespace => 'Survey/Response', label => $i18n->get('Response Template'), - label => $i18n->get('Response Template help'), + hoverHelp => $i18n->get('Response Template help'), }, surveyEditTemplateId => { tab => 'display', @@ -131,7 +131,7 @@ sub definition { defaultValue => 'GRUNFctldUgop-qRLuo_DA', namespace => 'Survey/Edit', label => $i18n->get('Edit Survey Template'), - hoverhelp => $i18n->get('Edit Survey Template help'), + hoverHelp => $i18n->get('Edit Survey Template help'), }, surveyTakeTemplateId => { tab => 'display', @@ -139,39 +139,39 @@ sub definition { defaultValue => 'd8jMMMRddSQ7twP4l1ZSIw', namespace => 'Survey/Take', label => $i18n->get('Take Survey Template'), - hoverhelp => $i18n->get('Take Survey Template help'), + hoverHelp => $i18n->get('Take Survey Template help'), }, surveyQuestionsId => { tab => 'display', fieldType => 'template', defaultValue => 'CxMpE_UPauZA3p8jdrOABw', namespace => 'Survey/Take', - label => 'Questions Template', - hoverhelp => 'Questions Template help', + label => $i18n->get('Questions Template'), + hoverHelp => $i18n->get('Questions Template help'), }, sectionEditTemplateId => { tab => 'display', fieldType => 'template', defaultValue => '1oBRscNIcFOI-pETrCOspA', namespace => 'Survey/Edit', - label => 'Section Edit Template', - hoverhelp => 'Section Edit Template help', + label => $i18n->get('Section Edit Template'), + hoverHelp => $i18n->get('Section Edit Template help'), }, questionEditTemplateId => { tab => 'display', fieldType => 'template', defaultValue => 'wAc4azJViVTpo-2NYOXWvg', namespace => 'Survey/Edit', - label => 'Question Edit Template', - hoverhelp => 'Question Edit Template help', + label => $i18n->get('Question Edit Template'), + hoverHelp => $i18n->get('Question Edit Template help'), }, answerEditTemplateId => { tab => 'display', fieldType => 'template', defaultValue => 'AjhlNO3wZvN5k4i4qioWcg', namespace => 'Survey/Edit', - label => 'Answer Edit Template', - hoverhelp => 'Answer Edit Template help', + label => $i18n->get('Answer Edit Template'), + hoverHelp => $i18n->get('Answer Edit Template help'), }, );