4c5e20adbdac951fb2f6c548bba4be553976ac29
tdreszer
  Fri Feb 25 16:48:17 2011 -0800
Brooke suggests 'is amung' instead of 'is (any of)'.
diff --git src/hg/hgFileSearch/hgFileSearch.c src/hg/hgFileSearch/hgFileSearch.c
index f525b03..3304199 100644
--- src/hg/hgFileSearch/hgFileSearch.c
+++ src/hg/hgFileSearch/hgFileSearch.c
@@ -314,31 +314,31 @@
         printf("<tr valign='top' class='mdbSelect'><td nowrap>\n");
         if(numMetadataSelects > 2 || i >= 2)
             PRINT_PM_BUTTON("minus", i + 1, '-');
         else
             printf("&nbsp;");
         PRINT_PM_BUTTON("plus", i + 1, '+');
 
         printf("</td><td>and&nbsp;</td><td colspan=3 nowrap>\n");
         safef(buf, sizeof(buf), "%s%i", METADATA_NAME_PREFIX, i + 1);
         cgiDropDownWithTextValsAndExtra(buf, mdbVarLabels, mdbVars,count,mdbVar[i],"class='mdbVar' style='font-size:.9em;' onchange='findTracksMdbVarChanged(this);'");
         // TODO: move to lib since hgTracks and hgApi share
         safef(buf, sizeof(buf), "%s%i", METADATA_VALUE_PREFIX, i + 1);
         enum mdbCvSearchable searchBy = mdbCvSearchMethod(mdbVar[i]);
         if (searchBy == cvsSearchByMultiSelect)
             {
-            printf("</td>\n<td align='right' id='isLike%i' style='width:10px; white-space:nowrap;'>is (any of)</td>\n<td nowrap id='%s' style='max-width:600px;'>\n",i + 1,buf);
+            printf("</td>\n<td align='right' id='isLike%i' style='width:10px; white-space:nowrap;'>is among</td>\n<td nowrap id='%s' style='max-width:600px;'>\n",i + 1,buf);
             #define MULTI_SELECT_CBS_FORMAT "<SELECT MULTIPLE=true name='%s' style='display: none; min-width:200px; font-size:.9em;' class='filterBy mdbVal' onchange='findTracksMdbValChanged(this)'>\n"
             printf(MULTI_SELECT_CBS_FORMAT,buf);
             len = getTermArray(conn, &labels, &terms, mdbVar[i]);
             int tix=0;
             for(;tix < len;tix++)
                 {
                 char *selected = findWordByDelimiter(terms[tix],',', mdbVal[i]);
                 printf("<OPTION%s value='%s'>%s</OPTION>\n",(selected != NULL?" SELECTED":""),terms[tix],labels[tix]);
                 }
             printf("</SELECT>\n");
             }
         else if (searchBy == cvsSearchBySingleSelect)
             {
             printf("</td>\n<td align='right' id='isLike%i' style='width:10px; white-space:nowrap;'>is</td>\n<td nowrap id='%s' style='max-width:600px;'>\n",i + 1,buf);
             len = getTermArray(conn, &labels, &terms, mdbVar[i]);