Polish letter "ś" should be replaced by "s" not by "_"
All other polish letters are replaced properly:
ą -> a
ę -> e
ł -> l
etc
even big letter Ś i replaced properly by s.... but ś is replaced by _
Polish letter "ś" should be replaced by "s" not by "_"
All other polish letters are replaced properly:
ą -> a
ę -> e
ł -> l
etc
even big letter Ś i replaced properly by s.... but ś is replaced by _
Comments
Comment #1
lewmich commentedIn pathauto.module file:
'Ś'=>'S','Š'=>'S','Ş'=>'S','?'=>'S','?'=>'S',
'Ť'=>'T','Ţ'=>'T','?'=>'T','?'=>'T','?'=>'T',
it looks like whole line with small letters "s" is missing. I put 'ś'=>'s', and now it works ok for me. But there should be propably also other types od small s letters.
Comment #2
gregglesIt's true that you can edit that line and it works fine, so that is the short term solution.
In the long run there are two possible solutions that already have issues, so this issue is a duplicate.
The two possible solutions are:
Use the PHP iConv function http://drupal.org/node/63924
Update pathauto to import a simple text file and/or expose the file in admin/settings http://drupal.org/node/61815
I hope to use the iConv solution and would appreciate it if you could test that - note that the attached file in the iConv solution is for Pathauto head.
If believe in the idea and would like to work on the solution in 61815 to turn it into a real patch then I would appreciate it.