I'm finally getting to test how to set up separate languages for wikigroups. And I'm stirring up more trouble.<br><br>Per instructions last month and the PmWiki page on internationalization - <a href="http://pmwiki.org/wiki/PmWiki/Internationalizations" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
http://pmwiki.org/wiki/PmWiki/Internationalizations
</a> - I have downloading the <a href="http://www.pmichaud.com/pub/pmwiki/i18n.tgz" rel="nofollow" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">i18n.tgz</a> into a folder i18n. Per instructions as I understood them I then put this folder in the directory with the
<em>pmwiki.php</em> installation.This may not have been the correct procedure since apparently some or all of the files actually should go to the wikilib.d folder (if so can I manually translfer them?). But I will continue...
<br><br>Next, on the test wikigroup config I've been adding the script suggested below, and various permutations thereof, but getting consistently one of 2 results:<br>1) English, not French<br>2) (When removing the $Skin='pmwiki' thinking that having both it and $Skin='french' may be a problem A retrurn that looks like this: PmWiki can't process your request
<br>?unable to find skin from list french<br>We are sorry for any inconvenience.<br><br>#2 makes sense, since I did not put a file in the pub/skins/ named french. Is that correct (is there such a skin?)<br><br>So, I tried adding this to the main
config.php file to help the wikigroup find the French:<br>$xlpage = FmtPageName('$Group.XLPage', $pagename);<br>if (PageExists($xlpage)) XLPage($xlpage, $xlpage);<br><br>But I still get the same results.<br><br>Presumably I went wrong in the first step. Should I transfer the contents of the i18n folder into the wikilib-d folder?
<br><br>TIA...<br><br>Don<br><br><br><br><br><div><span class="gmail_quote">On 10/8/06, <b class="gmail_sendername">Crisses</b> <<a href="mailto:crisses@kinhost.org" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
crisses@kinhost.org</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>On Oct 7, 2006, at 11:15 PM, Donald Z. Osborn wrote:<br><br>...<br>> * different language settings (many English, many French, a few<br>> Portuguese. I'll get to the language later, I think, but maybe<br>> those commands should be done at the same time; language will be
<br>> set once and for all for each case, in principle<br><br>Skins & Languages:<br><a href="http://pmwiki.org/wiki/PmWiki/Internationalizations" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
http://pmwiki.org/wiki/PmWiki/Internationalizations</a> tells you how to
<br>set up the language translations<br><br>Thus you can make a local/GroupName.php<br><br><?php if (!defined('PmWiki')) exit();<br><br>//change to French language<br>XLPage('fr','PmWikiFr.XLPage');<br><br>// Set the skin for the group
<br>$Skin = 'french';<br><br>Since this file is only read when loading a page in a specific group,<br>it sets the skin for any pages viewed in that group.<br><br></blockquote></div>...<br>