28
29
30 /*
31 * For catgets
32 */
33 #include <nl_types.h>
34
35
36 /*
37 * NOCATGETS is a dummy macro that returns it argument.
38 * It is used to identify strings that we consciously do not
39 * want to apply catgets() to. We have tools that check the
40 * sources for strings that are not catgets'd and the tools
41 * ignore strings that are NOCATGETS'd.
42 */
43 #define NOCATGETS(str) (str)
44
45 /*
46 * Define the various text domains
47 */
48 #define AVO_DOMAIN_CODEMGR "codemgr"
49 #define AVO_DOMAIN_VERTOOL "vertool"
50 #define AVO_DOMAIN_FILEMERGE "filemerge"
51 #define AVO_DOMAIN_DMAKE "dmake"
52 #define AVO_DOMAIN_PMAKE "pmake"
53 #define AVO_DOMAIN_FREEZEPOINT "freezept"
54 #define AVO_DOMAIN_MAKETOOL "maketool"
55
56 #endif
|
28
29
30 /*
31 * For catgets
32 */
33 #include <nl_types.h>
34
35
36 /*
37 * NOCATGETS is a dummy macro that returns it argument.
38 * It is used to identify strings that we consciously do not
39 * want to apply catgets() to. We have tools that check the
40 * sources for strings that are not catgets'd and the tools
41 * ignore strings that are NOCATGETS'd.
42 */
43 #define NOCATGETS(str) (str)
44
45 /*
46 * Define the various text domains
47 */
48 #define AVO_DOMAIN_DMAKE "dmake"
49
50 #endif
|