Icons for Radium and Shellplayer.
[AROS-Contrib.git] / find / locale.c
blob3a67d9e61c6d312030c8d40f7024398f584307e0
1 /*
2 Copyright © 2012, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <exec/types.h>
7 #include <proto/locale.h>
9 #define CATCOMP_ARRAY
10 #include "strings.h"
12 #define CATALOG_NAME "Find.catalog"
13 #define CATALOG_VERSION 0
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);
27 else
29 return CatCompArray[id].cca_Str;
33 /* Setup ********************************************************************/
34 BOOL Locale_Initialize(VOID)
36 if (LocaleBase != NULL)
38 catalog = OpenCatalog
40 NULL, CATALOG_NAME, OC_Version, CATALOG_VERSION, TAG_DONE
43 else
45 catalog = NULL;
47 return TRUE;
50 VOID Locale_Deinitialize(VOID)
52 if (LocaleBase != NULL && catalog != NULL) CloseCatalog(catalog);
56 ADD2INIT(Locale_Initialize, 90);
57 ADD2EXIT(Locale_Deinitialize, 90);