Skip to content

Commit

Permalink
chore(all): Fix issue where strings file isn't checked in on changes …
Browse files Browse the repository at this point in the history
…during precommit (#4629)

* chore(all): Fix issue where strings file isn't checked in on changes during precommit

* use a real string for the test
  • Loading branch information
hartra344 committed Apr 17, 2024
1 parent 6fa6eb1 commit 48ba0c5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
. "$(dirname "$0")/_/husky.sh"

npx lint-staged

git add ./Localize/lang/strings.json
2 changes: 2 additions & 0 deletions Localize/lang/strings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2014,6 +2014,7 @@
"_iXW+2l.comment": "Chatbot input start of sentence for adding an action that the user should complete. Trailing space is intentional.",
"_id4DBb.comment": "First part of the Copilot Get Started description for Suggested Flow section",
"_idQjOP.comment": "Label for properties tab",
"_idw/7j.comment": "Export logic app text.",
"_ifnOUI.comment": "An accessability label that describes the code view tab",
"_ihCdw4.comment": "Required. The number parameter to sum in the 'add' function.",
"_iq+tiv.comment": "Hour of the day",
Expand Down Expand Up @@ -2645,6 +2646,7 @@
"iXW+2l": "Add an action",
"id4DBb": "After you review this AI generated flow suggestion, select",
"idQjOP": "Properties",
"idw/7j": "Export logic app",
"ifnOUI": "Code View Tab",
"ihCdw4": "Required. The number to add to Summand 2.",
"iq+tiv": "11",
Expand Down
4 changes: 2 additions & 2 deletions apps/vs-code-react/src/app/export/export.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ export const ExportApp: React.FC = () => {
const intlText = {
EXPORT_LOGIC_APP: intl.formatMessage({
defaultMessage: 'Export logic app',
id: 'UKKffr',
description: 'Export logic app text',
id: 'idw/7j',
description: 'Export logic app text.',
}),
};

Expand Down

0 comments on commit 48ba0c5

Please sign in to comment.