RocketChat / Rocket.Chat.Embedded.arm64

An open source journey bringing the latest Rocket.Chat releases to the arm64 universe
MIT License
24 stars 15 forks source link

Livechat Tranlation file #11

Open tiger154 opened 1 year ago

tiger154 commented 1 year ago

Hi all, on live chat most of the words are in English. even though my language setting is Korean.

When user access my website and click livechat to start. there is message 'Please, tell us some information to start the chat' I want to change that but I don't know.

So I've tried bunch of things but none of working.

  1. General > Translation
    • Add json translation: Didn't work
      {
      "ko":{
      "please_tell_us_some_information_to_start_the_chat":"Please, tell us some information to start the chat!"
      }
      }
  2. Docker i18n change 2.1) Find i18n files location
    • login runngin docker (docker exec -it {ContainerID} /bin/bash/
    • Search where is located i18n files
      grep -r "please_tell_us_some_information_to_start_the_chat" * | cut -d ':' -f 1 | uniq
    • I found those files are in '/app/bundle/programs/web.browser/app/livechat/i18n.lt.chunk.c5d2f.js' format 2.2) Change and restart
    • I changed that at the end put '!' mark.
      "please_tell_us_some_information_to_start_the_chat":"Please, tell us some information to start the chat!"
    • restart docker also docker compose up again
      docker resatrt {containerid} 
      docker compose up -d 

### but still no luck. So Can anyone let me know how to change that?