IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 8, 2006, 1:32:23 PM (20 years ago)
Author:
jhoblitt
Message:

bug #790 - remove psErrorText.h and inline all error codes. all newly inlined error codes are wrapped with the _() macro from future gettextification

Location:
trunk/psLib/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src

    • Property svn:ignore
      •  

        old new  
        1010libpslib.la.temp
        1111config.h.in
        12 psErrorText.h
        1312*.bb
        1413*.bbg
  • trunk/psLib/src/sys/psLogMsg.c

    r8098 r8232  
    1111 *  @author GLG, MHPCC
    1212 *
    13  *  @version $Revision: 1.59 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2006-08-03 03:26:28 $
     13 *  @version $Revision: 1.60 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2006-08-08 23:32:23 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3636#include "psString.h"
    3737
    38 #include "psErrorText.h"
     38
    3939
    4040#define MIN_LOG_LEVEL 0
     
    165165        default:
    166166            psError(PS_ERR_BAD_PARAMETER_VALUE, true,
    167                     PS_ERRORTEXT_psLogMsg_UNKNOWN_KEY, *ptr);
     167                    _("Unknown logging keyword %c."), *ptr);
    168168            return false;
    169169        }
     
    210210
    211211        if (fileD == 0) {
    212             psError(PS_ERR_IO, true, PS_ERRORTEXT_psLogMsg_OPEN_FILE_FAILED,
     212            psError(PS_ERR_IO, true, _("Could not open file '%s' for output."),
    213213                    location);
    214214            psFree(protocolLocation);
Note: See TracChangeset for help on using the changeset viewer.