xref: /aoo42x/main/svx/source/dialog/txenctab.src (revision cdf0e10c)
1*cdf0e10cSrcweir/*************************************************************************
2*cdf0e10cSrcweir *
3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir *
5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir *
7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir *
9*cdf0e10cSrcweir * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir *
11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir *
15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir *
21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir *
26*cdf0e10cSrcweir ************************************************************************/
27*cdf0e10cSrcweir
28*cdf0e10cSrcweir // include ---------------------------------------------------------------
29*cdf0e10cSrcweir
30*cdf0e10cSrcweir#include <svx/dialogs.hrc>
31*cdf0e10cSrcweir
32*cdf0e10cSrcweir#define _SOLAR_RSC_INVOKED
33*cdf0e10cSrcweir#include <rtl/textenc.h>
34*cdf0e10cSrcweir#define PairedList ItemList
35*cdf0e10cSrcweir// Encodings for which no conversion exist yet are commented out.
36*cdf0e10cSrcweir
37*cdf0e10cSrcweir // RID_SVXSTR_TEXTENCODING_TABLE ----------------------------------------------------
38*cdf0e10cSrcweirStringArray RID_SVXSTR_TEXTENCODING_TABLE
39*cdf0e10cSrcweir{
40*cdf0e10cSrcweir	PairedList [ en-US ] =
41*cdf0e10cSrcweir	{
42*cdf0e10cSrcweir		 < "Western Europe (Windows-1252/WinLatin 1)"	 		; RTL_TEXTENCODING_MS_1252			; > ;
43*cdf0e10cSrcweir		< "Western Europe (Apple Macintosh)"					; RTL_TEXTENCODING_APPLE_ROMAN		; > ;
44*cdf0e10cSrcweir		< "Western Europe (DOS/OS2-850/International)"			; RTL_TEXTENCODING_IBM_850			; > ;
45*cdf0e10cSrcweir		< "Western Europe (DOS/OS2-437/US)"						; RTL_TEXTENCODING_IBM_437			; > ;
46*cdf0e10cSrcweir		< "Western Europe (DOS/OS2-860/Portuguese)"			; RTL_TEXTENCODING_IBM_860			; > ;
47*cdf0e10cSrcweir		< "Western Europe (DOS/OS2-861/Icelandic)"				; RTL_TEXTENCODING_IBM_861			; > ;
48*cdf0e10cSrcweir		< "Western Europe (DOS/OS2-863/French (Can.))"	; RTL_TEXTENCODING_IBM_863			; > ;
49*cdf0e10cSrcweir		< "Western Europe (DOS/OS2-865/Nordic)"				; RTL_TEXTENCODING_IBM_865			; > ;
50*cdf0e10cSrcweir		< "Western Europe (ASCII/US)"							; RTL_TEXTENCODING_ASCII_US			; > ;
51*cdf0e10cSrcweir		< "Western Europe (ISO-8859-1)"							; RTL_TEXTENCODING_ISO_8859_1		; > ;
52*cdf0e10cSrcweir		< "Eastern Europe (ISO-8859-2)"							; RTL_TEXTENCODING_ISO_8859_2		; > ;
53*cdf0e10cSrcweir		< "Latin 3 (ISO-8859-3)"							; RTL_TEXTENCODING_ISO_8859_3		; > ;
54*cdf0e10cSrcweir		< "Baltic (ISO-8859-4)"							; RTL_TEXTENCODING_ISO_8859_4		; > ;
55*cdf0e10cSrcweir		< "Cyrillic (ISO-8859-5)"							; RTL_TEXTENCODING_ISO_8859_5		; > ;
56*cdf0e10cSrcweir		< "Arabic (ISO-8859-6)" 							; RTL_TEXTENCODING_ISO_8859_6		; > ;
57*cdf0e10cSrcweir		< "Greek (ISO-8859-7)"							; RTL_TEXTENCODING_ISO_8859_7		; > ;
58*cdf0e10cSrcweir		< "Hebrew (ISO-8859-8)"	  						; RTL_TEXTENCODING_ISO_8859_8		; > ;
59*cdf0e10cSrcweir		< "Turkish (ISO-8859-9)"							; RTL_TEXTENCODING_ISO_8859_9		; > ;
60*cdf0e10cSrcweir		< "Western Europe (ISO-8859-14)"						; RTL_TEXTENCODING_ISO_8859_14		; > ;
61*cdf0e10cSrcweir		< "Western Europe (ISO-8859-15/EURO)"					; RTL_TEXTENCODING_ISO_8859_15		; > ;
62*cdf0e10cSrcweir		< "Greek (DOS/OS2-737)"						; RTL_TEXTENCODING_IBM_737			; > ;
63*cdf0e10cSrcweir		< "Baltic (DOS/OS2-775)"							; RTL_TEXTENCODING_IBM_775			; > ;
64*cdf0e10cSrcweir		< "Eastern Europe (DOS/OS2-852)"							; RTL_TEXTENCODING_IBM_852			; > ;
65*cdf0e10cSrcweir		< "Cyrillic (DOS/OS2-855)"						; RTL_TEXTENCODING_IBM_855			; > ;
66*cdf0e10cSrcweir		< "Turkish (DOS/OS2-857)"							; RTL_TEXTENCODING_IBM_857			; > ;
67*cdf0e10cSrcweir		< "Hebrew (DOS/OS2-862)"							; RTL_TEXTENCODING_IBM_862			; > ;
68*cdf0e10cSrcweir		< "Arabic (DOS/OS2-864)"							; RTL_TEXTENCODING_IBM_864			; > ;
69*cdf0e10cSrcweir		< "Cyrillic (DOS/OS2-866/Russian)"				; RTL_TEXTENCODING_IBM_866			; > ;
70*cdf0e10cSrcweir		< "Greek (DOS/OS2-869/Modern)"					; RTL_TEXTENCODING_IBM_869			; > ;
71*cdf0e10cSrcweir		< "Eastern Europe (Windows-1250/WinLatin 2)"				; RTL_TEXTENCODING_MS_1250			; > ;
72*cdf0e10cSrcweir		< "Cyrillic (Windows-1251)"						; RTL_TEXTENCODING_MS_1251			; > ;
73*cdf0e10cSrcweir		< "Greek (Windows-1253)"						; RTL_TEXTENCODING_MS_1253			; > ;
74*cdf0e10cSrcweir		< "Turkish (Windows-1254)"							; RTL_TEXTENCODING_MS_1254			; > ;
75*cdf0e10cSrcweir		< "Hebrew (Windows-1255)" 						; RTL_TEXTENCODING_MS_1255			; > ;
76*cdf0e10cSrcweir		< "Arabic (Windows-1256)"							; RTL_TEXTENCODING_MS_1256			; > ;
77*cdf0e10cSrcweir		< "Baltic (Windows-1257)"							; RTL_TEXTENCODING_MS_1257			; > ;
78*cdf0e10cSrcweir		< "Eastern Europe (Apple Macintosh)"						; RTL_TEXTENCODING_APPLE_CENTEURO	; > ;
79*cdf0e10cSrcweir		< "Eastern Europe (Apple Macintosh/Croatian)"			; RTL_TEXTENCODING_APPLE_CROATIAN	; > ;
80*cdf0e10cSrcweir		< "Cyrillic (Apple Macintosh)"					; RTL_TEXTENCODING_APPLE_CYRILLIC	; > ;
81*cdf0e10cSrcweir		< "Greek (Apple Macintosh)"					; RTL_TEXTENCODING_APPLE_GREEK		; > ;
82*cdf0e10cSrcweir		< "Western Europe (Apple Macintosh/Icelandic)"			; RTL_TEXTENCODING_APPLE_ICELAND	; > ;
83*cdf0e10cSrcweir		< "Eastern Europe (Apple Macintosh/Rumanian)"			; RTL_TEXTENCODING_APPLE_ROMANIAN	; > ;
84*cdf0e10cSrcweir		< "Turkish (Apple Macintosh)"						; RTL_TEXTENCODING_APPLE_TURKISH	; > ;
85*cdf0e10cSrcweir		< "Cyrillic (Apple Macintosh/Ukrainian)"			; RTL_TEXTENCODING_APPLE_UKRAINIAN	; > ;
86*cdf0e10cSrcweir		< "Chinese simplified (Apple Macintosh)"		; RTL_TEXTENCODING_APPLE_CHINSIMP	; > ;
87*cdf0e10cSrcweir		< "Chinese traditional (Apple Macintosh)"		; RTL_TEXTENCODING_APPLE_CHINTRAD	; > ;
88*cdf0e10cSrcweir		< "Japanese (Apple Macintosh)"						; RTL_TEXTENCODING_APPLE_JAPANESE	; > ;
89*cdf0e10cSrcweir		< "Korean (Apple Macintosh)"					; RTL_TEXTENCODING_APPLE_KOREAN		; > ;
90*cdf0e10cSrcweir		< "Japanese (Windows-932)"							; RTL_TEXTENCODING_MS_932			; > ;
91*cdf0e10cSrcweir		< "Chinese simplified (Windows-936)"			; RTL_TEXTENCODING_MS_936			; > ;
92*cdf0e10cSrcweir		< "Korean (Windows-949)"						; RTL_TEXTENCODING_MS_949			; > ;
93*cdf0e10cSrcweir		< "Chinese traditional (Windows-950)"			; RTL_TEXTENCODING_MS_950			; > ;
94*cdf0e10cSrcweir		< "Japanese (Shift-JIS)"							; RTL_TEXTENCODING_SHIFT_JIS		; > ;
95*cdf0e10cSrcweir		< "Chinese simplified (GB-2312)"				; RTL_TEXTENCODING_GB_2312			; > ;
96*cdf0e10cSrcweir		< "Chinese simplified (GB-18030)"               ; RTL_TEXTENCODING_GB_18030         ; > ;
97*cdf0e10cSrcweir		< "Chinese traditional (GBT-12345)"				; RTL_TEXTENCODING_GBT_12345		; > ;
98*cdf0e10cSrcweir		< "Chinese simplified (GBK/GB-2312-80)"			; RTL_TEXTENCODING_GBK				; > ;
99*cdf0e10cSrcweir		< "Chinese traditional (Big5)"					; RTL_TEXTENCODING_BIG5				; > ;
100*cdf0e10cSrcweir		< "Chinese traditional (BIG5-HKSCS)"            ; RTL_TEXTENCODING_BIG5_HKSCS       ; > ;
101*cdf0e10cSrcweir		< "Japanese (EUC-JP)"								; RTL_TEXTENCODING_EUC_JP			; > ;
102*cdf0e10cSrcweir		< "Chinese simplified (EUC-CN)"					; RTL_TEXTENCODING_EUC_CN			; > ;
103*cdf0e10cSrcweir		< "Chinese traditional (EUC-TW)"                ; RTL_TEXTENCODING_EUC_TW           ; > ;
104*cdf0e10cSrcweir		< "Japanese (ISO-2022-JP)"                         ; RTL_TEXTENCODING_ISO_2022_JP      ; > ;
105*cdf0e10cSrcweir		< "Chinese simplified (ISO-2022-CN)"            ; RTL_TEXTENCODING_ISO_2022_CN      ; > ;
106*cdf0e10cSrcweir		< "Cyrillic (KOI8-R)"								; RTL_TEXTENCODING_KOI8_R			; > ;
107*cdf0e10cSrcweir		< "Unicode (UTF-7)"									; RTL_TEXTENCODING_UTF7				; > ;
108*cdf0e10cSrcweir		< "Unicode (UTF-8)"									; RTL_TEXTENCODING_UTF8				; > ;
109*cdf0e10cSrcweir		< "Eastern Europe (ISO-8859-10)"							; RTL_TEXTENCODING_ISO_8859_10		; > ;
110*cdf0e10cSrcweir		< "Eastern Europe (ISO-8859-13)"							; RTL_TEXTENCODING_ISO_8859_13		; > ;
111*cdf0e10cSrcweir		< "Korean (EUC-KR)"								; RTL_TEXTENCODING_EUC_KR			; > ;
112*cdf0e10cSrcweir		< "Korean (ISO-2022-KR)"                        ; RTL_TEXTENCODING_ISO_2022_KR      ; > ;
113*cdf0e10cSrcweir		< "Korean (Windows-Johab-1361)"		  			; RTL_TEXTENCODING_MS_1361			; > ;
114*cdf0e10cSrcweir		< "Unicode"											; RTL_TEXTENCODING_UCS2				; > ;
115*cdf0e10cSrcweir		< "Thai (ISO-8859-11/TIS-620)"                                  ; RTL_TEXTENCODING_TIS_620          ; > ;
116*cdf0e10cSrcweir		< "Thai (Windows-874)"							    ; RTL_TEXTENCODING_MS_874			; > ;
117*cdf0e10cSrcweir        < "Cyrillic (KOI8-U)"                             ; RTL_TEXTENCODING_KOI8_U           ; > ;
118*cdf0e10cSrcweir        < "Cyrillic (PT154)"                                ; RTL_TEXTENCODING_PT154            ; > ;
119*cdf0e10cSrcweir	};
120*cdf0e10cSrcweir};
121*cdf0e10cSrcweir // ********************************************************************** EOF
122*cdf0e10cSrcweir
123