PowerShell Script for Sitecore GUI language translation
I recently had this wild (day) dream of seeing the Sitecore GUI in tamil. While I leave you with the thought if I don't have anything else to dream about, I was finding blog posts specifically converting to tamil language. Like everything in Sitecore, I understood the platform provides you the necessary framework and it is up to you to use it to your benefit. This is where the client translations section in the Sitecore downloads page is useful. Only Danish, German, Japanese and Chinese xml files are available to download. Based on the documentation, this is how you go about changing the GUI language for the ones for which xml files are already available:
So, with that background, I started creating the tamil content xml file and then uploaded the same to a Sitecore 10.3 instance to see the standard GUI labels in tamil. So, what is special? Since there are about 11000 rows to translate, I created a PowerShell Script that can translate the Sitecore GUI content. In the end, I came up with a PS script that can take language code as input and create the xml file in the language of your choice.
Without much ado, here are the steps involved:
1. First things first, Based on Sitecore documentation, client translation files are actually here below as part of downloads page -
Client translation section:
After I downloaded and extracted the texts.ja-JP.xml file to use as reference for my translation, I followed the above documentation to add a language and do other shenanigans necessary for translation as per this blog post:
#https://navansitecorenotes.blogspot.com/2023/10/powershell-script-for-sitecore-gui.html | |
#https://stackoverflow.com/questions/13975053/how-to-get-an-escaped-xml-attribute-value-in-powershell-without-it-being-unescap | |
#https://www.alexandrumarin.com/translate-text-with-powershell-and-google-translate/ | |
#.\TranslateGuiContent.ps1 -file ".\texts.ja-JP.xml" -destfileLocation . -langCode 'ta-IN' -targetLanguage 'ta' | |
param( | |
[string]$File = ".\texts.ja-JP.xml", | |
[string]$DestfileLocation = ".", | |
[string]$LangCode = "af-ZA", | |
[string]$TargetLanguage = "af" | |
) | |
$destfilePath=$destfileLocation + "\texts." + $LangCode + ".xml" | |
[XML]$xmlfile = Get-Content $File | |
$startTime=(Get-Date) | |
$concatenatedString+="<?xml version=`"1.0`" encoding=`"utf-8`"?>`n" | |
$concatenatedString+= "<sitecore>`n" | |
For ($i=0; $i -lt $xmlfile.sitecore.phrase.Count; $i++) | |
{ | |
$encodedText=$xmlfile.sitecore.phrase[$i].attributes['key'].OuterXml.Split("=")[1] | |
$array=$xmlfile.sitecore.phrase[$i].attributes['key'].OuterXml -split '=' | |
$actualText=($array[1..($array.Length -1)] -join "=") #without this, if there are multiple = in the string, the string was truncated | |
$Text=$xmlfile.sitecore.phrase[$i].key | |
$Uri = "https://translate.googleapis.com/translate_a/single?client=gtx&sl=auto&tl=$($TargetLanguage)&dt=t&q=$Text" | |
$Response = Invoke-RestMethod -Uri $Uri -Method Get | |
$translatedText = $Response[0].SyncRoot | foreach { $_[0] } | |
$translatedText=$translatedText.Replace("<","<") #to overcome decoding in case of these two signs | |
$translatedText=$translatedText.Replace(">",">") #to overcome decoding in case of these two signs | |
$concatenatedString+= "`t<phrase key=" + $actualText + ">`n" | |
$concatenatedString+= "`t`t<" + $LangCode + ">" + $translatedText + "</" + $LangCode + ">`n" | |
$concatenatedString+= "`t</phrase>`n" | |
write-host "Node number: " $i " out of " $xmlfile.sitecore.phrase.Count | |
} | |
$concatenatedString+= "</sitecore>`n" | |
$concatenatedString | Out-File -FilePath $DestfilePath -Encoding utf8 | |
$endTime=(Get-Date) | |
$ElapsedTime = (($endTime-$startTime).TotalSeconds) | |
Write-Host "Execution time (seconds): " $ElapsedTime |
7. After import is complete, go to control panel > Regional and Language options and you must find the newly added language. Select the same and press Apply button:
b. In step 2, if you don't switch to Core DB before adding language, the language code wouldn't be visible in Core DB content tree (step 3)
Comments
Post a Comment