all fields i have changed in russin with out any trouble...but in dropdown list i have this ΠΌΠΎΡΠΊΠ²Π after i save list, befor it all ok. can you help me? i'am from russia.
all fields i have changed in russin with out any trouble...but in dropdown list i have this ΠΌΠΎΡΠΊΠ²Π after i save list, befor it all ok. can you help me? i'am from russia.
What version of Sugar are you using?
Sugar Developer Zone - developer resources | Sugar University - user and admin training
Sugar Docs - user and admin documentation | Sugar Bug Tracker - Enter or view bugs
SugarForge- open source modules, themes, lang packs | SugarExchange - commercial extensions
Clint Oram
Chief Technology Officer and Co-founder
SugarCRM
5.0.5e with or without languge pack not matter...becourse mistake is same in both tasksOriginally Posted by clint
Как успехи? Нашли решение проблемы?Originally Posted by nixsnake
hi nixsnake
i had the same problem just with Czech special letters (as ěčřύανιůň ). My solution is not kosher but works and you can improve it.
here comes the answer:
in modules/ModuleBuilder/javascript/SimpleList.js file find handleSave:function. there should be line like this
out += '"'+encodeURIComponent(name)+'":"'+encodeURICompon ent(value)+'"'
javascript native function encodeURIComponent does the muck up. Replace it with your own one. Try to use my one:
function myEncode(str)
{
var out = str;
out.replace("%", "%025");
out.replace("{", "%07b");
out.replace("}", "%07d");
out.replace("\"", "%022");
out.replace(":", "%03a");
return(out);
}
there might be more characters to be replaced - this is a question for some more expirienced sugar developer who knows
hope it helps
Jaroslav Misek
Clint,Originally Posted by clint
Why do you ask this question if don't even reply?!?!?!?!?!
Pierre
Take easy, manOriginally Posted by plafrance
Clint wanted to ask you additional informations to let us (or himself) to help you.
It is pretty normal an user ask something and another one suggest some fix based on answer.
Hi all
Make sure the charset of the language files and sugar is UTF-8.
It is also interesting to figure out the apache charset.
Cheers
Andrι Lopes
DevToolKit / Project of the Month - June 2009
Lampada Global Services- Open Source Solutions
Avenida Ipiranga, 318
Bloco B - CJ 1602
Sγo Paulo, SP 01046-010
Brazil
Office: +55 11 3237-3110
Mobile: +55 11 7636-5859
e-mail: andre@lampadaglobal.com
Lampada Global delivers offshore software development and support services to customers around the world.
Lampada is proud to be a SugarCRM Gold Partner, revolutionizing Customer Relationship Management.
I DO NOT answer questions through PM and Email. If you need some help post your question into SugarForum.
Pardon me if I seemed rude. I was trying to understand how the SugarCRM community is working.
Clint asked that question on 2008-06-24, Nicksnake answered on 2008-06-25 and nothing from a Sugar team member since then.
Was the solution proposed by Jaryn the good one?
Pierre
I've reproduced this issue and found a workaround. I created bug number 24984 to track this.
Sugar Developer Zone - developer resources | Sugar University - user and admin training
Sugar Docs - user and admin documentation | Sugar Bug Tracker - Enter or view bugs
SugarForge- open source modules, themes, lang packs | SugarExchange - commercial extensions
Clint Oram
Chief Technology Officer and Co-founder
SugarCRM
From the bug report above:
edit the language specific file in the custom directory. For instance for French, edit custom/include/language/fr_fr.lang.php directly with any standard text editor and correct the string.
Sugar Developer Zone - developer resources | Sugar University - user and admin training
Sugar Docs - user and admin documentation | Sugar Bug Tracker - Enter or view bugs
SugarForge- open source modules, themes, lang packs | SugarExchange - commercial extensions
Clint Oram
Chief Technology Officer and Co-founder
SugarCRM
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks