Skip to content

Commit

Permalink
Update copy title
Browse files Browse the repository at this point in the history
  • Loading branch information
Esteban Beltran committed Jan 20, 2022
1 parent c151826 commit e08b9a0
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion x-pack/plugins/cases/public/containers/translations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@ export const SYNC_CASE = (caseTitle: string) =>
export const STATUS_CHANGED_TOASTER_TEXT = i18n.translate(
'xpack.cases.containers.statusChangeToasterText',
{
defaultMessage: 'Alerts in this case have been also had their status updated',
defaultMessage: 'Updated the statuses of attached alerts.',
}
);
2 changes: 1 addition & 1 deletion x-pack/plugins/cases/public/containers/use_get_cases.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export const useGetCases = (

const dispatchUpdateCaseProperty = useCallback(
async ({ updateKey, updateValue, caseId, refetchCasesStatus, version }: UpdateCase) => {
const caseData = state.data.cases.find((el) => el.id === caseId);
const caseData = state.data.cases.find((caseInfo) => caseInfo.id === caseId);
try {
didCancelUpdateCases.current = false;
abortCtrlUpdateCases.current.abort();
Expand Down
1 change: 0 additions & 1 deletion x-pack/plugins/translations/translations/ja-JP.json
Original file line number Diff line number Diff line change
Expand Up @@ -7694,7 +7694,6 @@
"xpack.cases.containers.markInProgressCases": "{totalCases, plural, =1 {\"{caseTitle}\"} other {{totalCases}件のケース}}を進行中に設定しました",
"xpack.cases.containers.pushToExternalService": "{ serviceName }への送信が正常に完了しました",
"xpack.cases.containers.reopenedCases": "{totalCases, plural, =1 {\"{caseTitle}\"} other {{totalCases}件のケース}}をオープンしました",
"xpack.cases.containers.statusChangeToasterText": "このケースのアラートはステータスが更新されました",
"xpack.cases.containers.syncCase": "\"{caseTitle}\"のアラートが同期されました",
"xpack.cases.containers.updatedCase": "\"{caseTitle}\"を更新しました",
"xpack.cases.create.stepOneTitle": "ケースフィールド",
Expand Down
1 change: 0 additions & 1 deletion x-pack/plugins/translations/translations/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -7753,7 +7753,6 @@
"xpack.cases.containers.markInProgressCases": "已将{totalCases, plural, =1 {“{caseTitle}”} other { {totalCases} 个案例}}标记为进行中",
"xpack.cases.containers.pushToExternalService": "已成功发送到 { serviceName }",
"xpack.cases.containers.reopenedCases": "已打开{totalCases, plural, =1 {“{caseTitle}”} other { {totalCases} 个案例}}",
"xpack.cases.containers.statusChangeToasterText": "此案例中的告警也更新了状态",
"xpack.cases.containers.syncCase": "“{caseTitle}”中的告警已同步",
"xpack.cases.containers.updatedCase": "已更新“{caseTitle}”",
"xpack.cases.create.stepOneTitle": "案例字段",
Expand Down

0 comments on commit e08b9a0

Please sign in to comment.