Skip to content

Commit

Permalink
Rephrase
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Turley <mike.turley@alum.cs.umass.edu>
  • Loading branch information
mturley committed Sep 20, 2023
1 parent af5ffc3 commit d13f097
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
4 changes: 2 additions & 2 deletions client/public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@
"reasonForError": "The reported reason for the error:",
"reviewInstructions": "Use this section to provide your assessment of the possible migration/modernization plan and effort estimation.",
"savingSelection": "Saving selection",
"selectedBecauseArchetypeTags": "Selected because the archetype has the {{tagOrTags}} {{tagList}}",
"selectedBecauseAppOrArchetypeTags": "Selected because the application or archetype has the {{tagOrTags}} {{tagList}}",
"selectedBecauseArchetypeTags": "Selected because the archetype's tags include {{tags}}",
"selectedBecauseAppOrArchetypeTags": "Selected because the application or archetype's tags include {{tags}}",
"selectOwnerFromStakeholdersList": "Select owner from list of stakeholders",
"suggestedAdoptionPlanHelpText": "The suggested approach to migration based on effort, priority, and dependencies.",
"taskInProgressForTags": "A new analysis is in-progress. Tags may be updated upon completion.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,7 @@ export const MultiInputSelection: React.FC<MultiInputSelectionProps> = ({
? "message.selectedBecauseArchetypeTags"
: "message.selectedBecauseAppOrArchetypeTags",
{
tagOrTags: t(
option.autoAnswerFor.length === 1
? "terms.tag"
: "terms.tags"
).toLowerCase(),
tagList: option.autoAnswerFor
tags: option.autoAnswerFor
.map((t) => `"${t.tag}"`)
.join(", "),
}
Expand Down

0 comments on commit d13f097

Please sign in to comment.