@sendbird/ai-agent-messenger-react 1.26.1 → 1.27.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -65,6 +65,7 @@ const s = {
65
65
  a11y_hint_open_conversation: "Görüşmeyi açar",
66
66
  a11y_hint_open_conversations: "Görüşme listesini açar",
67
67
  a11y_hint_close_conversation: "Görüşmeyi kapatır",
68
+ a11y_hint_close_messenger: "Mesajlaşmayı kapatır",
68
69
  a11y_hint_open_menu: "Menüyü açar",
69
70
  a11y_hint_connect_to_agent: "Bir insan temsilciye bağlar",
70
71
  a11y_hint_attach_file: "Dosya ekleme seçeneklerini açar",
@@ -85,7 +86,7 @@ const s = {
85
86
  system_message: "Sistem mesajı",
86
87
  footer_title: "Bir sohbet başlat",
87
88
  multiple_files_count: (e) => `${e} dosya`,
88
- a11y_conversation_item: (e, a, n, r) => `${e}, ${a}, ${n}, ${r} okunmamış mesaj`
89
+ a11y_conversation_item: (e, a, r, _) => `${e}, ${a}, ${r}${_ > 0 ? `, ${_} okunmamış mesaj` : ""}`
89
90
  },
90
91
  date_format: {
91
92
  just_now: "Az önce",
@@ -163,8 +164,8 @@ const s = {
163
164
  language: "tr",
164
165
  strings: s,
165
166
  dateLocale: t
166
- }, _ = l(i.strings), o = {
167
- ..._,
167
+ }, n = l(i.strings), o = {
168
+ ...n,
168
169
  // Channel Header
169
170
  HEADER_BUTTON__AGENT_HANDOFF: "Bir temsilciyle bağlan",
170
171
  // Message Input
@@ -198,7 +199,7 @@ const s = {
198
199
  FORM_VALIDATION_MAX_SELECT: (e) => `En fazla ${e} seçenek seçin`,
199
200
  FORM_VALIDATION_REGEX_FAILED: "Geçersiz format",
200
201
  /** @deprecated Please use DATE_FORMAT__DATE_SHORT instead. **/
201
- DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE: _.DATE_FORMAT__DATE_SHORT,
202
+ DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE: n.DATE_FORMAT__DATE_SHORT,
202
203
  /** @deprecated Unused string **/
203
204
  DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE_CAPTION: "HH:mm",
204
205
  /** @deprecated Unused string **/
@@ -65,6 +65,7 @@ const l = {
65
65
  a11y_hint_open_conversation: "대화를 엽니다",
66
66
  a11y_hint_open_conversations: "대화 목록을 엽니다",
67
67
  a11y_hint_close_conversation: "대화를 닫습니다",
68
+ a11y_hint_close_messenger: "메신저를 닫습니다",
68
69
  a11y_hint_open_menu: "메뉴를 엽니다",
69
70
  a11y_hint_connect_to_agent: "상담원에게 연결합니다",
70
71
  a11y_hint_attach_file: "파일 첨부 옵션을 엽니다",
@@ -85,7 +86,7 @@ const l = {
85
86
  system_message: "시스템 메시지",
86
87
  footer_title: "대화 시작",
87
88
  multiple_files_count: (_) => `${_}개의 파일`,
88
- a11y_conversation_item: (_, e, o, n) => `${_}, ${e}, ${o}, 읽지 않은 메시지 ${n}개`
89
+ a11y_conversation_item: (_, e, n, t) => `${_}, ${e}, ${n}${t > 0 ? `, 읽지 않은 메시지 ${t}개` : ""}`
89
90
  },
90
91
  date_format: {
91
92
  just_now: "방금",
@@ -163,8 +164,8 @@ const l = {
163
164
  language: "ko",
164
165
  strings: l,
165
166
  dateLocale: i
166
- }, t = s(a.strings), r = {
167
- ...t,
167
+ }, o = s(a.strings), r = {
168
+ ...o,
168
169
  // Channel Header
169
170
  HEADER_BUTTON__AGENT_HANDOFF: "상담사와 연결하기",
170
171
  // Message Input
@@ -198,7 +199,7 @@ const l = {
198
199
  FORM_VALIDATION_MAX_SELECT: (_) => `최대 ${_}개 옵션을 선택해 주세요`,
199
200
  FORM_VALIDATION_REGEX_FAILED: "유효하지 않은 형식",
200
201
  /** @deprecated Please use DATE_FORMAT__DATE_SHORT instead. **/
201
- DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE: t.DATE_FORMAT__DATE_SHORT,
202
+ DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE: o.DATE_FORMAT__DATE_SHORT,
202
203
  /** @deprecated Unused string **/
203
204
  DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE_CAPTION: "a h:mm",
204
205
  /** @deprecated Unused string **/