Jump to: navigation, search

Dynamic Multi-language Localization Application Sample

Prerequisites

  • Use the latest version of Genesys components.

Creating multilingual categories

Create one or more categories by following the instructions in Creating a Category.

Important
All tags for multi-language categories must have a different expression.

Dynamically adding the language in the instrumentation script

The language code is transmitted as a URL parameter. You can pass a language code as part of the URL or you can set the code statically.

Here is an example of the code as part of the URL:

http://<Web Engagement Server host>:<Web Engagement Server port>/multi/main.jsp?title=中文&language=zh-CN


Placing the language code in the instrumentation script allows you to localize the registration form and chat. To do this, complete the following:

  1. Add Localization Files to Your Web Engagement Application.
  2. Add the language code to your instrumentation script.

The following example shows how to add the language code to your instrumentation script:

<% String title = request.getParameter("title"); %>
<% String langCode = request.getParameter("language"); %>
<title><%=title%></title>
<script>
  var _gt = _gt || [];
  _gt.push(["config", {
    "name" : "multi",
    "domainName" : "<domain name of your website>",
    "server" : "432",
    "languageCode" : "<%=langCode%>",
    "dslResource" : "<Web Engagement Server host>:<Web Engagement Server port>/server/resources/dsl/domain-model.xml",
    "secureDslResource" : "<Web Engagement Server host>:<Web Engagement Server secure port>/server/resources/dsl/domain-model.xml",
    "httpEndpoint" : "<Web Engagement Server host>:<Web Engagement Server port>",
    "httpsEndpoint" : "<Web Engagement Server host>:<Web Engagement Server secure port>"
  }]);
 (function () {
    var gt = document.createElement("script");
    gt.setAttribute("async", "true");
    gt.src = ("https:" == document.location.protocol ? "<Web Engagement Server host>:<Web Engagement Server secure port>" :
    "<Web Engagement Server host>:<Web Engagement Server port>") + "/server/resources/js/build/GTC.min.js";
    (document.getElementsByTagName("head")[0] || document.body).appendChild(gt);
  })();
</script>

Parsing the address of the page and switching the invitation text

You can get the language code from the page address in the strategy. The page address is passed to the strategy when the rule is triggered and an invitation is generated.

The event_url variable is declared and initialized in the default.workflow strategy:

Default-init-event-url.PNG

The event_url variable is then transmitted to the engage.workflow strategy:

Init-event-url.PNG

The following shows the description of the entering variable in the event_url in the engage.workflow strategy:

Input-event-url.PNG

The following example shows fetching the language code of the URL address and switching the labels in the FullfillEngagementProfile ECMA Script block in the engage.workflow strategy:

var language=event_url.substr(-5);
var invitation=" Would you like some help with the selection? Our technical experts are available to answer questions.";
var acceptBtnText= 'Chat1';
var acceptBtnVoice='Call Me';
var cancelBtnText = 'No Thanks';
var greetingDefault = 'Hello!';
var greetingMorning =  'Good morning!';
var greetingEvening =  'Good evening!';
var greetingAfternoon = 'Good afternoon!';
var titleChat = 'Chat';
var titleVoice = 'Voice';

switch (language)
{
case "zh-CN":
  invitation=" 你想選擇一些幫助?我們的技術專家可以回答問題。";
  acceptBtnText= '聊';
  cancelBtnText = '不,謝謝';
  acceptBtnVoice='給我打電話';
  greetingDefault = '您好!';
  greetingMorning =  '早上好!';
  greetingEvening =  '晚上好!';
  greetingAfternoon ='大家下午好!';
  titleChat = '聊';
  titleVoice = '聲音';
  break;
case "en-US":
  invitation=" Would you like some help with the selection? Our technical experts are available to answer questions.";
  acceptBtnText= 'Chat';
  cancelBtnText = 'No Thanks';
  acceptBtnVoice='Call Me';
    greetingDefault = 'Hello!';
  greetingMorning =  'Good morning!';
  greetingEvening =  'Good evening!';
  greetingAfternoon ='Good afternoon!';
  titleChat = 'Chat';
  titleVoice = 'Voice';
  break;
case "fr-FR":
  invitation=" Voulez-vous un peu d'aide avec la sélection? Nos experts techniques sont disponibles pour répondre aux questions.";
  acceptBtnText= "T'Chat";
  cancelBtnText = 'Non Merci';
  acceptBtnVoice='appelez-moi';
    greetingDefault = 'Bonjour!';
  greetingMorning =  'Bonjour!';
  greetingEvening =  'Bonne soirée!';
  greetingAfternoon ='Bon après-midi!';
  titleChat = "T'Chat";
  titleVoice = 'voix';
  break;
case "ja-JP":
  invitation=" あなたは選択をいくつかの助けをしたい?当社の技術専門家が質問に答えることが可能です。";
  acceptBtnText= 'チャット';
  cancelBtnText = 'いいえおかげん';
  acceptBtnVoice='コールミー';
    greetingDefault = 'こんにちは!';
  greetingMorning =  'おはようございます!';
  greetingEvening =  'こんばんは!';
  greetingAfternoon ='午後グッド!';
  titleChat = 'チャット';
  titleVoice = '声';
  break;
 }

var channelName = titleChat;
var acceptBtnCaption = acceptBtnText;
var cancelBtnCaption = cancelBtnText;
if (channelType == 'proactiveCallback') {
channelName = titleVoice;
acceptBtnCaption = acceptBtnVoice;
}

var greeting = 'Hello!'
if (event_timeStamp != ) {
    realLocalTime = event_timeStamp - event_timezoneOffset + (new Date()).getTimezoneOffset()*60000;
    var date = new Date(realLocalTime);
    var hours = date.getHours();
    if (hours < 6)  {
        greeting = greetingDefault;
    } else if (hours < 12) {
        greeting = greetingMorning;
    } else if (hours < 17) {
        greeting = greetingAfternoon;
    } else {
        greeting = greetingEvening;
    }
}

var engageProfile = {
    'visitID': event.visitID,
    'nick_name': profile.FirstName,
    'first_name': profile.FirstName,
    'last_name': profile.LastName,
    'subject': channelName,
    'message':greeting + invitation,
    'time_zone_offset': 8,
    'wait_for_agent' : false,
    'routing_point':sipRoutingPoint,
    'ixn_type': channelType,
    'pageID': event.pageID,
    'inviteTimeout': 30,
    'acceptBtnCaption': acceptBtnCaption,
    'cancelBtnCaption': cancelBtnCaption
};

Localized widgets examples

Implementing the code above will result in localized versions of the Web Engagement widgets. For example, if the language is Japanese, the text in the widgets would appear as follows:

Engagement invitation:

Jp-i.PNG

Registration form:

Jp-reg.PNG

Chat:

Jp-chat.PNG

Interaction Workspace:

Jp-iws.PNG
This page was last edited on June 20, 2016, at 20:17.
Comments or questions about this documentation? Contact us for support!