composeCountryCode method
Return the country code to attach to the file name, if required
Implementation
@protected
String composeCountryCode(Locale locale) {
String countryCode = "";
if (useCountryCode && locale.countryCode != null) {
countryCode = "_${locale.countryCode}";
}
return countryCode;
}