From b8105e25c5c87d509e2d85f154d66b69ea735822 Mon Sep 17 00:00:00 2001 From: caoliwen1 <14658249+caoliwen1@user.noreply.gitee.com> Date: Fri, 6 Sep 2024 15:35:06 +0800 Subject: [PATCH] =?UTF-8?q?Slider=E6=B8=AF=E6=BE=B3=E5=8F=B0=E9=80=82?= =?UTF-8?q?=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/resources/en_US/element/string.json | 24 +++++++++++++++++++ .../main/resources/zh_CN/element/string.json | 24 +++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 entry/src/main/resources/en_US/element/string.json create mode 100644 entry/src/main/resources/zh_CN/element/string.json diff --git a/entry/src/main/resources/en_US/element/string.json b/entry/src/main/resources/en_US/element/string.json new file mode 100644 index 0000000..e98c7e8 --- /dev/null +++ b/entry/src/main/resources/en_US/element/string.json @@ -0,0 +1,24 @@ +{ + "string": [ + { + "name": "module_desc", + "value": "description" + }, + { + "name": "entryAbility_desc", + "value": "description" + }, + { + "name": "entryAbility_label", + "value": "SliderExample" + }, + { + "name": "scale_text", + "value": "Scale" + }, + { + "name": "speed_text", + "value": "Speed" + } + ] +} \ No newline at end of file diff --git a/entry/src/main/resources/zh_CN/element/string.json b/entry/src/main/resources/zh_CN/element/string.json new file mode 100644 index 0000000..92938a5 --- /dev/null +++ b/entry/src/main/resources/zh_CN/element/string.json @@ -0,0 +1,24 @@ +{ + "string": [ + { + "name": "module_desc", + "value": "description" + }, + { + "name": "entryAbility_desc", + "value": "description" + }, + { + "name": "entryAbility_label", + "value": "SliderExample" + }, + { + "name": "scale_text", + "value": "缩放比例" + }, + { + "name": "speed_text", + "value": "速度" + } + ] +} \ No newline at end of file -- Gitee