Skip to content

Commit

Permalink
use lf for the displayed strings for the rating
Browse files Browse the repository at this point in the history
  • Loading branch information
srietkerk committed Jan 28, 2025
1 parent b209592 commit 9438c18
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions react-common/components/controls/Feedback/configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,28 +25,28 @@ export const ratingFeedbackConfig: any = {
questionUiType: "Rating",
questionInstruction: {
displayedStringInEnglish: "What did you think of this activity?",
displayedString: "What did you think of this activity?"
displayedString: lf("What did you think of this activity?")
},
questionOptions: [
{
displayedStringInEnglish: "Boring",
displayedString: "Boring"
displayedString: lf("Boring")
},
{
displayedStringInEnglish: "Not fun",
displayedString: "Not fun"
displayedString: lf("Not fun")
},
{
displayedStringInEnglish: "Kinda fun",
displayedString: "Kinda fun"
displayedString: lf("Kinda fun")
},
{
displayedStringInEnglish: "Fun",
displayedString: "Fun"
displayedString: lf("Fun")
},
{
displayedStringInEnglish: "Super fun",
displayedString: "Super fun"
displayedString: lf("Super fun")
},
],
"questionUiBehaviour": [
Expand Down

0 comments on commit 9438c18

Please sign in to comment.