07-14-2008, 06:44 AM
|
#1 (permalink)
|
|
The Gregarious
Join Date: Mar 2008
Location: Cana'derr
Posts: 653
Thanks: 24
|
XML noob
Okay, so I built a language pack using a PHP array, very simple, no hit to my speed, works really well. Then I read this: TalkPHP - The Framework Basics of Creating Multilingual PHP Applications
So I figured, even though I don't understand why using XML is that much better than the method I've already employed (no speed gains, anyways), I'd give it a go. I got it working fine, except for one small thing... two of my phrases include HTML, and that breaks the whole thing. Not the HTML itself, but apparently adding any kind of attribute to an HTML element seems to break it.
Code:
<phrase id="admin_module_failed">The specified administrative module could not be loaded:<br /><span style=\"font-weight: normal;\">%s</span></phrase>
<phrase id="admin_module_not_found">The specified administrative module could not be found:<br /><span style="font-weight: normal;">%s</span></phrase>
If I remove the span, it works. Since these are the only two phrases I do this on, I could easily remove it from both, but I don't really want to. So how do I incorporate this into an xml phrase file without the whole thing busting down? I'd post the error, but just having one of these phrases in the file produces literally two pages of errors.
-m
|
|
|
|