Skip to content

Commit

Permalink
### 5.0.74-rc.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriele Panico committed Apr 17, 2024
1 parent 6351ee8 commit cd82f75
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
*Dario De Pascalis*
### **Copyrigth**: *Tiledesk SRL*

### 5.0.74-rc.5
- bug-fixed: minor improvement labels

### 5.0.74-rc.4
- added: clearStorage method to index-dev.html file

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@chat21/chat21-web-widget",
"author": "Tiledesk SRL",
"version": "5.0.74-rc.4",
"version": "5.0.74-rc.5",
"license": "MIT",
"homepage": "https://www.tiledesk.com",
"repository": {
Expand Down
14 changes: 8 additions & 6 deletions src/app/providers/translator.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,9 @@ export class TranslatorService {
'WELCOME',
'WELCOME_TITLE',
'WELCOME_MSG',
'WELCOME',
'WELCOME_TITLE',
'WELCOME_MSG',
'WELLCOME',
'WELLCOME_TITLE',
'WELLCOME_MSG',
'OPTIONS',
'SOUND_ON',
'SOUND_OFF',
Expand Down Expand Up @@ -290,9 +290,9 @@ export class TranslatorService {
globals.BUTTON_EDIT_PROFILE = res['BUTTON_EDIT_PROFILE']; // is used ??
globals.DOWNLOAD_TRANSCRIPT = res['DOWNLOAD_TRANSCRIPT'];
globals.RATE_CHAT = res['RATE_CHAT']; // is used ??
globals.WELCOME = res['WELCOME'];
globals.WELCOME_TITLE = res['WELCOME_TITLE'];
globals.WELCOME_MSG = res['WELCOME_MSG'];
globals.WELCOME = res['WELLCOME'];
globals.WELCOME_TITLE = res['WELLCOME_TITLE'];
globals.WELCOME_MSG = res['WELLCOME_MSG'];
globals.OPTIONS = res['OPTIONS'];
globals.SOUND_ON = res['SOUND_ON'];
globals.SOUND_OFF = res['SOUND_OFF'];
Expand All @@ -317,7 +317,9 @@ export class TranslatorService {
globals.LABEL_PREVIEW = res['LABEL_PREVIEW']
globals.LABEL_ERROR_FIELD_REQUIRED= res['LABEL_ERROR_FIELD_REQUIRED']

console.log('gggggg', globals.welcomeTitle)
if (!globals.welcomeTitle) {

globals.welcomeTitle = globals.WELCOME_TITLE; /** Set the widget welcome message. Value type : string */
}
if (!globals.welcomeMsg) {
Expand Down

0 comments on commit cd82f75

Please sign in to comment.