I am working on a Spanish website. I would like to update the text from the search bar from English to Spanish.
Currently, the Search Bar is in English (refer to image below):
I was able to locate the search form cfm file (it is done in coldfusion):
<cfoutput>
<form name="searchForm" id="searchForm" class="#this.searchFormClass#" role="search">
<#variables.$.getHeaderTag('subHead1')#>
<label for="search">#variables.$.rbKey('search.search')#</label>
</#variables.$.getHeaderTag('subHead1')#>
<div class="#this.searchFormInputWrapperClass#">
<input type="text" name="Keywords" id="txtKeywords" class="#this.searchFormInputClass#" value="#HTMLEditFormat($.event('keywords'))#" placeholder="#variables.$.rbKey('search.search')#">
<span class="#this.searchFormSubmitWrapperClass#">
<button type="submit" class="#this.searchFormSubmitClass#">
#$.rbKey('search.search')#
</button>
</span>
</div>
<input type="hidden" name="display" value="search">
<input type="hidden" name="newSearch" value="true">
<input type="hidden" name="noCache" value="1">
</form>
</cfoutput>
However, I am not sure if I can update the code above by just adding the text? Or, if I would need to locate the what the variable "rbKey" is located and manipulate the output?
Any help would be appreciated.