From 653ef3315e9f710bfda6147aa429328f57654e29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marker=20dao=20=C2=AE?= Date: Thu, 24 Oct 2024 11:56:58 +0200 Subject: [PATCH] feat(ti): Apdate name of typing local vars --- .../devextreme/js/__internal/ui/chat/typingindicator.ts | 8 ++++---- packages/devextreme/js/localization/messages/ar.json | 8 ++++---- packages/devextreme/js/localization/messages/ca.json | 8 ++++---- packages/devextreme/js/localization/messages/cs.json | 8 ++++---- packages/devextreme/js/localization/messages/de.json | 8 ++++---- packages/devextreme/js/localization/messages/el.json | 8 ++++---- packages/devextreme/js/localization/messages/en.json | 8 ++++---- packages/devextreme/js/localization/messages/es.json | 8 ++++---- packages/devextreme/js/localization/messages/fa.json | 8 ++++---- packages/devextreme/js/localization/messages/fi.json | 8 ++++---- packages/devextreme/js/localization/messages/fr.json | 8 ++++---- packages/devextreme/js/localization/messages/hu.json | 8 ++++---- packages/devextreme/js/localization/messages/it.json | 8 ++++---- packages/devextreme/js/localization/messages/ja.json | 8 ++++---- packages/devextreme/js/localization/messages/lt.json | 8 ++++---- packages/devextreme/js/localization/messages/lv.json | 8 ++++---- packages/devextreme/js/localization/messages/nb.json | 8 ++++---- packages/devextreme/js/localization/messages/nl.json | 8 ++++---- packages/devextreme/js/localization/messages/pl.json | 8 ++++---- packages/devextreme/js/localization/messages/pt.json | 8 ++++---- packages/devextreme/js/localization/messages/ro.json | 8 ++++---- packages/devextreme/js/localization/messages/ru.json | 8 ++++---- packages/devextreme/js/localization/messages/sl.json | 8 ++++---- packages/devextreme/js/localization/messages/sv.json | 8 ++++---- packages/devextreme/js/localization/messages/tr.json | 8 ++++---- packages/devextreme/js/localization/messages/vi.json | 8 ++++---- packages/devextreme/js/localization/messages/zh-tw.json | 8 ++++---- packages/devextreme/js/localization/messages/zh.json | 8 ++++---- 28 files changed, 112 insertions(+), 112 deletions(-) diff --git a/packages/devextreme/js/__internal/ui/chat/typingindicator.ts b/packages/devextreme/js/__internal/ui/chat/typingindicator.ts index 5f93173aea1d..336855e2e027 100644 --- a/packages/devextreme/js/__internal/ui/chat/typingindicator.ts +++ b/packages/devextreme/js/__internal/ui/chat/typingindicator.ts @@ -83,7 +83,7 @@ class TypingIndicator extends DOMComponent { const username = usernames[0]; return messageLocalization.format( - 'dxChat-typingIndicatorTyping', + 'dxChat-typingMessageSingleUser', // @ts-expect-error username, ); @@ -93,7 +93,7 @@ class TypingIndicator extends DOMComponent { const [usernameFirst, usernameSecond] = usernames; return messageLocalization.format( - 'dxChat-typingIndicatorTypingTwo', + 'dxChat-typingMessageTwoUsers', // @ts-expect-error usernameFirst, usernameSecond, @@ -108,7 +108,7 @@ class TypingIndicator extends DOMComponent { ] = usernames; return messageLocalization.format( - 'dxChat-typingIndicatorTypingThree', + 'dxChat-typingMessageThreeUsers', // @ts-expect-error usernameFirst, usernameSecond, @@ -119,7 +119,7 @@ class TypingIndicator extends DOMComponent { const usernameString = usernames.slice(0, 3).join(', '); return messageLocalization.format( - 'dxChat-typingIndicatorTypingOther', + 'dxChat-typingMessageMultipleUsers', // @ts-expect-error usernameString, ); diff --git a/packages/devextreme/js/localization/messages/ar.json b/packages/devextreme/js/localization/messages/ar.json index c43475e30929..395b6fbf58ea 100644 --- a/packages/devextreme/js/localization/messages/ar.json +++ b/packages/devextreme/js/localization/messages/ar.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "أحمر", "dxColorView-ariaGreen": "أخضر", diff --git a/packages/devextreme/js/localization/messages/ca.json b/packages/devextreme/js/localization/messages/ca.json index 0caaa3dbca83..6172919a8989 100644 --- a/packages/devextreme/js/localization/messages/ca.json +++ b/packages/devextreme/js/localization/messages/ca.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Vermell", "dxColorView-ariaGreen": "Verd", diff --git a/packages/devextreme/js/localization/messages/cs.json b/packages/devextreme/js/localization/messages/cs.json index 45bde019a836..66fa5759b091 100644 --- a/packages/devextreme/js/localization/messages/cs.json +++ b/packages/devextreme/js/localization/messages/cs.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Červená", "dxColorView-ariaGreen": "Zelená", diff --git a/packages/devextreme/js/localization/messages/de.json b/packages/devextreme/js/localization/messages/de.json index 05e3d5e35869..3f2e16fa4b62 100644 --- a/packages/devextreme/js/localization/messages/de.json +++ b/packages/devextreme/js/localization/messages/de.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Rot", "dxColorView-ariaGreen": "Grün", diff --git a/packages/devextreme/js/localization/messages/el.json b/packages/devextreme/js/localization/messages/el.json index 9aeaa162fa3e..be614aa545f7 100644 --- a/packages/devextreme/js/localization/messages/el.json +++ b/packages/devextreme/js/localization/messages/el.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Κόκκινο", "dxColorView-ariaGreen": "Πράσινο", diff --git a/packages/devextreme/js/localization/messages/en.json b/packages/devextreme/js/localization/messages/en.json index 277cb79281b4..423029b11dd8 100644 --- a/packages/devextreme/js/localization/messages/en.json +++ b/packages/devextreme/js/localization/messages/en.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Red", "dxColorView-ariaGreen": "Green", diff --git a/packages/devextreme/js/localization/messages/es.json b/packages/devextreme/js/localization/messages/es.json index 93b7af5ed031..fd46b893695c 100644 --- a/packages/devextreme/js/localization/messages/es.json +++ b/packages/devextreme/js/localization/messages/es.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Rojo", "dxColorView-ariaGreen": "Verde", diff --git a/packages/devextreme/js/localization/messages/fa.json b/packages/devextreme/js/localization/messages/fa.json index 9cbc9c7b0a19..96c5e699cbb3 100644 --- a/packages/devextreme/js/localization/messages/fa.json +++ b/packages/devextreme/js/localization/messages/fa.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "قرمز", "dxColorView-ariaGreen": "سبز", diff --git a/packages/devextreme/js/localization/messages/fi.json b/packages/devextreme/js/localization/messages/fi.json index 9f8d4b862dbf..f41cf4bad8fe 100644 --- a/packages/devextreme/js/localization/messages/fi.json +++ b/packages/devextreme/js/localization/messages/fi.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Punainen", "dxColorView-ariaGreen": "Vihreä", diff --git a/packages/devextreme/js/localization/messages/fr.json b/packages/devextreme/js/localization/messages/fr.json index 7299971a270c..86bb806125c1 100644 --- a/packages/devextreme/js/localization/messages/fr.json +++ b/packages/devextreme/js/localization/messages/fr.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Rouge", "dxColorView-ariaGreen": "Vert", diff --git a/packages/devextreme/js/localization/messages/hu.json b/packages/devextreme/js/localization/messages/hu.json index ebc6374a64a8..10bac7de3abc 100644 --- a/packages/devextreme/js/localization/messages/hu.json +++ b/packages/devextreme/js/localization/messages/hu.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Piros", "dxColorView-ariaGreen": "Zöld", diff --git a/packages/devextreme/js/localization/messages/it.json b/packages/devextreme/js/localization/messages/it.json index 834b07ee5ebd..80f8671229ac 100644 --- a/packages/devextreme/js/localization/messages/it.json +++ b/packages/devextreme/js/localization/messages/it.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Rosso", "dxColorView-ariaGreen": "Verde", diff --git a/packages/devextreme/js/localization/messages/ja.json b/packages/devextreme/js/localization/messages/ja.json index b5f592bba905..9673ea1ee898 100644 --- a/packages/devextreme/js/localization/messages/ja.json +++ b/packages/devextreme/js/localization/messages/ja.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "赤", "dxColorView-ariaGreen": "緑", diff --git a/packages/devextreme/js/localization/messages/lt.json b/packages/devextreme/js/localization/messages/lt.json index 2d5faffc6389..7a1c08e11036 100644 --- a/packages/devextreme/js/localization/messages/lt.json +++ b/packages/devextreme/js/localization/messages/lt.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Raudona", "dxColorView-ariaGreen": "Žalia", diff --git a/packages/devextreme/js/localization/messages/lv.json b/packages/devextreme/js/localization/messages/lv.json index 5ed70f369d58..6a1afd4305af 100644 --- a/packages/devextreme/js/localization/messages/lv.json +++ b/packages/devextreme/js/localization/messages/lv.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Sarkans", "dxColorView-ariaGreen": "Zaļš", diff --git a/packages/devextreme/js/localization/messages/nb.json b/packages/devextreme/js/localization/messages/nb.json index fbc21d1655e8..0a48d2093744 100644 --- a/packages/devextreme/js/localization/messages/nb.json +++ b/packages/devextreme/js/localization/messages/nb.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Rød", "dxColorView-ariaGreen": "Grønn", diff --git a/packages/devextreme/js/localization/messages/nl.json b/packages/devextreme/js/localization/messages/nl.json index 9a91dab81eb5..0d43b5d326a3 100644 --- a/packages/devextreme/js/localization/messages/nl.json +++ b/packages/devextreme/js/localization/messages/nl.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Rood", "dxColorView-ariaGreen": "Groen", diff --git a/packages/devextreme/js/localization/messages/pl.json b/packages/devextreme/js/localization/messages/pl.json index 02ee180314fe..264341121ec7 100644 --- a/packages/devextreme/js/localization/messages/pl.json +++ b/packages/devextreme/js/localization/messages/pl.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "czerwony", "dxColorView-ariaGreen": "zielony", diff --git a/packages/devextreme/js/localization/messages/pt.json b/packages/devextreme/js/localization/messages/pt.json index 5748150f6e0e..6440376fb2a6 100644 --- a/packages/devextreme/js/localization/messages/pt.json +++ b/packages/devextreme/js/localization/messages/pt.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Vermelho", "dxColorView-ariaGreen": "Verde", diff --git a/packages/devextreme/js/localization/messages/ro.json b/packages/devextreme/js/localization/messages/ro.json index bc5bff57627c..fcfd8f0b7d3f 100644 --- a/packages/devextreme/js/localization/messages/ro.json +++ b/packages/devextreme/js/localization/messages/ro.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Roșu", "dxColorView-ariaGreen": "Verde", diff --git a/packages/devextreme/js/localization/messages/ru.json b/packages/devextreme/js/localization/messages/ru.json index 51fc10f40d94..ef4aa3db60ae 100644 --- a/packages/devextreme/js/localization/messages/ru.json +++ b/packages/devextreme/js/localization/messages/ru.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Красный", "dxColorView-ariaGreen": "Зеленый", diff --git a/packages/devextreme/js/localization/messages/sl.json b/packages/devextreme/js/localization/messages/sl.json index 42370010f3fe..f3ea2bf72eaf 100644 --- a/packages/devextreme/js/localization/messages/sl.json +++ b/packages/devextreme/js/localization/messages/sl.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Rdeča", "dxColorView-ariaGreen": "Zelena", diff --git a/packages/devextreme/js/localization/messages/sv.json b/packages/devextreme/js/localization/messages/sv.json index 52808f9aa823..25b178babc5c 100644 --- a/packages/devextreme/js/localization/messages/sv.json +++ b/packages/devextreme/js/localization/messages/sv.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Röd", "dxColorView-ariaGreen": "Grön", diff --git a/packages/devextreme/js/localization/messages/tr.json b/packages/devextreme/js/localization/messages/tr.json index e6de2043ae20..0a1852fdb40a 100644 --- a/packages/devextreme/js/localization/messages/tr.json +++ b/packages/devextreme/js/localization/messages/tr.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Kırmızı", "dxColorView-ariaGreen": "Yeşil", diff --git a/packages/devextreme/js/localization/messages/vi.json b/packages/devextreme/js/localization/messages/vi.json index 53753c0f95d9..3d0ab3448fed 100644 --- a/packages/devextreme/js/localization/messages/vi.json +++ b/packages/devextreme/js/localization/messages/vi.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "Đỏ", "dxColorView-ariaGreen": "Xanh lá", diff --git a/packages/devextreme/js/localization/messages/zh-tw.json b/packages/devextreme/js/localization/messages/zh-tw.json index f31c493b188f..0cc90b492a89 100644 --- a/packages/devextreme/js/localization/messages/zh-tw.json +++ b/packages/devextreme/js/localization/messages/zh-tw.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "紅色", "dxColorView-ariaGreen": "綠色", diff --git a/packages/devextreme/js/localization/messages/zh.json b/packages/devextreme/js/localization/messages/zh.json index 617539bb8ff7..ddd5b4cccedb 100644 --- a/packages/devextreme/js/localization/messages/zh.json +++ b/packages/devextreme/js/localization/messages/zh.json @@ -334,10 +334,10 @@ "dxChat-messageListAriaLabel": "Message list", "dxChat-errorListAriaLabel": "Error list", "dxChat-emptyListMessage": "There are no messages in this chat", - "dxChat-typingIndicatorTyping": "{0} is typing...", - "dxChat-typingIndicatorTypingTwo": "{0} and {1} are typing...", - "dxChat-typingIndicatorTypingThree": "{0}, {1} and {2} are typing...", - "dxChat-typingIndicatorTypingOther": "{0} and other are typing...", + "dxChat-typingMessageSingleUser": "{0} is typing...", + "dxChat-typingMessageTwoUsers": "{0} and {1} are typing...", + "dxChat-typingMessageThreeUsers": "{0}, {1} and {2} are typing...", + "dxChat-typingMessageMultipleUsers": "{0} and other are typing...", "dxColorView-ariaRed": "红色", "dxColorView-ariaGreen": "绿色",