From ef79c82aa2d120d983e32cd7ebede01fcc6e88fa Mon Sep 17 00:00:00 2001 From: murtaza98 Date: Sun, 24 May 2020 17:03:03 +0530 Subject: [PATCH 01/17] feedback-form module imported from PR#104 --- src/components/Form/ExperienceRating/index.js | 55 ++++ .../Form/ExperienceRating/style.scss | 294 ++++++++++++++++++ src/i18n/af.json | 4 + src/i18n/ar.json | 4 + src/i18n/az.json | 4 + src/i18n/be_BY.json | 4 + src/i18n/bg.json | 4 + src/i18n/bs.json | 4 + src/i18n/ca.json | 4 + src/i18n/cs.json | 4 + src/i18n/cy.json | 4 + src/i18n/da.json | 4 + src/i18n/de.json | 4 + src/i18n/de_AT.json | 4 + src/i18n/default.json | 4 + src/i18n/el.json | 4 + src/i18n/en.json | 4 + src/i18n/eo.json | 4 + src/i18n/es.json | 4 + src/i18n/et.json | 4 + src/i18n/eu.json | 4 + src/i18n/fa.json | 6 +- src/i18n/fi.json | 4 + src/i18n/fr.json | 6 +- src/i18n/he.json | 4 + src/i18n/hr.json | 4 + src/i18n/hu.json | 4 + src/i18n/id.json | 4 + src/i18n/it.json | 4 + src/i18n/ja.json | 4 + src/i18n/km.json | 4 + src/i18n/ko.json | 4 + src/i18n/ku.json | 4 + src/i18n/lo.json | 4 + src/i18n/lt.json | 4 + src/i18n/lv.json | 4 + src/i18n/mn.json | 4 + src/i18n/ms_MY.json | 4 + src/i18n/nl.json | 4 + src/i18n/no.json | 4 + src/i18n/pl.json | 4 + src/i18n/pt.json | 6 +- src/i18n/pt_BR.json | 6 +- src/i18n/ro.json | 4 + src/i18n/ru.json | 4 + src/i18n/sk_SK.json | 4 + src/i18n/sl_SI.json | 4 + src/i18n/sq.json | 4 + src/i18n/sr.json | 4 + src/i18n/sv.json | 4 + src/i18n/ta_IN.json | 4 + src/i18n/th_TH.json | 4 + src/i18n/tr.json | 4 + src/i18n/ug.json | 4 + src/i18n/uk.json | 4 + src/i18n/vi_VN.json | 4 + src/i18n/zh.json | 4 + src/i18n/zh_HK.json | 4 + src/i18n/zh_TW.json | 4 + src/routes/SurveyFeedback/component.js | 94 ++++++ src/routes/SurveyFeedback/container.js | 45 +++ src/routes/SurveyFeedback/index.js | 3 + src/routes/SurveyFeedback/stories.js | 30 ++ src/routes/SurveyFeedback/styles.scss | 13 + 64 files changed, 766 insertions(+), 4 deletions(-) create mode 100644 src/components/Form/ExperienceRating/index.js create mode 100644 src/components/Form/ExperienceRating/style.scss create mode 100644 src/routes/SurveyFeedback/component.js create mode 100644 src/routes/SurveyFeedback/container.js create mode 100644 src/routes/SurveyFeedback/index.js create mode 100644 src/routes/SurveyFeedback/stories.js create mode 100644 src/routes/SurveyFeedback/styles.scss diff --git a/src/components/Form/ExperienceRating/index.js b/src/components/Form/ExperienceRating/index.js new file mode 100644 index 000000000..fca1486cd --- /dev/null +++ b/src/components/Form/ExperienceRating/index.js @@ -0,0 +1,55 @@ +import { Component } from 'preact'; +import styles from './style'; +import { createClassName } from '../../helpers'; + +const ExperienceRatingItem = ({ value, label, description, checked, onChange }) => ( +
+
+ + +
+ {checked && {description}} +
+); + +export class ExperienceRating extends Component { + state = { + value: this.props.value, + } + + handleChange = (event) => { + const { onChange } = this.props; + onChange && onChange(event); + this.setState({ value: event.target.value }); + } + + isChecked = (itemValue) => { + const { value } = this.state; + return value === itemValue; + } + + render() { + return ( +
+ + + + + +
+ ); + } +} diff --git a/src/components/Form/ExperienceRating/style.scss b/src/components/Form/ExperienceRating/style.scss new file mode 100644 index 000000000..39e86c73f --- /dev/null +++ b/src/components/Form/ExperienceRating/style.scss @@ -0,0 +1,294 @@ +@import '~styles/colors'; +@import '~styles/variables'; + + +$form-item-margin-bottom: $default-gap; +$form-item-inline-margin-left: $default-gap; + +$form-label-margin: ($default-gap / 3) 0; + +$form-label-color: $color-text-dark; +$form-label-error-color: $color-red; + +$form-label-font-size: 0.75rem; +$form-label-font-weight: 600; +$form-label-line-height: 1rem; + +$form-description-margin: ($default-gap / 2) 0 0; + +$form-description-color: $color-text-grey; +$form-description-error-color: $color-red; + +$form-description-font-size: 0.75rem; +$form-description-font-weight: 500; +$form-description-line-height: 1rem; + +$form-input-border-width: $default-border; +$form-input-border-radius: $default-border-radius; +$form-input-padding: (0.75 * $default-gap - $default-border); +$form-input-small-padding: (0.25 * $default-gap - $default-border / 2) (0.75 * $default-gap - $default-border); + +$form-input-color: $color-text-dark; +$form-input-placeholder-color: $color-text-light; +$form-input-background-color: $bg-color-white; +$form-input-border-color: $bg-color-grey; +$form-input-focus-border-color: $color-text-dark; +$form-input-hover-border-color: $color-text-light; +$form-input-disabled-background-color: $bg-color-grey; +$form-input-disabled-color: $color-text-light; +$form-input-error-color: $color-red; +$form-input-error-border-color: $color-red; + +$form-input-font-family: $font-family; +$form-input-font-size: 0.875rem; +$form-input-font-weight: 500; +$form-input-line-height: 1.25rem; + +$form-input-disabled-opacity: $disabled-opacity; + +$form-input-select-arrow-size: $form-input-padding; +$form-input-select-arrow-padding: $form-input-padding; + +$form-input-select-arrow-color: $color-text-light; + +.form__item { + display: flex; + flex-direction: column; + + width: 100%; + margin-bottom: $form-item-margin-bottom; + + &--inline { + flex-direction: row; + flex-wrap: wrap; + justify-content: flex-end; + align-items: center; + + .form__label { + flex: 1 25%; + } + + .form__label + .form__input { + flex: 3 75%; + } + + .form__description { + flex: 0 75%; + } + } +} + +.form__label { + margin: $form-label-margin; + + color: $form-label-color; + + font-size: $form-label-font-size; + font-weight: $form-label-font-weight; + text-align: left; + letter-spacing: 0; + line-height: $form-label-line-height; + white-space: nowrap; + text-overflow: ellipsis; + + transition: color $default-time-animation; + + &--error { + color: $form-label-error-color; + } +} + +.form__description { + margin: $form-description-margin; + + color: $form-description-color; + + font-size: $form-description-font-size; + font-weight: $form-description-font-weight; + line-height: $form-description-line-height; + + transition: color $default-time-animation; + + &--error { + color: $form-description-error-color; + } +} + +@mixin form__input-box { + border: $form-input-border-width solid $form-input-border-color; + border-radius: $form-input-border-radius; + padding: $form-input-padding; + + color: $form-input-color; + background-color: $form-input-background-color; + outline: none; + + font-family: $form-input-font-family; + font-size: $form-input-font-size; + font-weight: $form-input-font-weight; + line-height: $form-input-line-height; + + transition: border-color $default-time-animation, + color $default-time-animation, + background-color $default-time-animation, + trasform $default-time-animation; + + &:focus { + border-color: $form-input-focus-border-color; + } + + &:hover { + border-color: $form-input-hover-border-color; + } + + &--small { + padding: $form-input-small-padding; + } + + &--disabled { + color: $form-input-disabled-color; + background-color: $form-input-disabled-background-color; + border-color: $form-input-border-color; + + opacity: $form-input-disabled-opacity; + cursor: not-allowed; + } + + &--error, + &--error:focus, + &--error:hover { + border-color: $form-input-error-border-color; + color: $form-input-error-color; + } +} + +.form__input { + &-text, + &-password, + &-file { + @include form__input-box; + + &::placeholder { + color: $form-input-placeholder-color; + } + } +} + +.form__input-file { + &--hidden { + display: none; + } +} + +textarea.form__input-text { + resize: none; +} + +.form__input-select { + position: relative; + display: flex; + flex: 1; + + &__select { + @include form__input-box; + + flex: 1; + + padding-right: (3 * $form-input-select-arrow-padding + $form-input-select-arrow-size); + + color: $form-input-color; + + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + + &::-ms-expand { + display: none; + } + + &--placeholder { + color: $form-input-placeholder-color; + } + + &--small { + padding-right: (3 * $form-input-select-arrow-padding + $form-input-select-arrow-size); + } + } + + &__option { + color: $form-input-color; + } + + &__arrow { + position: absolute; + right: $form-input-select-arrow-padding; + top: 50%; + + width: $form-input-select-arrow-size; + height: $form-input-select-arrow-size; + + color: $form-input-select-arrow-color; + + transform: translateY(-50%) translateY(2px); + pointer-events: none; + } +} + +.form__input-experience-rating { + display: flex; + flex: 1; + flex-direction: row; + align-items: flex-start; + margin-bottom: $form-item-margin-bottom; + + &__item { + display: flex; + flex: 1; + flex-direction: column; + align-items: center; + justify-content: center; + text-align: center; + } + + &__input-container { + width: 48px; + height: 48px; + text-align: center; + line-height: 66px; + border-radius: 50%; + margin-bottom: 4px; + transition: background $default-time-animation; + + &--checked { + background: #E1E5E8; + } + } + + &__input { + display: none; + } + + &__label { + width: 36px; + height: 36px; + color: #2F343D; + font-size: 36px; + text-align: center; + letter-spacing: 0; + line-height: 36px; + cursor: pointer; + user-select: none; + + &:hover { + opacity: 0.9; + } + } + + &__description { + color: #9EA2A8; + font-size: 10px; + font-weight: bold; + letter-spacing: 0.2px; + line-height: 16px; + } +} diff --git a/src/i18n/af.json b/src/i18n/af.json index b3c08fd0a..e4ac5efed 100644 --- a/src/i18n/af.json +++ b/src/i18n/af.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "kanselleer", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Geen", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "opsies", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/ar.json b/src/i18n/ar.json index 29e5d8a42..53d1fd952 100644 --- a/src/i18n/ar.json +++ b/src/i18n/ar.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "إلغاء", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "لا", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "خيارات", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/az.json b/src/i18n/az.json index 6393db6a5..14dffa31d 100644 --- a/src/i18n/az.json +++ b/src/i18n/az.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Ləğv et", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Yox", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Seçimlər", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/be_BY.json b/src/i18n/be_BY.json index ebb43ff12..d3d195647 100644 --- a/src/i18n/be_BY.json +++ b/src/i18n/be_BY.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Адмяніць", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Няма", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Опцыі", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/bg.json b/src/i18n/bg.json index 9381cd1f1..997e607c0 100644 --- a/src/i18n/bg.json +++ b/src/i18n/bg.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Отказ", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Не", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Настроики", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/bs.json b/src/i18n/bs.json index f71da607c..1648704c7 100644 --- a/src/i18n/bs.json +++ b/src/i18n/bs.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Cancel", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "No", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Options", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/ca.json b/src/i18n/ca.json index d4a2dcf24..5ba507173 100644 --- a/src/i18n/ca.json +++ b/src/i18n/ca.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Cancel·la", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "No", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Opcions", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/cs.json b/src/i18n/cs.json index fa41b5204..e463338c7 100644 --- a/src/i18n/cs.json +++ b/src/i18n/cs.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Storno", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Ne", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Volby", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/cy.json b/src/i18n/cy.json index 3d539f95e..f12faafe9 100644 --- a/src/i18n/cy.json +++ b/src/i18n/cy.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Diddymu", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Na", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Dewisiadau", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/da.json b/src/i18n/da.json index 25fda5ad2..4d27e4a8b 100644 --- a/src/i18n/da.json +++ b/src/i18n/da.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Annuller", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Nej", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Indstillinger", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/de.json b/src/i18n/de.json index 070950313..dbd8773d3 100644 --- a/src/i18n/de.json +++ b/src/i18n/de.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Abbrechen", "change_department_1d671538": "Abteilung wechseln", "change_department_523a16e8": "Abteilung wechseln", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat beendet", "choose_a_department_b106da55": "Wählen Sie eine Abteilung", "choose_a_department_fe9755fd": "Wählen Sie eine Abteilung", @@ -19,6 +20,7 @@ "departments_3826b025": "Abteilungen", "disable_notifications_dd6a3180": "Benachrichtigungen deaktivieren", "dismiss_this_alert_ea9b3104": "Diese Warnung schließen", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Datei zum hochladen, hierhin ziehen", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Benachrichtigungen aktivieren", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Vergiss/Lösche meine Daten", "gdpr_8b366c2b": "DSGVO", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Gehe zu **Menü Optionen → Vergiss/Lösche meine Daten** um die sofortige Löschung Ihrer Daten zu beantragen.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "Ich stimme zu", "i_need_help_with_61054e21": "Ich brauche Hilfe mit...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "Falls Sie noch Fragen haben, drücken Sie einfach unten den Knopf, um einen neuen Chat zu beginnen.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "Neuer Chat", "no_available_agents_to_transfer_3ae30cec": "Keine verfügbaren Mitarbeiter/innen zum übertragen", "no_e16d9132": "Nein", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Optionen", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Bitte nennen Sie uns ein paar Informationen um den Chat zu beginnen", diff --git a/src/i18n/de_AT.json b/src/i18n/de_AT.json index 0b2576e65..05fbcbe83 100644 --- a/src/i18n/de_AT.json +++ b/src/i18n/de_AT.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Abbrechen", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Nein", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Optionen", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/default.json b/src/i18n/default.json index 3f6a12a35..6645d5586 100644 --- a/src/i18n/default.json +++ b/src/i18n/default.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Cancel", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "No", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Options", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/el.json b/src/i18n/el.json index 1c1cad07d..88cacd84d 100644 --- a/src/i18n/el.json +++ b/src/i18n/el.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Ακύρωση", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Όχι", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Επιλογές", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/en.json b/src/i18n/en.json index 3f6a12a35..6645d5586 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Cancel", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "No", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Options", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/eo.json b/src/i18n/eo.json index ed09ad8dd..d6637c093 100644 --- a/src/i18n/eo.json +++ b/src/i18n/eo.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Nuligi", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Ne", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Opcioj", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/es.json b/src/i18n/es.json index 2db5763e1..beabefc74 100644 --- a/src/i18n/es.json +++ b/src/i18n/es.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Cancelar", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "No", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Opciones", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/et.json b/src/i18n/et.json index 070e6e36e..a83930fe4 100644 --- a/src/i18n/et.json +++ b/src/i18n/et.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Tühista", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Ei", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Valikud", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/eu.json b/src/i18n/eu.json index 906332040..b605a357d 100644 --- a/src/i18n/eu.json +++ b/src/i18n/eu.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Ezeztatu", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Ez", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Aukerak", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/fa.json b/src/i18n/fa.json index 18e9dbdd5..1b634948c 100644 --- a/src/i18n/fa.json +++ b/src/i18n/fa.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "لغو", "change_department_1d671538": "تغییر بخش", "change_department_523a16e8": "تغییر بخش", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "گفتگو پایان یافت", "choose_a_department_b106da55": "یک بخش را انتخاب کنید ...", "choose_a_department_fe9755fd": "یک بخش را انتخاب کنید", @@ -19,6 +20,7 @@ "departments_3826b025": "بخش ها", "disable_notifications_dd6a3180": "غیرفعال کردن ناتیفیکیشن ها", "dismiss_this_alert_ea9b3104": "نادیده گرفتن این هشدار", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "فایل را اینجا رها کنید", "email_22a7d52d": "ایمیل", "enable_notifications_a3daf4b1": "فعال کردن ناتیفیکیشن ها", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "حذف اطلاعات من", "gdpr_8b366c2b": "مقررات عمومی حفاظت از داده اتحادیه اروپا (GDPR)", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "به **menu options → Forget/Remove my personal data** بروید تا درخواست حذف بلافاصله ی اطلاعات خود را بدهید", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "موافقم", "i_need_help_with_61054e21": "نیاز به کمک در بخش زیر را دارم", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "اگر هرگونه سوال دیگری دارید، بر روی دکمه ی زیر کلیک کنید تا یک گفتگو آغاز شود", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "گفتگوی جدید", "no_available_agents_to_transfer_3ae30cec": "هیچ پشتیبانی برای انتقال در دسترس نیست", "no_e16d9132": "خیر", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "باشد", "options_3ab0ea65": "گزینه ها", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "لطفاً برای شروع گپ اطلاعاتی را به ما بدهید", @@ -77,4 +81,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/fi.json b/src/i18n/fi.json index 47a6929c3..38660d234 100644 --- a/src/i18n/fi.json +++ b/src/i18n/fi.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Peruuta", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Ei", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Valinnat", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/fr.json b/src/i18n/fr.json index 9feac684a..71d94d763 100644 --- a/src/i18n/fr.json +++ b/src/i18n/fr.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Annuler", "change_department_1d671538": "Changer de département", "change_department_523a16e8": "Changer Département", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Terminé", "choose_a_department_b106da55": "Choisir un département...", "choose_a_department_fe9755fd": "Choisir un département", @@ -19,6 +20,7 @@ "departments_3826b025": "Départements", "disable_notifications_dd6a3180": "Désactiver les notifications", "dismiss_this_alert_ea9b3104": "Effacer cette alerte", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Déposer ici pour envoyer un fichier", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Activer les notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Oublier/Supprimer mes données personnelles", "gdpr_8b366c2b": "RGPD", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Ouvrir **menu options → Oublier/Supprimer mes données personnelles** pour demander la suppression immédiate de vos données personnelles.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "J'accepte", "i_need_help_with_61054e21": "J'ai besoin d'aide pour...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "Si vous avez une autre question, cliquez sur le bouton ci-dessous pour démarrer une nouvelle conversation.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "Nouvelle Conversation", "no_available_agents_to_transfer_3ae30cec": "Aucun agent disponible pour un transfert", "no_e16d9132": "Non", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Options", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Veuillez nous donner quelques informations pour démarrer la conversation", @@ -77,4 +81,4 @@ "your_spot_is_spot_a35cd288": "Votre rang est #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Votre rang est #%{spot} (Temps d'attente estimé: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/he.json b/src/i18n/he.json index ade243957..4c4482697 100644 --- a/src/i18n/he.json +++ b/src/i18n/he.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "ביטול", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "לא", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "אפשרויות", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/hr.json b/src/i18n/hr.json index 367569c71..a1b113823 100644 --- a/src/i18n/hr.json +++ b/src/i18n/hr.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Otkaži", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Ne", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Opcije", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/hu.json b/src/i18n/hu.json index a73579b68..4fb0c0949 100644 --- a/src/i18n/hu.json +++ b/src/i18n/hu.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Mégse", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Nem", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Beállítások", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/id.json b/src/i18n/id.json index a6bba6076..ceff31fb9 100644 --- a/src/i18n/id.json +++ b/src/i18n/id.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Membatalkan", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Tidak", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Pilihan", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/it.json b/src/i18n/it.json index 3a87c65d7..0bf1d84e4 100644 --- a/src/i18n/it.json +++ b/src/i18n/it.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Annulla", "change_department_1d671538": "Cambia dipartimento", "change_department_523a16e8": "Cambia Dipartimento", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Conclusa", "choose_a_department_b106da55": "Scegli un dipartimento...", "choose_a_department_fe9755fd": "Scegli un dipartimento", @@ -19,6 +20,7 @@ "departments_3826b025": "Dipartimenti", "disable_notifications_dd6a3180": "Disabilita notifiche", "dismiss_this_alert_ea9b3104": "Rimuovi questo avviso", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Rilascia qui per caricare un file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Abilita notifiche", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Dimentica/Rimuovi i miei dati", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Vai su **menu opzioni → Dimentica/Rimuovi i miei dati personali** per richiedere l'immediata cancellazione dei tuoi dati.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "Sono Daccordo", "i_need_help_with_61054e21": "Ho bisogno di aiuto con...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "Se hai altre domande ti basta premere il tasto sotto per iniziare una nuova chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "Nuova Chat", "no_available_agents_to_transfer_3ae30cec": "Nessun agente disponibile per il trasferimento", "no_e16d9132": "No", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Opzioni", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Per favore, forniscici alcune informazioni per cominciare la chat", diff --git a/src/i18n/ja.json b/src/i18n/ja.json index 9edd3bf53..024b0faf1 100644 --- a/src/i18n/ja.json +++ b/src/i18n/ja.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "キャンセル", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "いいえ", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "オプション", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/km.json b/src/i18n/km.json index 420da7ef0..7508230f1 100644 --- a/src/i18n/km.json +++ b/src/i18n/km.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "បោះបង់", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "ទេ", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "ជម្រើស", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/ko.json b/src/i18n/ko.json index 84efffd16..64ddece6b 100644 --- a/src/i18n/ko.json +++ b/src/i18n/ko.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "취소", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "아니오", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "옵션", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/ku.json b/src/i18n/ku.json index 416585b34..06a134148 100644 --- a/src/i18n/ku.json +++ b/src/i18n/ku.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Bişûndekirin", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Na", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Vebijêrkên", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/lo.json b/src/i18n/lo.json index 19eb5f979..9d9af941f 100644 --- a/src/i18n/lo.json +++ b/src/i18n/lo.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "ຍົກເລີກ", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "No", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "ຕົວເລືອກ", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/lt.json b/src/i18n/lt.json index 1dd0bd45a..65246ea1b 100644 --- a/src/i18n/lt.json +++ b/src/i18n/lt.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Atšaukti", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Nėra", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Galimybės", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/lv.json b/src/i18n/lv.json index 2a50b2fa3..924395819 100644 --- a/src/i18n/lv.json +++ b/src/i18n/lv.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Atcelt", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Nr.", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Iespējas", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/mn.json b/src/i18n/mn.json index 8559bfc63..6773eabf4 100644 --- a/src/i18n/mn.json +++ b/src/i18n/mn.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Цуцлах", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Үгүй", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Сонголтууд", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/ms_MY.json b/src/i18n/ms_MY.json index 557b607f0..722d8b34e 100644 --- a/src/i18n/ms_MY.json +++ b/src/i18n/ms_MY.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Batal", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Tidak", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Pilihan", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/nl.json b/src/i18n/nl.json index d72615ca6..c35cadb73 100644 --- a/src/i18n/nl.json +++ b/src/i18n/nl.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Annuleren", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Nee", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Opties", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/no.json b/src/i18n/no.json index 0e6cbad44..531837267 100644 --- a/src/i18n/no.json +++ b/src/i18n/no.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Avbryt", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Nei", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Egenskaper", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/pl.json b/src/i18n/pl.json index 7569e93a0..ffddf1ad0 100644 --- a/src/i18n/pl.json +++ b/src/i18n/pl.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Anuluj", "change_department_1d671538": "Zmień dział", "change_department_523a16e8": "Zmień Dział", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Rozmowa Zakończona", "choose_a_department_b106da55": "Wybierz dział...", "choose_a_department_fe9755fd": "Wybierz dział", @@ -19,6 +20,7 @@ "departments_3826b025": "Działy", "disable_notifications_dd6a3180": "Wyłącz powiadomienia", "dismiss_this_alert_ea9b3104": "Odrzuć powiadomienie", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Upuść tutaj, aby przesłać plik", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Włącz powiadomienia", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Zapomnij/Usuń moje dane", "gdpr_8b366c2b": "RODO", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Idź do **Opcje → Zapomnij/Usuń moje dane**, aby usunąć dane dotyczące rozmowy.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "Zgadzam się", "i_need_help_with_61054e21": "Potrzebuję pomocy...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "Jeśli masz jeszcze jakieś pytania, naciśnij poniższy przycisk, aby rozpocząć rozmowę.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "Nowa rozmowa", "no_available_agents_to_transfer_3ae30cec": "Żaden konsultant nie jest dostępny", "no_e16d9132": "Nie", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Opcje", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Wyślij wiadomość, aby rozpocząć rozmowę", diff --git a/src/i18n/pt.json b/src/i18n/pt.json index feaaf7832..bdfe5de24 100644 --- a/src/i18n/pt.json +++ b/src/i18n/pt.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Cancelar", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Não", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Opções", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", @@ -77,4 +81,4 @@ "your_spot_is_spot_a35cd288": "Seu lugar é #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Seu lugar é #%{spot} (Tempo estimado: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/pt_BR.json b/src/i18n/pt_BR.json index 987b5cb4a..e82c4bac2 100644 --- a/src/i18n/pt_BR.json +++ b/src/i18n/pt_BR.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Cancelar", "change_department_1d671538": "Trocar departmento", "change_department_523a16e8": "Trocar Departmento", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Terminado", "choose_a_department_b106da55": "Escolha um departamento...", "choose_a_department_fe9755fd": "Escolha um departamento", @@ -19,6 +20,7 @@ "departments_3826b025": "Departamentos", "disable_notifications_dd6a3180": "Disabilitar notificações", "dismiss_this_alert_ea9b3104": "Ignorar este alerta", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "E-mail", "enable_notifications_a3daf4b1": "Habilitar notificações", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Esquecer/remover meus dados pessoais", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Vá para o menu **opções → Esquecer/remover meus dados pessoais** para solicitar a remoção imediata dos seus dados.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "Concordo", "i_need_help_with_61054e21": "Preciso de ajuda com...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "Se você tiver qualquer outras dúvidas, basta pressionar o botão abaixo para iniciar um novo chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "Novo Chat", "no_available_agents_to_transfer_3ae30cec": "Não há agentes disponíveis para transferência", "no_e16d9132": "Não", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Opções", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Por favor, nos passe algumas informações antes de iniciar o chat", @@ -77,4 +81,4 @@ "your_spot_is_spot_a35cd288": "Seu lugar é #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Seu lugar é #%{spot} (Tempo estimado: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/ro.json b/src/i18n/ro.json index d1f9856b4..c48604453 100644 --- a/src/i18n/ro.json +++ b/src/i18n/ro.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Anula", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Nu", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Opțiuni", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/ru.json b/src/i18n/ru.json index b1c8aca7c..31fa1ebcb 100644 --- a/src/i18n/ru.json +++ b/src/i18n/ru.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Отмена", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Нет", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Параметры", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/sk_SK.json b/src/i18n/sk_SK.json index d42f8e3f1..cc0ddf81e 100644 --- a/src/i18n/sk_SK.json +++ b/src/i18n/sk_SK.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Zrušiť", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Žiadny", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Možnosti", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/sl_SI.json b/src/i18n/sl_SI.json index 4fefbf37c..0bea93f5a 100644 --- a/src/i18n/sl_SI.json +++ b/src/i18n/sl_SI.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Prekliči", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Ne", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Možnosti", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/sq.json b/src/i18n/sq.json index e364ddda2..5e221f014 100644 --- a/src/i18n/sq.json +++ b/src/i18n/sq.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Anuloj", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "jo", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Opsione", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/sr.json b/src/i18n/sr.json index 204331c88..73dad224e 100644 --- a/src/i18n/sr.json +++ b/src/i18n/sr.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Отказати", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Ne", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Опције", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/sv.json b/src/i18n/sv.json index 778ae7e64..8b983e54b 100644 --- a/src/i18n/sv.json +++ b/src/i18n/sv.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Avbryt", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Nej", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Inställningar", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/ta_IN.json b/src/i18n/ta_IN.json index 150e82e70..a1b023914 100644 --- a/src/i18n/ta_IN.json +++ b/src/i18n/ta_IN.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "ரத்து", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "இல்லை", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "விருப்பங்கள்", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/th_TH.json b/src/i18n/th_TH.json index 4dd33788d..c2c173941 100644 --- a/src/i18n/th_TH.json +++ b/src/i18n/th_TH.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "ยกเลิก", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "ไม่", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "ตัวเลือก", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/tr.json b/src/i18n/tr.json index 8ecf56fe0..5a18bbbf7 100644 --- a/src/i18n/tr.json +++ b/src/i18n/tr.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Vazgeç", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Hayır", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Seçenekler", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/ug.json b/src/i18n/ug.json index 30430273c..5c028e418 100644 --- a/src/i18n/ug.json +++ b/src/i18n/ug.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Cancel", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "No", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Options", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/uk.json b/src/i18n/uk.json index 5a2d0fd54..ced51db7d 100644 --- a/src/i18n/uk.json +++ b/src/i18n/uk.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "Скасувати", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Ні", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Параметри", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/vi_VN.json b/src/i18n/vi_VN.json index 5492ae662..3343c9a31 100644 --- a/src/i18n/vi_VN.json +++ b/src/i18n/vi_VN.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "hủy bỏ", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "Không", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "Tùy chọn", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/zh.json b/src/i18n/zh.json index d352311ff..6c7d92c6b 100644 --- a/src/i18n/zh.json +++ b/src/i18n/zh.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "取消", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "否", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "选项", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/zh_HK.json b/src/i18n/zh_HK.json index 6ac20dd91..d32143432 100644 --- a/src/i18n/zh_HK.json +++ b/src/i18n/zh_HK.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "取消", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "否", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "選項", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/i18n/zh_TW.json b/src/i18n/zh_TW.json index ba98c9656..d437141df 100644 --- a/src/i18n/zh_TW.json +++ b/src/i18n/zh_TW.json @@ -6,6 +6,7 @@ "cancel_caeb1e68": "取消", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", + "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -19,6 +20,7 @@ "departments_3826b025": "Departments", "disable_notifications_dd6a3180": "Disable notifications", "dismiss_this_alert_ea9b3104": "Dismiss this alert", + "do_you_have_anything_to_say_leave_your_opinion_her_1cceac8": "Do you have anything to say? Leave your opinion here (optional)", "drop_here_to_upload_a_file_e5f4dd60": "Drop here to upload a file", "email_22a7d52d": "Email", "enable_notifications_a3daf4b1": "Enable notifications", @@ -32,6 +34,7 @@ "forget_remove_my_data_e1d68cdd": "Forget/Remove my data", "gdpr_8b366c2b": "GDPR", "go_to_menu_options_forget_remove_my_personal_data__99c40934": "Go to **menu options → Forget/Remove my personal data** to request the immediate removal of your data.", + "how_would_you_rate_your_experience_2075d366": "How would you rate your experience?", "i_agree_df2ecbd4": "I Agree", "i_need_help_with_61054e21": "I need help with...", "if_you_have_any_other_questions_just_press_the_but_ceaadfa0": "If you have any other questions, just press the button below to start a new chat.", @@ -48,6 +51,7 @@ "new_chat_f525c39e": "New Chat", "no_available_agents_to_transfer_3ae30cec": "No available agents to transfer", "no_e16d9132": "否", + "no_thanks_de9df7aa": "No, thanks", "ok_c47544a2": "OK", "options_3ab0ea65": "選項", "please_tell_us_some_information_to_start_the_chat_ac135cbb": "Please, tell us some information to start the chat", diff --git a/src/routes/SurveyFeedback/component.js b/src/routes/SurveyFeedback/component.js new file mode 100644 index 000000000..571694044 --- /dev/null +++ b/src/routes/SurveyFeedback/component.js @@ -0,0 +1,94 @@ +import { Component } from 'preact'; +import {Button} from '../../components/Button'; +import { Form, Validations, FormField, TextInput } from '../../components/Form'; +import { ExperienceRating } from '../../components/Form/ExperienceRating'; +import Screen from '../../components/Screen'; +import { createClassName } from '../../components/helpers'; +import styles from './styles'; + + +export default class SurveyFeedback extends Component { + state = { + rating: { value: '' }, + message: { value: '' }, + } + + validations = { + rating: [Validations.nonEmpty], + message: [], + } + + getValidableFields = () => Object.keys(this.validations) + .map((fieldName) => (this.state[fieldName] ? { fieldName, ...this.state[fieldName] } : null)) + .filter(Boolean) + + validate = (fieldName, value) => this.validations[fieldName].reduce((error, validation) => (error || validation(value)), undefined) + + validateAll = () => { + for (const { fieldName, value } of this.getValidableFields()) { + const error = this.validate(fieldName, value); + this.setState({ [fieldName]: { ...this.state[fieldName], value, error, showError: false } }); + } + } + + isValid = () => this.getValidableFields().every(({ error } = {}) => !error) + + handleFieldChange = (fieldName) => ({ target: { value } }) => { + const error = this.validate(fieldName, value); + this.setState({ [fieldName]: { ...this.state[fieldName], value, error, showError: false } }); + } + + handleRatingChange = this.handleFieldChange('rating') + + handleMessageChange = this.handleFieldChange('message') + + handleSubmit = (event) => { + event.preventDefault(); + + if (this.props.onSubmit) { + const values = Object.entries(this.state) + .filter(([, state]) => state !== null) + .map(([name, { value }]) => ({ [name]: value })) + .reduce((values, entry) => ({ ...values, ...entry }), {}); + this.props.onSubmit(values); + } + } + + constructor(props) { + super(props); + this.validateAll(); + } + + render({ title, message: messageProp, loading, ...props }, { rating, message }) { + const valid = this.isValid(); + + return ( + +

{messageProp}

+
+ + + + + + + + + + +
+ ); + } +} diff --git a/src/routes/SurveyFeedback/container.js b/src/routes/SurveyFeedback/container.js new file mode 100644 index 000000000..dbb393f81 --- /dev/null +++ b/src/routes/SurveyFeedback/container.js @@ -0,0 +1,45 @@ +import { Component } from 'preact'; +// import SDK from '../../api'; +import { Consumer } from '../../store'; +import SurveyFeedback from './component'; +// import { insert, createToken } from '../../components/helpers'; + +export class SurveyFeedbackContainer extends Component { + handleSubmit = async(fields) => { + console.log(fields); + } + + render = (props) => ( + + ) +} + + +export const SurveyFeedbackConnector = ({ ref, ...props }) => ( + + {({ + config: { + theme: { + color, + } = {}, + } = {}, + loading, + token, + dispatch, + }) => ( + + )} + +); + + +export default SurveyFeedbackConnector; diff --git a/src/routes/SurveyFeedback/index.js b/src/routes/SurveyFeedback/index.js new file mode 100644 index 000000000..19f15c89e --- /dev/null +++ b/src/routes/SurveyFeedback/index.js @@ -0,0 +1,3 @@ +export { default as SurveyFeedback } from './component'; +export { SurveyFeedbackContainer, SurveyFeedbackConnector } from './container'; +export { default } from './container'; diff --git a/src/routes/SurveyFeedback/stories.js b/src/routes/SurveyFeedback/stories.js new file mode 100644 index 000000000..0a5306609 --- /dev/null +++ b/src/routes/SurveyFeedback/stories.js @@ -0,0 +1,30 @@ +import { action } from '@storybook/addon-actions'; +import { withKnobs, boolean, color, text } from '@storybook/addon-knobs'; +import { storiesOf } from '@storybook/react'; +import SurveyFeedback from './component'; + + +storiesOf('Routes|Survey Feedback', module) + .addDecorator(withKnobs) + .add('normal', () => ( + + )) +; diff --git a/src/routes/SurveyFeedback/styles.scss b/src/routes/SurveyFeedback/styles.scss new file mode 100644 index 000000000..740263a24 --- /dev/null +++ b/src/routes/SurveyFeedback/styles.scss @@ -0,0 +1,13 @@ +@import '~styles/colors'; + +.survey-feedback { + &__main { + padding: 1rem 1.5rem 0; + } + + &__message { + margin: 0 0 1rem 0; + font-weight: 500; + line-height: 1.5; + } +} \ No newline at end of file From 4d9be0ff76789d92fccb8bb73815594735f4eec4 Mon Sep 17 00:00:00 2001 From: murtaza98 Date: Sun, 24 May 2020 17:29:38 +0530 Subject: [PATCH 02/17] feedback-form update - Wrapped form under Screen.content container - Stacked Buttons --- src/routes/SurveyFeedback/component.js | 44 ++++++++++++++------------ src/routes/SurveyFeedback/stories.js | 2 ++ 2 files changed, 26 insertions(+), 20 deletions(-) diff --git a/src/routes/SurveyFeedback/component.js b/src/routes/SurveyFeedback/component.js index 571694044..d31668c09 100644 --- a/src/routes/SurveyFeedback/component.js +++ b/src/routes/SurveyFeedback/component.js @@ -5,6 +5,7 @@ import { ExperienceRating } from '../../components/Form/ExperienceRating'; import Screen from '../../components/Screen'; import { createClassName } from '../../components/helpers'; import styles from './styles'; +import { ButtonGroup } from '../../components/ButtonGroup'; export default class SurveyFeedback extends Component { @@ -68,26 +69,29 @@ export default class SurveyFeedback extends Component { className={createClassName(styles, 'survey-feedback')} {...props} > -

