Opened 8 years ago

Closed 7 years ago

#1353611 closed Feature Patches (invalid)

localization

Reported by: r0t0na Owned by: nobody
Priority: 5 Milestone:
Component: Other Version: None
Severity: critical Keywords:
Cc:

Description

as part of the localization, the language select which
currently is in the
  /program/localization/index.inc  (1)

should aslo be under the appropriate language
subdirectory ie /program/location/kh/index.inc  and in
the main index.inc file (1), should do a simple check
for the localization index.inc file to overide the main
index.inc 

added to the end of /program/localization/index.inc  
   $path   = dirname(__FILE__) . '/' .
$_SESSION['user_lang'] .'/index.inc';
  $exists = file_exists($path);
  if ( $exists )  require_once($path);  

numeral is another area of localization that would be
nice to see, but not necessary. 

there are issues with utf-8 indic language one of the
'posible' fix which resolve some gibberish character
output is in the rep_specialchars_output function by
imediately returning the string ($str) when !enctype is
detected. another area of gibberish indic utf-8
character output is the mailbox list on the left
side--haven't play with the code for possible fix yet.

Change History (1)

comment:1 Changed 7 years ago by thomasb

  • Resolution changed from None to invalid
  • Severity set to critical
  • Status changed from assigned to closed

Old stuff.

Note: See TracTickets for help on using tickets.