From 607089cd2531e7b30f87663d4fb438d49350c1c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ho=C3=A0ng=20Rio?= Date: Wed, 9 Jan 2019 17:38:05 +0700 Subject: [PATCH] Fix missing translate key when added new filter url --- client/src/__locales/en.json | 1 + client/src/__locales/vi.json | 3 ++- client/src/components/ui/Modal.js | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/client/src/__locales/en.json b/client/src/__locales/en.json index b248ed6c..4f523bf1 100644 --- a/client/src/__locales/en.json +++ b/client/src/__locales/en.json @@ -124,6 +124,7 @@ "unblock_btn": "Unblock", "block_btn": "Block", "time_table_header": "Time", + "url_added_successfully": "Url added successfully", "domain_name_table_header": "Domain name", "type_table_header": "Type", "response_table_header": "Response", diff --git a/client/src/__locales/vi.json b/client/src/__locales/vi.json index 362a51fe..e4d4b738 100644 --- a/client/src/__locales/vi.json +++ b/client/src/__locales/vi.json @@ -125,5 +125,6 @@ "found_in_known_domain_db": "T\u00ecm th\u1ea5y trong c\u01a1 s\u1edf d\u1eef li\u1ec7u t\u00ean mi\u1ec1n", "category_label": "Th\u1ec3 lo\u1ea1i", "rule_label": "Quy t\u1eafc", - "filter_label": "B\u1ed9 l\u1ecdc" + "filter_label": "B\u1ed9 l\u1ecdc", + "url_added_successfully": "Th\u00eam b\u1ed9 l\u1ecdc th\u00e0nh c\u00f4ng" } \ No newline at end of file diff --git a/client/src/components/ui/Modal.js b/client/src/components/ui/Modal.js index 04240522..3c93c257 100644 --- a/client/src/components/ui/Modal.js +++ b/client/src/components/ui/Modal.js @@ -82,7 +82,7 @@ class Modal extends Component { } return (
- Url added successfully + url_added_successfully
); };