{messageProp}

-
- - - - - - - - - - + +

{messageProp}

+
+ + + + + + + + + + +
); } diff --git a/src/routes/SurveyFeedback/stories.js b/src/routes/SurveyFeedback/stories.js index 0a5306609..1cc94fc7c 100644 --- a/src/routes/SurveyFeedback/stories.js +++ b/src/routes/SurveyFeedback/stories.js @@ -2,9 +2,11 @@ import { action } from '@storybook/addon-actions'; import { withKnobs, boolean, color, text } from '@storybook/addon-knobs'; import { storiesOf } from '@storybook/react'; import SurveyFeedback from './component'; +import { screenCentered } from '../../helpers.stories'; storiesOf('Routes|Survey Feedback', module) + .addDecorator(screenCentered) .addDecorator(withKnobs) .add('normal', () => ( Date: Sun, 24 May 2020 20:36:59 +0530 Subject: [PATCH 03/17] rendered colorful emojis in feedback form --- package.json | 1 + src/components/Form/ExperienceRating/index.js | 24 ++++++++++++++----- yarn.lock | 8 +++++++ 3 files changed, 27 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 462b21090..c019fb07d 100644 --- a/package.json +++ b/package.json @@ -70,6 +70,7 @@ "@rocket.chat/sdk": "^1.0.0-alpha.29", "date-fns": "^2.4.1", "desvg": "^1.0.2", + "emoji-mart": "^3.0.0", "fast-async": "^6.3.8", "history": "^4.7.2", "i18n": "^0.8.3", diff --git a/src/components/Form/ExperienceRating/index.js b/src/components/Form/ExperienceRating/index.js index fca1486cd..f3447d3aa 100644 --- a/src/components/Form/ExperienceRating/index.js +++ b/src/components/Form/ExperienceRating/index.js @@ -1,6 +1,7 @@ import { Component } from 'preact'; import styles from './style'; import { createClassName } from '../../helpers'; +import { Emoji } from 'emoji-mart'; const ExperienceRatingItem = ({ value, label, description, checked, onChange }) => (
@@ -14,7 +15,9 @@ const ExperienceRatingItem = ({ value, label, description, checked, onChange }) checked={checked} onChange={onChange} /> - +
{checked && {description}} @@ -36,6 +39,15 @@ export class ExperienceRating extends Component { return value === itemValue; } + renderEmoji = (emojiShortName) => { + return Emoji({ + set: 'apple', + emoji: emojiShortName, + size: 32, + sheetSize: 64, + }) + } + render() { return (
- - - - - + + + + +
); } diff --git a/yarn.lock b/yarn.lock index 2de7c68de..2b124ba49 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5348,6 +5348,14 @@ elliptic@^6.0.0: minimalistic-assert "^1.0.0" minimalistic-crypto-utils "^1.0.0" +emoji-mart@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/emoji-mart/-/emoji-mart-3.0.0.tgz#eca24a04881e27752a6921e09f65a86ce8539a50" + integrity sha512-r5DXyzOLJttdwRYfJmPq/XL3W5tiAE/VsRnS0Hqyn27SqPA/GOYwVUSx50px/dXdJyDSnvmoPbuJ/zzhwSaU4A== + dependencies: + "@babel/runtime" "^7.0.0" + prop-types "^15.6.0" + emoji-regex@^7.0.1: version "7.0.3" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" From d43b82ccf8e6880c9b6a962e42776004bbc7d38e Mon Sep 17 00:00:00 2001 From: murtaza98 Date: Sun, 24 May 2020 20:41:13 +0530 Subject: [PATCH 04/17] modified title of feedback panel --- src/i18n/af.json | 2 +- src/i18n/ar.json | 2 +- src/i18n/az.json | 2 +- src/i18n/be_BY.json | 2 +- src/i18n/bg.json | 2 +- src/i18n/bs.json | 2 +- src/i18n/ca.json | 2 +- src/i18n/cs.json | 2 +- src/i18n/cy.json | 2 +- src/i18n/da.json | 2 +- src/i18n/de.json | 2 +- src/i18n/de_AT.json | 2 +- src/i18n/default.json | 2 +- src/i18n/el.json | 2 +- src/i18n/en.json | 2 +- src/i18n/eo.json | 2 +- src/i18n/es.json | 2 +- src/i18n/et.json | 2 +- src/i18n/eu.json | 2 +- src/i18n/fa.json | 2 +- src/i18n/fi.json | 2 +- src/i18n/fr.json | 2 +- src/i18n/he.json | 2 +- src/i18n/hr.json | 2 +- src/i18n/hu.json | 2 +- src/i18n/id.json | 2 +- src/i18n/it.json | 2 +- src/i18n/ja.json | 2 +- src/i18n/km.json | 2 +- src/i18n/ko.json | 2 +- src/i18n/ku.json | 2 +- src/i18n/lo.json | 2 +- src/i18n/lt.json | 2 +- src/i18n/lv.json | 2 +- src/i18n/mn.json | 2 +- src/i18n/ms_MY.json | 2 +- src/i18n/nl.json | 2 +- src/i18n/no.json | 2 +- src/i18n/pl.json | 2 +- src/i18n/pt.json | 2 +- src/i18n/pt_BR.json | 2 +- src/i18n/ro.json | 2 +- src/i18n/ru.json | 2 +- src/i18n/sk_SK.json | 2 +- src/i18n/sl_SI.json | 2 +- src/i18n/sq.json | 2 +- src/i18n/sr.json | 2 +- src/i18n/sv.json | 2 +- src/i18n/ta_IN.json | 2 +- src/i18n/th_TH.json | 2 +- src/i18n/tr.json | 2 +- src/i18n/ug.json | 2 +- src/i18n/uk.json | 2 +- src/i18n/vi_VN.json | 2 +- src/i18n/zh.json | 2 +- src/i18n/zh_HK.json | 2 +- src/i18n/zh_TW.json | 2 +- src/routes/SurveyFeedback/container.js | 2 +- 58 files changed, 58 insertions(+), 58 deletions(-) diff --git a/src/i18n/af.json b/src/i18n/af.json index e4ac5efed..77c6c58d8 100644 --- a/src/i18n/af.json +++ b/src/i18n/af.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "kanselleer", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/ar.json b/src/i18n/ar.json index 53d1fd952..e891d35a9 100644 --- a/src/i18n/ar.json +++ b/src/i18n/ar.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "إلغاء", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/az.json b/src/i18n/az.json index 14dffa31d..819c47436 100644 --- a/src/i18n/az.json +++ b/src/i18n/az.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Ləğv et", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/be_BY.json b/src/i18n/be_BY.json index d3d195647..1f5831c5e 100644 --- a/src/i18n/be_BY.json +++ b/src/i18n/be_BY.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Адмяніць", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/bg.json b/src/i18n/bg.json index 997e607c0..f8734fb54 100644 --- a/src/i18n/bg.json +++ b/src/i18n/bg.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Отказ", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/bs.json b/src/i18n/bs.json index 1648704c7..efba63c7a 100644 --- a/src/i18n/bs.json +++ b/src/i18n/bs.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Cancel", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/ca.json b/src/i18n/ca.json index 5ba507173..0c4cfc881 100644 --- a/src/i18n/ca.json +++ b/src/i18n/ca.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Cancel·la", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/cs.json b/src/i18n/cs.json index e463338c7..4fadf0247 100644 --- a/src/i18n/cs.json +++ b/src/i18n/cs.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Storno", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/cy.json b/src/i18n/cy.json index f12faafe9..ea9a7933a 100644 --- a/src/i18n/cy.json +++ b/src/i18n/cy.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Diddymu", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/da.json b/src/i18n/da.json index 4d27e4a8b..d2f3fe96e 100644 --- a/src/i18n/da.json +++ b/src/i18n/da.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Annuller", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/de.json b/src/i18n/de.json index dbd8773d3..9ed54bbd5 100644 --- a/src/i18n/de.json +++ b/src/i18n/de.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Abbrechen", "change_department_1d671538": "Abteilung wechseln", "change_department_523a16e8": "Abteilung wechseln", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat beendet", "choose_a_department_b106da55": "Wählen Sie eine Abteilung", "choose_a_department_fe9755fd": "Wählen Sie eine Abteilung", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Fehler, lösche Nutzer Daten", "error_starting_a_new_conversation_reason_a1b491a1": "Fehler starte eine neue Konversation: %{reason}", "expand_chat_a0045dbd": "Chat vergrößern", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "Die Datei überschreitet die maximal erlaubte Größe von: %{size}.", "fileupload_error_9eedee68": "Datei Upload Fehler", "finish_this_chat_87b79542": "Diesen Chat beenden", diff --git a/src/i18n/de_AT.json b/src/i18n/de_AT.json index 05fbcbe83..cecbd580b 100644 --- a/src/i18n/de_AT.json +++ b/src/i18n/de_AT.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Abbrechen", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/default.json b/src/i18n/default.json index 6645d5586..510088f74 100644 --- a/src/i18n/default.json +++ b/src/i18n/default.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Cancel", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/el.json b/src/i18n/el.json index 88cacd84d..614e6b9f7 100644 --- a/src/i18n/el.json +++ b/src/i18n/el.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Ακύρωση", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/en.json b/src/i18n/en.json index 6645d5586..510088f74 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Cancel", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/eo.json b/src/i18n/eo.json index d6637c093..81435c2aa 100644 --- a/src/i18n/eo.json +++ b/src/i18n/eo.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Nuligi", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/es.json b/src/i18n/es.json index beabefc74..dfbf68ad9 100644 --- a/src/i18n/es.json +++ b/src/i18n/es.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Cancelar", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/et.json b/src/i18n/et.json index a83930fe4..2bca50f1d 100644 --- a/src/i18n/et.json +++ b/src/i18n/et.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Tühista", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/eu.json b/src/i18n/eu.json index b605a357d..ea798450b 100644 --- a/src/i18n/eu.json +++ b/src/i18n/eu.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Ezeztatu", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/fa.json b/src/i18n/fa.json index 1b634948c..7a0bcb705 100644 --- a/src/i18n/fa.json +++ b/src/i18n/fa.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "لغو", "change_department_1d671538": "تغییر بخش", "change_department_523a16e8": "تغییر بخش", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "گفتگو پایان یافت", "choose_a_department_b106da55": "یک بخش را انتخاب کنید ...", "choose_a_department_fe9755fd": "یک بخش را انتخاب کنید", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "خطا در حذف اطلاعات کاربر.", "error_starting_a_new_conversation_reason_a1b491a1": "خطا در ایجاد گفتگوی جدید: %{reason}", "expand_chat_a0045dbd": "گسترش گفتگو", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "حجم فایل بیشتر از حد مجاز (%{size}) است.", "fileupload_error_9eedee68": "خطا در آپلود فایل", "finish_this_chat_87b79542": "پایان این گفتگو", diff --git a/src/i18n/fi.json b/src/i18n/fi.json index 38660d234..30a2e0a34 100644 --- a/src/i18n/fi.json +++ b/src/i18n/fi.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Peruuta", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/fr.json b/src/i18n/fr.json index 71d94d763..398848a3f 100644 --- a/src/i18n/fr.json +++ b/src/i18n/fr.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Annuler", "change_department_1d671538": "Changer de département", "change_department_523a16e8": "Changer Département", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Terminé", "choose_a_department_b106da55": "Choisir un département...", "choose_a_department_fe9755fd": "Choisir un département", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Erreur lors de la suppression des données utilisateur.", "error_starting_a_new_conversation_reason_a1b491a1": "Erreur lors de la création d'une nouvelle conversation : %{reason}", "expand_chat_a0045dbd": "Agrandir le chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "Le fichier dépasse la taille autorisée de %{size}.", "fileupload_error_9eedee68": "Erreur d'envoi", "finish_this_chat_87b79542": "Terminer cette conversation", diff --git a/src/i18n/he.json b/src/i18n/he.json index 4c4482697..aa86f57d7 100644 --- a/src/i18n/he.json +++ b/src/i18n/he.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "ביטול", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/hr.json b/src/i18n/hr.json index a1b113823..31c0a8736 100644 --- a/src/i18n/hr.json +++ b/src/i18n/hr.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Otkaži", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/hu.json b/src/i18n/hu.json index 4fb0c0949..d92ba0ad7 100644 --- a/src/i18n/hu.json +++ b/src/i18n/hu.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Mégse", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/id.json b/src/i18n/id.json index ceff31fb9..1242c3a14 100644 --- a/src/i18n/id.json +++ b/src/i18n/id.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Membatalkan", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/it.json b/src/i18n/it.json index 0bf1d84e4..c1b61692b 100644 --- a/src/i18n/it.json +++ b/src/i18n/it.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Annulla", "change_department_1d671538": "Cambia dipartimento", "change_department_523a16e8": "Cambia Dipartimento", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Conclusa", "choose_a_department_b106da55": "Scegli un dipartimento...", "choose_a_department_fe9755fd": "Scegli un dipartimento", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Errore durante la rimozione dei dati personali.", "error_starting_a_new_conversation_reason_a1b491a1": "Errore durante la creazione di una nuova conversazione: %{reason}", "expand_chat_a0045dbd": "Espandi chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "Il file supera la dimensione massima consentita di %{size}.", "fileupload_error_9eedee68": "FileUpload Errore", "finish_this_chat_87b79542": "Termina questa chat", diff --git a/src/i18n/ja.json b/src/i18n/ja.json index 024b0faf1..dd9b78570 100644 --- a/src/i18n/ja.json +++ b/src/i18n/ja.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "キャンセル", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/km.json b/src/i18n/km.json index 7508230f1..e4667363d 100644 --- a/src/i18n/km.json +++ b/src/i18n/km.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "បោះបង់", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/ko.json b/src/i18n/ko.json index 64ddece6b..58eff8720 100644 --- a/src/i18n/ko.json +++ b/src/i18n/ko.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "취소", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/ku.json b/src/i18n/ku.json index 06a134148..293135575 100644 --- a/src/i18n/ku.json +++ b/src/i18n/ku.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Bişûndekirin", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/lo.json b/src/i18n/lo.json index 9d9af941f..6f1f38df5 100644 --- a/src/i18n/lo.json +++ b/src/i18n/lo.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "ຍົກເລີກ", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/lt.json b/src/i18n/lt.json index 65246ea1b..87cfc671f 100644 --- a/src/i18n/lt.json +++ b/src/i18n/lt.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Atšaukti", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/lv.json b/src/i18n/lv.json index 924395819..224b4f7e7 100644 --- a/src/i18n/lv.json +++ b/src/i18n/lv.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Atcelt", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/mn.json b/src/i18n/mn.json index 6773eabf4..15b55a8ff 100644 --- a/src/i18n/mn.json +++ b/src/i18n/mn.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Цуцлах", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/ms_MY.json b/src/i18n/ms_MY.json index 722d8b34e..a540a1a38 100644 --- a/src/i18n/ms_MY.json +++ b/src/i18n/ms_MY.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Batal", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/nl.json b/src/i18n/nl.json index c35cadb73..891aebe59 100644 --- a/src/i18n/nl.json +++ b/src/i18n/nl.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Annuleren", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/no.json b/src/i18n/no.json index 531837267..42b9f46a4 100644 --- a/src/i18n/no.json +++ b/src/i18n/no.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Avbryt", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/pl.json b/src/i18n/pl.json index ffddf1ad0..945c1d714 100644 --- a/src/i18n/pl.json +++ b/src/i18n/pl.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Anuluj", "change_department_1d671538": "Zmień dział", "change_department_523a16e8": "Zmień Dział", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Rozmowa Zakończona", "choose_a_department_b106da55": "Wybierz dział...", "choose_a_department_fe9755fd": "Wybierz dział", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Wystąpił błąd podczas usuwania danych.", "error_starting_a_new_conversation_reason_a1b491a1": "Wystąpił błąd podczas tworzenia rozmowy: %{reason}", "expand_chat_a0045dbd": "Otwórz w nowym oknie", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "Plik przekroczył dopuszczalny rozmiar %{size}.", "fileupload_error_9eedee68": "Błąd podczas wysyłania pliku", "finish_this_chat_87b79542": "Zakończ rozmowę", diff --git a/src/i18n/pt.json b/src/i18n/pt.json index bdfe5de24..e72c53a04 100644 --- a/src/i18n/pt.json +++ b/src/i18n/pt.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Cancelar", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/pt_BR.json b/src/i18n/pt_BR.json index e82c4bac2..157e312f0 100644 --- a/src/i18n/pt_BR.json +++ b/src/i18n/pt_BR.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Cancelar", "change_department_1d671538": "Trocar departmento", "change_department_523a16e8": "Trocar Departmento", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Terminado", "choose_a_department_b106da55": "Escolha um departamento...", "choose_a_department_fe9755fd": "Escolha um departamento", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Erro ao remover os dados do usuário.", "error_starting_a_new_conversation_reason_a1b491a1": "Erro ao iniciar nova conversa: %{reason}", "expand_chat_a0045dbd": "Expandir chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "Arquivo excede o tamanho permitido de %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Encerrar este chat", diff --git a/src/i18n/ro.json b/src/i18n/ro.json index c48604453..fd6d6a091 100644 --- a/src/i18n/ro.json +++ b/src/i18n/ro.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Anula", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/ru.json b/src/i18n/ru.json index 31fa1ebcb..33e3cf569 100644 --- a/src/i18n/ru.json +++ b/src/i18n/ru.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Отмена", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/sk_SK.json b/src/i18n/sk_SK.json index cc0ddf81e..3b68e7af9 100644 --- a/src/i18n/sk_SK.json +++ b/src/i18n/sk_SK.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Zrušiť", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/sl_SI.json b/src/i18n/sl_SI.json index 0bea93f5a..fcd61025e 100644 --- a/src/i18n/sl_SI.json +++ b/src/i18n/sl_SI.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Prekliči", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/sq.json b/src/i18n/sq.json index 5e221f014..928159035 100644 --- a/src/i18n/sq.json +++ b/src/i18n/sq.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Anuloj", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/sr.json b/src/i18n/sr.json index 73dad224e..5448674db 100644 --- a/src/i18n/sr.json +++ b/src/i18n/sr.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Отказати", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/sv.json b/src/i18n/sv.json index 8b983e54b..5d5b19484 100644 --- a/src/i18n/sv.json +++ b/src/i18n/sv.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Avbryt", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/ta_IN.json b/src/i18n/ta_IN.json index a1b023914..2b646ebaa 100644 --- a/src/i18n/ta_IN.json +++ b/src/i18n/ta_IN.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "ரத்து", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/th_TH.json b/src/i18n/th_TH.json index c2c173941..741ae5d0e 100644 --- a/src/i18n/th_TH.json +++ b/src/i18n/th_TH.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "ยกเลิก", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/tr.json b/src/i18n/tr.json index 5a18bbbf7..a92f55f38 100644 --- a/src/i18n/tr.json +++ b/src/i18n/tr.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Vazgeç", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/ug.json b/src/i18n/ug.json index 5c028e418..de7171963 100644 --- a/src/i18n/ug.json +++ b/src/i18n/ug.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Cancel", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/uk.json b/src/i18n/uk.json index ced51db7d..043f288a1 100644 --- a/src/i18n/uk.json +++ b/src/i18n/uk.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "Скасувати", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/vi_VN.json b/src/i18n/vi_VN.json index 3343c9a31..e591b4fc2 100644 --- a/src/i18n/vi_VN.json +++ b/src/i18n/vi_VN.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "hủy bỏ", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/zh.json b/src/i18n/zh.json index 6c7d92c6b..98ea98538 100644 --- a/src/i18n/zh.json +++ b/src/i18n/zh.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "取消", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/zh_HK.json b/src/i18n/zh_HK.json index d32143432..dd5cdc5eb 100644 --- a/src/i18n/zh_HK.json +++ b/src/i18n/zh_HK.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "取消", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/i18n/zh_TW.json b/src/i18n/zh_TW.json index d437141df..02c095d7d 100644 --- a/src/i18n/zh_TW.json +++ b/src/i18n/zh_TW.json @@ -6,7 +6,6 @@ "cancel_caeb1e68": "取消", "change_department_1d671538": "Change department", "change_department_523a16e8": "Change Department", - "chat_finished_168db7df": "Chat finished", "chat_finished_effbd589": "Chat Finished", "choose_a_department_b106da55": "Choose a department...", "choose_a_department_fe9755fd": "Choose a department", @@ -28,6 +27,7 @@ "error_removing_user_data_ce507478": "Error removing user data.", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", + "feedback_6dcc1991": "Feedback", "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", diff --git a/src/routes/SurveyFeedback/container.js b/src/routes/SurveyFeedback/container.js index dbb393f81..4a7c096fe 100644 --- a/src/routes/SurveyFeedback/container.js +++ b/src/routes/SurveyFeedback/container.js @@ -30,7 +30,7 @@ export const SurveyFeedbackConnector = ({ ref, ...props }) => ( Date: Sun, 24 May 2020 20:54:13 +0530 Subject: [PATCH 05/17] update stories for feedback-form --- src/routes/SurveyFeedback/stories.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/SurveyFeedback/stories.js b/src/routes/SurveyFeedback/stories.js index 1cc94fc7c..0906215cd 100644 --- a/src/routes/SurveyFeedback/stories.js +++ b/src/routes/SurveyFeedback/stories.js @@ -10,7 +10,7 @@ storiesOf('Routes|Survey Feedback', module) .addDecorator(withKnobs) .add('normal', () => ( Date: Thu, 28 May 2020 11:29:16 +0530 Subject: [PATCH 06/17] feedback survey page validations --- src/routes/SurveyFeedback/component.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/routes/SurveyFeedback/component.js b/src/routes/SurveyFeedback/component.js index d31668c09..141f5826a 100644 --- a/src/routes/SurveyFeedback/component.js +++ b/src/routes/SurveyFeedback/component.js @@ -23,7 +23,7 @@ export default class SurveyFeedback extends Component { .map((fieldName) => (this.state[fieldName] ? { fieldName, ...this.state[fieldName] } : null)) .filter(Boolean) - validate = (fieldName, value) => this.validations[fieldName].reduce((error, validation) => (error || validation(value)), undefined) + validate = (fieldName, value) => this.validations[fieldName].reduce((error, validation) => (error || validation(this.state[fieldName])), undefined) validateAll = () => { for (const { fieldName, value } of this.getValidableFields()) { @@ -35,6 +35,8 @@ export default class SurveyFeedback extends Component { isValid = () => this.getValidableFields().every(({ error } = {}) => !error) handleFieldChange = (fieldName) => ({ target: { value } }) => { + this.setState({ [fieldName]: { value } }); + // check for errors const error = this.validate(fieldName, value); this.setState({ [fieldName]: { ...this.state[fieldName], value, error, showError: false } }); } From 0fd1d443410429320b1b347f90794bb7b6694c38 Mon Sep 17 00:00:00 2001 From: murtaza98 Date: Thu, 28 May 2020 13:28:37 +0530 Subject: [PATCH 07/17] feedback form update - new behaviour added - on Finish Chat redirect to Feedback form --- src/components/App/index.js | 2 ++ src/lib/room.js | 2 +- src/routes/SurveyFeedback/component.js | 2 +- src/routes/SurveyFeedback/container.js | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/App/index.js b/src/components/App/index.js index a0f2f0117..27d851bf2 100644 --- a/src/components/App/index.js +++ b/src/components/App/index.js @@ -9,6 +9,7 @@ import ChatFinished from '../../routes/ChatFinished'; import SwitchDepartment from '../../routes/SwitchDepartment'; import GDPRAgreement from '../../routes/GDPRAgreement'; import Register from '../../routes/Register'; +import SurveyFeedback from '../../routes/SurveyFeedback'; import { Provider as StoreProvider, Consumer as StoreConsumer } from '../../store'; import { visibility } from '../helpers'; import { setWidgetLanguage } from '../../lib/locale'; @@ -211,6 +212,7 @@ export class App extends Component { + ); } diff --git a/src/lib/room.js b/src/lib/room.js index b196cf64d..c6fe15bf7 100644 --- a/src/lib/room.js +++ b/src/lib/room.js @@ -16,7 +16,7 @@ export const closeChat = async () => { await handleTranscript(); await loadConfig(); parentCall('callback', 'chat-ended'); - route('/chat-finished'); + route('/survey-feedback'); }; const processMessage = async (message) => { diff --git a/src/routes/SurveyFeedback/component.js b/src/routes/SurveyFeedback/component.js index 141f5826a..b6dc593a5 100644 --- a/src/routes/SurveyFeedback/component.js +++ b/src/routes/SurveyFeedback/component.js @@ -89,7 +89,7 @@ export default class SurveyFeedback extends Component { - + diff --git a/src/routes/SurveyFeedback/container.js b/src/routes/SurveyFeedback/container.js index 4a7c096fe..af2a4e7c7 100644 --- a/src/routes/SurveyFeedback/container.js +++ b/src/routes/SurveyFeedback/container.js @@ -3,6 +3,7 @@ import { Component } from 'preact'; import { Consumer } from '../../store'; import SurveyFeedback from './component'; // import { insert, createToken } from '../../components/helpers'; +import { Livechat } from '../../api'; export class SurveyFeedbackContainer extends Component { handleSubmit = async(fields) => { From 5a2c3aca1b62bae2e499845af1d72a8270da02b9 Mon Sep 17 00:00:00 2001 From: murtaza98 Date: Thu, 28 May 2020 22:30:49 +0530 Subject: [PATCH 08/17] feedback/survey form update - connected survey component with Livechat SDK - handle routing --- src/i18n/af.json | 3 ++- src/i18n/ar.json | 3 ++- src/i18n/az.json | 6 ++--- src/i18n/be_BY.json | 6 ++--- src/i18n/bg.json | 6 ++--- src/i18n/bs.json | 6 ++--- src/i18n/ca.json | 6 ++--- src/i18n/cs.json | 6 ++--- src/i18n/cy.json | 6 ++--- src/i18n/da.json | 6 ++--- src/i18n/de.json | 6 ++--- src/i18n/de_AT.json | 6 ++--- src/i18n/default.json | 6 ++--- src/i18n/el.json | 6 ++--- src/i18n/en.json | 6 ++--- src/i18n/eo.json | 6 ++--- src/i18n/es.json | 1 + src/i18n/et.json | 6 ++--- src/i18n/eu.json | 6 ++--- src/i18n/fa.json | 6 ++--- src/i18n/fi.json | 6 ++--- src/i18n/fr.json | 6 ++--- src/i18n/he.json | 1 + src/i18n/hr.json | 6 ++--- src/i18n/hu.json | 6 ++--- src/i18n/id.json | 6 ++--- src/i18n/it.json | 6 ++--- src/i18n/ja.json | 6 ++--- src/i18n/km.json | 6 ++--- src/i18n/ko.json | 6 ++--- src/i18n/ku.json | 6 ++--- src/i18n/lo.json | 6 ++--- src/i18n/lt.json | 6 ++--- src/i18n/lv.json | 6 ++--- src/i18n/mn.json | 6 ++--- src/i18n/ms_MY.json | 6 ++--- src/i18n/nl.json | 1 + src/i18n/no.json | 6 ++--- src/i18n/pl.json | 6 ++--- src/i18n/pt.json | 6 ++--- src/i18n/pt_BR.json | 6 ++--- src/i18n/ro.json | 6 ++--- src/i18n/ru.json | 1 + src/i18n/sk_SK.json | 6 ++--- src/i18n/sl_SI.json | 6 ++--- src/i18n/sq.json | 6 ++--- src/i18n/sr.json | 1 + src/i18n/sv.json | 6 ++--- src/i18n/ta_IN.json | 6 ++--- src/i18n/th_TH.json | 6 ++--- src/i18n/tr.json | 6 ++--- src/i18n/ug.json | 6 ++--- src/i18n/uk.json | 6 ++--- src/i18n/vi_VN.json | 6 ++--- src/i18n/zh.json | 6 ++--- src/i18n/zh_HK.json | 3 ++- src/i18n/zh_TW.json | 3 ++- src/lib/room.js | 6 ++++- src/routes/SurveyFeedback/container.js | 36 +++++++++++++++++++++++++- 59 files changed, 149 insertions(+), 198 deletions(-) diff --git a/src/i18n/af.json b/src/i18n/af.json index 953e68bb1..9fdedd5a2 100644 --- a/src/i18n/af.json +++ b/src/i18n/af.json @@ -25,6 +25,7 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", "feedback_6dcc1991": "Feedback", @@ -83,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/ar.json b/src/i18n/ar.json index afb904c2e..cc45373e6 100644 --- a/src/i18n/ar.json +++ b/src/i18n/ar.json @@ -25,6 +25,7 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", "feedback_6dcc1991": "Feedback", @@ -83,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/az.json b/src/i18n/az.json index a1e0cda9d..4e12d75a5 100644 --- a/src/i18n/az.json +++ b/src/i18n/az.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/be_BY.json b/src/i18n/be_BY.json index 411dbe262..5eb6ac3cf 100644 --- a/src/i18n/be_BY.json +++ b/src/i18n/be_BY.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/bg.json b/src/i18n/bg.json index 2266d2141..18d2650e0 100644 --- a/src/i18n/bg.json +++ b/src/i18n/bg.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/bs.json b/src/i18n/bs.json index 804b11836..3501b66d9 100644 --- a/src/i18n/bs.json +++ b/src/i18n/bs.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/ca.json b/src/i18n/ca.json index 93e26f02d..7a1ee5e2f 100644 --- a/src/i18n/ca.json +++ b/src/i18n/ca.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/cs.json b/src/i18n/cs.json index 3ae6772bf..2440908cf 100644 --- a/src/i18n/cs.json +++ b/src/i18n/cs.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/cy.json b/src/i18n/cy.json index 959d568a0..e2ed8af3e 100644 --- a/src/i18n/cy.json +++ b/src/i18n/cy.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/da.json b/src/i18n/da.json index d86ea5e5a..1b407556b 100644 --- a/src/i18n/da.json +++ b/src/i18n/da.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/de.json b/src/i18n/de.json index 321ce73a3..a69bf25a9 100644 --- a/src/i18n/de.json +++ b/src/i18n/de.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Benachrichtigungen aktivieren", "error_closing_chat_4c5e29d7": "Fehler, schließe chat", "error_removing_user_data_ce507478": "Fehler, lösche Nutzer Daten", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Fehler starte eine neue Konversation: %{reason}", "expand_chat_a0045dbd": "Chat vergrößern", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "Die Datei überschreitet die maximal erlaubte Größe von: %{size}.", "fileupload_error_9eedee68": "Datei Upload Fehler", "finish_this_chat_87b79542": "Diesen Chat beenden", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/de_AT.json b/src/i18n/de_AT.json index b6047723b..7d0cda39e 100644 --- a/src/i18n/de_AT.json +++ b/src/i18n/de_AT.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/default.json b/src/i18n/default.json index 709da10e5..e3664b4cd 100644 --- a/src/i18n/default.json +++ b/src/i18n/default.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/el.json b/src/i18n/el.json index 59725c235..d6c2d5171 100644 --- a/src/i18n/el.json +++ b/src/i18n/el.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/en.json b/src/i18n/en.json index e3992b021..684a4fd98 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/eo.json b/src/i18n/eo.json index 02caa1529..5b4e70606 100644 --- a/src/i18n/eo.json +++ b/src/i18n/eo.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/es.json b/src/i18n/es.json index 8b6443a97..6bb94637a 100644 --- a/src/i18n/es.json +++ b/src/i18n/es.json @@ -25,6 +25,7 @@ "enable_notifications_a3daf4b1": "Activar notificaciones", "error_closing_chat_4c5e29d7": "Error cerrando el chat.", "error_removing_user_data_ce507478": "Error removiendo datos de usuario.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error comenzado una nueva conversación: %{reason}", "expand_chat_a0045dbd": "Expandir chat", "feedback_6dcc1991": "Feedback", diff --git a/src/i18n/et.json b/src/i18n/et.json index d91c1576a..6a599fb1e 100644 --- a/src/i18n/et.json +++ b/src/i18n/et.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/eu.json b/src/i18n/eu.json index dba41531a..3fbfb9aa4 100644 --- a/src/i18n/eu.json +++ b/src/i18n/eu.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/fa.json b/src/i18n/fa.json index c6932ce20..ae2b157c0 100644 --- a/src/i18n/fa.json +++ b/src/i18n/fa.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "فعال کردن ناتیفیکیشن ها", "error_closing_chat_4c5e29d7": "خطا در بستن گفتگو.", "error_removing_user_data_ce507478": "خطا در حذف اطلاعات کاربر.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "خطا در ایجاد گفتگوی جدید: %{reason}", "expand_chat_a0045dbd": "گسترش گفتگو", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "حجم فایل بیشتر از حد مجاز (%{size}) است.", "fileupload_error_9eedee68": "خطا در آپلود فایل", "finish_this_chat_87b79542": "پایان این گفتگو", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/fi.json b/src/i18n/fi.json index 1f357fc88..bcb26af25 100644 --- a/src/i18n/fi.json +++ b/src/i18n/fi.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/fr.json b/src/i18n/fr.json index 8b398d876..53b7b7000 100644 --- a/src/i18n/fr.json +++ b/src/i18n/fr.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Activer les notifications", "error_closing_chat_4c5e29d7": "Erreur lors de la fermeture de la conversation.", "error_removing_user_data_ce507478": "Erreur lors de la suppression des données utilisateur.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Erreur lors de la création d'une nouvelle conversation : %{reason}", "expand_chat_a0045dbd": "Agrandir le chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "Le fichier dépasse la taille autorisée de %{size}.", "fileupload_error_9eedee68": "Erreur d'envoi", "finish_this_chat_87b79542": "Terminer cette conversation", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Votre rang est #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Votre rang est #%{spot} (Temps d'attente estimé: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/he.json b/src/i18n/he.json index 5d4bd790d..5995eb6ef 100644 --- a/src/i18n/he.json +++ b/src/i18n/he.json @@ -25,6 +25,7 @@ "enable_notifications_a3daf4b1": "הפעל התראות", "error_closing_chat_4c5e29d7": "שגיאה בסגירת הצ'אט.", "error_removing_user_data_ce507478": "שגיאה בהסרת המידע.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "לא הצלחנו ליצור שיחה חדשה: %{reason}", "expand_chat_a0045dbd": "הרחב צ'אט", "feedback_6dcc1991": "Feedback", diff --git a/src/i18n/hr.json b/src/i18n/hr.json index de339cf6b..5022b35b6 100644 --- a/src/i18n/hr.json +++ b/src/i18n/hr.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/hu.json b/src/i18n/hu.json index c67e8a517..b026742c4 100644 --- a/src/i18n/hu.json +++ b/src/i18n/hu.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/id.json b/src/i18n/id.json index f43d4bd6b..7a11ca665 100644 --- a/src/i18n/id.json +++ b/src/i18n/id.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/it.json b/src/i18n/it.json index 9ba8141c3..681ba9072 100644 --- a/src/i18n/it.json +++ b/src/i18n/it.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Abilita notifiche", "error_closing_chat_4c5e29d7": "Errore durante la chiusura della chat.", "error_removing_user_data_ce507478": "Errore durante la rimozione dei dati personali.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Errore durante la creazione di una nuova conversazione: %{reason}", "expand_chat_a0045dbd": "Espandi chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "Il file supera la dimensione massima consentita di %{size}.", "fileupload_error_9eedee68": "FileUpload Errore", "finish_this_chat_87b79542": "Termina questa chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "La tua posizione è #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "La tua posizione è #%{spot} (Tempo di attesa stimato: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/ja.json b/src/i18n/ja.json index 7e6d1328f..b4eec4882 100644 --- a/src/i18n/ja.json +++ b/src/i18n/ja.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/km.json b/src/i18n/km.json index b2c1e993a..2ad266fc5 100644 --- a/src/i18n/km.json +++ b/src/i18n/km.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/ko.json b/src/i18n/ko.json index c212b31ce..42ba28256 100644 --- a/src/i18n/ko.json +++ b/src/i18n/ko.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/ku.json b/src/i18n/ku.json index ba4641444..73336d02a 100644 --- a/src/i18n/ku.json +++ b/src/i18n/ku.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/lo.json b/src/i18n/lo.json index f8956103b..83df5689a 100644 --- a/src/i18n/lo.json +++ b/src/i18n/lo.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/lt.json b/src/i18n/lt.json index f7497fc97..da9101232 100644 --- a/src/i18n/lt.json +++ b/src/i18n/lt.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/lv.json b/src/i18n/lv.json index 6031dd165..ecc3c66ed 100644 --- a/src/i18n/lv.json +++ b/src/i18n/lv.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/mn.json b/src/i18n/mn.json index 1790a4021..c98763204 100644 --- a/src/i18n/mn.json +++ b/src/i18n/mn.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/ms_MY.json b/src/i18n/ms_MY.json index 92684ec5a..c88d8175a 100644 --- a/src/i18n/ms_MY.json +++ b/src/i18n/ms_MY.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/nl.json b/src/i18n/nl.json index 58636b56a..d4c9f42a1 100644 --- a/src/i18n/nl.json +++ b/src/i18n/nl.json @@ -25,6 +25,7 @@ "enable_notifications_a3daf4b1": "Notificaties aanzetten", "error_closing_chat_4c5e29d7": "Fout bij sluiten van chat.", "error_removing_user_data_ce507478": "Fout bij verwijderen van gebruikersgegevens.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Fout bij het starten van een nieuw gesprek: %{reason}", "expand_chat_a0045dbd": "Chat uitbreiden", "feedback_6dcc1991": "Feedback", diff --git a/src/i18n/no.json b/src/i18n/no.json index 5343931a1..0fac5c82f 100644 --- a/src/i18n/no.json +++ b/src/i18n/no.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/pl.json b/src/i18n/pl.json index 1007efa94..981ece8a6 100644 --- a/src/i18n/pl.json +++ b/src/i18n/pl.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Włącz powiadomienia", "error_closing_chat_4c5e29d7": "Wystąpił błąd podczas zamykania rozmowy.", "error_removing_user_data_ce507478": "Wystąpił błąd podczas usuwania danych.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Wystąpił błąd podczas tworzenia rozmowy: %{reason}", "expand_chat_a0045dbd": "Otwórz w nowym oknie", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "Plik przekroczył dopuszczalny rozmiar %{size}.", "fileupload_error_9eedee68": "Błąd podczas wysyłania pliku", "finish_this_chat_87b79542": "Zakończ rozmowę", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Twoje miejsce to #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Twoje miejsce to #%{spot} (Szacowany czas oczekiwania: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/pt.json b/src/i18n/pt.json index 5cfb39bcd..06c2d7f2b 100644 --- a/src/i18n/pt.json +++ b/src/i18n/pt.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Seu lugar é #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Seu lugar é #%{spot} (Tempo estimado: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/pt_BR.json b/src/i18n/pt_BR.json index 94efb30b6..6743dbc49 100644 --- a/src/i18n/pt_BR.json +++ b/src/i18n/pt_BR.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Habilitar notificações", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Erro ao remover os dados do usuário.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Erro ao iniciar nova conversa: %{reason}", "expand_chat_a0045dbd": "Expandir chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Campo obrigatório", - "file_exceeds_allowed_size_of_size_bd65c389": "Arquivo excede o tamanho permitido de %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Encerrar este chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Seu lugar é #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Seu lugar é #%{spot} (Tempo estimado: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/ro.json b/src/i18n/ro.json index 843f25621..68e8cc417 100644 --- a/src/i18n/ro.json +++ b/src/i18n/ro.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/ru.json b/src/i18n/ru.json index 6face9d00..57e3f92e9 100644 --- a/src/i18n/ru.json +++ b/src/i18n/ru.json @@ -25,6 +25,7 @@ "enable_notifications_a3daf4b1": "Включить оповещения", "error_closing_chat_4c5e29d7": "Ошибка закрытия чата.", "error_removing_user_data_ce507478": "Ошибка удаления пользовательских данных.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Ошибка при запуске нового диалога: %{reason}", "expand_chat_a0045dbd": "Развернуть окно чата", "feedback_6dcc1991": "Feedback", diff --git a/src/i18n/sk_SK.json b/src/i18n/sk_SK.json index e69c42e51..d909ff6b0 100644 --- a/src/i18n/sk_SK.json +++ b/src/i18n/sk_SK.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/sl_SI.json b/src/i18n/sl_SI.json index 0573270ba..2e3ad65d4 100644 --- a/src/i18n/sl_SI.json +++ b/src/i18n/sl_SI.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/sq.json b/src/i18n/sq.json index ed55877bc..aba38d306 100644 --- a/src/i18n/sq.json +++ b/src/i18n/sq.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/sr.json b/src/i18n/sr.json index 4641cd348..416f0a45d 100644 --- a/src/i18n/sr.json +++ b/src/i18n/sr.json @@ -25,6 +25,7 @@ "enable_notifications_a3daf4b1": "Омогући обавештења", "error_closing_chat_4c5e29d7": "Грешка приликом завршетка разговора.", "error_removing_user_data_ce507478": "Грешка приликом уклањања корисничких података.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Грешка приликом започињања новог разговора: %{reason}", "expand_chat_a0045dbd": "Прошири прозор разговора", "feedback_6dcc1991": "Feedback", diff --git a/src/i18n/sv.json b/src/i18n/sv.json index 2af429211..26861444b 100644 --- a/src/i18n/sv.json +++ b/src/i18n/sv.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/ta_IN.json b/src/i18n/ta_IN.json index 9d9e589ca..8293019e0 100644 --- a/src/i18n/ta_IN.json +++ b/src/i18n/ta_IN.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/th_TH.json b/src/i18n/th_TH.json index ed8c8d1c1..9643670ac 100644 --- a/src/i18n/th_TH.json +++ b/src/i18n/th_TH.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/tr.json b/src/i18n/tr.json index ceca75883..2b68caa65 100644 --- a/src/i18n/tr.json +++ b/src/i18n/tr.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/ug.json b/src/i18n/ug.json index ca9048ca7..e1e92b75f 100644 --- a/src/i18n/ug.json +++ b/src/i18n/ug.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/uk.json b/src/i18n/uk.json index 61a85dbef..69901ad29 100644 --- a/src/i18n/uk.json +++ b/src/i18n/uk.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/vi_VN.json b/src/i18n/vi_VN.json index f51849bf5..7c1f7760c 100644 --- a/src/i18n/vi_VN.json +++ b/src/i18n/vi_VN.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/zh.json b/src/i18n/zh.json index a6eb931fd..65888e794 100644 --- a/src/i18n/zh.json +++ b/src/i18n/zh.json @@ -25,13 +25,11 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", - "feedback_6dcc1991": "Feedback", - "field_required_fc5c6b05": "Field required", - "file_exceeds_allowed_size_of_size_bd65c389": "File exceeds allowed size of %{size}.", "fileupload_error_9eedee68": "FileUpload Error", "finish_this_chat_87b79542": "Finish this chat", @@ -86,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/zh_HK.json b/src/i18n/zh_HK.json index 89eb689af..2b77f0325 100644 --- a/src/i18n/zh_HK.json +++ b/src/i18n/zh_HK.json @@ -25,6 +25,7 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", "feedback_6dcc1991": "Feedback", @@ -83,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/i18n/zh_TW.json b/src/i18n/zh_TW.json index a467337e3..f8376e76c 100644 --- a/src/i18n/zh_TW.json +++ b/src/i18n/zh_TW.json @@ -25,6 +25,7 @@ "enable_notifications_a3daf4b1": "Enable notifications", "error_closing_chat_4c5e29d7": "Error closing chat.", "error_removing_user_data_ce507478": "Error removing user data.", + "error_saving_feedback_cfa6151b": "Error Saving Feedback", "error_starting_a_new_conversation_reason_a1b491a1": "Error starting a new conversation: %{reason}", "expand_chat_a0045dbd": "Expand chat", "feedback_6dcc1991": "Feedback", @@ -83,4 +84,4 @@ "your_spot_is_spot_a35cd288": "Your spot is #%{spot}", "your_spot_is_spot_estimated_wait_time_estimatedwai_d0ff46e0": "Your spot is #%{spot} (Estimated wait time: %{estimatedWaitTime})" } -} +} \ No newline at end of file diff --git a/src/lib/room.js b/src/lib/room.js index c6fe15bf7..74818e9f0 100644 --- a/src/lib/room.js +++ b/src/lib/room.js @@ -14,9 +14,13 @@ const commands = new Commands(); export const closeChat = async () => { await handleTranscript(); + route('/survey-feedback'); +}; + +export const endChat = async () => { await loadConfig(); parentCall('callback', 'chat-ended'); - route('/survey-feedback'); + route('/chat-finished'); }; const processMessage = async (message) => { diff --git a/src/routes/SurveyFeedback/container.js b/src/routes/SurveyFeedback/container.js index af2a4e7c7..c38d9f8c3 100644 --- a/src/routes/SurveyFeedback/container.js +++ b/src/routes/SurveyFeedback/container.js @@ -4,10 +4,40 @@ import { Consumer } from '../../store'; import SurveyFeedback from './component'; // import { insert, createToken } from '../../components/helpers'; import { Livechat } from '../../api'; +import { endChat } from '../../lib/room'; +import { createToken } from '../../components/helpers'; export class SurveyFeedbackContainer extends Component { handleSubmit = async(fields) => { - console.log(fields); + + const { alerts, dispatch, room: { _id: rid } } = this.props; + + await dispatch({ loading: true }); + + try{ + if (rid){ + const packet = { + rid: rid, + data: [{ + name: 'satisfaction', // TODO: modify ILivechatSurveyAPI in RC.js.SDK to remove this field + value: `${fields.rating}` + }] + } + // console.log('Packet --> ', packet); + Livechat.chatSurvey(packet).then(response => { + console.log('SDK response - survey --> ', response); + }).catch(error => { + console.error('error -->', error); + }); + } + }catch(error){ + console.error(error); + const alert = { id: createToken(), children: I18n.t('Error Saving Feedback'), error: true, timeout: 0 }; + await dispatch({ alerts: (alerts.push(alert), alerts) }); + }finally { + await dispatch({ loading: false }); + await endChat(); + } } render = (props) => ( @@ -27,6 +57,8 @@ export const SurveyFeedbackConnector = ({ ref, ...props }) => ( loading, token, dispatch, + room, + alerts, }) => ( ( loading={loading} token={token} dispatch={dispatch} + room={room} + alerts={alerts} /> )} From db93e91d94f9511c29c3cea9d06f8a08240f8968 Mon Sep 17 00:00:00 2001 From: murtaza98 Date: Sat, 30 May 2020 13:20:25 +0530 Subject: [PATCH 09/17] apply theme/color to Survey Feedback Page --- src/routes/SurveyFeedback/component.js | 3 ++- src/routes/SurveyFeedback/container.js | 9 ++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/routes/SurveyFeedback/component.js b/src/routes/SurveyFeedback/component.js index b6dc593a5..898ed3ee2 100644 --- a/src/routes/SurveyFeedback/component.js +++ b/src/routes/SurveyFeedback/component.js @@ -62,12 +62,13 @@ export default class SurveyFeedback extends Component { this.validateAll(); } - render({ title, message: messageProp, loading, ...props }, { rating, message }) { + render({ title, color, message: messageProp, loading, ...props }, { rating, message }) { const valid = this.isValid(); return ( diff --git a/src/routes/SurveyFeedback/container.js b/src/routes/SurveyFeedback/container.js index c38d9f8c3..2e6c57701 100644 --- a/src/routes/SurveyFeedback/container.js +++ b/src/routes/SurveyFeedback/container.js @@ -54,6 +54,11 @@ export const SurveyFeedbackConnector = ({ ref, ...props }) => ( color, } = {}, } = {}, + iframe: { + theme: { + color: customColor, + } = {}, + } = {}, loading, token, dispatch, @@ -63,8 +68,10 @@ export const SurveyFeedbackConnector = ({ ref, ...props }) => ( Date: Sat, 30 May 2020 17:01:26 +0530 Subject: [PATCH 10/17] removed emoji-mart dependency from survey/feedback form - this will optimize the emoji-rendering process --- package.json | 1 - .../RatingEmojis/rating-value-1.png | Bin 0 -> 1931 bytes .../RatingEmojis/rating-value-2.png | Bin 0 -> 1784 bytes .../RatingEmojis/rating-value-3.png | Bin 0 -> 1777 bytes .../RatingEmojis/rating-value-4.png | Bin 0 -> 1841 bytes .../RatingEmojis/rating-value-5.png | Bin 0 -> 2129 bytes src/components/Form/ExperienceRating/index.js | 26 ++++++++---------- .../Form/ExperienceRating/style.scss | 4 +++ yarn.lock | 8 ------ 9 files changed, 15 insertions(+), 24 deletions(-) create mode 100644 src/components/Form/ExperienceRating/RatingEmojis/rating-value-1.png create mode 100644 src/components/Form/ExperienceRating/RatingEmojis/rating-value-2.png create mode 100644 src/components/Form/ExperienceRating/RatingEmojis/rating-value-3.png create mode 100644 src/components/Form/ExperienceRating/RatingEmojis/rating-value-4.png create mode 100644 src/components/Form/ExperienceRating/RatingEmojis/rating-value-5.png diff --git a/package.json b/package.json index c019fb07d..462b21090 100644 --- a/package.json +++ b/package.json @@ -70,7 +70,6 @@ "@rocket.chat/sdk": "^1.0.0-alpha.29", "date-fns": "^2.4.1", "desvg": "^1.0.2", - "emoji-mart": "^3.0.0", "fast-async": "^6.3.8", "history": "^4.7.2", "i18n": "^0.8.3", diff --git a/src/components/Form/ExperienceRating/RatingEmojis/rating-value-1.png b/src/components/Form/ExperienceRating/RatingEmojis/rating-value-1.png new file mode 100644 index 0000000000000000000000000000000000000000..4383cf455f03f7297d39c61cf1e663e22495e691 GIT binary patch literal 1931 zcmV;62Xy#}P)Px#!%$3AMMrQ<#%Krgj047jD9UgX#%~kLdmr+m6Ucoh zyM{K;dmQGDBH4l=@`?_{X$tO<8QFIb|JpJAt`_*H6#vmL|Fs_fx+wqnkpIp&|GqB& z_I~Y~5C8nR|N5o>_G{&m4FAVE|H&-=?Lyy(3ID-3|NYMY<1_!qGueIy{@z6Y^;y+) z0{`V%q-ziV=W+l38$tji>)tH7fO5v)zJfH*59EKaAg~H(M`ax8LvY;a|TizO>r)%8!|P`$g>U_WS+s zwD$X5AF%q*!nB^dJ46=NYBCuN29uSwAge33YTuq>y(MmtaeQ_3`WLU)(b#t-pf=(+ zQ&rl}$VmP;Lvn23Aobk-Mz88G!EU#g1|!AHAl#OjtpAuZqhTq4IGjmG0~ zwhhw?$QakEpGwRb^BUz?W{lF6V^u@xgFctZQB`%E*Fy!yj4@OBVaMywo6XKwS&fTW zvD7giq59@#^Zei_XuQD0w(4M@=5@>EhN=!!U-kQ&;HC1gL7MLmeE4LkMeTjTS|}Lk zZy&X({v2!+-{%smJC7Nu$<)_ z@h7a_gZP>ijPQNe-}=TTDA#VFYOv`VTX*Y&HE}0j)Cz~WFq|UY2in3a9I*g2=x`v@`w+@tR!QitO z$KGjmTbC$~5(gB=b)2n(Qa=cORc>cy7+Ve2!Wh@GPSG)rkD+zzT(9x z%`o&$aLC);gqbOGLxaK*Ffh4BVHjP{R=5HbnEj!V>d{*V@IH^4gXnC3k+8;V7UQ^e#Fm7GJmqCbY9No;Or zLAozwSR$I5IGklr8zJg897=g4Ii1>~5Qr5qIt4-~ZFX}#V@=YTBo}7K_cd>k%p^<% zM>T_{vvs=rYwJS}*+9vf%(j-~^Cf|O9(u{e=Oj8FLs8ajErlQu&g_tXBQ@7cHaC*s z!~~M=!FF(Bb0nFa@T?Qa(FGD2_M99F1T$;rr`pmojRb81iJUm0vmg~>j&%-?@dZz3 z04Wp*_Sy0+Kh-umJW?tdws(xqj%I6xG7QIo#iB814hu9}b_zcvgmoH;OP6a5j$srX zdxdGTCRoS7i0;KNs2_00_T0l;6;SN|A3TmhXq=fZoadt6e*Lu>&3wtzAspG ziegdEo#ncE`y--+lE|fD>}li_sX6ur7M^2|IlUq7vbWnG5sfqwNnU8+VZb)b9;|fj z5{cySK<|FqvPeV9)J@LNg^Vf`9?puMO#7Kry89I=ycIKHr|v9ba8>TS3HKL8a4d1D zK;a1iKFK;6jDf_^XK)beJh)6^lcU+;^l~dJu3#K=mdkg$KKsFrlVg2i6j_DpvNXLc z&)Wx=NCKA%6l|L@-EQg(xg&gVG1A}?55+0Ad5S<9bY|#OKfFB3C7{Uab=d>|}p<5c?zpWv3&?1cr z|NmC%2(=&I{HfHMRlu?;b*k;!PjCA)3OAwzp;{G$e{mz~&)$t|{Acf!)!*B|o>}39 RwQc|a002ovPDHLkV1jRyrA`0< literal 0 HcmV?d00001 diff --git a/src/components/Form/ExperienceRating/RatingEmojis/rating-value-2.png b/src/components/Form/ExperienceRating/RatingEmojis/rating-value-2.png new file mode 100644 index 0000000000000000000000000000000000000000..c9aa45675b6f2ae7bd2867c9c89fa3f92317373e GIT binary patch literal 1784 zcmVPx#u~1A@MMrQ<&U_%rYzxV76yu5`(0d-ma2CmYB*ua% z#%Kr0a1-&05ABZ_>60YIYz@wH7ysBY{HzuK(Ki3LB>%lF|G_r@_J{tm8UOck|KT$5 zo)F@U3iYNH|Hv%=$v5bh58QwT|M{B!>plPbt^d(3)pi5_^j7}ZNB{i4|NYbc;#U9Y zZKP-mh)o9nrv>|y1ONW!|GEkP&kD+F17Iltb2|f?T?wv#9m%LJ#g8D{y*gI)#ti@f z01$LiPE!C_(w~WRi8~YTmFdc$s-Ps8W%Sp` zU^cbp%jHqW$I_b427iGm{i(G){%XY$u)gv=X7)HIW$gy>YOz|a0(VW;d^1zN!E7>Q z-1zYF`jf}&%V8C%KxJR0M*YX^c>J}FpBvNWA@npLa&r5GU^I)d4>2XH1@Bc zrk^I&p>!Y{Sm*U_yevFSs`Iha&!Icv;RU0Sel`Y+=LkBL_dj)_XPC>^xux|Y0vE+L zN~4dR_?gGcz2M6h_D4CPV}o;ezH5oW15Q|I?@JxZ=fFbJz;n-(K5?tZxhNhBZ?!+NJ#GnXX41o z@@+e%UY^aJ2m%%daR8H}D7Zu5Xn-?foE(La(vP0ubLfO)|sEvgXCXR;DRRgu@& z0!Py@5KI_4dTU>z$~Y9dksDl!v`oq(d6Q64mPuOFFoR7s9mi<3djORgFsf-Jg)Xd; zBxRbqfg9kHUfeRp(V~J0;Tp0D9mh1Fwt=+Ga*IKl3R7G+DH4b@4MAdof76sklQlYO zs5u<^A!-|S^L(x|NmbQ#xK7wAsVWQ#f=YnaFbh7^acl#ju7H$%z5&RvZ7#VLgG#p* zB^#~K0m!p$)6nOed@q{R*>5>ydmc#_>;|mjx@&r}mx^UnyXbhHV?#m!?e^ldGyuq2 z3dsXV#SbsjtGkAv7yNrgJ}ouK2&UQO5Hx5*IzlLU>iU{O)PfMw1xGI~IyOSKp)U~{ ziv3!KSWfOGNiJ_3lyDT&;fxL!DVy!SCr%*<%|&e>sUB^vwc2)6>J}_)5;B(WLo6j~ z6nhGU|Lchc*|v@?lA)o$-E9aGDdB9~#$s&(RTiGe2YU@IdKcpTW|F`fg&IT>%x1mb z`l8tbf4_s;bdi$7C`q~nEYNUY)jG<%d1a0>xr8#H;Vkw!F6FfXkDau;*Z10I`GsdTJo(_Vy+rgjS1c96Ae8J|dxJ zqwyvo#QH5LN6JR!4uvfsO6YVu)sDJSN>WbnFs!<+s;b^uCU?wRLKe2#?@AXELk=|( zqs(1Z76pC>o#ES{wrJG66-Ej96Zs2r>^H?Vl3tgH6cmIdJLBf?!u)aTJGID8jmpjQ}&{O*&V%!wRBr7?e)9M=DA_^~6aV~0uJ3OJ&o6A2)iA&Tc zD?O(d{3bPdz#I4iy#kf!vg1F!xn^T2iRvskqiUM@N5FQgie$;1KRZMl?nEh}G+%CN z(=qU5&|gN9R#^AW)jt#`s-vD`*LfJ? z&629RIpe!Ok~$|@B1@NpE5NY+Kw*RXm;Tr$k_5%IB@Z?tIlcFOJ5ESqjcO>=ns+$9 zX`J_e9tnw4lGSEDa~?)RAqmQw^M}P0V7N2+_;+mwx1FE_)+i0*j|ZRrIPTKMBZ{nB z?1-Usx?lLkJ{t0*m_^)f!`^LqI+L&6+E9AqQ_I@obIX;}_(}Qt{go%A(8A|-%Mi|V zzICTX8FtC?Y5hIE^G~O7ccOgze$7Z3JOS3kxcfBx+j~eOyb(2=^m>ya-iZ3&?xX#y ae18Ll^^PD)5Pm-Z0000Px#z)(z7MMrQ<#%Krgj047jDaLOT$#4?ZfFJXs6Uluf zyM{L9jUmr_9m#A9@rw@aj~M^gGXKsn|G6jqt``5`G5Dwy|HC-{v>gA&E&shR|Mq?D zn-Bl@jsN{KL7Mr|NYbd{J`gw4dRUorDqJ?h6tBm4Apc3*nI|vN(2AS zKL6%z|J_6X<@(%4!4u*Hhto0{_Se|JMz!fgE~41I?@~ z?$tKl!ZunY09CQw%K!iX4|GyaQvmP&8j+`d{yqwpWzy-&h%U^D000HFNklHPuE{(JDV?G^L@o*8BbbFH!sbx&@f_ zvoO`C<{A-uI2sH*&l`+}Hd#%zs(rgft*S1OiKE{5EFE8Vl>w;xt&%jW% z$Bt5lw&LEH)g{6g_Y;s-)dw@zl@&Nqf7~AnYJAPWSL8mFgu`omqr|%ILy0>*cwA%s z6oK`RQ7^6jb)mrvrSi>*YfsDNI_hF&R__)<+jJv$xqQ0uD$pCy*tVNi zFXQqhR>NTX zxw>pluVP~nl{fGPUZ&CBnc(4Swqdk|=4Ab1(h!J4gJ^(N^tiw(V$v2Pm5Y%eP&3?a zw@H*lBQD*oXfT4!64;y~T?YbZnNX%YDTB8c)y0ssHwL+;X~G7v zZF49nK<9uG`5(*)P19jeIwWmZ?mV|pa!E35`w)mBc_@(8RLeW@XQ{>@ z%XLMl;R$yN4&c~n4N=FGi~+~BtkyF?V%iEqO^YOxB#h(-{yE101P%K<5OWCXly?$` zq}>FdLL~d+;2(+(NM~3G6B2pQX+C#eub?(arjT$d_C?V$;}V+ed%b1J6ACqI1ijMX(CaF*xnpytBzJJ!y4$hrO{#4wTCZ zdvwjL*rCD|j>7|CXS?hjsWyM(y^++J;@Nq({Ha9_1?o()S>ur2L?o;2wEfS;!}>e` zWKkgK>}`|%snzQu5;Zqn9D@gSTpXw|9_X!}`ye3!#3F&@oc+f&#X#u5gy5J-`8UYY zd`6K_vYhuX%CXSl6Dk$nv*kHXNl19;LV8oVELhCu!yF7G7e7RlsJT>PFN0f!uOBvO zY-~2)6hB1hFePd(liGI}kp~0KAkf7}Ta1LwVWzv3U~*3B>Qkh&;mrw&S?z*CT>--! z7|=$#z9_0=b0krFL@|q%#S|U~9SBsvahXKTO{hBzg%-m^wK$V=N;fZ(YMV?-DcCzT z5J4t&Hg_(OBrauCvjrMGI0JFuc-6kTXxHkSJk?Pk$=Y{s80kcj1vR0^j1*#ibk|0c z>SzHbYK}@>BIZX_MN?$J(kj*EKe+9qiyKijMUrG$l9bvX--!Bm@0I-r_x=6`#5aO3 T1a=1%00000NkvXXu0mjfIxJk1 literal 0 HcmV?d00001 diff --git a/src/components/Form/ExperienceRating/RatingEmojis/rating-value-4.png b/src/components/Form/ExperienceRating/RatingEmojis/rating-value-4.png new file mode 100644 index 0000000000000000000000000000000000000000..ca87bc06b7e5147a5c35b1d4cf5ae1da6e37fa35 GIT binary patch literal 1841 zcmV-12hRA3P)Px#u~1A@MMrQ<#&8tLYzy&<55{N*)P5e(eILV&Jj#6~ z%7!N7jU>o#5z289?T;AAa1!Z}A^*=e{jL@N(J=qoF#D(w|GX{pqZI$RCGDFJ|Fj$C zk_`X&lK;po|NOiE`lkQ&g4=xs-iZqT;xzxkGym8&|NYYc_H_U2KL5x!|Mg`5;!xFe z0{+xU|MOG(lmq|dY5%~0ssEy%4q|TRtf*p3a)+|;KMk?pD>ltCldew z01$LiPE!Dm)9LSjW(GbOkfNE&uc9h2f(QTr1_DV$K~z}7)!2)2sz?w9;CKb2CV*VL zASw_=MNmmN==(p|cK6J{pyqaJYpb@g5{2ROp8-VY>FM7o<>~)bN>5e0ooA>{S5)nV`KVo_vN;68m5~;9-k5udV2VgKZt?t*O+!=!tdT(>8x0{;N`ZsR}Qu3^P z2n#r78iy3c`F4FkXFsZG?bkY#*Hzu^CA5?I?AU#0=t?ob<3eK<%!@w@GX0lSHs|=1=5NTQ*hapItjh~y?@W$27h zju5n9j%y**6oaHLlQBZBs~HA5C3K$%p%K2BW@xS(SdN}dmud-30dg#tNuzM&hdGCQ zuJ{7VLw^J<48wrt7C`oNDL$6E2u&!G3k^o2k?*qs!SN8qQl1KMM%-~NXJP^*M!Ulx zio_}Z0tXEPNd=K$<;9mBfX35hgF_93^a+Cugba|*c@g@x8Ws5&Mo2KO>o|^%&_IH0 zgrrC#ABKf`;q#?j1@B|HqGts4A3}!9GO>MY3$3ag2O+x#tvFOg!cb-T)l-8y#=2$+ zNOY~U2M7-v9XAmvG$e&nAvtV_0?VR7gA@dj8yT8L?L&hu7&5T917|ce3Ia=v^yrL~#c%3t%)2 zn?Orvf;|IBEic;TYFa{3DQS%23x$D|bg@Dp-ZL1Y@}gDx09BD9ER7XhQPElHOg?ri4*P7K?DgIvHJ1a3yR&T?P7 zWn-kJ$V68!NHN|Jp-x!zthj(?T0^-x*w%Plw?it!4TbKd8lKb{6uPSi9!(t z7;q%&oS`@@&&S}CA0rBvcqmTEMQKW>-}`JlVKWKEid?M=Cvr)?3aZ#R>zn+p) fsQCZ?Xx{H1@PL=#NSC2L00000NkvXXu0mjf#sOD_ literal 0 HcmV?d00001 diff --git a/src/components/Form/ExperienceRating/RatingEmojis/rating-value-5.png b/src/components/Form/ExperienceRating/RatingEmojis/rating-value-5.png new file mode 100644 index 0000000000000000000000000000000000000000..2ed1307d66f4b0b7c822cf3518c4140b19142956 GIT binary patch literal 2129 zcmV-X2(I^uP)Px$1yD>>MMrQ<^Na-IiX+B-C(3XW&3PThXa~xCBg2F* z$Z!+Rd?4|O4#jB->Xs$>q89R*9OHix&29{)X9)kzNP# z^30A9#Q)-C z)Y#hp{Lad11OL@Z|G5UOd>7;9=l{tG;d%o9{^`Al8}YOz$;!#)$urcMAG4*Ghhs#+ zwX6Tw4dbUGdrl~-mxa%+ES-dIm2+2DA^`sN1DOB-01|XkPE!E>h$yCZ@I4TbSn1H8 z@XE{JQ1ebo000KeNklv)(XT<{nu!q}2;+?O%oLCgV;^(;K1i#1c1iMB*A528dhl+v zA-%5uLrxbsgGP_EX1SD09LA$&8cETQIcB4A-T=`Vz00+Tjz{2dG5wJz#yMwd5Ntz@ z9x$BCa7Mo7mIZVx1plTs2A&X3^a%P$`m;4 zb}9opZr0&4C3!$sY`EZn%zmf)COHlh8xW~Ls_#>wPRGmw#tjAosnZSatQ%yAl*^g9 zf-5|g&aW5Nf`A;01xvndOTlhO>JQouiKzg*TwxP{FA~EH2Sahk5>;q8Y!BP0oX6U) zL9U&HFyIV@ohos@Zl^y45vX0QR&&+qYSr8ZG*_!>wc4(-pf<+$rLK?LnnPWwPb5S^ zWVJcgTP<}8K=`AN>QrsDlyMV}wwvuHar%|+=3Jsu_mR{j0mo{!biJj316NZ8M_N|1 zN-@JGa{84{_kNvQ$j3nal!KC2x~{3J(z0ZiBU>#+RW-e}k{Kw8oW20Lg*JNDtyKgV zPWF?{BygIRt{I7hs_4_IOt0!xSJXtp&~yti5H?I92SLH8S0Z0mst7{5pGqZ@5F<|& z1vrTWoCXwn%D9Th$qEe}TS`aD#`W|qbUvfa{G?9|>Ojiw6RSiQ|Wk;%R(2%Cj z2n7FWnm~DSPrwxCK{l5uzqDrAilnyQa^^20bHg4|^(#6T6a zM4os{SH@Tu6%zr9EKfB>gBHqTMYs4hhk-(yAcN!0YXw6*roG}*X>#O&g8M;ei8$~l%e+gHc^rY3@+sy>pjy{XH$j=xJnX0dM7dG# z@I|gLwk{U z4e?+Av1gX5w_X)nfXtxQrLud8MB{FeX8K|QYYtrK)_7*yf?F_FU%_6^;39#5*3&{) zY$vmO@1i{j-cymJ%2J8N(wu+*Tdc8`-Rx}tTuYK|Xzs*8bDPotVX&W)8RMX#ojqG1yiSgOcRU&1hc`lr zF;4i+E|R-(NwXc&t_;ocI5*te%_z*JQWi;-k4ccajT{2S1AA`vzN01PN!5(^II3pZ zQXc*6O^lW$OwOrO;vG}aFQ^Z4D6!D~tv@Rhkn*BE-e(FrnOIh89*2AH-jQ=Wktsl_ z#*Q0fRuS`59^?eyy*+YCh=Rol7BP*s61by)uhtBv;b%AwiJ3x_y&PLOHNhFIn9GWT zVI1z```Xy|vTKU1zP2NgQ5;M;9QxD!aU|}TVyrwYE+~RH7_bxn#2tH-3zuC~_H@VVy@!7y`0EKivXa}y3mKL30LQNThN;4(}=K}_sRPg){e99cvo;rE+xoQr(< zc}+AD3IfbiI3E0)$3Bb|h{Qr17YuS-C>9C)-=3rWE5H8%X@>%m!DeJG00000NkvXX Hu0mjft8edc literal 0 HcmV?d00001 diff --git a/src/components/Form/ExperienceRating/index.js b/src/components/Form/ExperienceRating/index.js index f3447d3aa..49de06c78 100644 --- a/src/components/Form/ExperienceRating/index.js +++ b/src/components/Form/ExperienceRating/index.js @@ -1,7 +1,11 @@ import { Component } from 'preact'; import styles from './style'; import { createClassName } from '../../helpers'; -import { Emoji } from 'emoji-mart'; +import Rating1 from './RatingEmojis/rating-value-1.png'; +import Rating2 from './RatingEmojis/rating-value-2.png'; +import Rating3 from './RatingEmojis/rating-value-3.png'; +import Rating4 from './RatingEmojis/rating-value-4.png'; +import Rating5 from './RatingEmojis/rating-value-5.png'; const ExperienceRatingItem = ({ value, label, description, checked, onChange }) => (
@@ -16,7 +20,7 @@ const ExperienceRatingItem = ({ value, label, description, checked, onChange }) onChange={onChange} />
{checked && {description}} @@ -39,14 +43,6 @@ export class ExperienceRating extends Component { return value === itemValue; } - renderEmoji = (emojiShortName) => { - return Emoji({ - set: 'apple', - emoji: emojiShortName, - size: 32, - sheetSize: 64, - }) - } render() { return ( @@ -56,11 +52,11 @@ export class ExperienceRating extends Component { createClassName(styles, 'form__input-experience-rating'), ].join(' ')} > - - - - - + + + + + ); } diff --git a/src/components/Form/ExperienceRating/style.scss b/src/components/Form/ExperienceRating/style.scss index 39e86c73f..c031d0803 100644 --- a/src/components/Form/ExperienceRating/style.scss +++ b/src/components/Form/ExperienceRating/style.scss @@ -291,4 +291,8 @@ textarea.form__input-text { letter-spacing: 0.2px; line-height: 16px; } + + &__label-icon { + width: inherit; + } } diff --git a/yarn.lock b/yarn.lock index 2b124ba49..2de7c68de 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5348,14 +5348,6 @@ elliptic@^6.0.0: minimalistic-assert "^1.0.0" minimalistic-crypto-utils "^1.0.0" -emoji-mart@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/emoji-mart/-/emoji-mart-3.0.0.tgz#eca24a04881e27752a6921e09f65a86ce8539a50" - integrity sha512-r5DXyzOLJttdwRYfJmPq/XL3W5tiAE/VsRnS0Hqyn27SqPA/GOYwVUSx50px/dXdJyDSnvmoPbuJ/zzhwSaU4A== - dependencies: - "@babel/runtime" "^7.0.0" - prop-types "^15.6.0" - emoji-regex@^7.0.1: version "7.0.3" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" From 773757157cc0fa4172649827d1dce03424a3d26f Mon Sep 17 00:00:00 2001 From: murtaza98 Date: Sat, 30 May 2020 19:00:01 +0530 Subject: [PATCH 11/17] feedback form update - re-configured survey payload --- src/routes/SurveyFeedback/container.js | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/routes/SurveyFeedback/container.js b/src/routes/SurveyFeedback/container.js index 2e6c57701..1e01412f5 100644 --- a/src/routes/SurveyFeedback/container.js +++ b/src/routes/SurveyFeedback/container.js @@ -10,20 +10,24 @@ import { createToken } from '../../components/helpers'; export class SurveyFeedbackContainer extends Component { handleSubmit = async(fields) => { + const { survey } = this.props; + const { alerts, dispatch, room: { _id: rid } } = this.props; await dispatch({ loading: true }); try{ if (rid){ + const data = survey.items.map(ratingFactorName => { + return { + name: ratingFactorName, + value: `${fields.rating}` + } + }); const packet = { rid: rid, - data: [{ - name: 'satisfaction', // TODO: modify ILivechatSurveyAPI in RC.js.SDK to remove this field - value: `${fields.rating}` - }] + data: data } - // console.log('Packet --> ', packet); Livechat.chatSurvey(packet).then(response => { console.log('SDK response - survey --> ', response); }).catch(error => { @@ -53,6 +57,7 @@ export const SurveyFeedbackConnector = ({ ref, ...props }) => ( theme: { color, } = {}, + survey: survey, } = {}, iframe: { theme: { @@ -78,6 +83,7 @@ export const SurveyFeedbackConnector = ({ ref, ...props }) => ( dispatch={dispatch} room={room} alerts={alerts} + survey={survey} /> )} From bdf674347f687f981481bcd80cc2f29dead3b729 Mon Sep 17 00:00:00 2001 From: murtaza98 Date: Sat, 30 May 2020 20:24:38 +0530 Subject: [PATCH 12/17] feedback form - attach action to `No Thanks` Button --- src/routes/SurveyFeedback/component.js | 4 ++++ src/routes/SurveyFeedback/container.js | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/routes/SurveyFeedback/component.js b/src/routes/SurveyFeedback/component.js index 898ed3ee2..2fb81c1aa 100644 --- a/src/routes/SurveyFeedback/component.js +++ b/src/routes/SurveyFeedback/component.js @@ -57,6 +57,10 @@ export default class SurveyFeedback extends Component { } } + handleCancelClick = () => { + this.props.onCancelClick(); + } + constructor(props) { super(props); this.validateAll(); diff --git a/src/routes/SurveyFeedback/container.js b/src/routes/SurveyFeedback/container.js index 1e01412f5..9613a3424 100644 --- a/src/routes/SurveyFeedback/container.js +++ b/src/routes/SurveyFeedback/container.js @@ -44,8 +44,13 @@ export class SurveyFeedbackContainer extends Component { } } + onCancelClick = async() => { + // don't record feedback - end the chat + await endChat(); + } + render = (props) => ( - + ) } From d3c617518dd7f26902069f6a036f881f3760dbee Mon Sep 17 00:00:00 2001 From: murtaza98 Date: Sat, 30 May 2020 22:59:21 +0530 Subject: [PATCH 13/17] feedback form update - removed unnecessary css import - refactored ExperienceRatingItem Component --- src/components/Form/ExperienceRating/index.js | 51 +++++++++++++++++-- src/routes/SurveyFeedback/styles.scss | 6 +-- 2 files changed, 48 insertions(+), 9 deletions(-) diff --git a/src/components/Form/ExperienceRating/index.js b/src/components/Form/ExperienceRating/index.js index 49de06c78..8b1603bbe 100644 --- a/src/components/Form/ExperienceRating/index.js +++ b/src/components/Form/ExperienceRating/index.js @@ -43,6 +43,51 @@ export class ExperienceRating extends Component { return value === itemValue; } + generateRatingItems = () => { + const itemsData = [ + { + value: "1", + label: Rating1, + description: "Very bad", + checked: this.isChecked('1') + }, + { + value: "2", + label: Rating2, + description: "Bad", + checked: this.isChecked('2') + }, + { + value: "3", + label: Rating3, + description: "Ok", + checked: this.isChecked('3') + }, + { + value: "4", + label: Rating4, + description: "Good", + checked: this.isChecked('4') + }, + { + value: "5", + label: Rating5, + description: "Awesome", + checked: this.isChecked('5') + } + ]; + + return (itemsData.map(item => + + ) + ); + } + render() { return ( @@ -52,11 +97,7 @@ export class ExperienceRating extends Component { createClassName(styles, 'form__input-experience-rating'), ].join(' ')} > - - - - - + {this.generateRatingItems()} ); } diff --git a/src/routes/SurveyFeedback/styles.scss b/src/routes/SurveyFeedback/styles.scss index 740263a24..ac91c6668 100644 --- a/src/routes/SurveyFeedback/styles.scss +++ b/src/routes/SurveyFeedback/styles.scss @@ -1,13 +1,11 @@ -@import '~styles/colors'; - .survey-feedback { &__main { padding: 1rem 1.5rem 0; } - + &__message { margin: 0 0 1rem 0; font-weight: 500; line-height: 1.5; } -} \ No newline at end of file +} From 7fbf5c7e4cf6e25d3332a32f22a12bcf5288f6a5 Mon Sep 17 00:00:00 2001 From: murtaza98 Date: Sun, 31 May 2020 01:08:10 +0530 Subject: [PATCH 14/17] feedback survey update - updated validations --- src/routes/SurveyFeedback/component.js | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/routes/SurveyFeedback/component.js b/src/routes/SurveyFeedback/component.js index 2fb81c1aa..1e0ce20b9 100644 --- a/src/routes/SurveyFeedback/component.js +++ b/src/routes/SurveyFeedback/component.js @@ -23,22 +23,21 @@ export default class SurveyFeedback extends Component { .map((fieldName) => (this.state[fieldName] ? { fieldName, ...this.state[fieldName] } : null)) .filter(Boolean) - validate = (fieldName, value) => this.validations[fieldName].reduce((error, validation) => (error || validation(this.state[fieldName])), undefined) + + validate = ({ name, value }) => this.validations[name].reduce((error, validation) => error || validation({ value }), undefined) validateAll = () => { - for (const { fieldName, value } of this.getValidableFields()) { - const error = this.validate(fieldName, value); - this.setState({ [fieldName]: { ...this.state[fieldName], value, error, showError: false } }); + for (const { fieldName: name, value } of this.getValidableFields()) { + const error = this.validate({ name, value }); + this.setState({ [name]: { ...this.state[name], value, error, showError: false } }); } } isValid = () => this.getValidableFields().every(({ error } = {}) => !error) - handleFieldChange = (fieldName) => ({ target: { value } }) => { - this.setState({ [fieldName]: { value } }); - // check for errors - const error = this.validate(fieldName, value); - this.setState({ [fieldName]: { ...this.state[fieldName], value, error, showError: false } }); + handleFieldChange = (name) => ({ target: { value } }) => { + const error = this.validate({ name, value }); + this.setState({ [name]: { ...this.state[name], value, error, showError: false } }); } handleRatingChange = this.handleFieldChange('rating') From 717c0c8c5bccd542af893d51aa4dabc778c4a4c6 Mon Sep 17 00:00:00 2001 From: murtaza98 Date: Sun, 31 May 2020 01:18:11 +0530 Subject: [PATCH 15/17] removed console.log statements --- src/routes/SurveyFeedback/container.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/routes/SurveyFeedback/container.js b/src/routes/SurveyFeedback/container.js index 9613a3424..b704a1459 100644 --- a/src/routes/SurveyFeedback/container.js +++ b/src/routes/SurveyFeedback/container.js @@ -29,7 +29,6 @@ export class SurveyFeedbackContainer extends Component { data: data } Livechat.chatSurvey(packet).then(response => { - console.log('SDK response - survey --> ', response); }).catch(error => { console.error('error -->', error); }); From 57d384c43b83d18864dc3dc0af5c670312925db4 Mon Sep 17 00:00:00 2001 From: murtaza98 Date: Sat, 6 Jun 2020 20:51:44 +0530 Subject: [PATCH 16/17] connected LC with feedback-form config setting --- src/lib/room.js | 7 ++++++- src/routes/Chat/container.js | 2 ++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/lib/room.js b/src/lib/room.js index 74818e9f0..13145ae83 100644 --- a/src/lib/room.js +++ b/src/lib/room.js @@ -14,7 +14,12 @@ const commands = new Commands(); export const closeChat = async () => { await handleTranscript(); - route('/survey-feedback'); + const { config } = store.state; + if(config.settings.showFeedbackForm) { + route('/survey-feedback'); + }else{ + await endChat(); + } }; export const endChat = async () => { diff --git a/src/routes/Chat/container.js b/src/routes/Chat/container.js index 24cf55c26..750ebeede 100644 --- a/src/routes/Chat/container.js +++ b/src/routes/Chat/container.js @@ -180,6 +180,8 @@ export class ChatContainer extends Component { return; } + await loadConfig(); + const { alerts, dispatch, room: { _id: rid } = {} } = this.props; await dispatch({ loading: true }); From 39bc80ca96135fd190693a3535a31c5e8b2d5d81 Mon Sep 17 00:00:00 2001 From: Anton Kazarinov Date: Thu, 16 Jul 2020 13:53:14 +0500 Subject: [PATCH 17/17] [FIX] send feedback comment to the server --- src/routes/SurveyFeedback/container.js | 41 +++++++++++++------------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/src/routes/SurveyFeedback/container.js b/src/routes/SurveyFeedback/container.js index b704a1459..3149c36ed 100644 --- a/src/routes/SurveyFeedback/container.js +++ b/src/routes/SurveyFeedback/container.js @@ -1,43 +1,44 @@ import { Component } from 'preact'; -// import SDK from '../../api'; + import { Consumer } from '../../store'; import SurveyFeedback from './component'; -// import { insert, createToken } from '../../components/helpers'; import { Livechat } from '../../api'; import { endChat } from '../../lib/room'; import { createToken } from '../../components/helpers'; export class SurveyFeedbackContainer extends Component { - handleSubmit = async(fields) => { - + handleSubmit = async (fields) => { const { survey } = this.props; const { alerts, dispatch, room: { _id: rid } } = this.props; await dispatch({ loading: true }); - try{ - if (rid){ - const data = survey.items.map(ratingFactorName => { - return { - name: ratingFactorName, - value: `${fields.rating}` - } - }); - const packet = { - rid: rid, - data: data + try { + if (rid) { + const data = survey.items.map((ratingFactorName) => ({ + name: ratingFactorName, + value: `${ fields[ratingFactorName] }`, + })); + + if (fields.message) { + data.push({ + name: 'additionalFeedback', + value: fields.message, + }); } - Livechat.chatSurvey(packet).then(response => { - }).catch(error => { + const packet = { rid, data }; + + Livechat.chatSurvey(packet).then(() => { + }).catch((error) => { console.error('error -->', error); }); } - }catch(error){ + } catch (error) { console.error(error); const alert = { id: createToken(), children: I18n.t('Error Saving Feedback'), error: true, timeout: 0 }; await dispatch({ alerts: (alerts.push(alert), alerts) }); - }finally { + } finally { await dispatch({ loading: false }); await endChat(); } @@ -61,7 +62,7 @@ export const SurveyFeedbackConnector = ({ ref, ...props }) => ( theme: { color, } = {}, - survey: survey, + survey, } = {}, iframe: { theme: {