diff --git a/features/home/src/main/ets/pages/ConversationDetail.ets b/features/home/src/main/ets/pages/ConversationDetail.ets index 85a672ae2a027f36190ea56fe7476d71ed94e947..46c31ca025a67284cc27fa394622218a90bccd37 100755 --- a/features/home/src/main/ets/pages/ConversationDetail.ets +++ b/features/home/src/main/ets/pages/ConversationDetail.ets @@ -37,40 +37,40 @@ export struct ConversationDetail { ConversationDetailItem({ receivedName: $currentConversationUserName, isReceived: true, - content: '芬芬邀请你喝奶茶啦', + content: $r('app.string.FF_take_tea'), isAppletMsg: true, currentFeatureIndex: $currentFeatureIndex }) ConversationDetailItem({ receivedName: $currentConversationUserName, isReceived: true, - content: '请你喝奶茶,快点单吧!!速度速度,就差你了', + content: $r('app.string.Speed'), currentFeatureIndex: $currentFeatureIndex }) ConversationDetailItem({ receivedName: $currentConversationUserName, isReceived: false, - content: '哈哈,今天有什么喜事说来听听', + content: $r('app.string.happy_thing'), currentFeatureIndex: $currentFeatureIndex }) } else { ConversationDetailItem({ receivedName: $currentConversationUserName, isReceived: true, - content: '市场部2023年新产品宣传规划', + content: $r('app.string.2023_preach'), isDocumentMsg: true, currentFeatureIndex: $currentFeatureIndex }) ConversationDetailItem({ receivedName: $currentConversationUserName, isReceived: true, - content: '这是明天会议的资料,请发给Jack,让他确认', + content: $r('app.string.confirm_meeting'), currentFeatureIndex: $currentFeatureIndex }) ConversationDetailItem({ receivedName: $currentConversationUserName, isReceived: false, - content: '好的,我明天过去', + content: $r('app.string.okay'), currentFeatureIndex: $currentFeatureIndex }) } diff --git a/features/home/src/main/resources/base/element/string.json b/features/home/src/main/resources/base/element/string.json index 5c3119bcc61ca32352eebe6692466b67e7622e1f..ff3f96e115489a2f26626dc7e05d561533b2d030 100755 --- a/features/home/src/main/resources/base/element/string.json +++ b/features/home/src/main/resources/base/element/string.json @@ -171,6 +171,18 @@ { "name": "sport_club", "value": "运动俱乐部" + }, + { + "name": "happy_thing", + "value": "哈哈,今天有什么喜事说来听听" + }, + { + "name": "2023_preach", + "value": "市场部2023年新产品宣传规划" + }, + { + "name": "confirm_meeting", + "value": "这是明天会议的资料,请发给Jack,让他确认" } ] } \ No newline at end of file diff --git a/features/home/src/main/resources/en_US/element/string.json b/features/home/src/main/resources/en_US/element/string.json index 84e1515cd30720d7cfaf5bd88f88395c337348fd..7a3d3b9de13571070fdf4ca6ec381eb88990382d 100644 --- a/features/home/src/main/resources/en_US/element/string.json +++ b/features/home/src/main/resources/en_US/element/string.json @@ -171,6 +171,22 @@ { "name": "sport_club", "value": "Sport club" + }, + { + "name": "FF_take_tea", + "value": "Fenfen invites you for milk tea" + }, + { + "name": "happy_thing", + "value": "Ha ha, what's the happy event?" + }, + { + "name": "2023_preach", + "value": "Marketing Department 2023 New Product Promotion Plan" + }, + { + "name": "confirm_meeting", + "value": "Here are the materials for tomorrow's meeting. Please send them to Jack for his confirmation." } ] } \ No newline at end of file diff --git a/features/home/src/main/resources/zh_CN/element/string.json b/features/home/src/main/resources/zh_CN/element/string.json index cc786c923d4be1476e99e9ee522475ca74cc6c8b..0351e1c2f60bd4e98ad1af17ec116c5f33565195 100644 --- a/features/home/src/main/resources/zh_CN/element/string.json +++ b/features/home/src/main/resources/zh_CN/element/string.json @@ -171,6 +171,18 @@ { "name": "sport_club", "value": "运动俱乐部" + }, + { + "name": "happy_thing", + "value": "哈哈,今天有什么喜事说来听听" + }, + { + "name": "2023_preach", + "value": "市场部2023年新产品宣传规划" + }, + { + "name": "confirm_meeting", + "value": "这是明天会议的资料,请发给Jack,让他确认" } ] } \ No newline at end of file