Changeset 55 for trunk/settings.cpp


Ignore:
Timestamp:
Jun 2, 2018, 12:45:45 AM (7 years ago)
Author:
Gregg Young
Message:

Update resources to get Gotcha! working in all languages; Reformat and update language tab in settings and about dialog; Clean up settings notebook formatting; Optimize turning PM print screen on and off. Fix screen region capture of its confirmation dialog. Move additional strings from code to the STRINGTABLE.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/settings.cpp

    r51 r55  
    11521152    if ((rc = DosLoadModule(PSZ(NULL), 0, psz, &g_hmod)))
    11531153    {
    1154         DisplayError("ERROR", "Could not (re)load Gotcha! resource module "
    1155                      "'%s' (DosLoadModule() return code %d). First make sure the DLL is in the LIBPATH. If this is the case, try to delete "
    1156                      "GOTCHA.INI and start Gotcha! again. If it does not work "
    1157                      "then, contact the author (thth@c2226.de).", psz, rc);
     1154        DisplayError("Error",
     1155                     "Could not (re)load resource module '%s' (return code %d). "
     1156                     "Make sure the DLL is in the LIBPATH. If this is the case, "
     1157                     "try deleting GOTCHA.INI and restart. If this fails, contact "
     1158                     "the author (ygk@qwest.net).", psz, rc);
    11581159        exit(1);
    11591160    }
     
    11611162    ResourceString::Module(g_hmod);
    11621163#ifdef _QUIET_
    1163 //#if 1
    11641164    pszPageTab[0] = RSTR (IDS_MAINWIN);
    1165     pszPageTab[1] = RSTR (IDS_PAGEMISC);
     1165    pszPageTab[1] = RSTR (IDS_CAPTURE );
    11661166    pszPageTab[2] = RSTR (IDS_PAGESAVE);
    11671167    pszPageTab[3] = RSTR (IDS_PAGELANGUAGE);
     
    11691169    pszPageTab[0] = RSTR (IDS_PAGESAVE);
    11701170    pszPageTab[1] = RSTR (IDS_PAGESNAPSHOT);
    1171     pszPageTab[2] = RSTR (IDS_PAGEMISC);
     1171    pszPageTab[2] = RSTR (IDS_CAPTURE );
    11721172    pszPageTab[3] = RSTR (IDS_PAGELANGUAGE);
    11731173#endif
     
    11871187//#if 1
    11881188    pszPageTab[0] = RSTR (IDS_MAINWIN);
    1189     pszPageTab[1] = RSTR (IDS_PAGEMISC);
     1189    pszPageTab[1] = RSTR (IDS_CAPTURE );
    11901190    pszPageTab[2] = RSTR (IDS_PAGESAVE);
    11911191    pszPageTab[3] = RSTR (IDS_PAGELANGUAGE);
     
    11931193    pszPageTab[0] = RSTR (IDS_PAGESAVE);
    11941194    pszPageTab[1] = RSTR (IDS_PAGESNAPSHOT);
    1195     pszPageTab[2] = RSTR (IDS_PAGEMISC);
     1195    pszPageTab[2] = RSTR (IDS_CAPTURE );
    11961196    pszPageTab[3] = RSTR (IDS_PAGELANGUAGE);
    11971197#endif
Note: See TracChangeset for help on using the changeset viewer.