c2f76a8b519313e22f6c91ee7745e86e4dc660bc gperez2 Mon Jun 17 10:56:57 2024 -0700 Switching more hgTracks and hgTables buttons/labels to sentence case, refs #25787 diff --git src/hg/hgTables/userRegions.c src/hg/hgTables/userRegions.c index 603ac74..7391077 100644 --- src/hg/hgTables/userRegions.c +++ src/hg/hgTables/userRegions.c @@ -29,35 +29,35 @@ char *db = cartOptionalString(cart, hgtaUserRegionsDb); if (db && !sameString(db, database)) oldPasted = ""; hPrintf("
\n", getScriptName(), cartUsualString(cart, "formMethod", "POST")); cartSaveSession(cart); hPrintf("
\n"); hPrintf("Paste regions:"); hPrintf(""); hPrintf("Or upload file:  
\n", hgtaEnteredUserRegionFile); hPrintf("
\n"); cgiMakeTextArea(hgtaEnteredUserRegions, oldPasted, 10, 70); hPrintf("
\n"); -cgiMakeButton(hgtaDoSubmitUserRegions, "submit"); +cgiMakeButton(hgtaDoSubmitUserRegions, "Submit"); hPrintf(" "); -cgiMakeButton(hgtaDoClearSetUserRegionsText, "clear"); +cgiMakeButton(hgtaDoClearSetUserRegionsText, "Clear"); hPrintf(" "); -cgiMakeButton(hgtaDoMainPage, "cancel"); +cgiMakeButton(hgtaDoMainPage, "Cancel"); hPrintf("
"); hPrintf("

\n"); webIncludeHelpFile("hgTbUserRegionsHelp", FALSE); htmlClose(); } void doSetUserRegions(struct sqlConnection *conn) /* Respond to set regions button. */ { htmlOpen("Enter region definition\n"); doSetUserRegionsAfterOpen(conn); } static char *limitText(char *text) /* read text string and limit to maxRegions actual data lines */