mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
better cyrillic languages support
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4525 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
df083750b8
commit
64f38ce0cb
@ -1,3 +1,8 @@
|
||||
2002-07-03 Vitaly Lipatov <LAV@VL3143.spb.edu>
|
||||
|
||||
* languages: add support for belarusian and kazakh
|
||||
|
||||
* encodings: add pt154
|
||||
|
||||
2002-06-27 André Pönitz <poenitz@gmx.net>
|
||||
|
||||
|
@ -346,3 +346,30 @@ Encoding tis620-0 unknown
|
||||
0e50 0e51 0e52 0e53 0e54 0e55 0e56 0e57
|
||||
0e58 0e59 0e5a 0e5b 00fc 00fd 00fe 00ff
|
||||
End
|
||||
|
||||
Encoding pt154 pt154
|
||||
00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f
|
||||
10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f
|
||||
20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f
|
||||
30 31 32 33 34 35 36 37 38 39 3a 3b 3c 3d 3e 3f
|
||||
40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f
|
||||
50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f
|
||||
60 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f
|
||||
70 71 72 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
|
||||
0496 0492 201a 0493 201e 2026 2020 04ae
|
||||
04b2 04af 04a0 2039 04a2 049a 04ba 04b8
|
||||
0497 2018 2019 201c 201d 2022 2013 2014
|
||||
04b3 2122 04a1 203a 04a3 049b 04bb 04b9
|
||||
00a0 040e 045e 0408 04e8 0498 04b0 00a7
|
||||
0401 00a9 04d8 00ab 00ac 00ad 00ae 049c
|
||||
00b0 04b1 0406 0456 0499 04e9 00b6 00b7
|
||||
0451 2116 04d9 00bb 0458 04aa 04ab 049d
|
||||
0410 0411 0412 0413 0414 0415 0416 0417
|
||||
0418 0419 041a 041b 041c 041d 041e 041f
|
||||
0420 0421 0422 0423 0424 0425 0426 0427
|
||||
0428 0429 042a 042b 042c 042d 042e 042f
|
||||
0430 0431 0432 0433 0434 0435 0436 0437
|
||||
0438 0439 043a 043b 043c 043d 043e 043f
|
||||
0440 0441 0442 0443 0444 0445 0446 0447
|
||||
0448 0449 044a 044b 044c 044d 044e 044f
|
||||
End
|
||||
|
@ -4,6 +4,7 @@ american american "American" false iso8859-1 en_US ""
|
||||
arabic arabic "Arabic" true iso8859-6 ar_SA ""
|
||||
austrian austrian "Austrian" false iso8859-1 de_AU ""
|
||||
bahasa bahasa "Bahasa" false iso8859-1 in_ID ""
|
||||
belarusian belarusian "Belarusian" false cp1251 be ""
|
||||
basque basque "Basque" false iso8859-1 eu_ES ""
|
||||
brazil brazil "Portuguese (Brazil)" false iso8859-1 pt_BR ""
|
||||
breton breton "Breton" false iso8859-1 br_FR ""
|
||||
@ -33,6 +34,7 @@ hebrew hebrew "Hebrew" true cp1255 he_IL ""
|
||||
#hungarian hungarian "Hungarian" false iso8859-2 "" ""
|
||||
irish irish "Irish" false iso8859-1 ga_IE ""
|
||||
italian italian "Italian" false iso8859-1 it ""
|
||||
kazakh kazakh "Kazakh" false pt154 kk ""
|
||||
lsorbian lsorbian "Lsorbian" false iso8859-2 "" ""
|
||||
# no ISO listing for lsorbian (Garst)
|
||||
magyar magyar "Magyar" false iso8859-2 hu ""
|
||||
|
@ -160,6 +160,7 @@ src/mathed/formulabase.C
|
||||
src/mathed/formula.C
|
||||
src/mathed/formulamacro.C
|
||||
src/mathed/math_cursor.C
|
||||
src/mathed/math_hullinset.C
|
||||
src/mathed/ref_inset.C
|
||||
src/MenuBackend.C
|
||||
src/paragraph.C
|
||||
|
@ -1,3 +1,7 @@
|
||||
2002-07-03 Vitaly Lipatov <LAV@VL3143.spb.edu>
|
||||
|
||||
* FormDocument.C (build): add pt154 encoding
|
||||
|
||||
2002-07-03 Lars Gullik Bjønnes <larsbj@birdstep.com>
|
||||
|
||||
* Tooltips.C (Tooltips): add Dialogs to constructor arg.
|
||||
|
@ -232,7 +232,7 @@ void FormDocument::build()
|
||||
language_.reset(build_document_language(this));
|
||||
fl_addto_choice(language_->choice_inputenc,
|
||||
"default|auto|latin1|latin2|latin3|latin4|latin5|latin9"
|
||||
"|koi8-r|koi8-u|cp866|cp1251|iso88595");
|
||||
"|koi8-r|koi8-u|cp866|cp1251|iso88595|pt154");
|
||||
|
||||
vector<frnt::LanguagePair> const langs = frnt::getLanguageData(false);
|
||||
// Store the identifiers for later
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-06-15 Herbert Voss <voss@perce.de>
|
||||
|
||||
* insetgraphics.C (prepareFile): bugfix; return always
|
||||
files without extension
|
||||
|
||||
2002-06-28 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* insetgraphicsParams.[Ch]: forward declare grfx::Params.
|
||||
|
@ -733,7 +733,9 @@ string const InsetGraphics::prepareFile(Buffer const *buf) const
|
||||
// No conversion is needed. LaTeX can handle the graphic file as is.
|
||||
// This is true even if the orig_file is compressed. We have to return
|
||||
// the orig_file_with_path, maybe it is a zipped one
|
||||
return lyxrc.use_tempdir ? temp_file : orig_file_with_path;
|
||||
if (lyxrc.use_tempdir)
|
||||
return RemoveExtension(temp_file);
|
||||
return RemoveExtension(orig_file_with_path);
|
||||
}
|
||||
|
||||
string const outfile_base = RemoveExtension(temp_file);
|
||||
|
Loading…
Reference in New Issue
Block a user