Aah OK!
For instance from ez_pages_definitions.php.
define('BOX_HEADING_EZPAGES','Информация');
define('TEXT_EZ_PAGES_TABLE_CONTEXT', 'Содержимое');
define('CURRENT_PAGE_INDICATOR', ' * ');
define('NOT_CURRENT_PAGE_INDICATOR', ' - ');
'Информаци -This tekst stands for russian readable tekst in the shop-front.
I want to change some tekst in this format ('Информаци) but cannot find anywhere how to transform (maybe some online converter?) this the other way,...
I want to type in Cyrillic language and then transform the Cyrillic Characters to this UTF-8 type characters :-)
This I want to drop back in some of the language files and then I've readable text again in the storefront.
Kind regards,
Casper
If you look at the file ez_pages_definitions.php in the viewer with a properly configured encoding view utf-8, you'll see this:
PHP Code:<?php
/**
* ezpages language components - used when displaying components for EZ-Pages content
*
* @package languageDefines
* @copyright Copyright 2003-2005 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @Localization: Andrew Berezin http://eCommerce-Service.com
* @version $Id: ez_pages_definitions.php 1.3.8 15.02.2009 15:07:46 AndrewBerezin $
*/
// ez-pages sidebox title name
define('BOX_HEADING_EZPAGES','Информация');
define('TEXT_EZ_PAGES_TABLE_CONTEXT', 'Содержимое');
define('CURRENT_PAGE_INDICATOR', ' * ');
define('NOT_CURRENT_PAGE_INDICATOR', ' - ');
// EOF
Hi Andrew,
Thanks for your help! This was too easy,.. My PHP-designer program showed only this Characters. I opened the file in a plain text editor and now I could read the Cyrillic characters.
Thanks for putting me in the right direction!
Kind regards,
Casper
Hi Casper,
I think that it can be set to utf-8
Be careful - files should be saved without tags BOM!!! The default windows editor notebook does not know how to save without BOM! You can use free editors Notepad++ and Notepad2.
To check extra spaces including BOM in php files you can use my script found_extra_space.php.