Skip to content

Commit

Permalink
fix(designer): make searchTerm placeholder harder to translate so it'…
Browse files Browse the repository at this point in the history
…s not accidently translated (#4764)
  • Loading branch information
hartra344 committed May 3, 2024
1 parent c037cf3 commit 5be58f9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Localize/lang/strings.json
Expand Up @@ -166,6 +166,7 @@
"4aaixN": "Tour",
"4c0uPQ": "Required. The name of the parameter whose values you want.",
"4hi3ks": "Your flow has been updated.",
"4hlqgK": "No results found for {searchTermBeingSearchedFor_DO_NOT_TRANSLATE}",
"4iyEAY": "💾 Saving this flow...",
"4izAMi": "Enter a value to respond with",
"4j2MEv": "Toggle Minimap",
Expand Down Expand Up @@ -793,7 +794,6 @@
"VEbE93": "Explain what the \"{selectedOperation}\" action does in this flow",
"VHm1Sr": "Select an App Service resource",
"VI5Sa8": "Expand",
"VI7EqG": "No results found for {searchTerm}",
"VIN7lB": "The flow starts when this happens",
"VKAk5g": "The provided workflow run name is not valid.",
"VL9wOu": "Must provide value for parameter.",
Expand Down Expand Up @@ -1086,6 +1086,7 @@
"_4aaixN.comment": "Button text for tour and tutorial",
"_4c0uPQ.comment": "Required string parameter to create a new parameter",
"_4hi3ks.comment": "Chatbot workflow has been updated message",
"_4hlqgK.comment": "Text to show when there are no search results",
"_4iyEAY.comment": "Chatbot card telling user that the workflow is being saved",
"_4izAMi.comment": "Placeholder for output value field",
"_4j2MEv.comment": "Turn the minimap on or off",
Expand Down Expand Up @@ -1713,7 +1714,6 @@
"_VEbE93.comment": "Chatbot input sentence asking to explain what the selected action does in the flow.",
"_VHm1Sr.comment": "Select an App Service resource",
"_VI5Sa8.comment": "Label to expand",
"_VI7EqG.comment": "Text to show when there are no search results",
"_VIN7lB.comment": "Description text for triggers in the suggested flow",
"_VKAk5g.comment": "Message text for an invalid run ID",
"_VL9wOu.comment": "Error message when the workflow parameter value is empty.",
Expand Down
Expand Up @@ -89,12 +89,12 @@ export const SearchResultsGrid: React.FC<PropsWithChildren<SearchResultsGridProp

const noResultsText = intl.formatMessage(
{
defaultMessage: 'No results found for {searchTerm}',
id: 'VI7EqG',
defaultMessage: 'No results found for {searchTermBeingSearchedFor_DO_NOT_TRANSLATE}',
id: '4hlqgK',
description: 'Text to show when there are no search results',
},
{
searchTerm: <strong>{`"${searchTerm}"`}</strong>,
searchTermBeingSearchedFor_DO_NOT_TRANSLATE: <strong>{`"${searchTerm}"`}</strong>,
}
);

Expand Down

0 comments on commit 5be58f9

Please sign in to comment.