2 Copyright © 1995-2004, The AROS Development Team. All rights reserved.
6 #include <exec/types.h>
7 #include <proto/locale.h>
12 #define CATALOG_NAME "System/Prefs/Serial.catalog"
13 #define CATALOG_VERSION 1
15 /*** Variables **************************************************************/
16 struct Catalog
*catalog
;
19 /*** Functions **************************************************************/
20 /* Main *********************************************************************/
21 CONST_STRPTR
_(ULONG id
)
23 if (LocaleBase
!= NULL
&& catalog
!= NULL
)
25 return GetCatalogStr(catalog
, id
, CatCompArray
[id
].cca_Str
);
29 return CatCompArray
[id
].cca_Str
;
33 /* Setup ********************************************************************/
34 VOID
Locale_Initialize(VOID
)
36 if (LocaleBase
!= NULL
)
40 NULL
, CATALOG_NAME
, OC_Version
, CATALOG_VERSION
, TAG_DONE
49 VOID
Locale_Deinitialize(VOID
)
51 if (LocaleBase
!= NULL
&& catalog
!= NULL
) CloseCatalog(catalog
);