Subversion Repositories Kolibri OS

Rev

Rev 5244 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5244 alpine 1
#ifndef RS_STRINGS_H
2
#define RS_STRINGS_H
3
 
4
#ifndef RS_KOS
5245 alpine 5
	#include "strings_en.h"
5244 alpine 6
#else
7
 
8
	//#include "../lang.h"
9
 
10
	#ifdef LANG_RU
11
		// Russian
12
		#include "strings_ru.h"
13
	#elif LANG_SP
14
		// other languages are not implemented
15
		#include "strings_en.h"
16
	#elif LANG_IT
17
		// other languages are not implemented
18
		#include "strings_en.h"
19
	#else
20
		// default language: English
21
		#include "strings_en.h"
22
	#endif
23
 
24
 
25
#endif
26
 
27
 
28
 
29
#endif