summaryrefslogtreecommitdiffstats
path: root/engines
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@dside.dyndns.org>2005-08-07 21:41:32 +0000
committerSuren A. Chilingaryan <csa@dside.dyndns.org>2005-08-07 21:41:32 +0000
commit9d4628df369b92016b7fc3bfc7fed6d06ff2ca9a (patch)
tree9d78892cf391d2cdb5da216cfec78a8b565751c7 /engines
parent94ca629ceec7b0dc9f6f724b2e15923d3ec1d5b3 (diff)
downloadlibrcc-9d4628df369b92016b7fc3bfc7fed6d06ff2ca9a.tar.gz
librcc-9d4628df369b92016b7fc3bfc7fed6d06ff2ca9a.tar.bz2
librcc-9d4628df369b92016b7fc3bfc7fed6d06ff2ca9a.tar.xz
librcc-9d4628df369b92016b7fc3bfc7fed6d06ff2ca9a.zip
- Russian autoengine is renamed to LibRCD
- Fix Learning with Language Autodetection switched on - Attempt to perform rccFS with Language Autodetection switched off, if failed with default behaviour. - Systematization of translation engine: + Rearangement of the translation modes: OFF, TO_ENGLISH, SKIP_RELATED, SKIP_PARRENT, FULL. + New class types: TRANSLATE_LOCALE, TRANSLATE_CURRENT, TRANSLATE_FROM. - Detect "Unicode" locales for foreign languages - "out" class is assumed to be TRANSLATE_LOCALE - Respect RCC_CLASS_KNOWN - Check for Latin UTF-8 prior to running any charset detection engine.
Diffstat (limited to 'engines')
-rw-r--r--engines/Makefile.am4
-rw-r--r--engines/librcd.c (renamed from engines/russian.c)4
2 files changed, 4 insertions, 4 deletions
diff --git a/engines/Makefile.am b/engines/Makefile.am
index 404cc32..678fc8b 100644
--- a/engines/Makefile.am
+++ b/engines/Makefile.am
@@ -3,8 +3,8 @@ lib_LTLIBRARIES = libwestern.la
libdir = $(pkgdatadir)/engines
if HAVE_RCD
-lib_LTLIBRARIES += librussian.la
-librussian_la_SOURCES = russian.c
+lib_LTLIBRARIES += librcd.la
+librussian_la_SOURCES = librcd.c
librussian_la_LDFLAGS = -module -avoid-version -export-symbols-regex "rccGetInfo"
endif
diff --git a/engines/russian.c b/engines/librcd.c
index 0df145c..c24d244 100644
--- a/engines/russian.c
+++ b/engines/librcd.c
@@ -9,11 +9,11 @@ static rcc_autocharset_id AutoengineRussian(rcc_engine_context ctx, const char *
}
static rcc_engine russian_engine = {
- "Russian", NULL, NULL, &AutoengineRussian, {"CP1251","KOI8-R","UTF-8","IBM866", NULL}
+ "LibRCD", NULL, NULL, &AutoengineRussian, {"CP1251","KOI8-R","UTF-8","IBM866", NULL}
};
static rcc_engine ukrainian_engine = {
- "Russian", NULL, NULL, &AutoengineRussian, {"CP1251","KOI8-U","UTF-8","IBM865", NULL}
+ "LibRCD", NULL, NULL, &AutoengineRussian, {"CP1251","KOI8-U","UTF-8","IBM865", NULL}
};
rcc_engine *rccGetInfo(const char *lang) {