Subversion Repositories Kolibri OS

Rev

Rev 5260 | Details | Compare with Previous | Last modification | View Log | RSS feed

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