55afd4142aa1ff4073e1794f58dbbcf06d7e5c67
gperez2
  Mon Jun 17 12:22:40 2024 -0700
Switching more hgTables buttons/labels to sentence case, refs #25787

diff --git src/hg/hgTables/compositeTrack.c src/hg/hgTables/compositeTrack.c
index ec69fdb..c4e8daa 100644
--- src/hg/hgTables/compositeTrack.c
+++ src/hg/hgTables/compositeTrack.c
@@ -170,33 +170,33 @@
 hPrintf("<H3>Select a subset of subtracks to merge:</H3>\n");
 hCompositeUi(database, cart, curTrack, curTable, hgtaDoSubtrackMergePage, "mainForm");
 
 hPrintf("<H3>Select a merge operation:</H3>\n");
 struct trackDb *primary = subTdbFind(curTrack,curTable);
 if (isWiggle(database, curTable) || isBedGraph(curTable) || isBigWigTable(curTable))
     showWiggleMergeOptions();
 else
     showBedMergeOptions();
 hPrintf("If a filter is specified on the main Table Browser page, it will "
 	"be applied only to %s, not to any other selected subtrack.  ",
 	primary->longLabel);
 hPrintf("If an intersection is specified on the main page, it will be applied "
 	"to the result of this merge.<P>\n");
 hPrintf("<P>\n");
-cgiMakeButton(hgtaDoSubtrackMergeSubmit, "submit");
+cgiMakeButton(hgtaDoSubtrackMergeSubmit, "Submit");
 hPrintf(" ");
-cgiMakeButton(hgtaDoMainPage, "cancel");
+cgiMakeButton(hgtaDoMainPage, "Cancel");
 hPrintf("</FORM>\n");
 htmlClose();
 }
 
 char *describeSubtrackMerge(char *linePrefix)
 /* Return a multi-line string that describes the specified subtrack merge,
  * with each line beginning with linePrefix. */
 {
 struct dyString *dy = dyStringNew(512);
 struct trackDb *primary = subTdbFind(curTrack,curTable), *tdb = NULL;
 dyStringAppend(dy, linePrefix);
 dyStringPrintf(dy, "Subtrack merge, primary table = %s (%s)\n",
 	       curTable, primary->longLabel);
 dyStringAppend(dy, linePrefix);
 dyStringPrintf(dy, "Subtrack merge operation: ");