Skip to content

Commit

Permalink
Fix salesagility#4646 - Hard coded messages in Surveys module
Browse files Browse the repository at this point in the history
  • Loading branch information
jack7anderson7 committed Apr 12, 2023
1 parent a5d9be2 commit 22db6fb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/Surveys/vardefs.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,31 +111,31 @@
'vname' => 'LBL_SUBMIT_TEXT',
'type' => 'varchar',
'massupdate' => 0,
'default' => 'Submit',
'default' => 'LBL_SUBMIT',
),
'satisfied_text' => array(
'required' => false,
'name' => 'satisfied_text',
'vname' => 'LBL_SATISFIED_TEXT',
'type' => 'varchar',
'massupdate' => 0,
'default' => 'Satisfied',
'default' => 'LBL_SATISFIED_RESPONSE',
),
'neither_text' => array(
'required' => false,
'name' => 'neither_text',
'vname' => 'LBL_NEITHER_TEXT',
'type' => 'varchar',
'massupdate' => 0,
'default' => 'Neither Satisfied nor Dissatisfied',
'default' => 'LBL_NOT_SATISFIED_NOR_DISSATISFIED',
),
'dissatisfied_text' => array(
'required' => false,
'name' => 'dissatisfied_text',
'vname' => 'LBL_DISSATISFIED_TEXT',
'type' => 'varchar',
'massupdate' => 0,
'default' => 'Dissatisfied',
'default' => 'LBL_DISSATISFIED',
),
"surveys_surveyquestions" => array(
'name' => 'surveys_surveyquestions',
Expand Down

0 comments on commit 22db6fb

Please sign in to comment.