So, I decided to take this error up again.. o.o
Looking through the code more carefully, I noted several things.
The dropdown where you select the directory has the code of:
rawoutput("<select name='pulldir' onchange='this.form.submit()'>");
And earlier on in the code, you can find:
$selecteddir=httppost('pulldir');
Which is then used in:
$chosenpath=$path.$selecteddir."/";
Where
$path equals
$masterpath, which is:
$masterpath=get_module_setting('lookuppath')."/";
Later on, you'll see:
if (httppost("pulluntranslated")) {
$pullmodules=array();
$sql="SELECT namespace from ".db_prefix("untranslated")." group by namespace";
$result=db_query($sql);
while ($row=db_fetch_assoc($result)) {
array_push($pullmodules,$row['namespace']);
}
}
And then:
foreach ($pullmodules as $module) {
$sql="";
$file=pullurl($chosenpath.$module.".sql");
So the whole link using the language of
de, for the file of
home.php (for example) is
http://translations.nb-core.org/de/home.sql.
Which MEANS.. There DOES need to be an English folder for pulling of English translations.
And it appears my T-Wizard WILL pull items from the server.. I tried it with the 'de' folder, and it worked.