@sendbird/ai-agent-messenger-react 1.24.0 → 1.26.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.
@@ -1,5 +1,5 @@
1
- import { ja as s } from "date-fns/locale/ja";
2
- import { m as i } from "../index.js";
1
+ import { ja as i } from "date-fns/locale/ja";
2
+ import { m as s } from "../index.js";
3
3
  const l = {
4
4
  conversation: {
5
5
  input_placeholder: "質問する",
@@ -48,6 +48,10 @@ const l = {
48
48
  a11y_file_image: (_) => `画像ファイル: ${_}`,
49
49
  a11y_file_video: (_) => `動画ファイル: ${_}`,
50
50
  a11y_file_document: (_) => `文書ファイル: ${_}`,
51
+ a11y_received_file_image: "画像ファイル",
52
+ a11y_received_file_video: "動画ファイル",
53
+ a11y_received_file_pdf: (_) => `PDFファイル: ${_}`,
54
+ a11y_received_files_image_count: (_) => `画像${_}枚`,
51
55
  a11y_screen_conversation: "会話",
52
56
  a11y_screen_conversation_with_agent: (_) => `${_}との会話`,
53
57
  a11y_screen_conversation_list_no_count: "会話リスト",
@@ -67,7 +71,13 @@ const l = {
67
71
  a11y_hint_view_new_messages: "新しいメッセージまでスクロールします",
68
72
  a11y_hint_open_file: "ファイルを開きます",
69
73
  a11y_hint_open_image: "画像を開きます",
70
- a11y_hint_send_reply: "この返信を送信します"
74
+ a11y_hint_send_reply: "この返信を送信します",
75
+ image_viewer_default_title: "画像",
76
+ a11y_image_viewer_close: "画像ビューアを閉じる",
77
+ a11y_image_viewer_previous: "前の画像",
78
+ a11y_image_viewer_next: "次の画像",
79
+ a11y_image_viewer_download: "画像をダウンロード",
80
+ attachment_document: "ファイル"
71
81
  },
72
82
  conversation_list: {
73
83
  header_title: "会話",
@@ -75,7 +85,7 @@ const l = {
75
85
  system_message: "システムメッセージ",
76
86
  footer_title: "会話を始める",
77
87
  multiple_files_count: (_) => `${_}個のファイル`,
78
- a11y_conversation_item: (_, e, o, t) => `${_}, ${e}, ${o}, 未読メッセージ${t}件`
88
+ a11y_conversation_item: (_, e, n, o) => `${_}, ${e}, ${n}, 未読メッセージ${o}件`
79
89
  },
80
90
  date_format: {
81
91
  just_now: "たった今",
@@ -95,7 +105,7 @@ const l = {
95
105
  question: "あなたの経験をどう評価しますか?",
96
106
  submit_label: "送信",
97
107
  submission_expired: "申し訳ありません、アンケートの受付期間は終了しました。",
98
- a11y_rating_label: (_, e) => `5点中${_}点 — ${e}`,
108
+ a11y_csat_rating_label: (_, e) => `5点中${_}点 — ${e}`,
99
109
  a11y_hint_select_rating: "この評価を選択します"
100
110
  },
101
111
  form: {
@@ -127,13 +137,34 @@ const l = {
127
137
  confirm_description: "担当者に転送されます。会話履歴が共有されます。",
128
138
  confirm_cancel: "キャンセル",
129
139
  confirm_handoff: "引き継ぎ"
140
+ },
141
+ memory: {
142
+ dialog_title: "ユーザーメモリ",
143
+ desc_on: "メモリは**オン**です。これまでのご質問や好みに合わせたパーソナライズされた回答を提供するため、会話履歴を記憶します。",
144
+ desc_off: "メモリは**オフ**です。オンにすると、これまでのご質問や好みに合わせたパーソナライズされた回答を提供するため、会話履歴を記憶します。",
145
+ button_use: "使用する",
146
+ button_dont_use: "使用しない",
147
+ button_keep_using: "使用を続ける",
148
+ button_disable: "無効にする",
149
+ button_disable_and_delete: "無効にしてメモリを削除",
150
+ button_keep_off: "オフのまま",
151
+ button_enable: "メモリを有効にする",
152
+ button_cancel: "キャンセル",
153
+ error_message: "メモリの状態を更新できませんでした。もう一度お試しください。",
154
+ a11y_indicator_manage: "メモリを管理",
155
+ a11y_indicator_on: "メモリはオン",
156
+ a11y_indicator_off: "メモリはオフ"
157
+ },
158
+ connection_delay: {
159
+ title: "問題が発生しました。まもなく再接続されます。",
160
+ description: (_) => `推定待ち時間:${_}`
130
161
  }
131
162
  }, a = {
132
163
  language: "ja",
133
164
  strings: l,
134
- dateLocale: s
135
- }, n = i(a.strings), r = {
136
- ...n,
165
+ dateLocale: i
166
+ }, t = s(a.strings), r = {
167
+ ...t,
137
168
  // Channel Header
138
169
  HEADER_BUTTON__AGENT_HANDOFF: "エージェントに接続",
139
170
  // Message Input
@@ -147,20 +178,11 @@ const l = {
147
178
  FILE_UPLOAD_NOTIFICATION__SIZE_LIMIT: "ファイルの最大サイズは%dMBです。",
148
179
  FILE_UPLOAD_NOTIFICATION__FILES_EXCLUDED_BY_VALIDATION: "%d個のファイルが制限により除外されました。ファイルを個別に選択してください。",
149
180
  FILE_UPLOAD_PHOTOS: "写真",
150
- FILE_UPLOAD_FILES: "ファイル",
151
181
  // File Viewer
152
182
  FILE_VIEWER__UNSUPPORT: "サポートされていないメッセージ",
153
- // Image Viewer
154
- IMAGE_VIEWER__DEFAULT_TITLE: "画像",
155
183
  // Accessibility
156
- A11Y_IMAGE_VIEWER_CLOSE: "画像ビューアを閉じる",
157
- A11Y_IMAGE_VIEWER_PREVIOUS: "前の画像",
158
- A11Y_IMAGE_VIEWER_NEXT: "次の画像",
159
- A11Y_IMAGE_VIEWER_DOWNLOAD: "画像をダウンロード",
160
- A11Y_ATTACH_FILE: "ファイルを添付",
161
184
  A11Y_FILE_SELECTED: (_) => `${_}、選択済み`,
162
185
  A11Y_FILE_REMOVE_BUTTON: (_) => `ファイルを削除: ${_}`,
163
- A11Y_CSAT_RATING_LABEL: (_, e) => `${_} — ${e}`,
164
186
  A11Y_FILE_UPLOAD_OPTIONS: "ファイルアップロードオプション",
165
187
  A11Y_FAILED_MESSAGE_OPTIONS: "送信失敗メッセージのオプション",
166
188
  A11Y_FEEDBACK_OPTIONS: "フィードバックオプション",
@@ -176,7 +198,7 @@ const l = {
176
198
  FORM_VALIDATION_MAX_SELECT: (_) => `最大${_}個のオプションを選択してください`,
177
199
  FORM_VALIDATION_REGEX_FAILED: "無効な形式",
178
200
  /** @deprecated Please use DATE_FORMAT__DATE_SHORT instead. **/
179
- DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE: n.DATE_FORMAT__DATE_SHORT,
201
+ DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE: t.DATE_FORMAT__DATE_SHORT,
180
202
  /** @deprecated Unused string **/
181
203
  DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE_CAPTION: "HH:mm",
182
204
  /** @deprecated Unused string **/
@@ -193,11 +215,11 @@ const l = {
193
215
  NO_NAME: "(名前なし)",
194
216
  /** @deprecated Unused string **/
195
217
  CHANNEL_FROZEN: "チャンネルが凍結されました"
196
- }, A = {
218
+ }, y = {
197
219
  language: a.language,
198
220
  dateLocale: a.dateLocale,
199
221
  stringSet: r
200
222
  };
201
223
  export {
202
- A as default
224
+ y as default
203
225
  };
@@ -1,6 +1,6 @@
1
- import { fr as r } from "date-fns/locale/fr";
1
+ import { fr as t } from "date-fns/locale/fr";
2
2
  import { m as o } from "../index.js";
3
- const t = {
3
+ const _ = {
4
4
  conversation: {
5
5
  input_placeholder: "Poser une question",
6
6
  input_placeholder_disabled: "Le chat n'est pas disponible dans ce canal",
@@ -48,6 +48,10 @@ const t = {
48
48
  a11y_file_image: (e) => `Fichier image : ${e}`,
49
49
  a11y_file_video: (e) => `Fichier vidéo : ${e}`,
50
50
  a11y_file_document: (e) => `Fichier document : ${e}`,
51
+ a11y_received_file_image: "Fichier image",
52
+ a11y_received_file_video: "Fichier vidéo",
53
+ a11y_received_file_pdf: (e) => `Fichier PDF : ${e}`,
54
+ a11y_received_files_image_count: (e) => `${e} image${e === 1 ? "" : "s"}`,
51
55
  a11y_screen_conversation: "Conversation",
52
56
  a11y_screen_conversation_with_agent: (e) => `Conversation avec ${e}`,
53
57
  a11y_screen_conversation_list_no_count: "Liste des conversations",
@@ -67,7 +71,13 @@ const t = {
67
71
  a11y_hint_view_new_messages: "Fait défiler vers les nouveaux messages",
68
72
  a11y_hint_open_file: "Ouvre le fichier",
69
73
  a11y_hint_open_image: "Ouvre l'image",
70
- a11y_hint_send_reply: "Envoie cette réponse"
74
+ a11y_hint_send_reply: "Envoie cette réponse",
75
+ image_viewer_default_title: "Image",
76
+ a11y_image_viewer_close: "Fermer la visionneuse d'images",
77
+ a11y_image_viewer_previous: "Image précédente",
78
+ a11y_image_viewer_next: "Image suivante",
79
+ a11y_image_viewer_download: "Télécharger l'image",
80
+ attachment_document: "Fichiers"
71
81
  },
72
82
  conversation_list: {
73
83
  header_title: "Conversations",
@@ -75,7 +85,7 @@ const t = {
75
85
  system_message: "Message système",
76
86
  footer_title: "Démarrer une conversation",
77
87
  multiple_files_count: (e) => `${e} fichier${e === 1 ? "" : "s"}`,
78
- a11y_conversation_item: (e, a, i, n) => `${e}, ${a}, ${i}, ${n} message${n === 1 ? "" : "s"} non lu${n === 1 ? "" : "s"}`
88
+ a11y_conversation_item: (e, a, r, s) => `${e}, ${a}, ${r}, ${s} message${s === 1 ? "" : "s"} non lu${s === 1 ? "" : "s"}`
79
89
  },
80
90
  date_format: {
81
91
  just_now: "À l'instant",
@@ -95,7 +105,7 @@ const t = {
95
105
  question: "Comment évalueriez-vous votre expérience ?",
96
106
  submit_label: "Envoyer",
97
107
  submission_expired: "Désolé, la période de l'enquête est terminée.",
98
- a11y_rating_label: (e, a) => `${e} sur 5 — ${a}`,
108
+ a11y_csat_rating_label: (e, a) => `${e} sur 5 — ${a}`,
99
109
  a11y_hint_select_rating: "Sélectionne cette note"
100
110
  },
101
111
  form: {
@@ -127,13 +137,34 @@ const t = {
127
137
  confirm_description: "Vous serez transféré à un agent humain. Votre historique de conversation sera partagé.",
128
138
  confirm_cancel: "Annuler",
129
139
  confirm_handoff: "Transférer"
140
+ },
141
+ memory: {
142
+ dialog_title: "Mémoire utilisateur",
143
+ desc_on: "La mémoire est **activée**. Elle mémorise votre historique de conversation pour fournir des réponses personnalisées adaptées à vos questions et préférences précédentes.",
144
+ desc_off: "La mémoire est **désactivée**. Si elle est activée, elle mémorisera votre historique de conversation pour fournir des réponses personnalisées adaptées à vos questions et préférences précédentes.",
145
+ button_use: "Utiliser",
146
+ button_dont_use: "Ne pas utiliser",
147
+ button_keep_using: "Continuer à utiliser",
148
+ button_disable: "Désactiver",
149
+ button_disable_and_delete: "Désactiver et supprimer la mémoire",
150
+ button_keep_off: "Garder désactivée",
151
+ button_enable: "Activer la mémoire",
152
+ button_cancel: "Annuler",
153
+ error_message: "Échec de la mise à jour de l'état de la mémoire. Veuillez réessayer.",
154
+ a11y_indicator_manage: "Gérer la mémoire",
155
+ a11y_indicator_on: "La mémoire est activée",
156
+ a11y_indicator_off: "La mémoire est désactivée"
157
+ },
158
+ connection_delay: {
159
+ title: "Un problème est survenu. Vous serez reconnecté sous peu.",
160
+ description: (e) => `Temps d'attente estimé : ${e}`
130
161
  }
131
- }, s = {
162
+ }, n = {
132
163
  language: "fr",
133
- strings: t,
134
- dateLocale: r
135
- }, _ = o(s.strings), l = {
136
- ..._,
164
+ strings: _,
165
+ dateLocale: t
166
+ }, i = o(n.strings), l = {
167
+ ...i,
137
168
  // Channel Header
138
169
  HEADER_BUTTON__AGENT_HANDOFF: "Se connecter avec un agent",
139
170
  // Message Input
@@ -147,20 +178,11 @@ const t = {
147
178
  FILE_UPLOAD_NOTIFICATION__SIZE_LIMIT: "La taille maximale par fichier est de %d MB.",
148
179
  FILE_UPLOAD_NOTIFICATION__FILES_EXCLUDED_BY_VALIDATION: "%d fichiers ont été exclus en raison des limites. Veuillez sélectionner les fichiers individuellement.",
149
180
  FILE_UPLOAD_PHOTOS: "Photos",
150
- FILE_UPLOAD_FILES: "Fichiers",
151
181
  // File Viewer
152
182
  FILE_VIEWER__UNSUPPORT: "Message non pris en charge",
153
- // Image Viewer
154
- IMAGE_VIEWER__DEFAULT_TITLE: "Image",
155
183
  // Accessibility
156
- A11Y_IMAGE_VIEWER_CLOSE: "Fermer la visionneuse d'images",
157
- A11Y_IMAGE_VIEWER_PREVIOUS: "Image précédente",
158
- A11Y_IMAGE_VIEWER_NEXT: "Image suivante",
159
- A11Y_IMAGE_VIEWER_DOWNLOAD: "Télécharger l'image",
160
- A11Y_ATTACH_FILE: "Joindre un fichier",
161
184
  A11Y_FILE_SELECTED: (e) => `${e}, sélectionné`,
162
185
  A11Y_FILE_REMOVE_BUTTON: (e) => `Supprimer le fichier : ${e}`,
163
- A11Y_CSAT_RATING_LABEL: (e, a) => `${e} — ${a}`,
164
186
  A11Y_FILE_UPLOAD_OPTIONS: "Options de téléchargement de fichiers",
165
187
  A11Y_FAILED_MESSAGE_OPTIONS: "Options du message échoué",
166
188
  A11Y_FEEDBACK_OPTIONS: "Options de commentaires",
@@ -176,7 +198,7 @@ const t = {
176
198
  FORM_VALIDATION_MAX_SELECT: (e) => `Sélectionnez au maximum ${e} options`,
177
199
  FORM_VALIDATION_REGEX_FAILED: "Format invalide",
178
200
  /** @deprecated Please use DATE_FORMAT__DATE_SHORT instead. **/
179
- DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE: _.DATE_FORMAT__DATE_SHORT,
201
+ DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE: i.DATE_FORMAT__DATE_SHORT,
180
202
  /** @deprecated Unused string **/
181
203
  DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE_CAPTION: "HH:mm",
182
204
  /** @deprecated Unused string **/
@@ -194,8 +216,8 @@ const t = {
194
216
  /** @deprecated Unused string **/
195
217
  CHANNEL_FROZEN: "Canal gelé"
196
218
  }, u = {
197
- language: s.language,
198
- dateLocale: s.dateLocale,
219
+ language: n.language,
220
+ dateLocale: n.dateLocale,
199
221
  stringSet: l
200
222
  };
201
223
  export {
@@ -1,6 +1,6 @@
1
- import { tr as s } from "date-fns/locale/tr";
2
- import { m as t } from "../index.js";
3
- const l = {
1
+ import { tr as t } from "date-fns/locale/tr";
2
+ import { m as l } from "../index.js";
3
+ const s = {
4
4
  conversation: {
5
5
  input_placeholder: "Bir soru sor",
6
6
  input_placeholder_disabled: "Bu kanalda sohbet mevcut değil",
@@ -48,6 +48,10 @@ const l = {
48
48
  a11y_file_image: (e) => `Görsel dosya: ${e}`,
49
49
  a11y_file_video: (e) => `Video dosya: ${e}`,
50
50
  a11y_file_document: (e) => `Belge dosya: ${e}`,
51
+ a11y_received_file_image: "Görsel dosya",
52
+ a11y_received_file_video: "Video dosya",
53
+ a11y_received_file_pdf: (e) => `PDF dosyası: ${e}`,
54
+ a11y_received_files_image_count: (e) => `${e} görsel`,
51
55
  a11y_screen_conversation: "Konuşma",
52
56
  a11y_screen_conversation_with_agent: (e) => `${e} ile konuşma`,
53
57
  a11y_screen_conversation_list_no_count: "Konuşma listesi",
@@ -67,7 +71,13 @@ const l = {
67
71
  a11y_hint_view_new_messages: "Yeni mesajlara kaydırır",
68
72
  a11y_hint_open_file: "Dosyayı açar",
69
73
  a11y_hint_open_image: "Görseli açar",
70
- a11y_hint_send_reply: "Bu yanıtı gönderir"
74
+ a11y_hint_send_reply: "Bu yanıtı gönderir",
75
+ image_viewer_default_title: "Görsel",
76
+ a11y_image_viewer_close: "Görsel görüntüleyiciyi kapat",
77
+ a11y_image_viewer_previous: "Önceki görsel",
78
+ a11y_image_viewer_next: "Sonraki görsel",
79
+ a11y_image_viewer_download: "Görseli indir",
80
+ attachment_document: "Dosyalar"
71
81
  },
72
82
  conversation_list: {
73
83
  header_title: "Görüşmeler",
@@ -95,7 +105,7 @@ const l = {
95
105
  question: "Deneyiminizi nasıl değerlendirirsiniz?",
96
106
  submit_label: "Gönder",
97
107
  submission_expired: "Üzgünüz, anket süresi sona erdi.",
98
- a11y_rating_label: (e, a) => `5 üzerinden ${e} — ${a}`,
108
+ a11y_csat_rating_label: (e, a) => `5 üzerinden ${e} — ${a}`,
99
109
  a11y_hint_select_rating: "Bu değerlendirmeyi seçer"
100
110
  },
101
111
  form: {
@@ -127,13 +137,34 @@ const l = {
127
137
  confirm_description: "Bir insan temsilciye aktarılacaksınız. Görüşme geçmişiniz paylaşılacaktır.",
128
138
  confirm_cancel: "İptal",
129
139
  confirm_handoff: "Aktar"
140
+ },
141
+ memory: {
142
+ dialog_title: "Kullanıcı belleği",
143
+ desc_on: "Bellek **açık**. Önceki sorularınıza ve tercihlerinize göre kişiselleştirilmiş yanıtlar sunmak için konuşma geçmişinizi hatırlar.",
144
+ desc_off: "Bellek **kapalı**. Açıldığında, önceki sorularınıza ve tercihlerinize göre kişiselleştirilmiş yanıtlar sunmak için konuşma geçmişinizi hatırlayacak.",
145
+ button_use: "Kullan",
146
+ button_dont_use: "Kullanma",
147
+ button_keep_using: "Kullanmaya devam et",
148
+ button_disable: "Devre dışı bırak",
149
+ button_disable_and_delete: "Devre dışı bırak ve belleği sil",
150
+ button_keep_off: "Kapalı tut",
151
+ button_enable: "Belleği etkinleştir",
152
+ button_cancel: "İptal",
153
+ error_message: "Bellek durumu güncellenemedi. Lütfen tekrar deneyin.",
154
+ a11y_indicator_manage: "Belleği yönet",
155
+ a11y_indicator_on: "Bellek açık",
156
+ a11y_indicator_off: "Bellek kapalı"
157
+ },
158
+ connection_delay: {
159
+ title: "Bir şeyler ters gitti. Kısa süre içinde yeniden bağlanacaksınız.",
160
+ description: (e) => `Tahmini bekleme süresi: ${e}`
130
161
  }
131
- }, _ = {
162
+ }, i = {
132
163
  language: "tr",
133
- strings: l,
134
- dateLocale: s
135
- }, i = t(_.strings), o = {
136
- ...i,
164
+ strings: s,
165
+ dateLocale: t
166
+ }, _ = l(i.strings), o = {
167
+ ..._,
137
168
  // Channel Header
138
169
  HEADER_BUTTON__AGENT_HANDOFF: "Bir temsilciyle bağlan",
139
170
  // Message Input
@@ -147,20 +178,11 @@ const l = {
147
178
  FILE_UPLOAD_NOTIFICATION__SIZE_LIMIT: "Maksimum dosya boyutu %d MB'dir.",
148
179
  FILE_UPLOAD_NOTIFICATION__FILES_EXCLUDED_BY_VALIDATION: "%d dosya limitler nedeniyle hariç tutuldu. Lütfen dosyaları tek tek seçin.",
149
180
  FILE_UPLOAD_PHOTOS: "Fotoğraflar",
150
- FILE_UPLOAD_FILES: "Dosyalar",
151
181
  // File Viewer
152
182
  FILE_VIEWER__UNSUPPORT: "Desteklenmeyen mesaj",
153
- // Image Viewer
154
- IMAGE_VIEWER__DEFAULT_TITLE: "Görsel",
155
183
  // Accessibility
156
- A11Y_IMAGE_VIEWER_CLOSE: "Görsel görüntüleyiciyi kapat",
157
- A11Y_IMAGE_VIEWER_PREVIOUS: "Önceki görsel",
158
- A11Y_IMAGE_VIEWER_NEXT: "Sonraki görsel",
159
- A11Y_IMAGE_VIEWER_DOWNLOAD: "Görseli indir",
160
- A11Y_ATTACH_FILE: "Dosya ekle",
161
184
  A11Y_FILE_SELECTED: (e) => `${e}, seçili`,
162
185
  A11Y_FILE_REMOVE_BUTTON: (e) => `Dosyayı kaldır: ${e}`,
163
- A11Y_CSAT_RATING_LABEL: (e, a) => `${e} — ${a}`,
164
186
  A11Y_FILE_UPLOAD_OPTIONS: "Dosya yükleme seçenekleri",
165
187
  A11Y_FAILED_MESSAGE_OPTIONS: "Başarısız mesaj seçenekleri",
166
188
  A11Y_FEEDBACK_OPTIONS: "Geri bildirim seçenekleri",
@@ -176,7 +198,7 @@ const l = {
176
198
  FORM_VALIDATION_MAX_SELECT: (e) => `En fazla ${e} seçenek seçin`,
177
199
  FORM_VALIDATION_REGEX_FAILED: "Geçersiz format",
178
200
  /** @deprecated Please use DATE_FORMAT__DATE_SHORT instead. **/
179
- DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE: i.DATE_FORMAT__DATE_SHORT,
201
+ DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE: _.DATE_FORMAT__DATE_SHORT,
180
202
  /** @deprecated Unused string **/
181
203
  DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE_CAPTION: "HH:mm",
182
204
  /** @deprecated Unused string **/
@@ -194,8 +216,8 @@ const l = {
194
216
  /** @deprecated Unused string **/
195
217
  CHANNEL_FROZEN: "Kanal dondu"
196
218
  }, y = {
197
- language: _.language,
198
- dateLocale: _.dateLocale,
219
+ language: i.language,
220
+ dateLocale: i.dateLocale,
199
221
  stringSet: o
200
222
  };
201
223
  export {
@@ -1,5 +1,5 @@
1
- import { hi as s } from "date-fns/locale/hi";
2
- import { m as i } from "../index.js";
1
+ import { hi as i } from "date-fns/locale/hi";
2
+ import { m as s } from "../index.js";
3
3
  const l = {
4
4
  conversation: {
5
5
  input_placeholder: "एक प्रश्न पूछें",
@@ -48,6 +48,10 @@ const l = {
48
48
  a11y_file_image: (_) => `छवि फ़ाइल: ${_}`,
49
49
  a11y_file_video: (_) => `वीडियो फ़ाइल: ${_}`,
50
50
  a11y_file_document: (_) => `दस्तावेज़ फ़ाइल: ${_}`,
51
+ a11y_received_file_image: "छवि फ़ाइल",
52
+ a11y_received_file_video: "वीडियो फ़ाइल",
53
+ a11y_received_file_pdf: (_) => `PDF फ़ाइल: ${_}`,
54
+ a11y_received_files_image_count: (_) => `${_} छवि${_ === 1 ? "" : "याँ"}`,
51
55
  a11y_screen_conversation: "बातचीत",
52
56
  a11y_screen_conversation_with_agent: (_) => `${_} के साथ बातचीत`,
53
57
  a11y_screen_conversation_list_no_count: "बातचीत सूची",
@@ -67,7 +71,13 @@ const l = {
67
71
  a11y_hint_view_new_messages: "नए संदेशों तक स्क्रॉल करता है",
68
72
  a11y_hint_open_file: "फ़ाइल खोलता है",
69
73
  a11y_hint_open_image: "छवि खोलता है",
70
- a11y_hint_send_reply: "यह जवाब भेजता है"
74
+ a11y_hint_send_reply: "यह जवाब भेजता है",
75
+ image_viewer_default_title: "छवि",
76
+ a11y_image_viewer_close: "छवि व्यूअर बंद करें",
77
+ a11y_image_viewer_previous: "पिछली छवि",
78
+ a11y_image_viewer_next: "अगली छवि",
79
+ a11y_image_viewer_download: "छवि डाउनलोड करें",
80
+ attachment_document: "फाइलें"
71
81
  },
72
82
  conversation_list: {
73
83
  header_title: "बातचीत",
@@ -75,7 +85,7 @@ const l = {
75
85
  system_message: "सिस्टम संदेश",
76
86
  footer_title: "एक बातचीत शुरू करें",
77
87
  multiple_files_count: (_) => `${_} ${_ === 1 ? "फ़ाइल" : "फ़ाइलें"}`,
78
- a11y_conversation_item: (_, e, t, o) => `${_}, ${e}, ${t}, ${o} अपठित संदेश`
88
+ a11y_conversation_item: (_, e, n, o) => `${_}, ${e}, ${n}, ${o} अपठित संदेश`
79
89
  },
80
90
  date_format: {
81
91
  just_now: "अभी",
@@ -95,7 +105,7 @@ const l = {
95
105
  question: "आप अपने अनुभव का मूल्यांकन कैसे करेंगे?",
96
106
  submit_label: "सबमिट करें",
97
107
  submission_expired: "क्षमा करें, सर्वेक्षण अवधि समाप्त हो गई है।",
98
- a11y_rating_label: (_, e) => `5 में से ${_} — ${e}`,
108
+ a11y_csat_rating_label: (_, e) => `5 में से ${_} — ${e}`,
99
109
  a11y_hint_select_rating: "इस रेटिंग को चुनता है"
100
110
  },
101
111
  form: {
@@ -127,13 +137,34 @@ const l = {
127
137
  confirm_description: "आपको एक मानव एजेंट को स्थानांतरित किया जाएगा। आपका वार्तालाप इतिहास साझा किया जाएगा।",
128
138
  confirm_cancel: "रद्द करें",
129
139
  confirm_handoff: "हैंडऑफ़"
140
+ },
141
+ memory: {
142
+ dialog_title: "उपयोगकर्ता मेमोरी",
143
+ desc_on: "मेमोरी **चालू है**। यह आपके पिछले प्रश्नों और प्राथमिकताओं के अनुरूप व्यक्तिगत उत्तर देने के लिए आपके बातचीत इतिहास को याद रखती है।",
144
+ desc_off: "मेमोरी **बंद है**। चालू करने पर, यह आपके पिछले प्रश्नों और प्राथमिकताओं के अनुरूप व्यक्तिगत उत्तर देने के लिए आपके बातचीत इतिहास को याद रखेगी।",
145
+ button_use: "उपयोग करें",
146
+ button_dont_use: "उपयोग न करें",
147
+ button_keep_using: "उपयोग करते रहें",
148
+ button_disable: "अक्षम करें",
149
+ button_disable_and_delete: "अक्षम करें और मेमोरी हटाएं",
150
+ button_keep_off: "बंद रखें",
151
+ button_enable: "मेमोरी सक्षम करें",
152
+ button_cancel: "रद्द करें",
153
+ error_message: "मेमोरी स्थिति अपडेट करने में विफल। कृपया पुनः प्रयास करें।",
154
+ a11y_indicator_manage: "मेमोरी प्रबंधित करें",
155
+ a11y_indicator_on: "मेमोरी चालू है",
156
+ a11y_indicator_off: "मेमोरी बंद है"
157
+ },
158
+ connection_delay: {
159
+ title: "कुछ गलत हो गया। आप शीघ्र ही पुन: कनेक्ट हो जाएंगे।",
160
+ description: (_) => `अनुमानित प्रतीक्षा समय: ${_}`
130
161
  }
131
162
  }, a = {
132
163
  language: "hi",
133
164
  strings: l,
134
- dateLocale: s
135
- }, n = i(a.strings), r = {
136
- ...n,
165
+ dateLocale: i
166
+ }, t = s(a.strings), r = {
167
+ ...t,
137
168
  // Channel Header
138
169
  HEADER_BUTTON__AGENT_HANDOFF: "एजेंट से कनेक्ट करें",
139
170
  // Message Input
@@ -147,20 +178,11 @@ const l = {
147
178
  FILE_UPLOAD_NOTIFICATION__SIZE_LIMIT: "प्रति फ़ाइल अधिकतम आकार %d MB है।",
148
179
  FILE_UPLOAD_NOTIFICATION__FILES_EXCLUDED_BY_VALIDATION: "%d फ़ाइलें सीमा के कारण बाहर रखी गई थीं। कृपया फ़ाइलों को अलग-अलग चुनें।",
149
180
  FILE_UPLOAD_PHOTOS: "फ़ोटो",
150
- FILE_UPLOAD_FILES: "फाइलें",
151
181
  // File Viewer
152
182
  FILE_VIEWER__UNSUPPORT: "असमर्थित संदेश",
153
- // Image Viewer
154
- IMAGE_VIEWER__DEFAULT_TITLE: "छवि",
155
183
  // Accessibility
156
- A11Y_IMAGE_VIEWER_CLOSE: "छवि व्यूअर बंद करें",
157
- A11Y_IMAGE_VIEWER_PREVIOUS: "पिछली छवि",
158
- A11Y_IMAGE_VIEWER_NEXT: "अगली छवि",
159
- A11Y_IMAGE_VIEWER_DOWNLOAD: "छवि डाउनलोड करें",
160
- A11Y_ATTACH_FILE: "फ़ाइल संलग्न करें",
161
184
  A11Y_FILE_SELECTED: (_) => `${_}, चयनित`,
162
185
  A11Y_FILE_REMOVE_BUTTON: (_) => `फ़ाइल हटाएँ: ${_}`,
163
- A11Y_CSAT_RATING_LABEL: (_, e) => `${_} — ${e}`,
164
186
  A11Y_FILE_UPLOAD_OPTIONS: "फ़ाइल अपलोड विकल्प",
165
187
  A11Y_FAILED_MESSAGE_OPTIONS: "विफल संदेश विकल्प",
166
188
  A11Y_FEEDBACK_OPTIONS: "प्रतिक्रिया विकल्प",
@@ -176,7 +198,7 @@ const l = {
176
198
  FORM_VALIDATION_MAX_SELECT: (_) => `अधिकतम ${_} विकल्प चुनें`,
177
199
  FORM_VALIDATION_REGEX_FAILED: "गलत प्रारूप",
178
200
  /** @deprecated Please use DATE_FORMAT__DATE_SHORT instead. **/
179
- DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE: n.DATE_FORMAT__DATE_SHORT,
201
+ DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE: t.DATE_FORMAT__DATE_SHORT,
180
202
  /** @deprecated Unused string **/
181
203
  DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE_CAPTION: "HH:mm",
182
204
  /** @deprecated Unused string **/
@@ -193,11 +215,11 @@ const l = {
193
215
  NO_NAME: "(कोई नाम नहीं)",
194
216
  /** @deprecated Unused string **/
195
217
  CHANNEL_FROZEN: "चैनल फ्रीज हो गया"
196
- }, A = {
218
+ }, m = {
197
219
  language: a.language,
198
220
  dateLocale: a.dateLocale,
199
221
  stringSet: r
200
222
  };
201
223
  export {
202
- A as default
224
+ m as default
203
225
  };
@@ -48,6 +48,10 @@ const t = {
48
48
  a11y_file_image: (e) => `Arquivo de imagem: ${e}`,
49
49
  a11y_file_video: (e) => `Arquivo de vídeo: ${e}`,
50
50
  a11y_file_document: (e) => `Arquivo de documento: ${e}`,
51
+ a11y_received_file_image: "Arquivo de imagem",
52
+ a11y_received_file_video: "Arquivo de vídeo",
53
+ a11y_received_file_pdf: (e) => `Arquivo PDF: ${e}`,
54
+ a11y_received_files_image_count: (e) => `${e} ${e === 1 ? "imagem" : "imagens"}`,
51
55
  a11y_screen_conversation: "Conversa",
52
56
  a11y_screen_conversation_with_agent: (e) => `Conversa com ${e}`,
53
57
  a11y_screen_conversation_list_no_count: "Lista de conversas",
@@ -67,7 +71,13 @@ const t = {
67
71
  a11y_hint_view_new_messages: "Rola até as novas mensagens",
68
72
  a11y_hint_open_file: "Abre o arquivo",
69
73
  a11y_hint_open_image: "Abre a imagem",
70
- a11y_hint_send_reply: "Envia esta resposta"
74
+ a11y_hint_send_reply: "Envia esta resposta",
75
+ image_viewer_default_title: "Imagem",
76
+ a11y_image_viewer_close: "Fechar visualizador de imagens",
77
+ a11y_image_viewer_previous: "Imagem anterior",
78
+ a11y_image_viewer_next: "Próxima imagem",
79
+ a11y_image_viewer_download: "Baixar imagem",
80
+ attachment_document: "Arquivos"
71
81
  },
72
82
  conversation_list: {
73
83
  header_title: "Conversas",
@@ -75,7 +85,7 @@ const t = {
75
85
  system_message: "Mensagem do sistema",
76
86
  footer_title: "Iniciar uma conversa",
77
87
  multiple_files_count: (e) => `${e} ${e === 1 ? "arquivo" : "arquivos"}`,
78
- a11y_conversation_item: (e, a, s, _) => `${e}, ${a}, ${s}, ${_} ${_ === 1 ? "mensagem não lida" : "mensagens não lidas"}`
88
+ a11y_conversation_item: (e, a, s, n) => `${e}, ${a}, ${s}, ${n} ${n === 1 ? "mensagem não lida" : "mensagens não lidas"}`
79
89
  },
80
90
  date_format: {
81
91
  just_now: "Agora mesmo",
@@ -95,7 +105,7 @@ const t = {
95
105
  question: "Como você avaliaria sua experiência?",
96
106
  submit_label: "Enviar",
97
107
  submission_expired: "Desculpe, o período da pesquisa foi encerrado.",
98
- a11y_rating_label: (e, a) => `${e} de 5 — ${a}`,
108
+ a11y_csat_rating_label: (e, a) => `${e} de 5 — ${a}`,
99
109
  a11y_hint_select_rating: "Seleciona esta avaliação"
100
110
  },
101
111
  form: {
@@ -127,13 +137,34 @@ const t = {
127
137
  confirm_description: "Você será transferido para um agente humano. Seu histórico de conversa será compartilhado.",
128
138
  confirm_cancel: "Cancelar",
129
139
  confirm_handoff: "Transferir"
140
+ },
141
+ memory: {
142
+ dialog_title: "Memória do usuário",
143
+ desc_on: "A memória está **ativada**. Ela lembra do seu histórico de conversa para fornecer respostas personalizadas adaptadas às suas perguntas e preferências anteriores.",
144
+ desc_off: "A memória está **desativada**. Se ativada, lembrará do seu histórico de conversa para fornecer respostas personalizadas adaptadas às suas perguntas e preferências anteriores.",
145
+ button_use: "Usar",
146
+ button_dont_use: "Não usar",
147
+ button_keep_using: "Continuar usando",
148
+ button_disable: "Desativar",
149
+ button_disable_and_delete: "Desativar e excluir memória",
150
+ button_keep_off: "Manter desativada",
151
+ button_enable: "Ativar memória",
152
+ button_cancel: "Cancelar",
153
+ error_message: "Falha ao atualizar o estado da memória. Tente novamente.",
154
+ a11y_indicator_manage: "Gerenciar memória",
155
+ a11y_indicator_on: "Memória ativada",
156
+ a11y_indicator_off: "Memória desativada"
157
+ },
158
+ connection_delay: {
159
+ title: "Algo deu errado. Você será reconectado em breve.",
160
+ description: (e) => `Tempo estimado de espera: ${e}`
130
161
  }
131
162
  }, o = {
132
163
  language: "pt",
133
164
  strings: t,
134
165
  dateLocale: r
135
- }, n = i(o.strings), c = {
136
- ...n,
166
+ }, _ = i(o.strings), m = {
167
+ ..._,
137
168
  // Channel Header
138
169
  HEADER_BUTTON__AGENT_HANDOFF: "Conectar-se com um agente",
139
170
  // Message Input
@@ -147,20 +178,11 @@ const t = {
147
178
  FILE_UPLOAD_NOTIFICATION__SIZE_LIMIT: "O tamanho máximo por arquivo é de %d MB.",
148
179
  FILE_UPLOAD_NOTIFICATION__FILES_EXCLUDED_BY_VALIDATION: "%d arquivos foram excluídos devido aos limites. Selecione os arquivos individualmente.",
149
180
  FILE_UPLOAD_PHOTOS: "Fotos",
150
- FILE_UPLOAD_FILES: "Arquivos",
151
181
  // File Viewer
152
182
  FILE_VIEWER__UNSUPPORT: "Mensagem não suportada",
153
- // Image Viewer
154
- IMAGE_VIEWER__DEFAULT_TITLE: "Imagem",
155
183
  // Accessibility
156
- A11Y_IMAGE_VIEWER_CLOSE: "Fechar visualizador de imagens",
157
- A11Y_IMAGE_VIEWER_PREVIOUS: "Imagem anterior",
158
- A11Y_IMAGE_VIEWER_NEXT: "Próxima imagem",
159
- A11Y_IMAGE_VIEWER_DOWNLOAD: "Baixar imagem",
160
- A11Y_ATTACH_FILE: "Anexar arquivo",
161
184
  A11Y_FILE_SELECTED: (e) => `${e}, selecionado`,
162
185
  A11Y_FILE_REMOVE_BUTTON: (e) => `Remover arquivo: ${e}`,
163
- A11Y_CSAT_RATING_LABEL: (e, a) => `${e} — ${a}`,
164
186
  A11Y_FILE_UPLOAD_OPTIONS: "Opções de upload de arquivo",
165
187
  A11Y_FAILED_MESSAGE_OPTIONS: "Opções de mensagem com falha",
166
188
  A11Y_FEEDBACK_OPTIONS: "Opções de feedback",
@@ -176,7 +198,7 @@ const t = {
176
198
  FORM_VALIDATION_MAX_SELECT: (e) => `Selecione no máximo ${e} opções`,
177
199
  FORM_VALIDATION_REGEX_FAILED: "Formato inválido",
178
200
  /** @deprecated Please use DATE_FORMAT__DATE_SHORT instead. **/
179
- DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE: n.DATE_FORMAT__DATE_SHORT,
201
+ DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE: _.DATE_FORMAT__DATE_SHORT,
180
202
  /** @deprecated Unused string **/
181
203
  DATE_FORMAT__CONVERSATION_LIST__LIST_ITEM_TITLE_CAPTION: "HH:mm",
182
204
  /** @deprecated Unused string **/
@@ -196,7 +218,7 @@ const t = {
196
218
  }, l = {
197
219
  language: o.language,
198
220
  dateLocale: o.dateLocale,
199
- stringSet: c
221
+ stringSet: m
200
222
  };
201
223
  export {
202
224
  l as default