1
0
forked from GitHub/gf-core

moved phrases like 'I am hungry' from Greetings to Words to make them more general

This commit is contained in:
aarne
2010-03-30 21:48:24 +00:00
parent 61c82fa40e
commit 5e2d2e61c3
16 changed files with 56 additions and 55 deletions

View File

@@ -53,8 +53,8 @@ function show_languages(grammar) {
menu.setAttribute("onchange","new_language(this)");
menu.grammar=grammar;
menu.innerHTML="";
for(var i=1; i<lang.length; i++) { // 1, to hide Disamb...
if(lang[i].canParse) {
for(var i=0; i<lang.length; i++) {
if(lang[i].canParse && (lang[i].name[0] !='D')) { /// to hide Disamb; should be made properly...
var opt=empty("option");
opt.setAttribute("value",""+i);
opt.innerHTML=short_name(lang[i].name);