Hi,
Here is a patch for urilfy.js in admin application that should support
Serbian alphabet. There are no collisions between existing and new
mappings.
Is this OK with other language teams?
--
Janoš Guljaš <[email protected]>
WWW: http://www.janos.in.rs
GPG: public key ID 61D97459, http://www.janos.in.rs/janosguljas.asc
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django I18N" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Django-I18N?hl=en
-~----------~----~----~----~------~----~------~--~---
63a64,72
> var SERBIAN_MAP = {
> 'ђ':'dj', 'ј':'j', 'љ':'lj', 'њ':'nj', 'ћ':'c', 'џ':'dz',
> 'Ђ':'Dj', 'Ј':'J', 'Љ':'Lj', 'Њ':'Nj', 'Ћ':'C', 'Џ':'Dz',
> }
>
> var SERBIAN_LATIN_MAP = {
> 'đ':'dj', 'Đ':'Dj'
> }
>
73a83,84
> ALL_DOWNCODE_MAPS[9]=SERBIAN_MAP
> ALL_DOWNCODE_MAPS[10]=SERBIAN_LATIN_MAP