ElkArte Community

Extending Elk => Localization => Topic started by: emanuele on July 31, 2014, 06:32:26 pm

Title: [question] Caching engine names
Post by: emanuele on July 31, 2014, 06:32:26 pm
At the moment all the caching engines have a localized name, for example:
Code: [Select]
$txt['apc_cache'] = 'APC';
$txt['eAccelerator_cache'] = 'eAccelerator';
$txt['mmcache_cache'] = 'Turck MMCache';
$txt['memcached_cache'] = 'Memcached';
$txt['zend_cache'] = 'Zend Platform/Performance Suite';
$txt['xcache_cache'] = 'XCache';

The question is: these are commercial names, so I guess they are the same in all the languages, am I right?
Does it make sense to keep these names in the language files or they can be removed?
Title: Re: [question] Caching engine names
Post by: Jorin on July 31, 2014, 11:27:23 pm
You're right. In this case nothing has to be translated. Oh, what about japanese? They often use latin letters for names of products and companies.
Title: Re: [question] Caching engine names
Post by: emanuele on August 01, 2014, 04:40:08 am
Yeah, I was wondering as well about languages like Japanese, Chinese, Arabic, and all those that do not use the Latin alphabet, but I also guess it wouldn't be a huge problem having the name in English and if it is they can always be localize "later" (again[1]).
At the moment are localized, but probably more in order to reduce the duplication, so I'm going to leave them as they are, but in the changes I'm doing for 1.1 I'll remove the $txt strings.