View Issue Details

IDProjectCategoryView StatusLast Update
0007235mantisbtlocalizationpublic2006-09-12 00:54
ReporterUlfDunkel Assigned ToWanderer 
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionduplicate 
Product Version1.0.3 
Summary0007235: strings_czech.txt sets wrong charset
Description

Check /lang/strings_czech.txt for the section:

Charset

$s_charset = 'iso-8859-2';

According to the PHP manual, this is no supported charset for htmlspecialchars(). Thus a Czech Mantis setup shows errors.

Replace the above section by:

Charset

$s_charset = 'cp1252';

TagsNo tags attached.

Relationships

duplicate of 0006494 closedachumakov charset iso-8859-2 not supported 
related to 0004084 closedsiebrand [all lang] Use UTF-8 codepage 

Activities

gce

gce

2006-07-13 02:33

reporter   ~0013094

There is a simple and good solution for Polish language:
Use UTF8 (see 0007049:0012854 in issue 7049).
Maybe this works for Czech language as well.

UlfDunkel

UlfDunkel

2006-07-13 02:51

reporter   ~0013095

@gce: UTF8 will work for almost all languages on Earth. ;-)
But I wonder if all browsers do already properly support it.

nijel

nijel

2006-07-18 07:54

reporter   ~0013111

utf-8 is IMHO only sensible choice, we force it in phpMyAdmin for MySQL > 4.1 and nobody complained.

ryandesign

ryandesign

2006-07-26 09:34

reporter   ~0013150

Further discussion in 0006494 please, if necessary.