GoldED+ sources: Initial revision.
This commit is contained in:
commit
5932b8817b
6
File_id.diz
Normal file
6
File_id.diz
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
GoldED+ 1.1.4.3 [source code]
|
||||||
|
-----------------------------
|
||||||
|
GoldED+ is a successor of the
|
||||||
|
wellknown GoldED mail editor.
|
||||||
|
-----------------------------
|
||||||
|
URL: http://asa.i-connect.com
|
63
GNUmakef.def
Normal file
63
GNUmakef.def
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
# -*- makefile -*-
|
||||||
|
|
||||||
|
ifeq ($(findstring EMX, $(PATH)), EMX)
|
||||||
|
CC=gcc
|
||||||
|
AR=ar
|
||||||
|
PLATFORM=emx
|
||||||
|
SHELL=bash
|
||||||
|
EXEEXT=.exe
|
||||||
|
OBJEXT=.o
|
||||||
|
LIBEXT=.a
|
||||||
|
#CC=gcc -Zomf -Zcrtdll
|
||||||
|
#AR=emxomfar
|
||||||
|
#PLATFORM=emx
|
||||||
|
#SHELL=bash
|
||||||
|
#EXEEXT=.exe
|
||||||
|
#OBJEXT=.obj
|
||||||
|
#LIBEXT=.lib
|
||||||
|
CXX=$(CC)
|
||||||
|
else
|
||||||
|
ifneq ($(DJGPP),)
|
||||||
|
CC=gcc
|
||||||
|
CXX=gpp
|
||||||
|
AR=ar
|
||||||
|
PLATFORM=djg
|
||||||
|
SHELL=bash
|
||||||
|
EXEEXT=.exe
|
||||||
|
OBJEXT=.o
|
||||||
|
LIBEXT=.a
|
||||||
|
else
|
||||||
|
ifeq ($(TERM),cygwin)
|
||||||
|
CC=gcc -mno-cygwin
|
||||||
|
CXX=g++ -mno-cygwin
|
||||||
|
AR=ar
|
||||||
|
PLATFORM=cyg
|
||||||
|
SHELL=bash
|
||||||
|
EXEEXT=.exe
|
||||||
|
OBJEXT=.o
|
||||||
|
LIBEXT=.a
|
||||||
|
else
|
||||||
|
CC=egcc
|
||||||
|
CXX=g++
|
||||||
|
AR=ar
|
||||||
|
PLATFORM=lnx
|
||||||
|
EXEEXT=
|
||||||
|
OBJEXT=.o
|
||||||
|
LIBEXT=.a
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
CFLAGS+=-g -funsigned-char $(INCS) -Wall -Wno-sign-compare -pedantic -O2# -fomit-frame-pointer
|
||||||
|
LNKFLAGS+=-g
|
||||||
|
CPPFLAGS+=$(CFLAGS) -fno-exceptions -fno-rtti
|
||||||
|
|
||||||
|
# comment following lines if you dislike ncurses
|
||||||
|
ifeq ($(PLATFORM),lnx)
|
||||||
|
CPPFLAGS+=-D__USE_NCURSES__
|
||||||
|
STDLIBS+=-lncurses
|
||||||
|
endif
|
||||||
|
|
||||||
|
BIN=bin
|
||||||
|
OBJPATH=obj
|
||||||
|
LIBPATH=lib
|
||||||
|
DEPPATH=dep
|
74
GNUmakef.inc
Normal file
74
GNUmakef.inc
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
# -*- makefile -*-
|
||||||
|
|
||||||
|
.PHONY: all clean
|
||||||
|
|
||||||
|
all: $(TARGET)
|
||||||
|
|
||||||
|
include $(TOP)/GNUmakef.def
|
||||||
|
|
||||||
|
FOBJPATH=$(TOP)/$(OBJPATH)/$(PLATFORM)/$(TARGET)
|
||||||
|
FLIBPATH=$(TOP)/$(LIBPATH)/$(PLATFORM)
|
||||||
|
FDEPPATH=$(TOP)/$(DEPPATH)/$(PLATFORM)
|
||||||
|
|
||||||
|
.SUFFIXES: .c .cpp .all .rc
|
||||||
|
|
||||||
|
bld$(PLATFORM).inc: $(TARGET).all
|
||||||
|
@echo making sourcelist
|
||||||
|
@grep -w $(PLATFORM) $< \
|
||||||
|
| sed 's/^\([[:alnum:]_]*\)[ ]*\([[:alnum:]_]*\).*/SOURCES+=\1.\2/g' > $@
|
||||||
|
|
||||||
|
ifeq ($(FDEPPATH)/dep,$(wildcard $(FDEPPATH)/de?))
|
||||||
|
$(FDEPPATH)/$(TARGET)/%.d: %.cpp
|
||||||
|
@echo making depends for $<
|
||||||
|
@$(SHELL) -ec '$(CXX) -c -M $(CPPFLAGS) $< \
|
||||||
|
| sed '\''s;\($*\)\$(OBJEXT)[ :]*;$(subst /,\/,$(FOBJPATH))\/\1\$(OBJEXT) $(subst /,\/,$@): ;g'\'' > $@'
|
||||||
|
|
||||||
|
$(FDEPPATH)/$(TARGET)/%.d: %.c
|
||||||
|
@echo making depends for $<
|
||||||
|
@$(SHELL) -ec '$(CC) -c -M $(CFLAGS) $< \
|
||||||
|
| sed '\''s;\($*\)\$(OBJEXT)[ :]*;$(subst /,\/,$(FOBJPATH))\/\1\$(OBJEXT) $(subst /,\/,$@): ;g'\'' > $@'
|
||||||
|
endif
|
||||||
|
|
||||||
|
$(FOBJPATH)/%$(OBJEXT): %.cpp
|
||||||
|
@echo building $(basename $<)$(OBJEXT)
|
||||||
|
@$(CXX) -c $(CPPFLAGS) -o $@ $<
|
||||||
|
|
||||||
|
$(FOBJPATH)/%$(OBJEXT): %.c
|
||||||
|
@echo building $(basename $<)$(OBJEXT)
|
||||||
|
@$(CC) -c $(CFLAGS) -o $@ $<
|
||||||
|
|
||||||
|
ifeq ($(PLATFORM),cyg)
|
||||||
|
$(FOBJPATH)/%$(OBJEXT): %.rc
|
||||||
|
@echo creating resources
|
||||||
|
@windres -o $@ $<
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(PLATFORM),emx)
|
||||||
|
$(FOBJPATH)/%.res: %.rc
|
||||||
|
@echo creating resources
|
||||||
|
@rc $(subst -I,-i ,$(INCS)) -x1 -r $<
|
||||||
|
endif
|
||||||
|
|
||||||
|
SOURCES=
|
||||||
|
include bld$(PLATFORM).inc
|
||||||
|
ifeq ($(PLATFORM),cyg)
|
||||||
|
OBJS=$(addprefix $(FOBJPATH)/,$(patsubst %.rc,%.o,$(patsubst %.c,%.o,$(patsubst %.cpp,%.o,$(filter %.c %.cpp %.rc,$(SOURCES))))))
|
||||||
|
else
|
||||||
|
ifeq ($(PLATFORM),emx)
|
||||||
|
OBJS=$(addprefix $(FOBJPATH)/,$(patsubst %.rc,%.res,$(patsubst %.c,%.o,$(patsubst %.cpp,%.o,$(filter %.c %.cpp %.rc,$(SOURCES))))))
|
||||||
|
else
|
||||||
|
OBJS=$(addprefix $(FOBJPATH)/,$(patsubst %.c,%.o,$(patsubst %.cpp,%.o,$(filter %.c %.cpp %.rc,$(SOURCES)))))
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
DEPS=$(addprefix $(FDEPPATH)/$(TARGET)/,$(patsubst %.c,%.d,$(patsubst %.cpp,%.d,$(filter %.c %.cpp,$(SOURCES)))))
|
||||||
|
|
||||||
|
clean:
|
||||||
|
@echo cleaning...
|
||||||
|
@rm -f $(OBJS) $(DEPS) bld$(PLATFORM).inc
|
||||||
|
|
||||||
|
ifeq ($(FDEPPATH)/dep,$(wildcard $(FDEPPATH)/de?))
|
||||||
|
ifneq ($(DEPS),)
|
||||||
|
include $(DEPS)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
11
GNUmakef.lib
Normal file
11
GNUmakef.lib
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
# -*- makefile -*-
|
||||||
|
|
||||||
|
.PHONY: $(TARGET)
|
||||||
|
|
||||||
|
$(TARGET): $(FLIBPATH)/lib$(TARGET)$(LIBEXT)
|
||||||
|
|
||||||
|
$(FLIBPATH)/lib$(TARGET)$(LIBEXT): $(OBJS)
|
||||||
|
@echo -n Creating library $(TARGET)...
|
||||||
|
@$(AR) cru $@ $(FOBJPATH)/*$(OBJEXT)
|
||||||
|
@ranlib $@
|
||||||
|
@echo done
|
23
GNUmakef.prg
Normal file
23
GNUmakef.prg
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# -*- makefile -*-
|
||||||
|
|
||||||
|
.PHONY: $(TARGET) $(GLIBS)
|
||||||
|
|
||||||
|
$(TARGET): $(TOP)/$(BIN)/$(SHORTTARGET)$(PLATFORM)$(EXEEXT)
|
||||||
|
|
||||||
|
ifeq ($(PLATFORM),emx)
|
||||||
|
LIBS=$(addprefix -llib,$(GLIBS))
|
||||||
|
else
|
||||||
|
LIBS=$(addprefix -l,$(GLIBS))
|
||||||
|
endif
|
||||||
|
LIBS+=$(STDLIBS)
|
||||||
|
FGLIBS=$(addprefix $(FLIBPATH)/lib, $(addsuffix .a, $(GLIBS)))
|
||||||
|
|
||||||
|
$(TOP)/$(BIN)/$(SHORTTARGET)$(PLATFORM)$(EXEEXT): $(OBJS) $(FGLIBS) $(ADDS)
|
||||||
|
@echo -n Linking $(TARGET)...
|
||||||
|
@$(CXX) $(LNKFLAGS) -o $@ $(FOBJPATH)/*$(OBJEXT) $(ADDS) $(LIBS) -L$(FLIBPATH)
|
||||||
|
@echo done
|
||||||
|
|
||||||
|
$(FGLIBS): $(GLIBS)
|
||||||
|
|
||||||
|
$(GLIBS):
|
||||||
|
@cd $(TOP)/goldlib/$@; $(MAKE); cd `pwd`
|
24
Makefile
Normal file
24
Makefile
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# -*- makefile -*-
|
||||||
|
|
||||||
|
include GNUmakef.def
|
||||||
|
|
||||||
|
LIBS=gall gcfg gmb3 glibc uulib
|
||||||
|
EXECUTABLES=golded3 goldnode rddt
|
||||||
|
|
||||||
|
all:
|
||||||
|
@$(MAKE) dirs
|
||||||
|
@echo -n >$(DEPPATH)/$(PLATFORM)/dep
|
||||||
|
@for i in $(foreach dir,$(LIBS),goldlib/$(dir)); do cd $$i && $(MAKE) && cd ../..; done
|
||||||
|
@for i in $(EXECUTABLES); do cd $$i && $(MAKE) && cd ..; done
|
||||||
|
|
||||||
|
clean:
|
||||||
|
@rm -f $(DEPPATH)/$(PLATFORM)/dep
|
||||||
|
@for i in $(foreach dir,$(LIBS),goldlib/$(dir)); do cd $$i && $(MAKE) clean && cd ../..; done
|
||||||
|
@for i in $(EXECUTABLES); do cd $$i && $(MAKE) clean && cd ..; done
|
||||||
|
|
||||||
|
dirs:
|
||||||
|
@mkdir -p $(BIN) $(LIBPATH)/$(PLATFORM)
|
||||||
|
@mkdir -p $(foreach dir,$(LIBS),$(OBJPATH)/$(PLATFORM)/$(dir))
|
||||||
|
@mkdir -p $(foreach dir,$(EXECUTABLES),$(OBJPATH)/$(PLATFORM)/$(dir))
|
||||||
|
@mkdir -p $(foreach dir,$(LIBS),$(DEPPATH)/$(PLATFORM)/$(dir))
|
||||||
|
@mkdir -p $(foreach dir,$(EXECUTABLES),$(DEPPATH)/$(PLATFORM)/$(dir))
|
161
cfgs/charset/850_850.chs
Normal file
161
cfgs/charset/850_850.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts IBM CP850 to IBM CP850. (no conversion)
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
CP850 ; from set
|
||||||
|
CP850 ; to set
|
||||||
|
;
|
||||||
|
\0 \d128 ; 128 80 latin capital letter c with cedilla
|
||||||
|
\0 \d129 ; 129 81 latin small letter u with diaeresis
|
||||||
|
\0 \d130 ; 130 82 latin small letter e with acute
|
||||||
|
\0 \d131 ; 131 83 latin small letter a with circumflex
|
||||||
|
\0 \d132 ; 132 84 latin small letter a with diaeresis
|
||||||
|
\0 \d133 ; 133 85 latin small letter a with grave
|
||||||
|
\0 \d134 ; 134 86 latin small letter a with ring above
|
||||||
|
\0 \d135 ; 135 87 latin small letter c with cedilla
|
||||||
|
\0 \d136 ; 136 88 latin small letter e with circumflex
|
||||||
|
\0 \d137 ; 137 89 latin small letter e with diaeresis
|
||||||
|
\0 \d138 ; 138 8A latin small letter e with grave
|
||||||
|
\0 \d139 ; 139 8B latin small letter i with diaeresis
|
||||||
|
\0 \d140 ; 140 8C latin small letter i with circumflex
|
||||||
|
\0 \d141 ; 141 8D latin small letter i with grave
|
||||||
|
\0 \d142 ; 142 8E latin capital letter a with diaeresis
|
||||||
|
\0 \d143 ; 143 8F latin capital letter a with ring above
|
||||||
|
\0 \d144 ; 144 90 latin capital letter e with acute
|
||||||
|
\0 \d145 ; 145 91 latin small letter ae
|
||||||
|
\0 \d146 ; 146 92 latin capital letter ae
|
||||||
|
\0 \d147 ; 147 93 latin small letter o with circumflex
|
||||||
|
\0 \d148 ; 148 94 latin small letter o with diaeresis
|
||||||
|
\0 \d149 ; 149 95 latin small letter o with grave
|
||||||
|
\0 \d150 ; 150 96 latin small letter u with circumflex
|
||||||
|
\0 \d151 ; 151 97 latin small letter u with grave
|
||||||
|
\0 \d152 ; 152 98 latin small letter y with diaeresis
|
||||||
|
\0 \d153 ; 153 99 latin capital letter o with diaeresis
|
||||||
|
\0 \d154 ; 154 9A latin capital letter u with diaeresis
|
||||||
|
\0 \d155 ; 155 9B latin small letter o with stroke
|
||||||
|
\0 \d156 ; 156 9C pound sign
|
||||||
|
\0 \d157 ; 157 9D latin capital letter o with stroke
|
||||||
|
\0 \d158 ; 158 9E multiplication sign
|
||||||
|
\0 \d159 ; 159 9F dutch guilder sign (ibm437 159)
|
||||||
|
\0 \d160 ; 160 A0 latin small letter a with acute
|
||||||
|
\0 \d161 ; 161 A1 latin small letter i with acute
|
||||||
|
\0 \d162 ; 162 A2 latin small letter o with acute
|
||||||
|
\0 \d163 ; 163 A3 latin small letter u with acute
|
||||||
|
\0 \d164 ; 164 A4 latin small letter n with tilde
|
||||||
|
\0 \d165 ; 165 A5 latin capital letter n with tilde
|
||||||
|
\0 \d166 ; 166 A6 feminine ordinal indicator
|
||||||
|
\0 \d167 ; 167 A7 masculine ordinal indicator
|
||||||
|
\0 \d168 ; 168 A8 inverted question mark
|
||||||
|
\0 \d169 ; 169 A9 registered sign
|
||||||
|
\0 \d170 ; 170 AA not sign
|
||||||
|
\0 \d171 ; 171 AB vulgar fraction one half
|
||||||
|
\0 \d172 ; 172 AC vulgar fraction one quarter
|
||||||
|
\0 \d173 ; 173 AD inverted exclamation mark
|
||||||
|
\0 \d174 ; 174 AE left-pointing double angle quotation mark
|
||||||
|
\0 \d175 ; 175 AF right-pointing double angle quotation mark
|
||||||
|
\0 \d176 ; 176 B0 light shade
|
||||||
|
\0 \d177 ; 177 B1 medium shade
|
||||||
|
\0 \d178 ; 178 B2 dark shade
|
||||||
|
\0 \d179 ; 179 B3 box drawings light vertical
|
||||||
|
\0 \d180 ; 180 B4 box drawings light vertical and left
|
||||||
|
\0 \d181 ; 181 B5 latin capital letter a with acute
|
||||||
|
\0 \d182 ; 182 B6 latin capital letter a with circumflex
|
||||||
|
\0 \d183 ; 183 B7 latin capital letter a with grave
|
||||||
|
\0 \d184 ; 184 B8 copyright sign
|
||||||
|
\0 \d185 ; 185 B9 box drawings heavy vertical and left
|
||||||
|
\0 \d186 ; 186 BA box drawings heavy vertical
|
||||||
|
\0 \d187 ; 187 BB box drawings heavy down and left
|
||||||
|
\0 \d188 ; 188 BC box drawings heavy up and left
|
||||||
|
\0 \d189 ; 189 BD cent sign
|
||||||
|
\0 \d190 ; 190 BE yen sign
|
||||||
|
\0 \d191 ; 191 BF box drawings light down and left
|
||||||
|
\0 \d192 ; 192 C0 box drawings light up and right
|
||||||
|
\0 \d193 ; 193 C1 box drawings light up and horizontal
|
||||||
|
\0 \d194 ; 194 C2 box drawings light down and horizontal
|
||||||
|
\0 \d195 ; 195 C3 box drawings light vertical and right
|
||||||
|
\0 \d196 ; 196 C4 box drawings light horizontal
|
||||||
|
\0 \d197 ; 197 C5 box drawings light vertical and horizontal
|
||||||
|
\0 \d198 ; 198 C6 latin small letter a with tilde
|
||||||
|
\0 \d199 ; 199 C7 latin capital letter a with tilde
|
||||||
|
\0 \d200 ; 200 C8 box drawings heavy up and right
|
||||||
|
\0 \d201 ; 201 C9 box drawings heavy down and right
|
||||||
|
\0 \d202 ; 202 CA box drawings heavy up and horizontal
|
||||||
|
\0 \d203 ; 203 CB box drawings heavy down and horizontal
|
||||||
|
\0 \d204 ; 204 CC box drawings heavy vertical and right
|
||||||
|
\0 \d205 ; 205 CD box drawings heavy horizontal
|
||||||
|
\0 \d206 ; 206 CE box drawings heavy vertical and horizontal
|
||||||
|
\0 \d207 ; 207 CF currency sign
|
||||||
|
\0 \d208 ; 208 D0 latin small letter eth (icelandic)
|
||||||
|
\0 \d209 ; 209 D1 latin capital letter eth (icelandic)
|
||||||
|
\0 \d210 ; 210 D2 latin capital letter e with circumflex
|
||||||
|
\0 \d211 ; 211 D3 latin capital letter e with diaeresis
|
||||||
|
\0 \d212 ; 212 D4 latin capital letter e with grave
|
||||||
|
\0 \d213 ; 213 D5 latin small letter i dotless
|
||||||
|
\0 \d214 ; 214 D6 latin capital letter i with acute
|
||||||
|
\0 \d215 ; 215 D7 latin capital letter i with circumflex
|
||||||
|
\0 \d216 ; 216 D8 latin capital letter i with diaeresis
|
||||||
|
\0 \d217 ; 217 D9 box drawings light up and left
|
||||||
|
\0 \d218 ; 218 DA box drawings light down and right
|
||||||
|
\0 \d219 ; 219 DB full block
|
||||||
|
\0 \d220 ; 220 DC lower half block
|
||||||
|
\0 \d221 ; 221 DD broken bar
|
||||||
|
\0 \d222 ; 222 DE latin capital letter i with grave
|
||||||
|
\0 \d223 ; 223 DF upper half block
|
||||||
|
\0 \d224 ; 224 E0 latin capital letter o with acute
|
||||||
|
\0 \d225 ; 225 E1 latin small letter sharp s (german)
|
||||||
|
\0 \d226 ; 226 E2 latin capital letter o with circumflex
|
||||||
|
\0 \d227 ; 227 E3 latin capital letter o with grave
|
||||||
|
\0 \d228 ; 228 E4 latin small letter o with tilde
|
||||||
|
\0 \d229 ; 229 E5 latin capital letter o with tilde
|
||||||
|
\0 \d230 ; 230 E6 greek small letter mu
|
||||||
|
\0 \d231 ; 231 E7 latin capital letter thorn (icelandic)
|
||||||
|
\0 \d232 ; 232 E8 latin small letter thorn (icelandic)
|
||||||
|
\0 \d233 ; 233 E9 latin capital letter u with acute
|
||||||
|
\0 \d234 ; 234 EA latin capital letter u with circumflex
|
||||||
|
\0 \d235 ; 235 EB latin capital letter u with grave
|
||||||
|
\0 \d236 ; 236 EC latin small letter y with acute
|
||||||
|
\0 \d237 ; 237 ED latin capital letter y with acute
|
||||||
|
\0 \d238 ; 238 EE em dash
|
||||||
|
\0 \d239 ; 239 EF acute accent
|
||||||
|
\0 \d240 ; 240 F0 soft hyphen
|
||||||
|
\0 \d241 ; 241 F1 plus-minus sign
|
||||||
|
\0 \d242 ; 242 F2 left right double arrow
|
||||||
|
\0 \d243 ; 243 F3 vulgar fraction three quarters
|
||||||
|
\0 \d244 ; 244 F4 pilcrow sign
|
||||||
|
\0 \d245 ; 245 F5 section sign
|
||||||
|
\0 \d246 ; 246 F6 division sign
|
||||||
|
\0 \d247 ; 247 F7 ogonek
|
||||||
|
\0 \d248 ; 248 F8 degree sign
|
||||||
|
\0 \d249 ; 249 F9 diaeresis
|
||||||
|
\0 \d250 ; 250 FA dot above
|
||||||
|
\0 \d251 ; 251 FB superscript one
|
||||||
|
\0 \d252 ; 252 FC superscript three
|
||||||
|
\0 \d253 ; 253 FD superscript two
|
||||||
|
\0 \d254 ; 254 FE black square
|
||||||
|
\0 \d255 ; 255 FF no-break space
|
||||||
|
END
|
161
cfgs/charset/850_asc.chs
Normal file
161
cfgs/charset/850_asc.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts IBM CP850 characters to ASCII.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
CP850 ; from set
|
||||||
|
ASCII ; to set
|
||||||
|
;
|
||||||
|
\0 C ; 128 80 latin capital letter c with cedilla
|
||||||
|
u e ; 129 81 latin small letter u with diaeresis
|
||||||
|
\0 e ; 130 82 latin small letter e with acute
|
||||||
|
\0 a ; 131 83 latin small letter a with circumflex
|
||||||
|
a e ; 132 84 latin small letter a with diaeresis
|
||||||
|
\0 a ; 133 85 latin small letter a with grave
|
||||||
|
a a ; 134 86 latin small letter a with ring above
|
||||||
|
\0 c ; 135 87 latin small letter c with cedilla
|
||||||
|
\0 e ; 136 88 latin small letter e with circumflex
|
||||||
|
e e ; 137 89 latin small letter e with diaeresis
|
||||||
|
\0 e ; 138 8A latin small letter e with grave
|
||||||
|
i e ; 139 8B latin small letter i with diaeresis
|
||||||
|
\0 i ; 140 8C latin small letter i with circumflex
|
||||||
|
\0 i ; 141 8D latin small letter i with grave
|
||||||
|
A e ; 142 8E latin capital letter a with diaeresis
|
||||||
|
A a ; 143 8F latin capital letter a with ring above
|
||||||
|
\0 E ; 144 90 latin capital letter e with acute
|
||||||
|
a e ; 145 91 latin small letter ae
|
||||||
|
A E ; 146 92 latin capital letter ae
|
||||||
|
\0 o ; 147 93 latin small letter o with circumflex
|
||||||
|
o e ; 148 94 latin small letter o with diaeresis
|
||||||
|
\0 o ; 149 95 latin small letter o with grave
|
||||||
|
\0 u ; 150 96 latin small letter u with circumflex
|
||||||
|
\0 u ; 151 97 latin small letter u with grave
|
||||||
|
y e ; 152 98 latin small letter y with diaeresis
|
||||||
|
O e ; 153 99 latin capital letter o with diaeresis
|
||||||
|
U e ; 154 9A latin capital letter u with diaeresis
|
||||||
|
o e ; 155 9B latin small letter o with stroke
|
||||||
|
\0 # ; 156 9C pound sign
|
||||||
|
O e ; 157 9D latin capital letter o with stroke
|
||||||
|
\0 x ; 158 9E multiplication sign
|
||||||
|
F l ; 159 9F dutch guilder sign (ibm437 159)
|
||||||
|
\0 a ; 160 A0 latin small letter a with acute
|
||||||
|
\0 i ; 161 A1 latin small letter i with acute
|
||||||
|
\0 o ; 162 A2 latin small letter o with acute
|
||||||
|
\0 u ; 163 A3 latin small letter u with acute
|
||||||
|
\0 n ; 164 A4 latin small letter n with tilde
|
||||||
|
\0 N ; 165 A5 latin capital letter n with tilde
|
||||||
|
\0 a ; 166 A6 feminine ordinal indicator
|
||||||
|
\0 o ; 167 A7 masculine ordinal indicator
|
||||||
|
\0 ? ; 168 A8 inverted question mark
|
||||||
|
( R ) ; 169 A9 registered sign
|
||||||
|
\0 ! ; 170 AA not sign
|
||||||
|
1 / 2 ; 171 AB vulgar fraction one half
|
||||||
|
1 / 4 ; 172 AC vulgar fraction one quarter
|
||||||
|
\0 1 ; 173 AD inverted exclamation mark
|
||||||
|
< < ; 174 AE left-pointing double angle quotation mark
|
||||||
|
> > ; 175 AF right-pointing double angle quotation mark
|
||||||
|
\0 # ; 176 B0 light shade
|
||||||
|
\0 # ; 177 B1 medium shade
|
||||||
|
\0 # ; 178 B2 dark shade
|
||||||
|
\0 | ; 179 B3 box drawings light vertical
|
||||||
|
\0 | ; 180 B4 box drawings light vertical and left
|
||||||
|
\0 A ; 181 B5 latin capital letter a with acute
|
||||||
|
\0 A ; 182 B6 latin capital letter a with circumflex
|
||||||
|
\0 A ; 183 B7 latin capital letter a with grave
|
||||||
|
( C ) ; 184 B8 copyright sign
|
||||||
|
\0 | ; 185 B9 box drawings heavy vertical and left
|
||||||
|
\0 | ; 186 BA box drawings heavy vertical
|
||||||
|
\0 + ; 187 BB box drawings heavy down and left
|
||||||
|
\0 + ; 188 BC box drawings heavy up and left
|
||||||
|
C t ; 189 BD cent sign
|
||||||
|
Y e ; 190 BE yen sign
|
||||||
|
\0 + ; 191 BF box drawings light down and left
|
||||||
|
\0 + ; 192 C0 box drawings light up and right
|
||||||
|
\0 - ; 193 C1 box drawings light up and horizontal
|
||||||
|
\0 - ; 194 C2 box drawings light down and horizontal
|
||||||
|
\0 | ; 195 C3 box drawings light vertical and right
|
||||||
|
\0 - ; 196 C4 box drawings light horizontal
|
||||||
|
\0 + ; 197 C5 box drawings light vertical and horizontal
|
||||||
|
\0 a ; 198 C6 latin small letter a with tilde
|
||||||
|
\0 A ; 199 C7 latin capital letter a with tilde
|
||||||
|
\0 + ; 200 C8 box drawings heavy up and right
|
||||||
|
\0 + ; 201 C9 box drawings heavy down and right
|
||||||
|
\0 = ; 202 CA box drawings heavy up and horizontal
|
||||||
|
\0 = ; 203 CB box drawings heavy down and horizontal
|
||||||
|
\0 | ; 204 CC box drawings heavy vertical and right
|
||||||
|
\0 = ; 205 CD box drawings heavy horizontal
|
||||||
|
\0 + ; 206 CE box drawings heavy vertical and horizontal
|
||||||
|
C u ; 207 CF currency sign
|
||||||
|
\0 d ; 208 D0 latin small letter eth (icelandic)
|
||||||
|
\0 D ; 209 D1 latin capital letter eth (icelandic)
|
||||||
|
\0 E ; 210 D2 latin capital letter e with circumflex
|
||||||
|
\0 E ; 211 D3 latin capital letter e with diaeresis
|
||||||
|
\0 E ; 212 D4 latin capital letter e with grave
|
||||||
|
\0 i ; 213 D5 latin small letter i dotless
|
||||||
|
\0 I ; 214 D6 latin capital letter i with acute
|
||||||
|
\0 I ; 215 D7 latin capital letter i with circumflex
|
||||||
|
\0 I ; 216 D8 latin capital letter i with diaeresis
|
||||||
|
\0 + ; 217 D9 box drawings light up and left
|
||||||
|
\0 + ; 218 DA box drawings light down and right
|
||||||
|
\0 # ; 219 DB full block
|
||||||
|
\0 - ; 220 DC lower half block
|
||||||
|
\0 | ; 221 DD broken bar
|
||||||
|
\0 I ; 222 DE latin capital letter i with grave
|
||||||
|
\0 - ; 223 DF upper half block
|
||||||
|
\0 O ; 224 E0 latin capital letter o with acute
|
||||||
|
s s ; 225 E1 latin small letter sharp s (german)
|
||||||
|
\0 O ; 226 E2 latin capital letter o with circumflex
|
||||||
|
\0 O ; 227 E3 latin capital letter o with grave
|
||||||
|
\0 o ; 228 E4 latin small letter o with tilde
|
||||||
|
\0 O ; 229 E5 latin capital letter o with tilde
|
||||||
|
m u ; 230 E6 greek small letter mu
|
||||||
|
T h ; 231 E7 latin capital letter thorn (icelandic)
|
||||||
|
t h ; 232 E8 latin small letter thorn (icelandic)
|
||||||
|
\0 U ; 233 E9 latin capital letter u with acute
|
||||||
|
\0 U ; 234 EA latin capital letter u with circumflex
|
||||||
|
\0 U ; 235 EB latin capital letter u with grave
|
||||||
|
\0 y ; 236 EC latin small letter y with acute
|
||||||
|
\0 Y ; 237 ED latin capital letter y with acute
|
||||||
|
\0 - ; 238 EE em dash
|
||||||
|
\0 ' ; 239 EF acute accent
|
||||||
|
\0 - ; 240 F0 soft hyphen
|
||||||
|
+ - ; 241 F1 plus-minus sign
|
||||||
|
= = ; 242 F2 left right double arrow
|
||||||
|
3 / 4 ; 243 F3 vulgar fraction three quarters
|
||||||
|
\0 P ; 244 F4 pilcrow sign
|
||||||
|
\0 S ; 245 F5 section sign
|
||||||
|
\0 / ; 246 F6 division sign
|
||||||
|
\0 , ; 247 F7 ogonek
|
||||||
|
\0 ' ; 248 F8 degree sign
|
||||||
|
\0 " ; 249 F9 diaeresis
|
||||||
|
\0 . ; 250 FA dot above
|
||||||
|
^ 1 ; 251 FB superscript one
|
||||||
|
^ 3 ; 252 FC superscript three
|
||||||
|
^ 2 ; 253 FD superscript two
|
||||||
|
\0 * ; 254 FE black square
|
||||||
|
\0 \d32 ; 255 FF no-break space
|
||||||
|
END
|
289
cfgs/charset/850_iqp.chs
Normal file
289
cfgs/charset/850_iqp.chs
Normal file
@ -0,0 +1,289 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts IBM CP850 characters to ISO 8859-1 q-p characters.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
100000 ; ID number (when >65535, all 255 chars will be translated)
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
CP850 ; from set
|
||||||
|
LATIN1QP ; to set
|
||||||
|
; ; dec hx description
|
||||||
|
\0 \d0 ; 0 00
|
||||||
|
\0 \d1 ; 1 01
|
||||||
|
\0 \d2 ; 2 02
|
||||||
|
\0 \d3 ; 3 03
|
||||||
|
\0 \d4 ; 4 04
|
||||||
|
\0 \d5 ; 5 05
|
||||||
|
\0 \d6 ; 6 06
|
||||||
|
\0 \d7 ; 7 07
|
||||||
|
\0 \d8 ; 8 08
|
||||||
|
\0 \d9 ; 9 09
|
||||||
|
\0 \d10 ; 10 0A
|
||||||
|
\0 \d11 ; 11 0B
|
||||||
|
\0 \d12 ; 12 0C
|
||||||
|
\0 \d13 ; 13 0D
|
||||||
|
\0 \d14 ; 14 0E
|
||||||
|
\0 \d15 ; 15 0F
|
||||||
|
\0 \d16 ; 16 10
|
||||||
|
\0 \d17 ; 17 11
|
||||||
|
\0 \d18 ; 18 12
|
||||||
|
\0 \d19 ; 19 13
|
||||||
|
\0 \d20 ; 20 14
|
||||||
|
\0 \d21 ; 21 15
|
||||||
|
\0 \d22 ; 22 16
|
||||||
|
\0 \d23 ; 23 17
|
||||||
|
\0 \d24 ; 24 18
|
||||||
|
\0 \d25 ; 25 19
|
||||||
|
\0 \d26 ; 26 1A
|
||||||
|
\0 \d27 ; 27 1B
|
||||||
|
\0 \d28 ; 28 1C
|
||||||
|
\0 \d29 ; 29 1D
|
||||||
|
\0 \d30 ; 30 1E
|
||||||
|
\0 \d31 ; 31 1F
|
||||||
|
\0 \d32 ; 32 20
|
||||||
|
\0 \d33 ; 33 21
|
||||||
|
\0 \d34 ; 34 22
|
||||||
|
\0 \d35 ; 35 23
|
||||||
|
\0 \d36 ; 36 24
|
||||||
|
\0 \d37 ; 37 25
|
||||||
|
\0 \d38 ; 38 26
|
||||||
|
\0 \d39 ; 39 27
|
||||||
|
\0 \d40 ; 40 28
|
||||||
|
\0 \d41 ; 41 29
|
||||||
|
\0 \d42 ; 42 2A
|
||||||
|
\0 \d43 ; 43 2B
|
||||||
|
\0 \d44 ; 44 2C
|
||||||
|
\0 \d45 ; 45 2D
|
||||||
|
\0 \d46 ; 46 2E
|
||||||
|
\0 \d47 ; 47 2F
|
||||||
|
\0 \d48 ; 48 30
|
||||||
|
\0 \d49 ; 49 31
|
||||||
|
\0 \d50 ; 50 32
|
||||||
|
\0 \d51 ; 51 33
|
||||||
|
\0 \d52 ; 52 34
|
||||||
|
\0 \d53 ; 53 35
|
||||||
|
\0 \d54 ; 54 36
|
||||||
|
\0 \d55 ; 55 37
|
||||||
|
\0 \d56 ; 56 38
|
||||||
|
\0 \d57 ; 57 39
|
||||||
|
\0 \d58 ; 58 3A
|
||||||
|
\0 \d59 ; 59 3B
|
||||||
|
\0 \d60 ; 60 3C
|
||||||
|
= 3 D ; 61 3D
|
||||||
|
\0 \d62 ; 62 3E
|
||||||
|
\0 \d63 ; 63 3F
|
||||||
|
\0 \d64 ; 64 40
|
||||||
|
\0 \d65 ; 65 41
|
||||||
|
\0 \d66 ; 66 42
|
||||||
|
\0 \d67 ; 67 43
|
||||||
|
\0 \d68 ; 68 44
|
||||||
|
\0 \d69 ; 69 45
|
||||||
|
\0 \d70 ; 70 46
|
||||||
|
\0 \d71 ; 71 47
|
||||||
|
\0 \d72 ; 72 48
|
||||||
|
\0 \d73 ; 73 49
|
||||||
|
\0 \d74 ; 74 4A
|
||||||
|
\0 \d75 ; 75 4B
|
||||||
|
\0 \d76 ; 76 4C
|
||||||
|
\0 \d77 ; 77 4D
|
||||||
|
\0 \d78 ; 78 4E
|
||||||
|
\0 \d79 ; 79 4F
|
||||||
|
\0 \d80 ; 80 50
|
||||||
|
\0 \d81 ; 81 51
|
||||||
|
\0 \d82 ; 82 52
|
||||||
|
\0 \d83 ; 83 53
|
||||||
|
\0 \d84 ; 84 54
|
||||||
|
\0 \d85 ; 85 55
|
||||||
|
\0 \d86 ; 86 56
|
||||||
|
\0 \d87 ; 87 57
|
||||||
|
\0 \d88 ; 88 58
|
||||||
|
\0 \d89 ; 89 59
|
||||||
|
\0 \d90 ; 90 5A
|
||||||
|
\0 \d91 ; 91 5B
|
||||||
|
\0 \d92 ; 92 5C
|
||||||
|
\0 \d93 ; 93 5D
|
||||||
|
\0 \d94 ; 94 5E
|
||||||
|
\0 \d95 ; 95 5F
|
||||||
|
\0 \d96 ; 96 60
|
||||||
|
\0 \d97 ; 97 61
|
||||||
|
\0 \d98 ; 98 62
|
||||||
|
\0 \d99 ; 99 63
|
||||||
|
\0 \d100 ; 100 64
|
||||||
|
\0 \d101 ; 101 65
|
||||||
|
\0 \d102 ; 102 66
|
||||||
|
\0 \d103 ; 103 67
|
||||||
|
\0 \d104 ; 104 68
|
||||||
|
\0 \d105 ; 105 69
|
||||||
|
\0 \d106 ; 106 6A
|
||||||
|
\0 \d107 ; 107 6B
|
||||||
|
\0 \d108 ; 108 6C
|
||||||
|
\0 \d109 ; 109 6D
|
||||||
|
\0 \d110 ; 110 6E
|
||||||
|
\0 \d111 ; 111 6F
|
||||||
|
\0 \d112 ; 112 70
|
||||||
|
\0 \d113 ; 113 71
|
||||||
|
\0 \d114 ; 114 72
|
||||||
|
\0 \d115 ; 115 73
|
||||||
|
\0 \d116 ; 116 74
|
||||||
|
\0 \d117 ; 117 75
|
||||||
|
\0 \d118 ; 118 76
|
||||||
|
\0 \d119 ; 119 77
|
||||||
|
\0 \d120 ; 120 78
|
||||||
|
\0 \d121 ; 121 79
|
||||||
|
\0 \d122 ; 122 7A
|
||||||
|
\0 \d123 ; 123 7B
|
||||||
|
\0 \d124 ; 124 7C
|
||||||
|
\0 \d125 ; 125 7D
|
||||||
|
\0 \d126 ; 126 7E
|
||||||
|
\0 \d127 ; 127 7F
|
||||||
|
= C 7 ; 128 80 latin capital letter c with cedilla
|
||||||
|
= F C ; 129 81 latin small letter u with diaeresis
|
||||||
|
= E 9 ; 130 82 latin small letter e with acute
|
||||||
|
= E 2 ; 131 83 latin small letter a with circumflex
|
||||||
|
= E 4 ; 132 84 latin small letter a with diaeresis
|
||||||
|
= E 0 ; 133 85 latin small letter a with grave
|
||||||
|
= E 5 ; 134 86 latin small letter a with ring above
|
||||||
|
= E 7 ; 135 87 latin small letter c with cedilla
|
||||||
|
= E A ; 136 88 latin small letter e with circumflex
|
||||||
|
= E B ; 137 89 latin small letter e with diaeresis
|
||||||
|
= E 8 ; 138 8A latin small letter e with grave
|
||||||
|
= E F ; 139 8B latin small letter i with diaeresis
|
||||||
|
= E E ; 140 8C latin small letter i with circumflex
|
||||||
|
= E C ; 141 8D latin small letter i with grave
|
||||||
|
= C 4 ; 142 8E latin capital letter a with diaeresis
|
||||||
|
= C 5 ; 143 8F latin capital letter a with ring above
|
||||||
|
= C 9 ; 144 90 latin capital letter e with acute
|
||||||
|
= E 6 ; 145 91 latin small letter ae
|
||||||
|
= C 6 ; 146 92 latin capital letter ae
|
||||||
|
= F 4 ; 147 93 latin small letter o with circumflex
|
||||||
|
= F 6 ; 148 94 latin small letter o with diaeresis
|
||||||
|
= F 3 ; 149 95 latin small letter o with grave
|
||||||
|
= D B ; 150 96 latin small letter u with circumflex
|
||||||
|
= D 9 ; 151 97 latin small letter u with grave
|
||||||
|
= F F ; 152 98 latin small letter y with diaeresis
|
||||||
|
= D 6 ; 153 99 latin capital letter o with diaeresis
|
||||||
|
= D C ; 154 9A latin capital letter u with diaeresis
|
||||||
|
= F 8 ; 155 9B latin small letter o with stroke
|
||||||
|
= A 3 ; 156 9C pound sign
|
||||||
|
= D 8 ; 157 9D latin capital letter o with stroke
|
||||||
|
= D 7 ; 158 9E multiplication sign
|
||||||
|
F l ; 159 9F dutch guilder sign (ibm437 159)
|
||||||
|
= E 1 ; 160 A0 latin small letter a with acute
|
||||||
|
= C C ; 161 A1 latin small letter i with acute
|
||||||
|
= F 2 ; 162 A2 latin small letter o with acute
|
||||||
|
= F 9 ; 163 A3 latin small letter u with acute
|
||||||
|
= F 1 ; 164 A4 latin small letter n with tilde
|
||||||
|
= D 1 ; 165 A5 latin capital letter n with tilde
|
||||||
|
= A A ; 166 A6 feminine ordinal indicator
|
||||||
|
= B A ; 167 A7 masculine ordinal indicator
|
||||||
|
= B F ; 168 A8 inverted question mark
|
||||||
|
= A E ; 169 A9 registered sign
|
||||||
|
= A C ; 170 AA not sign
|
||||||
|
= B D ; 171 AB vulgar fraction one half
|
||||||
|
= B C ; 172 AC vulgar fraction one quarter
|
||||||
|
= A 1 ; 173 AD inverted exclamation mark
|
||||||
|
= A B ; 174 AE left-pointing double angle quotation mark
|
||||||
|
= B B ; 175 AF right-pointing double angle quotation mark
|
||||||
|
\0 # ; 176 B0 light shade
|
||||||
|
\0 # ; 177 B1 medium shade
|
||||||
|
\0 # ; 178 B2 dark shade
|
||||||
|
\0 | ; 179 B3 box drawings light vertical
|
||||||
|
\0 | ; 180 B4 box drawings light vertical and left
|
||||||
|
= C 1 ; 181 B5 latin capital letter a with acute
|
||||||
|
= C 2 ; 182 B6 latin capital letter a with circumflex
|
||||||
|
= C 0 ; 183 B7 latin capital letter a with grave
|
||||||
|
= A 9 ; 184 B8 copyright sign
|
||||||
|
\0 | ; 185 B9 box drawings heavy vertical and left
|
||||||
|
\0 | ; 186 BA box drawings heavy vertical
|
||||||
|
\0 + ; 187 BB box drawings heavy down and left
|
||||||
|
\0 + ; 188 BC box drawings heavy up and left
|
||||||
|
= A 2 ; 189 BD cent sign
|
||||||
|
= A E ; 190 BE yen sign
|
||||||
|
\0 + ; 191 BF box drawings light down and left
|
||||||
|
\0 + ; 192 C0 box drawings light up and right
|
||||||
|
\0 - ; 193 C1 box drawings light up and horizontal
|
||||||
|
\0 - ; 194 C2 box drawings light down and horizontal
|
||||||
|
\0 | ; 195 C3 box drawings light vertical and right
|
||||||
|
\0 - ; 196 C4 box drawings light horizontal
|
||||||
|
\0 + ; 197 C5 box drawings light vertical and horizontal
|
||||||
|
= E 3 ; 198 C6 latin small letter a with tilde
|
||||||
|
= C 3 ; 199 C7 latin capital letter a with tilde
|
||||||
|
\0 + ; 200 C8 box drawings heavy up and right
|
||||||
|
\0 + ; 201 C9 box drawings heavy down and right
|
||||||
|
\0 = ; 202 CA box drawings heavy up and horizontal
|
||||||
|
\0 = ; 203 CB box drawings heavy down and horizontal
|
||||||
|
\0 | ; 204 CC box drawings heavy vertical and right
|
||||||
|
\0 = ; 205 CD box drawings heavy horizontal
|
||||||
|
\0 + ; 206 CE box drawings heavy vertical and horizontal
|
||||||
|
= A 4 ; 207 CF currency sign
|
||||||
|
= F 0 ; 208 D0 latin small letter eth (icelandic)
|
||||||
|
= D 0 ; 209 D1 latin capital letter eth (icelandic)
|
||||||
|
= C A ; 210 D2 latin capital letter e with circumflex
|
||||||
|
= C B ; 211 D3 latin capital letter e with diaeresis
|
||||||
|
= D 4 ; 212 D4 latin capital letter e with grave
|
||||||
|
\0 i ; 213 D5 latin small letter i dotless
|
||||||
|
= C D ; 214 D6 latin capital letter i with acute
|
||||||
|
= C E ; 215 D7 latin capital letter i with circumflex
|
||||||
|
= C F ; 216 D8 latin capital letter i with diaeresis
|
||||||
|
\0 + ; 217 D9 box drawings light up and left
|
||||||
|
\0 + ; 218 DA box drawings light down and right
|
||||||
|
\0 # ; 219 DB full block
|
||||||
|
\0 # ; 220 DC lower half block
|
||||||
|
= A 6 ; 221 DD broken bar
|
||||||
|
= C C ; 222 DE latin capital letter i with grave
|
||||||
|
\0 # ; 223 DF upper half block
|
||||||
|
= D 3 ; 224 E0 latin capital letter o with acute
|
||||||
|
= D F ; 225 E1 latin small letter sharp s (german)
|
||||||
|
= D 4 ; 226 E2 latin capital letter o with circumflex
|
||||||
|
= D 2 ; 227 E3 latin capital letter o with grave
|
||||||
|
= F 5 ; 228 E4 latin small letter o with tilde
|
||||||
|
= D 5 ; 229 E5 latin capital letter o with tilde
|
||||||
|
= B 5 ; 230 E6 greek small letter mu
|
||||||
|
= D E ; 231 E7 latin capital letter thorn (icelandic)
|
||||||
|
= F E ; 232 E8 latin small letter thorn (icelandic)
|
||||||
|
= D A ; 233 E9 latin capital letter u with acute
|
||||||
|
= D B ; 234 EA latin capital letter u with circumflex
|
||||||
|
= D 9 ; 235 EB latin capital letter u with grave
|
||||||
|
= F D ; 236 EC latin small letter y with acute
|
||||||
|
= D D ; 237 ED latin capital letter y with acute
|
||||||
|
= A F ; 238 EE em dash
|
||||||
|
= B 4 ; 239 EF acute accent
|
||||||
|
= A D ; 240 F0 soft hyphen
|
||||||
|
= B 1 ; 241 F1 plus-minus sign
|
||||||
|
= = ; 242 F2 left right double arrow
|
||||||
|
= B E ; 243 F3 vulgar fraction three quarters
|
||||||
|
= B 6 ; 244 F4 pilcrow sign
|
||||||
|
= A 7 ; 245 F5 section sign
|
||||||
|
= F 7 ; 246 F6 division sign
|
||||||
|
= B 8 ; 247 F7 ogonek
|
||||||
|
= B 0 ; 248 F8 degree sign
|
||||||
|
= A 8 ; 249 F9 diaeresis
|
||||||
|
\0 . ; 250 FA dot above
|
||||||
|
= B 9 ; 251 FB superscript one
|
||||||
|
= B 3 ; 252 FC superscript three
|
||||||
|
= B 2 ; 253 FD superscript two
|
||||||
|
= B 7 ; 254 FE black square
|
||||||
|
= A 0 ; 255 FF no-break space
|
||||||
|
END
|
161
cfgs/charset/850_iso.chs
Normal file
161
cfgs/charset/850_iso.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts IBM CP850 characters to ISO 8859-1 characters.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
CP850 ; from set
|
||||||
|
LATIN-1 ; to set
|
||||||
|
; ; dec hx description
|
||||||
|
\0 \xC7 ; 128 80 latin capital letter c with cedilla
|
||||||
|
\0 \xFC ; 129 81 latin small letter u with diaeresis
|
||||||
|
\0 \xE9 ; 130 82 latin small letter e with acute
|
||||||
|
\0 \xE2 ; 131 83 latin small letter a with circumflex
|
||||||
|
\0 \xE4 ; 132 84 latin small letter a with diaeresis
|
||||||
|
\0 \xE0 ; 133 85 latin small letter a with grave
|
||||||
|
\0 \xE5 ; 134 86 latin small letter a with ring above
|
||||||
|
\0 \xE7 ; 135 87 latin small letter c with cedilla
|
||||||
|
\0 \xEA ; 136 88 latin small letter e with circumflex
|
||||||
|
\0 \xEB ; 137 89 latin small letter e with diaeresis
|
||||||
|
\0 \xE8 ; 138 8A latin small letter e with grave
|
||||||
|
\0 \xEF ; 139 8B latin small letter i with diaeresis
|
||||||
|
\0 \xEE ; 140 8C latin small letter i with circumflex
|
||||||
|
\0 \xEC ; 141 8D latin small letter i with grave
|
||||||
|
\0 \xC4 ; 142 8E latin capital letter a with diaeresis
|
||||||
|
\0 \xC5 ; 143 8F latin capital letter a with ring above
|
||||||
|
\0 \xC9 ; 144 90 latin capital letter e with acute
|
||||||
|
\0 \xE6 ; 145 91 latin small letter ae
|
||||||
|
\0 \xC6 ; 146 92 latin capital letter ae
|
||||||
|
\0 \xF4 ; 147 93 latin small letter o with circumflex
|
||||||
|
\0 \xF6 ; 148 94 latin small letter o with diaeresis
|
||||||
|
\0 \xF3 ; 149 95 latin small letter o with grave
|
||||||
|
\0 \xDB ; 150 96 latin small letter u with circumflex
|
||||||
|
\0 \xD9 ; 151 97 latin small letter u with grave
|
||||||
|
\0 \xFF ; 152 98 latin small letter y with diaeresis
|
||||||
|
\0 \xD6 ; 153 99 latin capital letter o with diaeresis
|
||||||
|
\0 \xDC ; 154 9A latin capital letter u with diaeresis
|
||||||
|
\0 \xF8 ; 155 9B latin small letter o with stroke
|
||||||
|
\0 \xA3 ; 156 9C pound sign
|
||||||
|
\0 \xD8 ; 157 9D latin capital letter o with stroke
|
||||||
|
\0 \xD7 ; 158 9E multiplication sign
|
||||||
|
F l ; 159 9F dutch guilder sign (ibm437 159)
|
||||||
|
\0 \xE1 ; 160 A0 latin small letter a with acute
|
||||||
|
\0 \xCC ; 161 A1 latin small letter i with acute
|
||||||
|
\0 \xF2 ; 162 A2 latin small letter o with acute
|
||||||
|
\0 \xF9 ; 163 A3 latin small letter u with acute
|
||||||
|
\0 \xF1 ; 164 A4 latin small letter n with tilde
|
||||||
|
\0 \xD1 ; 165 A5 latin capital letter n with tilde
|
||||||
|
\0 \xAA ; 166 A6 feminine ordinal indicator
|
||||||
|
\0 \xBA ; 167 A7 masculine ordinal indicator
|
||||||
|
\0 \xBF ; 168 A8 inverted question mark
|
||||||
|
\0 \xAE ; 169 A9 registered sign
|
||||||
|
\0 \xAC ; 170 AA not sign
|
||||||
|
\0 \xBD ; 171 AB vulgar fraction one half
|
||||||
|
\0 \xBC ; 172 AC vulgar fraction one quarter
|
||||||
|
\0 \xA1 ; 173 AD inverted exclamation mark
|
||||||
|
\0 \xAB ; 174 AE left-pointing double angle quotation mark
|
||||||
|
\0 \xBB ; 175 AF right-pointing double angle quotation mark
|
||||||
|
\0 # ; 176 B0 light shade
|
||||||
|
\0 # ; 177 B1 medium shade
|
||||||
|
\0 # ; 178 B2 dark shade
|
||||||
|
\0 | ; 179 B3 box drawings light vertical
|
||||||
|
\0 | ; 180 B4 box drawings light vertical and left
|
||||||
|
\0 \xC1 ; 181 B5 latin capital letter a with acute
|
||||||
|
\0 \xC2 ; 182 B6 latin capital letter a with circumflex
|
||||||
|
\0 \xC0 ; 183 B7 latin capital letter a with grave
|
||||||
|
\0 \xA9 ; 184 B8 copyright sign
|
||||||
|
\0 | ; 185 B9 box drawings heavy vertical and left
|
||||||
|
\0 | ; 186 BA box drawings heavy vertical
|
||||||
|
\0 + ; 187 BB box drawings heavy down and left
|
||||||
|
\0 + ; 188 BC box drawings heavy up and left
|
||||||
|
\0 \xA2 ; 189 BD cent sign
|
||||||
|
\0 \xAE ; 190 BE yen sign
|
||||||
|
\0 + ; 191 BF box drawings light down and left
|
||||||
|
\0 + ; 192 C0 box drawings light up and right
|
||||||
|
\0 - ; 193 C1 box drawings light up and horizontal
|
||||||
|
\0 - ; 194 C2 box drawings light down and horizontal
|
||||||
|
\0 | ; 195 C3 box drawings light vertical and right
|
||||||
|
\0 - ; 196 C4 box drawings light horizontal
|
||||||
|
\0 + ; 197 C5 box drawings light vertical and horizontal
|
||||||
|
\0 \xE3 ; 198 C6 latin small letter a with tilde
|
||||||
|
\0 \xC3 ; 199 C7 latin capital letter a with tilde
|
||||||
|
\0 + ; 200 C8 box drawings heavy up and right
|
||||||
|
\0 + ; 201 C9 box drawings heavy down and right
|
||||||
|
\0 = ; 202 CA box drawings heavy up and horizontal
|
||||||
|
\0 = ; 203 CB box drawings heavy down and horizontal
|
||||||
|
\0 | ; 204 CC box drawings heavy vertical and right
|
||||||
|
\0 = ; 205 CD box drawings heavy horizontal
|
||||||
|
\0 + ; 206 CE box drawings heavy vertical and horizontal
|
||||||
|
\0 \xA4 ; 207 CF currency sign
|
||||||
|
\0 \xF0 ; 208 D0 latin small letter eth (icelandic)
|
||||||
|
\0 \xD0 ; 209 D1 latin capital letter eth (icelandic)
|
||||||
|
\0 \xCA ; 210 D2 latin capital letter e with circumflex
|
||||||
|
\0 \xCB ; 211 D3 latin capital letter e with diaeresis
|
||||||
|
\0 \xD4 ; 212 D4 latin capital letter e with grave
|
||||||
|
\0 i ; 213 D5 latin small letter i dotless
|
||||||
|
\0 \xCD ; 214 D6 latin capital letter i with acute
|
||||||
|
\0 \xCE ; 215 D7 latin capital letter i with circumflex
|
||||||
|
\0 \xCF ; 216 D8 latin capital letter i with diaeresis
|
||||||
|
\0 + ; 217 D9 box drawings light up and left
|
||||||
|
\0 + ; 218 DA box drawings light down and right
|
||||||
|
\0 # ; 219 DB full block
|
||||||
|
\0 # ; 220 DC lower half block
|
||||||
|
\0 \xA6 ; 221 DD broken bar
|
||||||
|
\0 \xCC ; 222 DE latin capital letter i with grave
|
||||||
|
\0 # ; 223 DF upper half block
|
||||||
|
\0 \xD3 ; 224 E0 latin capital letter o with acute
|
||||||
|
\0 \xDF ; 225 E1 latin small letter sharp s (german)
|
||||||
|
\0 \xD4 ; 226 E2 latin capital letter o with circumflex
|
||||||
|
\0 \xD2 ; 227 E3 latin capital letter o with grave
|
||||||
|
\0 \xF5 ; 228 E4 latin small letter o with tilde
|
||||||
|
\0 \xD5 ; 229 E5 latin capital letter o with tilde
|
||||||
|
\0 \xB5 ; 230 E6 greek small letter mu
|
||||||
|
\0 \xDE ; 231 E7 latin capital letter thorn (icelandic)
|
||||||
|
\0 \xFE ; 232 E8 latin small letter thorn (icelandic)
|
||||||
|
\0 \xDA ; 233 E9 latin capital letter u with acute
|
||||||
|
\0 \xDB ; 234 EA latin capital letter u with circumflex
|
||||||
|
\0 \xD9 ; 235 EB latin capital letter u with grave
|
||||||
|
\0 \xFD ; 236 EC latin small letter y with acute
|
||||||
|
\0 \xDD ; 237 ED latin capital letter y with acute
|
||||||
|
\0 \xAF ; 238 EE em dash
|
||||||
|
\0 \xB4 ; 239 EF acute accent
|
||||||
|
\0 \xAD ; 240 F0 soft hyphen
|
||||||
|
\0 \xB1 ; 241 F1 plus-minus sign
|
||||||
|
= = ; 242 F2 left right double arrow
|
||||||
|
\0 \xBE ; 243 F3 vulgar fraction three quarters
|
||||||
|
\0 \xB6 ; 244 F4 pilcrow sign
|
||||||
|
\0 \xA7 ; 245 F5 section sign
|
||||||
|
\0 \xF7 ; 246 F6 division sign
|
||||||
|
\0 \xB8 ; 247 F7 ogonek
|
||||||
|
\0 \xB0 ; 248 F8 degree sign
|
||||||
|
\0 \xA8 ; 249 F9 diaeresis
|
||||||
|
\0 . ; 250 FA dot above
|
||||||
|
\0 \xB9 ; 251 FB superscript one
|
||||||
|
\0 \xB3 ; 252 FC superscript three
|
||||||
|
\0 \xB2 ; 253 FD superscript two
|
||||||
|
\0 \xB7 ; 254 FE black square
|
||||||
|
\0 \xA0 ; 255 FF no-break space
|
||||||
|
END
|
162
cfgs/charset/can_asc.chs
Normal file
162
cfgs/charset/can_asc.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the Canadian set to ASCII.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
CANADIAN ; from set
|
||||||
|
ASCII ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 # ; pound / number
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 a ; at -> a grave
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 a ; bracket left -> a circumflex
|
||||||
|
\0 c ; backslash -> c cedilla
|
||||||
|
\0 e ; bracket right -> e circumflex
|
||||||
|
\0 i ; circum -> i circumflex
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 o ; quote left -> o circumflex
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 e ; brace left -> e acute
|
||||||
|
\0 u ; bar -> u grave
|
||||||
|
\0 e ; brace right -> e grave
|
||||||
|
\0 u ; tilde -> u circumflex
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/can_ibm.chs
Normal file
162
cfgs/charset/can_ibm.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the Canadian set to IBMPC.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
CANADIAN ; from set
|
||||||
|
IBMPC ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 # ; pound / number
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 \x85 ; at -> a grave
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 \x83 ; bracket left -> a circumflex
|
||||||
|
\0 \x87 ; backslash -> c cedilla
|
||||||
|
\0 \x88 ; bracket right -> e circumflex
|
||||||
|
\0 \x8C ; circum -> i circumflex
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 \x93 ; quote left -> o circumflex
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 \x82 ; brace left -> e acute
|
||||||
|
\0 \x97 ; bar -> u grave
|
||||||
|
\0 \x8A ; brace right -> e grave
|
||||||
|
\0 \x96 ; tilde -> u circumflex
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
70
cfgs/charset/cmp_ibm.esc
Normal file
70
cfgs/charset/cmp_ibm.esc
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
; --------------------------------------------------------------------
|
||||||
|
; Escaped Characters Table for GoldED 2.30.
|
||||||
|
; Based on IBM Code Page 437 with additions for CP850 and 865.
|
||||||
|
; --------------------------------------------------------------------
|
||||||
|
; Composed Characters Table, Andre van de Wijdeven (2:500/131).
|
||||||
|
; --------------------------------------------------------------------
|
||||||
|
IBMPC ; Map codes to charset.
|
||||||
|
; --------------------------------------------------------------------
|
||||||
|
!! \d173 ; Inverted Exclamation Mark
|
||||||
|
'2 \d171 ; Half
|
||||||
|
'4 \d172 ; Quarter
|
||||||
|
+- \d241 ; Plusminus
|
||||||
|
,C \d128 ; C Cedilla
|
||||||
|
,c \d135 ; c Cedilla
|
||||||
|
<< \d174 ; Left Double Guillemet
|
||||||
|
<= \d243 ; Smaller equals
|
||||||
|
== \d240 ; Equivalence
|
||||||
|
>= \d242 ; Greater equals
|
||||||
|
>> \d175 ; Right Double Guillemet
|
||||||
|
?? \d168 ; Inverted Question Mark
|
||||||
|
A" \d142 ; A Umlaut
|
||||||
|
A* \d143 ; A Ring
|
||||||
|
AA \d143 ; A Ring (Nordic digraph version)
|
||||||
|
AE \d146 ; AE Digraph
|
||||||
|
Ct \d155 ; Dollarcent [CP437]
|
||||||
|
E' \d144 ; E Acute
|
||||||
|
Fl \d159 ; Florin (Guilder)
|
||||||
|
N~ \d165 ; N Tilde
|
||||||
|
O" \d153 ; O Umlaut
|
||||||
|
O/ \d157 ; O Slash [CP850,865]
|
||||||
|
OE \d157 ; OE Digraph (O Slash) [CP850,865]
|
||||||
|
Pd \d156 ; Pound Sterling
|
||||||
|
Pt \d158 ; Pesetas
|
||||||
|
U" \d154 ; U Umlaut
|
||||||
|
Yn \d157 ; Yen [CP437]
|
||||||
|
^2 \d253 ; To the second power
|
||||||
|
^n \d252 ; To the n'th power
|
||||||
|
a" \d132 ; a Umlaut
|
||||||
|
a' \d160 ; a Acute
|
||||||
|
a* \d134 ; a Ring
|
||||||
|
a^ \d131 ; a Caret
|
||||||
|
a_ \d166 ; Feminine Spanish Ordinal
|
||||||
|
a` \d133 ; a Grave
|
||||||
|
aa \d134 ; a Ring (Nordic digraph version)
|
||||||
|
ae \d145 ; ae Digraph
|
||||||
|
e" \d137 ; e Umlaut
|
||||||
|
e' \d130 ; e Acute
|
||||||
|
e^ \d136 ; e Caret
|
||||||
|
e` \d138 ; e Grave
|
||||||
|
i" \d139 ; i Umlaut
|
||||||
|
i' \d161 ; i Acute
|
||||||
|
i^ \d140 ; i Caret
|
||||||
|
i` \d141 ; i Grave
|
||||||
|
n~ \d164 ; n Tilde
|
||||||
|
o" \d148 ; o Umlaut
|
||||||
|
o' \d162 ; o Acute
|
||||||
|
o/ \d155 ; o Slash [CP850,865]
|
||||||
|
o^ \d147 ; o Caret
|
||||||
|
o_ \d167 ; Masculine Spanish Ordinal
|
||||||
|
o` \d149 ; o Grave
|
||||||
|
oe \d155 ; oe Digraph (o Slash) [CP850,865]
|
||||||
|
pi \d227 ; Pi (math symbol)
|
||||||
|
ss \d225 ; German double s (or Beta)
|
||||||
|
u" \d129 ; u Umlaut
|
||||||
|
u' \d163 ; u Acute
|
||||||
|
u^ \d150 ; u Caret
|
||||||
|
u` \d151 ; u Grave
|
||||||
|
y" \d152 ; dotted y
|
||||||
|
~= \d247 ; approximate equivalence
|
||||||
|
; --------------------------------------------------------------------
|
162
cfgs/charset/dut_asc.chs
Normal file
162
cfgs/charset/dut_asc.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the Dutch set to ASCII.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
DUTCH ; from set
|
||||||
|
ASCII ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 # ; pound / number -> pound sterling
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\d1 ? ; at -> 3/4
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 y ; bracket left -> y dieresis
|
||||||
|
. 5 ; backslash -> 1/2
|
||||||
|
\0 | ; bracket right -> |
|
||||||
|
\0 ^ ; circum
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 ` ; quote left
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\d1 ? ; brace left -> 1/4
|
||||||
|
f l ; bar -> florin
|
||||||
|
\d1 ? ; brace right -> dieresis
|
||||||
|
\0 ` ; tilde -> grave
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/dut_ibm.chs
Normal file
162
cfgs/charset/dut_ibm.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the Dutch set to IBMPC.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
DUTCH ; from set
|
||||||
|
IBMPC ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 \x9C ; pound / number -> pound sterling
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\d1 ? ; at -> 3/4
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 \x98 ; bracket left -> y dieresis
|
||||||
|
\0 \xAB ; backslash -> 1/2
|
||||||
|
\0 | ; bracket right -> |
|
||||||
|
\0 ^ ; circum
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 ` ; quote left
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 \xAC ; brace left -> 1/4
|
||||||
|
\0 \x9F ; bar -> florin
|
||||||
|
\d1 ? ; brace right -> dieresis
|
||||||
|
\0 ` ; tilde -> grave
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/fin_asc.chs
Normal file
162
cfgs/charset/fin_asc.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the Finnish set to ASCII.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
FINNISH ; from set
|
||||||
|
ASCII ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 # ; pound / number
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 @ ; at
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 A ; bracket left -> A dieresis
|
||||||
|
\0 O ; backslash -> O dieresis
|
||||||
|
\0 A ; bracket right -> A ring
|
||||||
|
\0 U ; circum -> U dieresis
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 e ; quote left -> e acute
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 a ; brace left -> a dieresis
|
||||||
|
\0 o ; bar -> o dieresis
|
||||||
|
\0 a ; brace right -> a ring
|
||||||
|
\0 u ; tilde -> u dieresis
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/fin_ibm.chs
Normal file
162
cfgs/charset/fin_ibm.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the Finnish set to IBMPC.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
FINNISH ; from set
|
||||||
|
IBMPC ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 # ; pound / number
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 @ ; at
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 \x8E ; bracket left -> A dieresis
|
||||||
|
\0 \x99 ; backslash -> O dieresis
|
||||||
|
\0 \x8F ; bracket right -> A ring
|
||||||
|
\0 \x9A ; circum -> U dieresis
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 \x82 ; quote left -> e acute
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 \x84 ; brace left -> a dieresis
|
||||||
|
\0 \x94 ; bar -> o dieresis
|
||||||
|
\0 \x86 ; brace right -> a ring
|
||||||
|
\0 \x81 ; tilde -> u dieresis
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/frn_asc.chs
Normal file
162
cfgs/charset/frn_asc.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the French set to ASCII.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
FRENCH ; from set
|
||||||
|
ASCII ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 # ; pound / number -> pound sterling
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 a ; at -> a grave
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 o ; bracket left -> ring / degree
|
||||||
|
\0 c ; backslash -> c cedilla
|
||||||
|
\0 S ; bracket right -> section
|
||||||
|
\0 ^ ; circum
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 ` ; quote left
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 e ; brace left -> e acute
|
||||||
|
\0 u ; bar -> u grave
|
||||||
|
\0 e ; brace right -> e grave
|
||||||
|
\d1 ? ; tilde -> dieresis
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/frn_ibm.chs
Normal file
162
cfgs/charset/frn_ibm.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the French set to IBMPC.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
FRENCH ; from set
|
||||||
|
IBMPC ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 \x9C ; pound / number -> pound sterling
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 \x85 ; at -> a grave
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 \xF8 ; bracket left -> ring / degree
|
||||||
|
\0 \x87 ; backslash -> c cedilla
|
||||||
|
\0 \x15 ; bracket right -> section
|
||||||
|
\0 ^ ; circum
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 ` ; quote left
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 \x82 ; brace left -> e acute
|
||||||
|
\0 \x97 ; bar -> u grave
|
||||||
|
\0 \x8A ; brace right -> e grave
|
||||||
|
\d1 ? ; tilde -> dieresis
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/ger_asc.chs
Normal file
162
cfgs/charset/ger_asc.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the German set to ASCII.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
GERMAN ; from set
|
||||||
|
ASCII ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclaim
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 # ; pound / number
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 S ; at -> section
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 A ; bracket left -> A dieresis
|
||||||
|
\0 O ; backslash -> O dieresis
|
||||||
|
\0 U ; bracket right -> U dieresis
|
||||||
|
\0 ^ ; circum
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 ` ; quote left
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 a ; brace left -> a dieresis
|
||||||
|
\0 o ; bar -> o dieresis
|
||||||
|
\0 u ; brace right -> u dieresis
|
||||||
|
s s ; tilde -> german double s
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/ger_ibm.chs
Normal file
162
cfgs/charset/ger_ibm.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the German set to IBMPC.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
GERMAN ; from set
|
||||||
|
IBMPC ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclaim
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 # ; pound / number
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 \x15 ; at -> section
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 \x8E ; bracket left -> A dieresis
|
||||||
|
\0 \x99 ; backslash -> O dieresis
|
||||||
|
\0 \x9A ; bracket right -> U dieresis
|
||||||
|
\0 ^ ; circum
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 ` ; quote left
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 \x84 ; brace left -> a dieresis
|
||||||
|
\0 \x94 ; bar -> o dieresis
|
||||||
|
\0 \x81 ; brace right -> u dieresis
|
||||||
|
\0 \xE1 ; tilde -> german double s (or the beta-like char)
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/i1m_ibm.chs
Normal file
162
cfgs/charset/i1m_ibm.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts ISO-8859-1 extended characters to IBM-PC characters.
|
||||||
|
; It contains modifications to convert a few MAC characters to IBMPC.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number, is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
LATIN1MAC ; from set
|
||||||
|
IBMPC ; to set
|
||||||
|
;
|
||||||
|
\0 \d128 ; 128 (missing) These codes are unused in the LATIN-1 set.
|
||||||
|
\0 \x8f ; 129 MAC: A ring
|
||||||
|
\0 \d130 ; 130 (missing)
|
||||||
|
\0 \d131 ; 131 (missing) 4
|
||||||
|
\0 \d132 ; 132 (missing)
|
||||||
|
\0 \d133 ; 133 (missing)
|
||||||
|
\0 \d134 ; 134 (missing)
|
||||||
|
\0 \d135 ; 135 (missing) 8
|
||||||
|
\0 \d136 ; 136 (missing)
|
||||||
|
\0 \d137 ; 137 (missing)
|
||||||
|
\0 \d138 ; 138 (missing)
|
||||||
|
\0 \d139 ; 139 (missing) 12
|
||||||
|
\0 \x86 ; 140 MAC: a ring
|
||||||
|
\0 \d141 ; 141 (missing)
|
||||||
|
\0 \d142 ; 142 (missing)
|
||||||
|
\0 \d143 ; 143 (missing) 16
|
||||||
|
\0 \d144 ; 144 (missing)
|
||||||
|
\0 \d145 ; 145 (missing)
|
||||||
|
\0 \d146 ; 146 (missing)
|
||||||
|
\0 \d147 ; 147 (missing) 20
|
||||||
|
\0 \d148 ; 148 (missing)
|
||||||
|
\0 \d149 ; 149 (missing)
|
||||||
|
\0 \d150 ; 150 (missing)
|
||||||
|
\0 \d151 ; 151 (missing) 24
|
||||||
|
\0 \d152 ; 152 (missing)
|
||||||
|
\0 \d153 ; 153 (missing)
|
||||||
|
\0 \d154 ; 154 (missing)
|
||||||
|
\0 \d155 ; 155 (missing) 28
|
||||||
|
\0 \d156 ; 156 (missing)
|
||||||
|
\0 \d157 ; 157 (missing)
|
||||||
|
\0 \d158 ; 158 (missing)
|
||||||
|
\0 \d159 ; 159 (missing) 32
|
||||||
|
\0 \xff ; 160 non-breaking space
|
||||||
|
\0 \xad ; 161 exclam downwards
|
||||||
|
\0 \x9b ; 162 MAC: o slash
|
||||||
|
\0 \x9c ; 163 pound sterling
|
||||||
|
\0 \x0f ; 164 currency
|
||||||
|
\0 \x9d ; 165 Yen
|
||||||
|
\0 | ; 166 broken bar
|
||||||
|
\0 \x15 ; 167 section
|
||||||
|
\x1 ? ; 168 dieresis
|
||||||
|
\0 c ; 169 copyright
|
||||||
|
\0 \xa6 ; 170 ord feminine
|
||||||
|
\0 \xae ; 171 guillemot left
|
||||||
|
\0 \xaa ; 172 logical not
|
||||||
|
\0 - ; 173 soft hyphen (or em dash)
|
||||||
|
\0 \x92 ; 174 MAC: AE
|
||||||
|
\x1 ? ; 175 overbar (macron)
|
||||||
|
\0 \xf8 ; 176 ring / degree
|
||||||
|
\0 \xf1 ; 177 plusminus
|
||||||
|
\0 \xfd ; 178 superscript two (squared)
|
||||||
|
^ 3 ; 179 superscript three (cubed)
|
||||||
|
\0 \x9d ; 180 MAC: O slash
|
||||||
|
\0 \xe6 ; 181 mu
|
||||||
|
\0 \x14 ; 182 paragraph
|
||||||
|
\0 \xfe ; 183 bullet
|
||||||
|
\0 , ; 184 cedilla
|
||||||
|
^ 1 ; 185 superscript one
|
||||||
|
\0 \xa7 ; 186 ord masculine
|
||||||
|
\0 \xaf ; 187 guillemot right
|
||||||
|
\0 \xac ; 188 one quarter
|
||||||
|
\0 \xab ; 189 half
|
||||||
|
\0 \x91 ; 190 MAC: ae
|
||||||
|
\0 \xa8 ; 191 question downwards
|
||||||
|
\0 A ; 192 A grave
|
||||||
|
\0 A ; 193 A acute
|
||||||
|
\0 A ; 194 A circumflex
|
||||||
|
\0 A ; 195 A tilde
|
||||||
|
\0 \x8e ; 196 A dieresis
|
||||||
|
\0 \x8f ; 197 A ring
|
||||||
|
\0 \x92 ; 198 AE
|
||||||
|
\0 \x80 ; 199 C cedilla
|
||||||
|
\0 E ; 200 E grave
|
||||||
|
\0 \x90 ; 201 E acute
|
||||||
|
\0 E ; 202 E circumflex
|
||||||
|
E e ; 203 E dieresis
|
||||||
|
\0 I ; 204 I grave
|
||||||
|
\0 I ; 205 I acute
|
||||||
|
\0 I ; 206 I circumflex
|
||||||
|
I e ; 207 I dieresis
|
||||||
|
\0 D ; 208 Eth
|
||||||
|
\0 \xa5 ; 209 N tilde
|
||||||
|
\0 O ; 210 O grave
|
||||||
|
\0 O ; 211 O acute
|
||||||
|
\0 O ; 212 O circumflex
|
||||||
|
\0 O ; 213 O tilde
|
||||||
|
\0 \x99 ; 214 O dieresis
|
||||||
|
\0 x ; 215 multiplication
|
||||||
|
\0 \x9d ; 216 O slash (mapping for CP850/865)
|
||||||
|
\0 U ; 217 U grave
|
||||||
|
\0 U ; 218 U acute
|
||||||
|
\0 U ; 219 U circumflex
|
||||||
|
\0 \x9a ; 220 U dieresis
|
||||||
|
\0 Y ; 221 Y acute
|
||||||
|
\x1 ? ; 222 Thorn
|
||||||
|
\0 \xe1 ; 223 german double s / beta
|
||||||
|
\0 \x85 ; 224 a grave
|
||||||
|
\0 \xa0 ; 225 a acute
|
||||||
|
\0 \x83 ; 226 a circumflex
|
||||||
|
\0 a ; 227 a tilde
|
||||||
|
\0 \x84 ; 228 a dieresis
|
||||||
|
\0 \x86 ; 229 a ring
|
||||||
|
\0 \x91 ; 230 ae
|
||||||
|
\0 \x87 ; 231 c cedilla
|
||||||
|
\0 \x8a ; 232 e grave
|
||||||
|
\0 \x82 ; 233 e acute
|
||||||
|
\0 \x88 ; 234 e circumflex
|
||||||
|
\0 \x89 ; 235 e dieresis
|
||||||
|
\0 \x8d ; 236 i grave
|
||||||
|
\0 \xa1 ; 237 i acute
|
||||||
|
\0 \x8c ; 238 i circumflex
|
||||||
|
\0 \x8b ; 239 i dieresis
|
||||||
|
\0 \xe7 ; 240 eth
|
||||||
|
\0 \xa4 ; 241 n tilde
|
||||||
|
\0 \x95 ; 242 o grave
|
||||||
|
\0 \xa2 ; 243 o acute
|
||||||
|
\0 \x93 ; 244 o circumflex
|
||||||
|
\0 o ; 245 o tilde
|
||||||
|
\0 \x94 ; 246 o dieresis
|
||||||
|
\0 \xf6 ; 247 division
|
||||||
|
\0 \x9b ; 248 o slash (mapping for CP 850/865)
|
||||||
|
\0 \x97 ; 249 u grave
|
||||||
|
\0 \xa3 ; 250 u acute
|
||||||
|
\0 \x96 ; 251 u circumflex
|
||||||
|
\0 \x81 ; 252 u dieresis
|
||||||
|
y e ; 253 y acute
|
||||||
|
\x1 ? ; 254 thorn
|
||||||
|
\0 \x98 ; 255 y dieresis
|
||||||
|
END
|
65
cfgs/charset/i51_ibm.esc
Normal file
65
cfgs/charset/i51_ibm.esc
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
; --------------------------------------------------------------------
|
||||||
|
; Escaped Characters Table for GoldED 2.30.
|
||||||
|
; Based on IBM Code Page 437 with additions for CP850 and 865.
|
||||||
|
; --------------------------------------------------------------------
|
||||||
|
; FSC-0051.003 (I51) Combined Characters, Thomas Gradin (2:200/108).
|
||||||
|
; --------------------------------------------------------------------
|
||||||
|
IBMPC ; Map codes to charset.
|
||||||
|
; --------------------------------------------------------------------
|
||||||
|
0 0 ; superscript zero
|
||||||
|
1 1 ; superscript one
|
||||||
|
2 \xFD ; superscript two
|
||||||
|
3 3 ; superscript three
|
||||||
|
4 4 ; superscript four
|
||||||
|
5 5 ; superscript five
|
||||||
|
6 6 ; superscript six
|
||||||
|
7 7 ; superscript seven
|
||||||
|
8 8 ; superscript eight
|
||||||
|
9 9 ; superscript nine
|
||||||
|
I I ; I with dot
|
||||||
|
i \xD5 ; dot-less i
|
||||||
|
n \xFC ; superscript n
|
||||||
|
"U U ; U with double acute accent
|
||||||
|
"u u ; u with double acute accent
|
||||||
|
$P \x9E ; peseta sign
|
||||||
|
$f \x9F ; guilder sign
|
||||||
|
,A A ; A with cedilla
|
||||||
|
,E E ; E with cedilla
|
||||||
|
,S S ; S with cedilla
|
||||||
|
,a a ; a with cedilla
|
||||||
|
,e e ; e with cedilla
|
||||||
|
,s s ; s with cedilla
|
||||||
|
-< \xF3 ; equal or less than
|
||||||
|
-= \xF0 ; defined as
|
||||||
|
-> \xF2 ; equal or greater than
|
||||||
|
-C C ; complement of
|
||||||
|
-I \xEE ; part of lot
|
||||||
|
-S S ; Polish S with dash
|
||||||
|
-Z Z ; Polish Z with dash
|
||||||
|
-s s ; Polish s with dash
|
||||||
|
-z z ; Polish z with dash
|
||||||
|
-~ \xF7 ; about equal
|
||||||
|
.0 0 ; subscript zero
|
||||||
|
.1 1 ; subscript one
|
||||||
|
.2 2 ; subscript two
|
||||||
|
.3 3 ; subscript three
|
||||||
|
.4 4 ; subscript four
|
||||||
|
.5 5 ; subscript five
|
||||||
|
.6 6 ; subscript six
|
||||||
|
.7 7 ; subscript seven
|
||||||
|
.8 8 ; subscript eight
|
||||||
|
.9 9 ; subscript nine
|
||||||
|
.S S ; Polish S with dot
|
||||||
|
.Z Z ; Polish Z with dot
|
||||||
|
.s s ; Polish s with dot
|
||||||
|
.z z ; Polish z with dot
|
||||||
|
/L L ; Polish L slash
|
||||||
|
/l l ; Polish l slash
|
||||||
|
^G G ; G with inversed circ. accent
|
||||||
|
^S S ; S with inversed circ. accent
|
||||||
|
^g g ; g with inversed circ. accent
|
||||||
|
^s s ; s with inversed circ. accent
|
||||||
|
gG \xE2 ; capital gamma
|
||||||
|
ga \xE0 ; alpha
|
||||||
|
tm tm ; trade mark sign
|
||||||
|
; --------------------------------------------------------------------
|
161
cfgs/charset/ibm_asc.chs
Normal file
161
cfgs/charset/ibm_asc.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts IBM extended characters to ASCII.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
IBMPC ; from set (actually CP865)
|
||||||
|
ASCII ; to set
|
||||||
|
;
|
||||||
|
\0 C ; 128 80 latin capital letter c with cedilla
|
||||||
|
u e ; 129 81 latin small letter u with diaeresis
|
||||||
|
\0 e ; 130 82 latin small letter e with acute
|
||||||
|
\0 a ; 131 83 latin small letter a with circumflex
|
||||||
|
a e ; 132 84 latin small letter a with diaeresis
|
||||||
|
\0 a ; 133 85 latin small letter a with grave
|
||||||
|
a a ; 134 86 latin small letter a with ring above
|
||||||
|
\0 c ; 135 87 latin small letter c with cedilla
|
||||||
|
\0 e ; 136 88 latin small letter e with circumflex
|
||||||
|
e e ; 137 89 latin small letter e with diaeresis
|
||||||
|
\0 e ; 138 8A latin small letter e with grave
|
||||||
|
i e ; 139 8B latin small letter i with diaeresis
|
||||||
|
\0 i ; 140 8C latin small letter i with circumflex
|
||||||
|
\0 i ; 141 8D latin small letter i with grave
|
||||||
|
A e ; 142 8E latin capital letter a with diaeresis
|
||||||
|
\0 A ; 143 8F latin capital letter a with ring above
|
||||||
|
\0 E ; 144 90 latin capital letter e with acute
|
||||||
|
a e ; 145 91 latin small letter ae
|
||||||
|
A E ; 146 92 latin capital letter ae
|
||||||
|
\0 o ; 147 93 latin small letter o with circumflex
|
||||||
|
o e ; 148 94 latin small letter o with diaeresis
|
||||||
|
\0 o ; 149 95 latin small letter o with grave
|
||||||
|
\0 u ; 150 96 latin small letter u with circumflex
|
||||||
|
\0 u ; 151 97 latin small letter u with grave
|
||||||
|
y e ; 152 98 latin small letter y with diaeresis
|
||||||
|
O e ; 153 99 latin capital letter o with diaeresis
|
||||||
|
U e ; 154 9A latin capital letter u with diaeresis
|
||||||
|
o e ; 155 9B latin small letter o with stroke (CP865 mapping)
|
||||||
|
\0 # ; 156 9C pound sign
|
||||||
|
O e ; 157 9D latin capital letter o with stroke (CP865 mapping)
|
||||||
|
P t ; 158 9E peseta sign
|
||||||
|
F l ; 159 9F dutch guilder sign (ibm437 159)
|
||||||
|
\0 a ; 160 A0 latin small letter a with acute
|
||||||
|
\0 i ; 161 A1 latin small letter i with acute
|
||||||
|
\0 o ; 162 A2 latin small letter o with acute
|
||||||
|
\0 u ; 163 A3 latin small letter u with acute
|
||||||
|
\0 n ; 164 A4 latin small letter n with tilde
|
||||||
|
\0 N ; 165 A5 latin capital letter n with tilde
|
||||||
|
\0 a ; 166 A6 feminine ordinal indicator
|
||||||
|
\0 o ; 167 A7 masculine ordinal indicator
|
||||||
|
\0 ? ; 168 A8 inverted question mark
|
||||||
|
\0 - ; 169 A9 reversed not sign
|
||||||
|
\0 ! ; 170 AA not sign
|
||||||
|
1 / 2 ; 171 AB vulgar fraction one half
|
||||||
|
1 / 4 ; 172 AC vulgar fraction one quarter
|
||||||
|
\0 ! ; 173 AD inverted exclamation mark
|
||||||
|
< < ; 174 AE left-pointing double angle quotation mark
|
||||||
|
> > ; 175 AF right-pointing double angle quotation mark
|
||||||
|
\0 # ; 176 B0 light shade
|
||||||
|
\0 # ; 177 B1 medium shade
|
||||||
|
\0 # ; 178 B2 dark shade
|
||||||
|
\0 | ; 179 B3 box drawings light vertical
|
||||||
|
\0 | ; 180 B4 box drawings light vertical and left
|
||||||
|
\0 | ; 181 B5 box drawings vertical light and left heavy
|
||||||
|
\0 | ; 182 B6 box drawings vertical heavy and left light
|
||||||
|
\0 + ; 183 B7 box drawings down heavy and left light
|
||||||
|
\0 + ; 184 B8 box drawings down light and left heavy
|
||||||
|
\0 | ; 185 B9 box drawings heavy vertical and left
|
||||||
|
\0 | ; 186 BA box drawings heavy vertical
|
||||||
|
\0 + ; 187 BB box drawings heavy down and left
|
||||||
|
\0 + ; 188 BC box drawings heavy up and left
|
||||||
|
\0 + ; 189 BD box drawings up heavy and left light
|
||||||
|
\0 + ; 190 BE box drawings up light and left heavy
|
||||||
|
\0 + ; 191 BF box drawings light down and left
|
||||||
|
\0 + ; 192 C0 box drawings light up and right
|
||||||
|
\0 - ; 193 C1 box drawings light up and horizontal
|
||||||
|
\0 - ; 194 C2 box drawings light down and horizontal
|
||||||
|
\0 | ; 195 C3 box drawings light vertical and right
|
||||||
|
\0 - ; 196 C4 box drawings light horizontal
|
||||||
|
\0 + ; 197 C5 box drawings light vertical and horizontal
|
||||||
|
\0 | ; 198 C6 box drawings vertical light and right heavy
|
||||||
|
\0 | ; 199 C7 box drawings vertical heavy and right light
|
||||||
|
\0 + ; 200 C8 box drawings heavy up and right
|
||||||
|
\0 + ; 201 C9 box drawings heavy down and right
|
||||||
|
\0 = ; 202 CA box drawings heavy up and horizontal
|
||||||
|
\0 = ; 203 CB box drawings heavy down and horizontal
|
||||||
|
\0 | ; 204 CC box drawings heavy vertical and right
|
||||||
|
\0 = ; 205 CD box drawings heavy horizontal
|
||||||
|
\0 + ; 206 CE box drawings heavy vertical and horizontal
|
||||||
|
\0 = ; 207 CF box drawings up light and horizontal heavy
|
||||||
|
\0 - ; 208 D0 box drawings up heavy and horizontal light
|
||||||
|
\0 = ; 209 D1 box drawings down light and horizontal heavy
|
||||||
|
\0 - ; 210 D2 box drawings down heavy and horizontal light
|
||||||
|
\0 + ; 211 D3 box drawings up heavy and right light
|
||||||
|
\0 + ; 212 D4 box drawings up light and right heavy
|
||||||
|
\0 + ; 213 D5 box drawings down light and right heavy
|
||||||
|
\0 + ; 214 D6 box drawings down heavy and right light
|
||||||
|
\0 | ; 215 D7 box drawings vertical heavy and horizontal light
|
||||||
|
\0 + ; 216 D8 box drawings vertical light and horizontal heavy
|
||||||
|
\0 + ; 217 D9 box drawings light up and left
|
||||||
|
\0 + ; 218 DA box drawings light down and right
|
||||||
|
\0 # ; 219 DB full block
|
||||||
|
\0 - ; 220 DC lower half block
|
||||||
|
\0 | ; 221 DD left half block
|
||||||
|
\0 | ; 222 DE right half block
|
||||||
|
\0 - ; 223 DF upper half block
|
||||||
|
\0 a ; 224 E0 greek small letter alpha
|
||||||
|
s s ; 225 E1 greek small letter beta (here used as german ss)
|
||||||
|
\x1 ? ; 226 E2 greek capital letter gamma
|
||||||
|
p i ; 227 E3 greek small letter pi
|
||||||
|
\x1 ? ; 228 E4 greek capital letter sigma
|
||||||
|
\x1 ? ; 229 E5 greek small letter sigma
|
||||||
|
m u ; 230 E6 greek small letter mu
|
||||||
|
\x1 ? ; 231 E7 greek small letter tau
|
||||||
|
\x1 ? ; 232 E8 greek capital letter phi
|
||||||
|
\x1 ? ; 233 E9 greek capital letter theta
|
||||||
|
\0 O ; 234 EA greek capital letter omega
|
||||||
|
\0 d ; 235 EB greek small letter delta
|
||||||
|
\x1 ? ; 236 EC infinity
|
||||||
|
\0 o ; 237 ED empty set
|
||||||
|
\x1 ? ; 238 EE greek small letter epsilon
|
||||||
|
\x1 ? ; 239 EF intersection
|
||||||
|
= = ; 240 F0 identical to
|
||||||
|
+ - ; 241 F1 plus-minus sign
|
||||||
|
> = ; 242 F2 greater-than or equal to
|
||||||
|
< = ; 243 F3 less-than or equal to
|
||||||
|
\x1 ? ; 244 F4 top half integral
|
||||||
|
\x1 ? ; 245 F5 bottom half integral
|
||||||
|
\0 / ; 246 F6 division sign
|
||||||
|
~ = ; 247 F7 almost equal to
|
||||||
|
\0 ' ; 248 F8 ring operator
|
||||||
|
\0 . ; 249 F9 middle dot
|
||||||
|
\0 - ; 250 FA bullet operator
|
||||||
|
\x1 ? ; 251 FB square root
|
||||||
|
^ n ; 252 FC superscript latin small letter n
|
||||||
|
^ 2 ; 253 FD superscript two
|
||||||
|
\0 * ; 254 FE black square
|
||||||
|
\0 \d32 ; 255 FF no-break space
|
||||||
|
END
|
161
cfgs/charset/ibm_cmp.chs
Normal file
161
cfgs/charset/ibm_cmp.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts IBM extended characters to Composed characters.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
0 ; level number
|
||||||
|
;
|
||||||
|
IBMPC ; from set (actually CP865)
|
||||||
|
COMPOSED ; to set
|
||||||
|
;
|
||||||
|
, \x8D C ; 128 80 latin capital letter c with cedilla
|
||||||
|
u \x8D " ; 129 81 latin small letter u with diaeresis
|
||||||
|
e \x8D ' ; 130 82 latin small letter e with acute
|
||||||
|
a \x8D ^ ; 131 83 latin small letter a with circumflex
|
||||||
|
a \x8D " ; 132 84 latin small letter a with diaeresis
|
||||||
|
a \x8D ` ; 133 85 latin small letter a with grave
|
||||||
|
a \x8D * ; 134 86 latin small letter a with ring above
|
||||||
|
, \x8D c ; 135 87 latin small letter c with cedilla
|
||||||
|
e \x8D ^ ; 136 88 latin small letter e with circumflex
|
||||||
|
e \x8D " ; 137 89 latin small letter e with diaeresis
|
||||||
|
e \x8D ` ; 138 8A latin small letter e with grave
|
||||||
|
i \x8D " ; 139 8B latin small letter i with diaeresis
|
||||||
|
i \x8D ^ ; 140 8C latin small letter i with circumflex
|
||||||
|
i \x8D ` ; 141 8D latin small letter i with grave
|
||||||
|
A \x8D " ; 142 8E latin capital letter a with diaeresis
|
||||||
|
A \x8D * ; 143 8F latin capital letter a with ring above
|
||||||
|
E \x8D ' ; 144 90 latin capital letter e with acute
|
||||||
|
a \x8D e ; 145 91 latin small letter ae
|
||||||
|
A \x8D E ; 146 92 latin capital letter ae
|
||||||
|
o \x8D ^ ; 147 93 latin small letter o with circumflex
|
||||||
|
o \x8D " ; 148 94 latin small letter o with diaeresis
|
||||||
|
o \x8D ` ; 149 95 latin small letter o with grave
|
||||||
|
u \x8D ^ ; 150 96 latin small letter u with circumflex
|
||||||
|
u \x8D ` ; 151 97 latin small letter u with grave
|
||||||
|
y \x8D " ; 152 98 latin small letter y with diaeresis
|
||||||
|
O \x8D " ; 153 99 latin capital letter o with diaeresis
|
||||||
|
U \x8D " ; 154 9A latin capital letter u with diaeresis
|
||||||
|
o \x8D e ; 155 9B latin small letter o with stroke (CP865 mapping)
|
||||||
|
P \x8D d ; 156 9C pound sign
|
||||||
|
O \x8D E ; 157 9D latin capital letter o with stroke (CP865 mapping)
|
||||||
|
P \x8D t ; 158 9E peseta sign
|
||||||
|
F \x8D l ; 159 9F dutch guilder sign (ibm437 159)
|
||||||
|
a \x8D ' ; 160 A0 latin small letter a with acute
|
||||||
|
i \x8D ' ; 161 A1 latin small letter i with acute
|
||||||
|
o \x8D ' ; 162 A2 latin small letter o with acute
|
||||||
|
u \x8D ' ; 163 A3 latin small letter u with acute
|
||||||
|
n \x8D ~ ; 164 A4 latin small letter n with tilde
|
||||||
|
N \x8D ~ ; 165 A5 latin capital letter n with tilde
|
||||||
|
a \x8D _ ; 166 A6 feminine ordinal indicator
|
||||||
|
o \x8D _ ; 167 A7 masculine ordinal indicator
|
||||||
|
? \x8D ? ; 168 A8 inverted question mark
|
||||||
|
? ; 169 A9 reversed not sign
|
||||||
|
? ; 170 AA not sign
|
||||||
|
' \x8D 2 ; 171 AB vulgar fraction one half
|
||||||
|
' \x8D 4 ; 172 AC vulgar fraction one quarter
|
||||||
|
! \x8D ! ; 173 AD inverted exclamation mark
|
||||||
|
< \x8D < ; 174 AE left-pointing double angle quotation mark
|
||||||
|
> \x8D > ; 175 AF right-pointing double angle quotation mark
|
||||||
|
# ; 176 B0 light shade
|
||||||
|
# ; 177 B1 medium shade
|
||||||
|
# ; 178 B2 dark shade
|
||||||
|
| ; 179 B3 box drawings light vertical
|
||||||
|
| ; 180 B4 box drawings light vertical and left
|
||||||
|
| ; 181 B5 box drawings vertical light and left heavy
|
||||||
|
| ; 182 B6 box drawings vertical heavy and left light
|
||||||
|
+ ; 183 B7 box drawings down heavy and left light
|
||||||
|
+ ; 184 B8 box drawings down light and left heavy
|
||||||
|
| ; 185 B9 box drawings heavy vertical and left
|
||||||
|
| ; 186 BA box drawings heavy vertical
|
||||||
|
+ ; 187 BB box drawings heavy down and left
|
||||||
|
+ ; 188 BC box drawings heavy up and left
|
||||||
|
+ ; 189 BD box drawings up heavy and left light
|
||||||
|
+ ; 190 BE box drawings up light and left heavy
|
||||||
|
+ ; 191 BF box drawings light down and left
|
||||||
|
+ ; 192 C0 box drawings light up and right
|
||||||
|
- ; 193 C1 box drawings light up and horizontal
|
||||||
|
- ; 194 C2 box drawings light down and horizontal
|
||||||
|
| ; 195 C3 box drawings light vertical and right
|
||||||
|
- ; 196 C4 box drawings light horizontal
|
||||||
|
+ ; 197 C5 box drawings light vertical and horizontal
|
||||||
|
| ; 198 C6 box drawings vertical light and right heavy
|
||||||
|
| ; 199 C7 box drawings vertical heavy and right light
|
||||||
|
+ ; 200 C8 box drawings heavy up and right
|
||||||
|
+ ; 201 C9 box drawings heavy down and right
|
||||||
|
= ; 202 CA box drawings heavy up and horizontal
|
||||||
|
= ; 203 CB box drawings heavy down and horizontal
|
||||||
|
| ; 204 CC box drawings heavy vertical and right
|
||||||
|
= ; 205 CD box drawings heavy horizontal
|
||||||
|
+ ; 206 CE box drawings heavy vertical and horizontal
|
||||||
|
= ; 207 CF box drawings up light and horizontal heavy
|
||||||
|
- ; 208 D0 box drawings up heavy and horizontal light
|
||||||
|
= ; 209 D1 box drawings down light and horizontal heavy
|
||||||
|
- ; 210 D2 box drawings down heavy and horizontal light
|
||||||
|
+ ; 211 D3 box drawings up heavy and right light
|
||||||
|
+ ; 212 D4 box drawings up light and right heavy
|
||||||
|
+ ; 213 D5 box drawings down light and right heavy
|
||||||
|
+ ; 214 D6 box drawings down heavy and right light
|
||||||
|
| ; 215 D7 box drawings vertical heavy and horizontal light
|
||||||
|
+ ; 216 D8 box drawings vertical light and horizontal heavy
|
||||||
|
+ ; 217 D9 box drawings light up and left
|
||||||
|
+ ; 218 DA box drawings light down and right
|
||||||
|
# ; 219 DB full block
|
||||||
|
- ; 220 DC lower half block
|
||||||
|
| ; 221 DD left half block
|
||||||
|
| ; 222 DE right half block
|
||||||
|
- ; 223 DF upper half block
|
||||||
|
? ; 224 E0 greek small letter alpha
|
||||||
|
s \x8D s ; 225 E1 greek small letter beta (here used as german ss)
|
||||||
|
? ; 226 E2 greek capital letter gamma
|
||||||
|
p \x8D i ; 227 E3 greek small letter pi
|
||||||
|
? ; 228 E4 greek capital letter sigma
|
||||||
|
? ; 229 E5 greek small letter sigma
|
||||||
|
? ; 230 E6 greek small letter mu
|
||||||
|
? ; 231 E7 greek small letter tau
|
||||||
|
? ; 232 E8 greek capital letter phi
|
||||||
|
? ; 233 E9 greek capital letter theta
|
||||||
|
? ; 234 EA greek capital letter omega
|
||||||
|
? ; 235 EB greek small letter delta
|
||||||
|
? ; 236 EC infinity
|
||||||
|
? ; 237 ED empty set
|
||||||
|
? ; 238 EE greek small letter epsilon
|
||||||
|
? ; 239 EF intersection
|
||||||
|
= \x8D = ; 240 F0 identical to
|
||||||
|
+ \x8D - ; 241 F1 plus-minus sign
|
||||||
|
> \x8D = ; 242 F2 greater-than or equal to
|
||||||
|
< \x8D = ; 243 F3 less-than or equal to
|
||||||
|
? ; 244 F4 top half integral
|
||||||
|
? ; 245 F5 bottom half integral
|
||||||
|
/ ; 246 F6 division sign
|
||||||
|
~ \x8D = ; 247 F7 almost equal to
|
||||||
|
? ; 248 F8 ring operator
|
||||||
|
. ; 249 F9 middle dot
|
||||||
|
- ; 250 FA bullet operator
|
||||||
|
? ; 251 FB square root
|
||||||
|
^ \x8D n ; 252 FC superscript latin small letter n
|
||||||
|
^ \x8D 2 ; 253 FD superscript two
|
||||||
|
* ; 254 FE black square
|
||||||
|
\d32 ; 255 FF no-break space
|
||||||
|
END
|
162
cfgs/charset/ibm_i51.chs
Normal file
162
cfgs/charset/ibm_i51.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts IBM extended characters to ISO 8859-1 characters,
|
||||||
|
; and uses I51 compatible escape sequences for non-ISO chars.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
0 ; level number
|
||||||
|
;
|
||||||
|
IBMPC ; from set
|
||||||
|
I51 ; to set
|
||||||
|
;
|
||||||
|
\xC7 ; C with cedilla
|
||||||
|
\xDC ; u dieresis
|
||||||
|
\xE9 ; e acute
|
||||||
|
\xE2 ; a circumflex
|
||||||
|
\xE4 ; a dieresis
|
||||||
|
\xE0 ; a grave
|
||||||
|
\xE5 ; a ring
|
||||||
|
\xE7 ; c cedilla
|
||||||
|
\xEA ; e circumflex
|
||||||
|
\xEB ; e dieresis
|
||||||
|
\xE8 ; e grave
|
||||||
|
\xEF ; i dieresis
|
||||||
|
\xEE ; i circumflex
|
||||||
|
\xEC ; i grave
|
||||||
|
\xC4 ; A dieresis
|
||||||
|
\xC5 ; A ring
|
||||||
|
\xC9 ; E acute
|
||||||
|
\xE6 ; ae
|
||||||
|
\xC6 ; AE
|
||||||
|
\xF4 ; o circumflex
|
||||||
|
\xF6 ; o dieresis
|
||||||
|
\xF3 ; o acute
|
||||||
|
\xDB ; u circumflex
|
||||||
|
\xD9 ; u grave
|
||||||
|
\xFF ; y dieresis
|
||||||
|
\xD6 ; O dieresis
|
||||||
|
\xDC ; U dieresis
|
||||||
|
\xA2 ; cent
|
||||||
|
\xA3 ; pound sterling
|
||||||
|
\xA5 ; yen
|
||||||
|
\d2 $P ; Pt
|
||||||
|
\d2 $f ; florin
|
||||||
|
\xE1 ; a acute
|
||||||
|
\xCC ; i grave
|
||||||
|
\xF2 ; o grave
|
||||||
|
\xF9 ; u grave
|
||||||
|
\xF1 ; n tilde
|
||||||
|
\xD1 ; N tilde
|
||||||
|
\xAA ; ord feminine
|
||||||
|
\xBA ; ord masculine
|
||||||
|
\xBF ; question downwards
|
||||||
|
- ;
|
||||||
|
\xAC ; logical not
|
||||||
|
\xBD ; half fraction
|
||||||
|
\xBC ; quarter fraction
|
||||||
|
\xA1 ; exclam downwards
|
||||||
|
\xAB ; guillemot left
|
||||||
|
\xBB ; guillemot right
|
||||||
|
# ;
|
||||||
|
# ;
|
||||||
|
# ;
|
||||||
|
| ;
|
||||||
|
| ;
|
||||||
|
| ;
|
||||||
|
| ;
|
||||||
|
+ ;
|
||||||
|
+ ;
|
||||||
|
| ;
|
||||||
|
| ;
|
||||||
|
+ ;
|
||||||
|
+ ;
|
||||||
|
+ ;
|
||||||
|
+ ;
|
||||||
|
+ ;
|
||||||
|
+ ;
|
||||||
|
- ;
|
||||||
|
- ;
|
||||||
|
| ;
|
||||||
|
- ;
|
||||||
|
+ ;
|
||||||
|
| ;
|
||||||
|
| ;
|
||||||
|
+ ;
|
||||||
|
+ ;
|
||||||
|
= ;
|
||||||
|
= ;
|
||||||
|
| ;
|
||||||
|
= ;
|
||||||
|
+ ;
|
||||||
|
= ;
|
||||||
|
- ;
|
||||||
|
= ;
|
||||||
|
- ;
|
||||||
|
+ ;
|
||||||
|
+ ;
|
||||||
|
+ ;
|
||||||
|
+ ;
|
||||||
|
| ;
|
||||||
|
+ ;
|
||||||
|
+ ;
|
||||||
|
+ ;
|
||||||
|
# ;
|
||||||
|
- ;
|
||||||
|
| ;
|
||||||
|
| ;
|
||||||
|
- ;
|
||||||
|
\d2 ga ; alpha
|
||||||
|
\xDF ; german double s (misused as Beta)
|
||||||
|
\d2 gG ; Gamma
|
||||||
|
pi ; pi
|
||||||
|
? ; Sigma (summation)
|
||||||
|
? ; sigma
|
||||||
|
\xB5 ; mu
|
||||||
|
? ; gamma
|
||||||
|
? ; Phi
|
||||||
|
? ; Theta
|
||||||
|
? ; Omega
|
||||||
|
\xF0 ; delta
|
||||||
|
? ; infinity
|
||||||
|
\xF8 ; o slash
|
||||||
|
? ; element
|
||||||
|
? ; intersection
|
||||||
|
\d2 -= ; equivalence
|
||||||
|
\xB1 ; plusminus
|
||||||
|
\d2 -> ; greater equals
|
||||||
|
\d2 -< ; smaller equals
|
||||||
|
? ; integral top
|
||||||
|
? ; integral bottom
|
||||||
|
\xF7 ; divide
|
||||||
|
\d2 -~ ; approx.
|
||||||
|
\xB0 ; ring / degree
|
||||||
|
. ; centered dot
|
||||||
|
- ; en dash
|
||||||
|
? ; radical
|
||||||
|
^n ; to the n'th power
|
||||||
|
\xB2 ; to the second power
|
||||||
|
\xB7 ; bullet
|
||||||
|
\xA0 ; non-breaking space
|
||||||
|
END
|
161
cfgs/charset/ibm_ibm.chs
Normal file
161
cfgs/charset/ibm_ibm.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts IBMPC to IBMPC. (no conversion)
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
IBMPC ; from set
|
||||||
|
IBMPC ; to set
|
||||||
|
;
|
||||||
|
\0 \d128 ; 128 80 latin capital letter c with cedilla
|
||||||
|
\0 \d129 ; 129 81 latin small letter u with diaeresis
|
||||||
|
\0 \d130 ; 130 82 latin small letter e with acute
|
||||||
|
\0 \d131 ; 131 83 latin small letter a with circumflex
|
||||||
|
\0 \d132 ; 132 84 latin small letter a with diaeresis
|
||||||
|
\0 \d133 ; 133 85 latin small letter a with grave
|
||||||
|
\0 \d134 ; 134 86 latin small letter a with ring above
|
||||||
|
\0 \d135 ; 135 87 latin small letter c with cedilla
|
||||||
|
\0 \d136 ; 136 88 latin small letter e with circumflex
|
||||||
|
\0 \d137 ; 137 89 latin small letter e with diaeresis
|
||||||
|
\0 \d138 ; 138 8A latin small letter e with grave
|
||||||
|
\0 \d139 ; 139 8B latin small letter i with diaeresis
|
||||||
|
\0 \d140 ; 140 8C latin small letter i with circumflex
|
||||||
|
\0 \d141 ; 141 8D latin small letter i with grave
|
||||||
|
\0 \d142 ; 142 8E latin capital letter a with diaeresis
|
||||||
|
\0 \d143 ; 143 8F latin capital letter a with ring above
|
||||||
|
\0 \d144 ; 144 90 latin capital letter e with acute
|
||||||
|
\0 \d145 ; 145 91 latin small letter ae
|
||||||
|
\0 \d146 ; 146 92 latin capital letter ae
|
||||||
|
\0 \d147 ; 147 93 latin small letter o with circumflex
|
||||||
|
\0 \d148 ; 148 94 latin small letter o with diaeresis
|
||||||
|
\0 \d149 ; 149 95 latin small letter o with grave
|
||||||
|
\0 \d150 ; 150 96 latin small letter u with circumflex
|
||||||
|
\0 \d151 ; 151 97 latin small letter u with grave
|
||||||
|
\0 \d152 ; 152 98 latin small letter y with diaeresis
|
||||||
|
\0 \d153 ; 153 99 latin capital letter o with diaeresis
|
||||||
|
\0 \d154 ; 154 9A latin capital letter u with diaeresis
|
||||||
|
\0 \d155 ; 155 9B latin small letter o with stroke (CP865 mapping)
|
||||||
|
\0 \d156 ; 156 9C pound sign
|
||||||
|
\0 \d157 ; 157 9D latin capital letter o with stroke (CP865 mapping)
|
||||||
|
\0 \d158 ; 158 9E peseta sign
|
||||||
|
\0 \d159 ; 159 9F dutch guilder sign (ibm437 159)
|
||||||
|
\0 \d160 ; 160 A0 latin small letter a with acute
|
||||||
|
\0 \d161 ; 161 A1 latin small letter i with acute
|
||||||
|
\0 \d162 ; 162 A2 latin small letter o with acute
|
||||||
|
\0 \d163 ; 163 A3 latin small letter u with acute
|
||||||
|
\0 \d164 ; 164 A4 latin small letter n with tilde
|
||||||
|
\0 \d165 ; 165 A5 latin capital letter n with tilde
|
||||||
|
\0 \d166 ; 166 A6 feminine ordinal indicator
|
||||||
|
\0 \d167 ; 167 A7 masculine ordinal indicator
|
||||||
|
\0 \d168 ; 168 A8 inverted question mark
|
||||||
|
\0 \d169 ; 169 A9 reversed not sign
|
||||||
|
\0 \d170 ; 170 AA not sign
|
||||||
|
\0 \d171 ; 171 AB vulgar fraction one half
|
||||||
|
\0 \d172 ; 172 AC vulgar fraction one quarter
|
||||||
|
\0 \d173 ; 173 AD inverted exclamation mark
|
||||||
|
\0 \d174 ; 174 AE left-pointing double angle quotation mark
|
||||||
|
\0 \d175 ; 175 AF right-pointing double angle quotation mark
|
||||||
|
\0 \d176 ; 176 B0 light shade
|
||||||
|
\0 \d177 ; 177 B1 medium shade
|
||||||
|
\0 \d178 ; 178 B2 dark shade
|
||||||
|
\0 \d179 ; 179 B3 box drawings light vertical
|
||||||
|
\0 \d180 ; 180 B4 box drawings light vertical and left
|
||||||
|
\0 \d181 ; 181 B5 box drawings vertical light and left heavy
|
||||||
|
\0 \d182 ; 182 B6 box drawings vertical heavy and left light
|
||||||
|
\0 \d183 ; 183 B7 box drawings down heavy and left light
|
||||||
|
\0 \d184 ; 184 B8 box drawings down light and left heavy
|
||||||
|
\0 \d185 ; 185 B9 box drawings heavy vertical and left
|
||||||
|
\0 \d186 ; 186 BA box drawings heavy vertical
|
||||||
|
\0 \d187 ; 187 BB box drawings heavy down and left
|
||||||
|
\0 \d188 ; 188 BC box drawings heavy up and left
|
||||||
|
\0 \d189 ; 189 BD box drawings up heavy and left light
|
||||||
|
\0 \d190 ; 190 BE box drawings up light and left heavy
|
||||||
|
\0 \d191 ; 191 BF box drawings light down and left
|
||||||
|
\0 \d192 ; 192 C0 box drawings light up and right
|
||||||
|
\0 \d193 ; 193 C1 box drawings light up and horizontal
|
||||||
|
\0 \d194 ; 194 C2 box drawings light down and horizontal
|
||||||
|
\0 \d195 ; 195 C3 box drawings light vertical and right
|
||||||
|
\0 \d196 ; 196 C4 box drawings light horizontal
|
||||||
|
\0 \d197 ; 197 C5 box drawings light vertical and horizontal
|
||||||
|
\0 \d198 ; 198 C6 box drawings vertical light and right heavy
|
||||||
|
\0 \d199 ; 199 C7 box drawings vertical heavy and right light
|
||||||
|
\0 \d200 ; 200 C8 box drawings heavy up and right
|
||||||
|
\0 \d201 ; 201 C9 box drawings heavy down and right
|
||||||
|
\0 \d202 ; 202 CA box drawings heavy up and horizontal
|
||||||
|
\0 \d203 ; 203 CB box drawings heavy down and horizontal
|
||||||
|
\0 \d204 ; 204 CC box drawings heavy vertical and right
|
||||||
|
\0 \d205 ; 205 CD box drawings heavy horizontal
|
||||||
|
\0 \d206 ; 206 CE box drawings heavy vertical and horizontal
|
||||||
|
\0 \d207 ; 207 CF box drawings up light and horizontal heavy
|
||||||
|
\0 \d208 ; 208 D0 box drawings up heavy and horizontal light
|
||||||
|
\0 \d209 ; 209 D1 box drawings down light and horizontal heavy
|
||||||
|
\0 \d210 ; 210 D2 box drawings down heavy and horizontal light
|
||||||
|
\0 \d211 ; 211 D3 box drawings up heavy and right light
|
||||||
|
\0 \d212 ; 212 D4 box drawings up light and right heavy
|
||||||
|
\0 \d213 ; 213 D5 box drawings down light and right heavy
|
||||||
|
\0 \d214 ; 214 D6 box drawings down heavy and right light
|
||||||
|
\0 \d215 ; 215 D7 box drawings vertical heavy and horizontal light
|
||||||
|
\0 \d216 ; 216 D8 box drawings vertical light and horizontal heavy
|
||||||
|
\0 \d217 ; 217 D9 box drawings light up and left
|
||||||
|
\0 \d218 ; 218 DA box drawings light down and right
|
||||||
|
\0 \d219 ; 219 DB full block
|
||||||
|
\0 \d220 ; 220 DC lower half block
|
||||||
|
\0 \d221 ; 221 DD left half block
|
||||||
|
\0 \d222 ; 222 DE right half block
|
||||||
|
\0 \d223 ; 223 DF upper half block
|
||||||
|
\0 \d224 ; 224 E0 greek small letter alpha
|
||||||
|
\0 \d225 ; 225 E1 greek small letter beta (here used as german ss)
|
||||||
|
\0 \d226 ; 226 E2 greek capital letter gamma
|
||||||
|
\0 \d227 ; 227 E3 greek small letter pi
|
||||||
|
\0 \d228 ; 228 E4 greek capital letter sigma
|
||||||
|
\0 \d229 ; 229 E5 greek small letter sigma
|
||||||
|
\0 \d230 ; 230 E6 greek small letter mu
|
||||||
|
\0 \d231 ; 231 E7 greek small letter tau
|
||||||
|
\0 \d232 ; 232 E8 greek capital letter phi
|
||||||
|
\0 \d233 ; 233 E9 greek capital letter theta
|
||||||
|
\0 \d234 ; 234 EA greek capital letter omega
|
||||||
|
\0 \d235 ; 235 EB greek small letter delta
|
||||||
|
\0 \d236 ; 236 EC infinity
|
||||||
|
\0 \d237 ; 237 ED empty set
|
||||||
|
\0 \d238 ; 238 EE greek small letter epsilon
|
||||||
|
\0 \d239 ; 239 EF intersection
|
||||||
|
\0 \d240 ; 240 F0 identical to
|
||||||
|
\0 \d241 ; 241 F1 plus-minus sign
|
||||||
|
\0 \d242 ; 242 F2 greater-than or equal to
|
||||||
|
\0 \d243 ; 243 F3 less-than or equal to
|
||||||
|
\0 \d244 ; 244 F4 top half integral
|
||||||
|
\0 \d245 ; 245 F5 bottom half integral
|
||||||
|
\0 \d246 ; 246 F6 division sign
|
||||||
|
\0 \d247 ; 247 F7 almost equal to
|
||||||
|
\0 \d248 ; 248 F8 ring operator
|
||||||
|
\0 \d249 ; 249 F9 middle dot
|
||||||
|
\0 \d250 ; 250 FA bullet operator
|
||||||
|
\0 \d251 ; 251 FB square root
|
||||||
|
\0 \d252 ; 252 FC superscript latin small letter n
|
||||||
|
\0 \d253 ; 253 FD superscript two
|
||||||
|
\0 \d254 ; 254 FE black square
|
||||||
|
\0 \d255 ; 255 FF no-break space
|
||||||
|
END
|
289
cfgs/charset/ibm_iqp.chs
Normal file
289
cfgs/charset/ibm_iqp.chs
Normal file
@ -0,0 +1,289 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts IBM extended characters to ISO 8859-1 q-p characters.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
100000 ; ID number (when >65535, all 255 chars will be translated)
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
IBMPC ; from set (actually CP865)
|
||||||
|
LATIN1QP ; to set
|
||||||
|
; ; dec hx description
|
||||||
|
\0 \d0 ; 0 00
|
||||||
|
\0 \d1 ; 1 01
|
||||||
|
\0 \d2 ; 2 02
|
||||||
|
\0 \d3 ; 3 03
|
||||||
|
\0 \d4 ; 4 04
|
||||||
|
\0 \d5 ; 5 05
|
||||||
|
\0 \d6 ; 6 06
|
||||||
|
\0 \d7 ; 7 07
|
||||||
|
\0 \d8 ; 8 08
|
||||||
|
\0 \d9 ; 9 09
|
||||||
|
\0 \d10 ; 10 0A
|
||||||
|
\0 \d11 ; 11 0B
|
||||||
|
\0 \d12 ; 12 0C
|
||||||
|
\0 \d13 ; 13 0D
|
||||||
|
\0 \d14 ; 14 0E
|
||||||
|
\0 \d15 ; 15 0F
|
||||||
|
\0 \d16 ; 16 10
|
||||||
|
\0 \d17 ; 17 11
|
||||||
|
\0 \d18 ; 18 12
|
||||||
|
\0 \d19 ; 19 13
|
||||||
|
\0 \d20 ; 20 14
|
||||||
|
\0 \d21 ; 21 15
|
||||||
|
\0 \d22 ; 22 16
|
||||||
|
\0 \d23 ; 23 17
|
||||||
|
\0 \d24 ; 24 18
|
||||||
|
\0 \d25 ; 25 19
|
||||||
|
\0 \d26 ; 26 1A
|
||||||
|
\0 \d27 ; 27 1B
|
||||||
|
\0 \d28 ; 28 1C
|
||||||
|
\0 \d29 ; 29 1D
|
||||||
|
\0 \d30 ; 30 1E
|
||||||
|
\0 \d31 ; 31 1F
|
||||||
|
\0 \d32 ; 32 20
|
||||||
|
\0 \d33 ; 33 21
|
||||||
|
\0 \d34 ; 34 22
|
||||||
|
\0 \d35 ; 35 23
|
||||||
|
\0 \d36 ; 36 24
|
||||||
|
\0 \d37 ; 37 25
|
||||||
|
\0 \d38 ; 38 26
|
||||||
|
\0 \d39 ; 39 27
|
||||||
|
\0 \d40 ; 40 28
|
||||||
|
\0 \d41 ; 41 29
|
||||||
|
\0 \d42 ; 42 2A
|
||||||
|
\0 \d43 ; 43 2B
|
||||||
|
\0 \d44 ; 44 2C
|
||||||
|
\0 \d45 ; 45 2D
|
||||||
|
\0 \d46 ; 46 2E
|
||||||
|
\0 \d47 ; 47 2F
|
||||||
|
\0 \d48 ; 48 30
|
||||||
|
\0 \d49 ; 49 31
|
||||||
|
\0 \d50 ; 50 32
|
||||||
|
\0 \d51 ; 51 33
|
||||||
|
\0 \d52 ; 52 34
|
||||||
|
\0 \d53 ; 53 35
|
||||||
|
\0 \d54 ; 54 36
|
||||||
|
\0 \d55 ; 55 37
|
||||||
|
\0 \d56 ; 56 38
|
||||||
|
\0 \d57 ; 57 39
|
||||||
|
\0 \d58 ; 58 3A
|
||||||
|
\0 \d59 ; 59 3B
|
||||||
|
\0 \d60 ; 60 3C
|
||||||
|
= 3 D ; 61 3D
|
||||||
|
\0 \d62 ; 62 3E
|
||||||
|
\0 \d63 ; 63 3F
|
||||||
|
\0 \d64 ; 64 40
|
||||||
|
\0 \d65 ; 65 41
|
||||||
|
\0 \d66 ; 66 42
|
||||||
|
\0 \d67 ; 67 43
|
||||||
|
\0 \d68 ; 68 44
|
||||||
|
\0 \d69 ; 69 45
|
||||||
|
\0 \d70 ; 70 46
|
||||||
|
\0 \d71 ; 71 47
|
||||||
|
\0 \d72 ; 72 48
|
||||||
|
\0 \d73 ; 73 49
|
||||||
|
\0 \d74 ; 74 4A
|
||||||
|
\0 \d75 ; 75 4B
|
||||||
|
\0 \d76 ; 76 4C
|
||||||
|
\0 \d77 ; 77 4D
|
||||||
|
\0 \d78 ; 78 4E
|
||||||
|
\0 \d79 ; 79 4F
|
||||||
|
\0 \d80 ; 80 50
|
||||||
|
\0 \d81 ; 81 51
|
||||||
|
\0 \d82 ; 82 52
|
||||||
|
\0 \d83 ; 83 53
|
||||||
|
\0 \d84 ; 84 54
|
||||||
|
\0 \d85 ; 85 55
|
||||||
|
\0 \d86 ; 86 56
|
||||||
|
\0 \d87 ; 87 57
|
||||||
|
\0 \d88 ; 88 58
|
||||||
|
\0 \d89 ; 89 59
|
||||||
|
\0 \d90 ; 90 5A
|
||||||
|
\0 \d91 ; 91 5B
|
||||||
|
\0 \d92 ; 92 5C
|
||||||
|
\0 \d93 ; 93 5D
|
||||||
|
\0 \d94 ; 94 5E
|
||||||
|
\0 \d95 ; 95 5F
|
||||||
|
\0 \d96 ; 96 60
|
||||||
|
\0 \d97 ; 97 61
|
||||||
|
\0 \d98 ; 98 62
|
||||||
|
\0 \d99 ; 99 63
|
||||||
|
\0 \d100 ; 100 64
|
||||||
|
\0 \d101 ; 101 65
|
||||||
|
\0 \d102 ; 102 66
|
||||||
|
\0 \d103 ; 103 67
|
||||||
|
\0 \d104 ; 104 68
|
||||||
|
\0 \d105 ; 105 69
|
||||||
|
\0 \d106 ; 106 6A
|
||||||
|
\0 \d107 ; 107 6B
|
||||||
|
\0 \d108 ; 108 6C
|
||||||
|
\0 \d109 ; 109 6D
|
||||||
|
\0 \d110 ; 110 6E
|
||||||
|
\0 \d111 ; 111 6F
|
||||||
|
\0 \d112 ; 112 70
|
||||||
|
\0 \d113 ; 113 71
|
||||||
|
\0 \d114 ; 114 72
|
||||||
|
\0 \d115 ; 115 73
|
||||||
|
\0 \d116 ; 116 74
|
||||||
|
\0 \d117 ; 117 75
|
||||||
|
\0 \d118 ; 118 76
|
||||||
|
\0 \d119 ; 119 77
|
||||||
|
\0 \d120 ; 120 78
|
||||||
|
\0 \d121 ; 121 79
|
||||||
|
\0 \d122 ; 122 7A
|
||||||
|
\0 \d123 ; 123 7B
|
||||||
|
\0 \d124 ; 124 7C
|
||||||
|
\0 \d125 ; 125 7D
|
||||||
|
\0 \d126 ; 126 7E
|
||||||
|
\0 \d127 ; 127 7F
|
||||||
|
= C 7 ; 128 80 latin capital letter c with cedilla
|
||||||
|
= F C ; 129 81 latin small letter u with diaeresis
|
||||||
|
= E 9 ; 130 82 latin small letter e with acute
|
||||||
|
= E 2 ; 131 83 latin small letter a with circumflex
|
||||||
|
= E 4 ; 132 84 latin small letter a with diaeresis
|
||||||
|
= E 0 ; 133 85 latin small letter a with grave
|
||||||
|
= E 5 ; 134 86 latin small letter a with ring above
|
||||||
|
= E 7 ; 135 87 latin small letter c with cedilla
|
||||||
|
= E A ; 136 88 latin small letter e with circumflex
|
||||||
|
= E B ; 137 89 latin small letter e with diaeresis
|
||||||
|
= E 8 ; 138 8A latin small letter e with grave
|
||||||
|
= E F ; 139 8B latin small letter i with diaeresis
|
||||||
|
= E E ; 140 8C latin small letter i with circumflex
|
||||||
|
= E C ; 141 8D latin small letter i with grave
|
||||||
|
= C 4 ; 142 8E latin capital letter a with diaeresis
|
||||||
|
= C 5 ; 143 8F latin capital letter a with ring above
|
||||||
|
= C 9 ; 144 90 latin capital letter e with acute
|
||||||
|
= E 6 ; 145 91 latin small letter ae
|
||||||
|
= C 6 ; 146 92 latin capital letter ae
|
||||||
|
= F 4 ; 147 93 latin small letter o with circumflex
|
||||||
|
= F 6 ; 148 94 latin small letter o with diaeresis
|
||||||
|
= F 2 ; 149 95 latin small letter o with grave
|
||||||
|
= F B ; 150 96 latin small letter u with circumflex
|
||||||
|
= F 9 ; 151 97 latin small letter u with grave
|
||||||
|
= F F ; 152 98 latin small letter y with diaeresis
|
||||||
|
= D 6 ; 153 99 latin capital letter o with diaeresis
|
||||||
|
= D C ; 154 9A latin capital letter u with diaeresis
|
||||||
|
= F 8 ; 155 9B latin small letter o with stroke (CP865 mapping)
|
||||||
|
= A 3 ; 156 9C pound sign
|
||||||
|
= D 8 ; 157 9D latin capital letter o with stroke (CP865 mapping)
|
||||||
|
P t ; 158 9E peseta sign
|
||||||
|
f l ; 159 9F dutch guilder sign (ibm437 159)
|
||||||
|
= E 1 ; 160 A0 latin small letter a with acute
|
||||||
|
= E D ; 161 A1 latin small letter i with acute
|
||||||
|
= F 3 ; 162 A2 latin small letter o with acute
|
||||||
|
= F A ; 163 A3 latin small letter u with acute
|
||||||
|
= F 1 ; 164 A4 latin small letter n with tilde
|
||||||
|
= D 1 ; 165 A5 latin capital letter n with tilde
|
||||||
|
= A A ; 166 A6 feminine ordinal indicator
|
||||||
|
= B A ; 167 A7 masculine ordinal indicator
|
||||||
|
= B F ; 168 A8 inverted question mark
|
||||||
|
\0 - ; 169 A9 reversed not sign
|
||||||
|
= A C ; 170 AA not sign
|
||||||
|
= B D ; 171 AB vulgar fraction one half
|
||||||
|
= B C ; 172 AC vulgar fraction one quarter
|
||||||
|
= A 1 ; 173 AD inverted exclamation mark
|
||||||
|
= A B ; 174 AE left-pointing double angle quotation mark
|
||||||
|
= B B ; 175 AF right-pointing double angle quotation mark
|
||||||
|
\0 # ; 176 B0 light shade
|
||||||
|
\0 # ; 177 B1 medium shade
|
||||||
|
\0 # ; 178 B2 dark shade
|
||||||
|
\0 | ; 179 B3 box drawings light vertical
|
||||||
|
\0 | ; 180 B4 box drawings light vertical and left
|
||||||
|
\0 | ; 181 B5 box drawings vertical light and left heavy
|
||||||
|
\0 | ; 182 B6 box drawings vertical heavy and left light
|
||||||
|
\0 + ; 183 B7 box drawings down heavy and left light
|
||||||
|
\0 + ; 184 B8 box drawings down light and left heavy
|
||||||
|
\0 | ; 185 B9 box drawings heavy vertical and left
|
||||||
|
\0 | ; 186 BA box drawings heavy vertical
|
||||||
|
\0 + ; 187 BB box drawings heavy down and left
|
||||||
|
\0 + ; 188 BC box drawings heavy up and left
|
||||||
|
\0 + ; 189 BD box drawings up heavy and left light
|
||||||
|
\0 + ; 190 BE box drawings up light and left heavy
|
||||||
|
\0 + ; 191 BF box drawings light down and left
|
||||||
|
\0 + ; 192 C0 box drawings light up and right
|
||||||
|
\0 - ; 193 C1 box drawings light up and horizontal
|
||||||
|
\0 - ; 194 C2 box drawings light down and horizontal
|
||||||
|
\0 | ; 195 C3 box drawings light vertical and right
|
||||||
|
\0 - ; 196 C4 box drawings light horizontal
|
||||||
|
\0 + ; 197 C5 box drawings light vertical and horizontal
|
||||||
|
\0 | ; 198 C6 box drawings vertical light and right heavy
|
||||||
|
\0 | ; 199 C7 box drawings vertical heavy and right light
|
||||||
|
\0 + ; 200 C8 box drawings heavy up and right
|
||||||
|
\0 + ; 201 C9 box drawings heavy down and right
|
||||||
|
\0 = ; 202 CA box drawings heavy up and horizontal
|
||||||
|
\0 = ; 203 CB box drawings heavy down and horizontal
|
||||||
|
\0 | ; 204 CC box drawings heavy vertical and right
|
||||||
|
\0 = ; 205 CD box drawings heavy horizontal
|
||||||
|
\0 + ; 206 CE box drawings heavy vertical and horizontal
|
||||||
|
\0 = ; 207 CF box drawings up light and horizontal heavy
|
||||||
|
\0 - ; 208 D0 box drawings up heavy and horizontal light
|
||||||
|
\0 = ; 209 D1 box drawings down light and horizontal heavy
|
||||||
|
\0 - ; 210 D2 box drawings down heavy and horizontal light
|
||||||
|
\0 + ; 211 D3 box drawings up heavy and right light
|
||||||
|
\0 + ; 212 D4 box drawings up light and right heavy
|
||||||
|
\0 + ; 213 D5 box drawings down light and right heavy
|
||||||
|
\0 + ; 214 D6 box drawings down heavy and right light
|
||||||
|
\0 | ; 215 D7 box drawings vertical heavy and horizontal light
|
||||||
|
\0 + ; 216 D8 box drawings vertical light and horizontal heavy
|
||||||
|
\0 + ; 217 D9 box drawings light up and left
|
||||||
|
\0 + ; 218 DA box drawings light down and right
|
||||||
|
\0 # ; 219 DB full block
|
||||||
|
\0 n ; 220 DC lower half block
|
||||||
|
\0 | ; 221 DD left half block
|
||||||
|
\0 | ; 222 DE right half block
|
||||||
|
\0 ~ ; 223 DF upper half block
|
||||||
|
\0 a ; 224 E0 greek small letter alpha
|
||||||
|
= D F ; 225 E1 greek small letter beta (here used as german ss)
|
||||||
|
\x1 ? ; 226 E2 greek capital letter gamma
|
||||||
|
p i ; 227 E3 greek small letter pi
|
||||||
|
\x1 ? ; 228 E4 greek capital letter sigma
|
||||||
|
\x1 ? ; 229 E5 greek small letter sigma
|
||||||
|
= B 5 ; 230 E6 greek small letter mu
|
||||||
|
\x1 ? ; 231 E7 greek small letter tau
|
||||||
|
\x1 ? ; 232 E8 greek capital letter phi
|
||||||
|
\x1 ? ; 233 E9 greek capital letter theta
|
||||||
|
\x1 ? ; 234 EA greek capital letter omega
|
||||||
|
= F 0 ; 235 EB greek small letter delta
|
||||||
|
\x1 ? ; 236 EC infinity
|
||||||
|
= F 8 ; 237 ED empty set
|
||||||
|
\x1 ? ; 238 EE greek small letter epsilon
|
||||||
|
\x1 ? ; 239 EF intersection
|
||||||
|
= = ; 240 F0 identical to
|
||||||
|
= B 1 ; 241 F1 plus-minus sign
|
||||||
|
> = ; 242 F2 greater-than or equal to
|
||||||
|
< = ; 243 F3 less-than or equal to
|
||||||
|
\x1 ? ; 244 F4 top half integral
|
||||||
|
\x1 ? ; 245 F5 bottom half integral
|
||||||
|
= F 7 ; 246 F6 division sign
|
||||||
|
~ = ; 247 F7 almost equal to
|
||||||
|
= B 0 ; 248 F8 ring operator
|
||||||
|
\0 . ; 249 F9 middle dot
|
||||||
|
\0 - ; 250 FA bullet operator
|
||||||
|
\x1 ? ; 251 FB square root
|
||||||
|
^ n ; 252 FC superscript latin small letter n
|
||||||
|
= B 2 ; 253 FD superscript two
|
||||||
|
= B 7 ; 254 FE black square
|
||||||
|
= A 0 ; 255 FF no-break space
|
||||||
|
END
|
161
cfgs/charset/ibm_iso.chs
Normal file
161
cfgs/charset/ibm_iso.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts IBM extended characters to ISO 8859-1 characters.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
IBMPC ; from set (actually CP865)
|
||||||
|
LATIN-1 ; to set
|
||||||
|
;
|
||||||
|
\0 \xC7 ; 128 80 latin capital letter c with cedilla
|
||||||
|
\0 \xFC ; 129 81 latin small letter u with diaeresis
|
||||||
|
\0 \xE9 ; 130 82 latin small letter e with acute
|
||||||
|
\0 \xE2 ; 131 83 latin small letter a with circumflex
|
||||||
|
\0 \xE4 ; 132 84 latin small letter a with diaeresis
|
||||||
|
\0 \xE0 ; 133 85 latin small letter a with grave
|
||||||
|
\0 \xE5 ; 134 86 latin small letter a with ring above
|
||||||
|
\0 \xE7 ; 135 87 latin small letter c with cedilla
|
||||||
|
\0 \xEA ; 136 88 latin small letter e with circumflex
|
||||||
|
\0 \xEB ; 137 89 latin small letter e with diaeresis
|
||||||
|
\0 \xE8 ; 138 8A latin small letter e with grave
|
||||||
|
\0 \xEF ; 139 8B latin small letter i with diaeresis
|
||||||
|
\0 \xEE ; 140 8C latin small letter i with circumflex
|
||||||
|
\0 \xEC ; 141 8D latin small letter i with grave
|
||||||
|
\0 \xC4 ; 142 8E latin capital letter a with diaeresis
|
||||||
|
\0 \xC5 ; 143 8F latin capital letter a with ring above
|
||||||
|
\0 \xC9 ; 144 90 latin capital letter e with acute
|
||||||
|
\0 \xE6 ; 145 91 latin small letter ae
|
||||||
|
\0 \xC6 ; 146 92 latin capital letter ae
|
||||||
|
\0 \xF4 ; 147 93 latin small letter o with circumflex
|
||||||
|
\0 \xF6 ; 148 94 latin small letter o with diaeresis
|
||||||
|
\0 \xF2 ; 149 95 latin small letter o with grave
|
||||||
|
\0 \xFB ; 150 96 latin small letter u with circumflex
|
||||||
|
\0 \xF9 ; 151 97 latin small letter u with grave
|
||||||
|
\0 \xFF ; 152 98 latin small letter y with diaeresis
|
||||||
|
\0 \xD6 ; 153 99 latin capital letter o with diaeresis
|
||||||
|
\0 \xDC ; 154 9A latin capital letter u with diaeresis
|
||||||
|
\0 \xF8 ; 155 9B latin small letter o with stroke (CP865 mapping)
|
||||||
|
\0 \xA3 ; 156 9C pound sign
|
||||||
|
\0 \xD8 ; 157 9D latin capital letter o with stroke (CP865 mapping)
|
||||||
|
P t ; 158 9E peseta sign
|
||||||
|
f l ; 159 9F dutch guilder sign (ibm437 159)
|
||||||
|
\0 \xE1 ; 160 A0 latin small letter a with acute
|
||||||
|
\0 \xED ; 161 A1 latin small letter i with acute
|
||||||
|
\0 \xF3 ; 162 A2 latin small letter o with acute
|
||||||
|
\0 \xFA ; 163 A3 latin small letter u with acute
|
||||||
|
\0 \xF1 ; 164 A4 latin small letter n with tilde
|
||||||
|
\0 \xD1 ; 165 A5 latin capital letter n with tilde
|
||||||
|
\0 \xAA ; 166 A6 feminine ordinal indicator
|
||||||
|
\0 \xBA ; 167 A7 masculine ordinal indicator
|
||||||
|
\0 \xBF ; 168 A8 inverted question mark
|
||||||
|
\0 - ; 169 A9 reversed not sign
|
||||||
|
\0 \xAC ; 170 AA not sign
|
||||||
|
\0 \xBD ; 171 AB vulgar fraction one half
|
||||||
|
\0 \xBC ; 172 AC vulgar fraction one quarter
|
||||||
|
\0 \xA1 ; 173 AD inverted exclamation mark
|
||||||
|
\0 \xAB ; 174 AE left-pointing double angle quotation mark
|
||||||
|
\0 \xBB ; 175 AF right-pointing double angle quotation mark
|
||||||
|
\0 # ; 176 B0 light shade
|
||||||
|
\0 # ; 177 B1 medium shade
|
||||||
|
\0 # ; 178 B2 dark shade
|
||||||
|
\0 | ; 179 B3 box drawings light vertical
|
||||||
|
\0 | ; 180 B4 box drawings light vertical and left
|
||||||
|
\0 | ; 181 B5 box drawings vertical light and left heavy
|
||||||
|
\0 | ; 182 B6 box drawings vertical heavy and left light
|
||||||
|
\0 + ; 183 B7 box drawings down heavy and left light
|
||||||
|
\0 + ; 184 B8 box drawings down light and left heavy
|
||||||
|
\0 | ; 185 B9 box drawings heavy vertical and left
|
||||||
|
\0 | ; 186 BA box drawings heavy vertical
|
||||||
|
\0 + ; 187 BB box drawings heavy down and left
|
||||||
|
\0 + ; 188 BC box drawings heavy up and left
|
||||||
|
\0 + ; 189 BD box drawings up heavy and left light
|
||||||
|
\0 + ; 190 BE box drawings up light and left heavy
|
||||||
|
\0 + ; 191 BF box drawings light down and left
|
||||||
|
\0 + ; 192 C0 box drawings light up and right
|
||||||
|
\0 - ; 193 C1 box drawings light up and horizontal
|
||||||
|
\0 - ; 194 C2 box drawings light down and horizontal
|
||||||
|
\0 | ; 195 C3 box drawings light vertical and right
|
||||||
|
\0 - ; 196 C4 box drawings light horizontal
|
||||||
|
\0 + ; 197 C5 box drawings light vertical and horizontal
|
||||||
|
\0 | ; 198 C6 box drawings vertical light and right heavy
|
||||||
|
\0 | ; 199 C7 box drawings vertical heavy and right light
|
||||||
|
\0 + ; 200 C8 box drawings heavy up and right
|
||||||
|
\0 + ; 201 C9 box drawings heavy down and right
|
||||||
|
\0 = ; 202 CA box drawings heavy up and horizontal
|
||||||
|
\0 = ; 203 CB box drawings heavy down and horizontal
|
||||||
|
\0 | ; 204 CC box drawings heavy vertical and right
|
||||||
|
\0 = ; 205 CD box drawings heavy horizontal
|
||||||
|
\0 + ; 206 CE box drawings heavy vertical and horizontal
|
||||||
|
\0 = ; 207 CF box drawings up light and horizontal heavy
|
||||||
|
\0 - ; 208 D0 box drawings up heavy and horizontal light
|
||||||
|
\0 = ; 209 D1 box drawings down light and horizontal heavy
|
||||||
|
\0 - ; 210 D2 box drawings down heavy and horizontal light
|
||||||
|
\0 + ; 211 D3 box drawings up heavy and right light
|
||||||
|
\0 + ; 212 D4 box drawings up light and right heavy
|
||||||
|
\0 + ; 213 D5 box drawings down light and right heavy
|
||||||
|
\0 + ; 214 D6 box drawings down heavy and right light
|
||||||
|
\0 | ; 215 D7 box drawings vertical heavy and horizontal light
|
||||||
|
\0 + ; 216 D8 box drawings vertical light and horizontal heavy
|
||||||
|
\0 + ; 217 D9 box drawings light up and left
|
||||||
|
\0 + ; 218 DA box drawings light down and right
|
||||||
|
\0 # ; 219 DB full block
|
||||||
|
\0 n ; 220 DC lower half block
|
||||||
|
\0 | ; 221 DD left half block
|
||||||
|
\0 | ; 222 DE right half block
|
||||||
|
\0 ~ ; 223 DF upper half block
|
||||||
|
\0 a ; 224 E0 greek small letter alpha
|
||||||
|
\0 \xDF ; 225 E1 greek small letter beta (here used as german ss)
|
||||||
|
\x1 ? ; 226 E2 greek capital letter gamma
|
||||||
|
p i ; 227 E3 greek small letter pi
|
||||||
|
\x1 ? ; 228 E4 greek capital letter sigma
|
||||||
|
\x1 ? ; 229 E5 greek small letter sigma
|
||||||
|
\0 \xB5 ; 230 E6 greek small letter mu
|
||||||
|
\x1 ? ; 231 E7 greek small letter tau
|
||||||
|
\x1 ? ; 232 E8 greek capital letter phi
|
||||||
|
\x1 ? ; 233 E9 greek capital letter theta
|
||||||
|
\x1 ? ; 234 EA greek capital letter omega
|
||||||
|
\0 \xF0 ; 235 EB greek small letter delta
|
||||||
|
\x1 ? ; 236 EC infinity
|
||||||
|
/ 0 ; 237 ED empty set
|
||||||
|
\x1 ? ; 238 EE greek small letter epsilon
|
||||||
|
\x1 ? ; 239 EF intersection
|
||||||
|
= = ; 240 F0 identical to
|
||||||
|
\0 \xB1 ; 241 F1 plus-minus sign
|
||||||
|
> = ; 242 F2 greater-than or equal to
|
||||||
|
< = ; 243 F3 less-than or equal to
|
||||||
|
\x1 ? ; 244 F4 top half integral
|
||||||
|
\x1 ? ; 245 F5 bottom half integral
|
||||||
|
\0 \xF7 ; 246 F6 division sign
|
||||||
|
~ = ; 247 F7 almost equal to
|
||||||
|
\0 \xB0 ; 248 F8 ring operator
|
||||||
|
\0 . ; 249 F9 middle dot
|
||||||
|
\0 - ; 250 FA bullet operator
|
||||||
|
\x1 ? ; 251 FB square root
|
||||||
|
^ n ; 252 FC superscript latin small letter n
|
||||||
|
\0 \xB2 ; 253 FD superscript two
|
||||||
|
\0 \xB7 ; 254 FE black square
|
||||||
|
\0 \xA0 ; 255 FF no-break space
|
||||||
|
END
|
161
cfgs/charset/ibm_mac.chs
Normal file
161
cfgs/charset/ibm_mac.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts IBM extended characters to MAC characters.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
IBMPC ; from set (actually CP865)
|
||||||
|
MAC ; to set
|
||||||
|
;
|
||||||
|
\0 \x82 ; 128 80 latin capital letter c with cedilla
|
||||||
|
\0 \x9F ; 129 81 latin small letter u with diaeresis
|
||||||
|
\0 \x8E ; 130 82 latin small letter e with acute
|
||||||
|
\0 \x89 ; 131 83 latin small letter a with circumflex
|
||||||
|
\0 \x8A ; 132 84 latin small letter a with diaeresis
|
||||||
|
\0 \x88 ; 133 85 latin small letter a with grave
|
||||||
|
\0 \x8C ; 134 86 latin small letter a with ring above
|
||||||
|
\0 \x8D ; 135 87 latin small letter c with cedilla
|
||||||
|
\0 \x90 ; 136 88 latin small letter e with circumflex
|
||||||
|
\0 \x91 ; 137 89 latin small letter e with diaeresis
|
||||||
|
\0 \x8F ; 138 8A latin small letter e with grave
|
||||||
|
\0 \x95 ; 139 8B latin small letter i with diaeresis
|
||||||
|
\0 \x94 ; 140 8C latin small letter i with circumflex
|
||||||
|
\0 \x93 ; 141 8D latin small letter i with grave
|
||||||
|
\0 \x80 ; 142 8E latin capital letter a with diaeresis
|
||||||
|
\0 \x81 ; 143 8F latin capital letter a with ring above
|
||||||
|
\0 \x83 ; 144 90 latin capital letter e with acute
|
||||||
|
\0 \xBE ; 145 91 latin small letter ae
|
||||||
|
\0 \xAE ; 146 92 latin capital letter ae
|
||||||
|
\0 \x99 ; 147 93 latin small letter o with circumflex
|
||||||
|
\0 \x9A ; 148 94 latin small letter o with diaeresis
|
||||||
|
\0 \x98 ; 149 95 latin small letter o with grave
|
||||||
|
\0 \x9E ; 150 96 latin small letter u with circumflex
|
||||||
|
\0 \x9D ; 151 97 latin small letter u with grave
|
||||||
|
\0 \xD8 ; 152 98 latin small letter y with diaeresis
|
||||||
|
\0 \x85 ; 153 99 latin capital letter o with diaeresis
|
||||||
|
\0 \x9F ; 154 9A latin capital letter u with diaeresis
|
||||||
|
\0 \xA2 ; 155 9B latin small letter o with stroke (CP865 mapping)
|
||||||
|
\0 \xA3 ; 156 9C pound sign
|
||||||
|
\0 \xB4 ; 157 9D latin capital letter o with stroke (CP865 mapping)
|
||||||
|
P t ; 158 9E peseta sign
|
||||||
|
\0 \xC4 ; 159 9F dutch guilder sign (ibm437 159)
|
||||||
|
\0 \x87 ; 160 A0 latin small letter a with acute
|
||||||
|
\0 \x92 ; 161 A1 latin small letter i with acute
|
||||||
|
\0 \x97 ; 162 A2 latin small letter o with acute
|
||||||
|
\0 \x9C ; 163 A3 latin small letter u with acute
|
||||||
|
\0 \x96 ; 164 A4 latin small letter n with tilde
|
||||||
|
\0 \x84 ; 165 A5 latin capital letter n with tilde
|
||||||
|
\0 \xBB ; 166 A6 feminine ordinal indicator
|
||||||
|
\0 \xBC ; 167 A7 masculine ordinal indicator
|
||||||
|
\0 \xC0 ; 168 A8 inverted question mark
|
||||||
|
\0 - ; 169 A9 reversed not sign
|
||||||
|
\0 \xC2 ; 170 AA not sign
|
||||||
|
. 5 ; 171 AB vulgar fraction one half
|
||||||
|
\x1 ? ; 172 AC vulgar fraction one quarter
|
||||||
|
\0 \xC1 ; 173 AD inverted exclamation mark
|
||||||
|
\0 \xC7 ; 174 AE left-pointing double angle quotation mark
|
||||||
|
\0 \xC8 ; 175 AF right-pointing double angle quotation mark
|
||||||
|
\0 # ; 176 B0 light shade
|
||||||
|
\0 # ; 177 B1 medium shade
|
||||||
|
\0 # ; 178 B2 dark shade
|
||||||
|
\0 | ; 179 B3 box drawings light vertical
|
||||||
|
\0 | ; 180 B4 box drawings light vertical and left
|
||||||
|
\0 | ; 181 B5 box drawings vertical light and left heavy
|
||||||
|
\0 | ; 182 B6 box drawings vertical heavy and left light
|
||||||
|
\0 + ; 183 B7 box drawings down heavy and left light
|
||||||
|
\0 + ; 184 B8 box drawings down light and left heavy
|
||||||
|
\0 | ; 185 B9 box drawings heavy vertical and left
|
||||||
|
\0 | ; 186 BA box drawings heavy vertical
|
||||||
|
\0 + ; 187 BB box drawings heavy down and left
|
||||||
|
\0 + ; 188 BC box drawings heavy up and left
|
||||||
|
\0 + ; 189 BD box drawings up heavy and left light
|
||||||
|
\0 + ; 190 BE box drawings up light and left heavy
|
||||||
|
\0 + ; 191 BF box drawings light down and left
|
||||||
|
\0 + ; 192 C0 box drawings light up and right
|
||||||
|
\0 - ; 193 C1 box drawings light up and horizontal
|
||||||
|
\0 - ; 194 C2 box drawings light down and horizontal
|
||||||
|
\0 | ; 195 C3 box drawings light vertical and right
|
||||||
|
\0 - ; 196 C4 box drawings light horizontal
|
||||||
|
\0 + ; 197 C5 box drawings light vertical and horizontal
|
||||||
|
\0 | ; 198 C6 box drawings vertical light and right heavy
|
||||||
|
\0 | ; 199 C7 box drawings vertical heavy and right light
|
||||||
|
\0 + ; 200 C8 box drawings heavy up and right
|
||||||
|
\0 + ; 201 C9 box drawings heavy down and right
|
||||||
|
\0 = ; 202 CA box drawings heavy up and horizontal
|
||||||
|
\0 = ; 203 CB box drawings heavy down and horizontal
|
||||||
|
\0 | ; 204 CC box drawings heavy vertical and right
|
||||||
|
\0 = ; 205 CD box drawings heavy horizontal
|
||||||
|
\0 + ; 206 CE box drawings heavy vertical and horizontal
|
||||||
|
\0 = ; 207 CF box drawings up light and horizontal heavy
|
||||||
|
\0 - ; 208 D0 box drawings up heavy and horizontal light
|
||||||
|
\0 = ; 209 D1 box drawings down light and horizontal heavy
|
||||||
|
\0 - ; 210 D2 box drawings down heavy and horizontal light
|
||||||
|
\0 + ; 211 D3 box drawings up heavy and right light
|
||||||
|
\0 + ; 212 D4 box drawings up light and right heavy
|
||||||
|
\0 + ; 213 D5 box drawings down light and right heavy
|
||||||
|
\0 + ; 214 D6 box drawings down heavy and right light
|
||||||
|
\0 | ; 215 D7 box drawings vertical heavy and horizontal light
|
||||||
|
\0 + ; 216 D8 box drawings vertical light and horizontal heavy
|
||||||
|
\0 + ; 217 D9 box drawings light up and left
|
||||||
|
\0 + ; 218 DA box drawings light down and right
|
||||||
|
\0 # ; 219 DB full block
|
||||||
|
\0 n ; 220 DC lower half block
|
||||||
|
\0 | ; 221 DD left half block
|
||||||
|
\0 | ; 222 DE right half block
|
||||||
|
\0 ~ ; 223 DF upper half block
|
||||||
|
\0 a ; 224 E0 greek small letter alpha
|
||||||
|
\0 \xA7 ; 225 E1 greek small letter beta (here used as german ss)
|
||||||
|
\x1 ? ; 226 E2 greek capital letter gamma
|
||||||
|
\0 \xB9 ; 227 E3 greek small letter pi
|
||||||
|
\0 \xB7 ; 228 E4 greek capital letter sigma
|
||||||
|
\x1 ? ; 229 E5 greek small letter sigma
|
||||||
|
\0 \xB5 ; 230 E6 greek small letter mu
|
||||||
|
\x1 ? ; 231 E7 greek small letter tau
|
||||||
|
\x1 ? ; 232 E8 greek capital letter phi
|
||||||
|
\x1 ? ; 233 E9 greek capital letter theta
|
||||||
|
\0 \xBD ; 234 EA greek capital letter omega
|
||||||
|
\0 \xB6 ; 235 EB greek small letter delta
|
||||||
|
\0 \xB0 ; 236 EC infinity
|
||||||
|
\0 \xBF ; 237 ED empty set
|
||||||
|
\x1 ? ; 238 EE greek small letter epsilon
|
||||||
|
\x1 ? ; 239 EF intersection
|
||||||
|
= = ; 240 F0 identical to
|
||||||
|
\0 \xB1 ; 241 F1 plus-minus sign
|
||||||
|
\0 \xB3 ; 242 F2 greater-than or equal to
|
||||||
|
\0 \xB2 ; 243 F3 less-than or equal to
|
||||||
|
\x1 ? ; 244 F4 top half integral
|
||||||
|
\x1 ? ; 245 F5 bottom half integral
|
||||||
|
\0 \xD6 ; 246 F6 division sign
|
||||||
|
\0 \xC5 ; 247 F7 almost equal to
|
||||||
|
\0 \xA1 ; 248 F8 ring operator
|
||||||
|
\0 . ; 249 F9 middle dot
|
||||||
|
\0 \xD0 ; 250 FA bullet operator
|
||||||
|
\0 \xC3 ; 251 FB square root
|
||||||
|
^ n ; 252 FC superscript latin small letter n
|
||||||
|
^ 2 ; 253 FD superscript two
|
||||||
|
\0 \xA5 ; 254 FE black square
|
||||||
|
\0 \d32 ; 255 FF no-break space
|
||||||
|
END
|
161
cfgs/charset/ibm_mne.chs
Normal file
161
cfgs/charset/ibm_mne.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts IBM extended characters to K. Simonsen mnemonics.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
IBMPC ; from set (actually CP865)
|
||||||
|
MNEMONIC ; to set
|
||||||
|
;
|
||||||
|
\d29 C , ; 128 80 latin capital letter c with cedilla
|
||||||
|
\d29 u : ; 129 81 latin small letter u with diaeresis
|
||||||
|
\d29 e ' ; 130 82 latin small letter e with acute
|
||||||
|
\d29 a > ; 131 83 latin small letter a with circumflex
|
||||||
|
\d29 a : ; 132 84 latin small letter a with diaeresis
|
||||||
|
\d29 a ! ; 133 85 latin small letter a with grave
|
||||||
|
\d29 a a ; 134 86 latin small letter a with ring above
|
||||||
|
\d29 c , ; 135 87 latin small letter c with cedilla
|
||||||
|
\d29 e > ; 136 88 latin small letter e with circumflex
|
||||||
|
\d29 e : ; 137 89 latin small letter e with diaeresis
|
||||||
|
\d29 e ! ; 138 8A latin small letter e with grave
|
||||||
|
\d29 i : ; 139 8B latin small letter i with diaeresis
|
||||||
|
\d29 i > ; 140 8C latin small letter i with circumflex
|
||||||
|
\d29 i ! ; 141 8D latin small letter i with grave
|
||||||
|
\d29 A : ; 142 8E latin capital letter a with diaeresis
|
||||||
|
\d29 A A ; 143 8F latin capital letter a with ring above
|
||||||
|
\d29 E ' ; 144 90 latin capital letter e with acute
|
||||||
|
\d29 a e ; 145 91 latin small letter ae
|
||||||
|
\d29 A E ; 146 92 latin capital letter ae
|
||||||
|
\d29 o > ; 147 93 latin small letter o with circumflex
|
||||||
|
\d29 o : ; 148 94 latin small letter o with diaeresis
|
||||||
|
\d29 o ! ; 149 95 latin small letter o with grave
|
||||||
|
\d29 u > ; 150 96 latin small letter u with circumflex
|
||||||
|
\d29 u ! ; 151 97 latin small letter u with grave
|
||||||
|
\d29 y : ; 152 98 latin small letter y with diaeresis
|
||||||
|
\d29 O : ; 153 99 latin capital letter o with diaeresis
|
||||||
|
\d29 U : ; 154 9A latin capital letter u with diaeresis
|
||||||
|
\d29 o / ; 155 9B latin small letter o with stroke (CP865 mapping)
|
||||||
|
\d29 P d ; 156 9C pound sign
|
||||||
|
\d29 O / ; 157 9D latin capital letter o with stroke (CP865 mapping)
|
||||||
|
\d29 P t ; 158 9E peseta sign
|
||||||
|
\d29 F l ; 159 9F dutch guilder sign (ibm437 159)
|
||||||
|
\d29 a ' ; 160 A0 latin small letter a with acute
|
||||||
|
\d29 i ' ; 161 A1 latin small letter i with acute
|
||||||
|
\d29 o ' ; 162 A2 latin small letter o with acute
|
||||||
|
\d29 u ' ; 163 A3 latin small letter u with acute
|
||||||
|
\d29 n ? ; 164 A4 latin small letter n with tilde
|
||||||
|
\d29 N ? ; 165 A5 latin capital letter n with tilde
|
||||||
|
\d29 - a ; 166 A6 feminine ordinal indicator
|
||||||
|
\d29 - o ; 167 A7 masculine ordinal indicator
|
||||||
|
\d29 ? I ; 168 A8 inverted question mark
|
||||||
|
\d29 N I ; 169 A9 reversed not sign
|
||||||
|
\d29 N O ; 170 AA not sign
|
||||||
|
\d29 1 2 ; 171 AB vulgar fraction one half
|
||||||
|
\d29 1 4 ; 172 AC vulgar fraction one quarter
|
||||||
|
\d29 ! I ; 173 AD inverted exclamation mark
|
||||||
|
\d29 < < ; 174 AE left-pointing double angle quotation mark
|
||||||
|
\d29 > > ; 175 AF right-pointing double angle quotation mark
|
||||||
|
\d29 . S ; 176 B0 light shade
|
||||||
|
\d29 : S ; 177 B1 medium shade
|
||||||
|
\d29 ? S ; 178 B2 dark shade
|
||||||
|
\d29 v v ; 179 B3 box drawings light vertical
|
||||||
|
\d29 v l ; 180 B4 box drawings light vertical and left
|
||||||
|
\d29 v L ; 181 B5 box drawings vertical light and left heavy
|
||||||
|
\d29 V l ; 182 B6 box drawings vertical heavy and left light
|
||||||
|
\d29 D l ; 183 B7 box drawings down heavy and left light
|
||||||
|
\d29 d L ; 184 B8 box drawings down light and left heavy
|
||||||
|
\d29 V L ; 185 B9 box drawings heavy vertical and left
|
||||||
|
\d29 V V ; 186 BA box drawings heavy vertical
|
||||||
|
\d29 L D ; 187 BB box drawings heavy down and left
|
||||||
|
\d29 U L ; 188 BC box drawings heavy up and left
|
||||||
|
\d29 U l ; 189 BD box drawings up heavy and left light
|
||||||
|
\d29 u L ; 190 BE box drawings up light and left heavy
|
||||||
|
\d29 d l ; 191 BF box drawings light down and left
|
||||||
|
\d29 u r ; 192 C0 box drawings light up and right
|
||||||
|
\d29 u h ; 193 C1 box drawings light up and horizontal
|
||||||
|
\d29 d h ; 194 C2 box drawings light down and horizontal
|
||||||
|
\d29 v r ; 195 C3 box drawings light vertical and right
|
||||||
|
\d29 h h ; 196 C4 box drawings light horizontal
|
||||||
|
\d29 v h ; 197 C5 box drawings light vertical and horizontal
|
||||||
|
\d29 v R ; 198 C6 box drawings vertical light and right heavy
|
||||||
|
\d29 V r ; 199 C7 box drawings vertical heavy and right light
|
||||||
|
\d29 U R ; 200 C8 box drawings heavy up and right
|
||||||
|
\d29 D R ; 201 C9 box drawings heavy down and right
|
||||||
|
\d29 U H ; 202 CA box drawings heavy up and horizontal
|
||||||
|
\d29 D H ; 203 CB box drawings heavy down and horizontal
|
||||||
|
\d29 V R ; 204 CC box drawings heavy vertical and right
|
||||||
|
\d29 H H ; 205 CD box drawings heavy horizontal
|
||||||
|
\d29 V H ; 206 CE box drawings heavy vertical and horizontal
|
||||||
|
\d29 u H ; 207 CF box drawings up light and horizontal heavy
|
||||||
|
\d29 U h ; 208 D0 box drawings up heavy and horizontal light
|
||||||
|
\d29 d H ; 209 D1 box drawings down light and horizontal heavy
|
||||||
|
\d29 D h ; 210 D2 box drawings down heavy and horizontal light
|
||||||
|
\d29 U r ; 211 D3 box drawings up heavy and right light
|
||||||
|
\d29 u R ; 212 D4 box drawings up light and right heavy
|
||||||
|
\d29 D r ; 213 D5 box drawings down light and right heavy
|
||||||
|
\d29 d R ; 214 D6 box drawings down heavy and right light
|
||||||
|
\d29 V h ; 215 D7 box drawings vertical heavy and horizontal light
|
||||||
|
\d29 v H ; 216 D8 box drawings vertical light and horizontal heavy
|
||||||
|
\d29 u l ; 217 D9 box drawings light up and left
|
||||||
|
\d29 d r ; 218 DA box drawings light down and right
|
||||||
|
\d29 F B ; 219 DB full block
|
||||||
|
\d29 L B ; 220 DC lower half block
|
||||||
|
\d29 l B ; 221 DD left half block
|
||||||
|
\d29 R B ; 222 DE right half block
|
||||||
|
\d29 T B ; 223 DF upper half block
|
||||||
|
\d29 a * ; 224 E0 greek small letter alpha
|
||||||
|
\d29 b * ; 225 E1 greek small letter beta (here used as german ss)
|
||||||
|
\d29 G * ; 226 E2 greek capital letter gamma
|
||||||
|
\d29 p * ; 227 E3 greek small letter pi
|
||||||
|
\d29 S * ; 228 E4 greek capital letter sigma
|
||||||
|
\d29 s * ; 229 E5 greek small letter sigma
|
||||||
|
\d29 m * ; 230 E6 greek small letter mu
|
||||||
|
\d29 t * ; 231 E7 greek small letter tau
|
||||||
|
\d29 F * ; 232 E8 greek capital letter phi
|
||||||
|
\d29 H * ; 233 E9 greek capital letter theta
|
||||||
|
\d29 W * ; 234 EA greek capital letter omega
|
||||||
|
\d29 d * ; 235 EB greek small letter delta
|
||||||
|
\d29 0 0 ; 236 EC infinity
|
||||||
|
\d29 / 0 ; 237 ED empty set
|
||||||
|
\d29 e * ; 238 EE greek small letter epsilon
|
||||||
|
\d29 ( U ; 239 EF intersection
|
||||||
|
\d29 = 3 ; 240 F0 identical to
|
||||||
|
\d29 + - ; 241 F1 plus-minus sign
|
||||||
|
\d29 > = ; 242 F2 greater-than or equal to
|
||||||
|
\d29 < = ; 243 F3 less-than or equal to
|
||||||
|
\d29 I u ; 244 F4 top half integral
|
||||||
|
\d29 I l ; 245 F5 bottom half integral
|
||||||
|
\d29 - : ; 246 F6 division sign
|
||||||
|
\d29 ? 2 ; 247 F7 almost equal to
|
||||||
|
\d29 O b ; 248 F8 ring operator
|
||||||
|
\d29 . M ; 249 F9 middle dot
|
||||||
|
\d29 S b ; 250 FA bullet operator
|
||||||
|
\d29 R T ; 251 FB square root
|
||||||
|
\d29 n S ; 252 FC superscript latin small letter n
|
||||||
|
\d29 2 S ; 253 FD superscript two
|
||||||
|
\d29 f S ; 254 FE black square
|
||||||
|
\d29 N S ; 255 FF no-break space
|
||||||
|
END
|
161
cfgs/charset/ibm_swe.chs
Normal file
161
cfgs/charset/ibm_swe.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts IBM extended characters to swedish ASCII characters.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
IBMPC ; from set (actually CP865)
|
||||||
|
SWEDISH ; to set
|
||||||
|
;
|
||||||
|
\0 \d128 ; 128 80 latin capital letter c with cedilla
|
||||||
|
\0 \d129 ; 129 81 latin small letter u with diaeresis
|
||||||
|
\0 \d130 ; 130 82 latin small letter e with acute
|
||||||
|
\0 \d131 ; 131 83 latin small letter a with circumflex
|
||||||
|
\0 { ; 132 84 latin small letter a with diaeresis
|
||||||
|
\0 \d133 ; 133 85 latin small letter a with grave
|
||||||
|
\0 } ; 134 86 latin small letter a with ring above
|
||||||
|
\0 \d135 ; 135 87 latin small letter c with cedilla
|
||||||
|
\0 \d136 ; 136 88 latin small letter e with circumflex
|
||||||
|
\0 \d137 ; 137 89 latin small letter e with diaeresis
|
||||||
|
\0 \d138 ; 138 8A latin small letter e with grave
|
||||||
|
\0 \d139 ; 139 8B latin small letter i with diaeresis
|
||||||
|
\0 \d140 ; 140 8C latin small letter i with circumflex
|
||||||
|
\0 \d141 ; 141 8D latin small letter i with grave
|
||||||
|
\0 [ ; 142 8E latin capital letter a with diaeresis
|
||||||
|
\0 ] ; 143 8F latin capital letter a with ring above
|
||||||
|
\0 \d064 ; 144 90 latin capital letter e with acute
|
||||||
|
\0 \d145 ; 145 91 latin small letter ae
|
||||||
|
\0 \d146 ; 146 92 latin capital letter ae
|
||||||
|
\0 \d147 ; 147 93 latin small letter o with circumflex
|
||||||
|
\0 | ; 148 94 latin small letter o with diaeresis
|
||||||
|
\0 \d149 ; 149 95 latin small letter o with grave
|
||||||
|
\0 \d150 ; 150 96 latin small letter u with circumflex
|
||||||
|
\0 \d151 ; 151 97 latin small letter u with grave
|
||||||
|
\0 \d152 ; 152 98 latin small letter y with diaeresis
|
||||||
|
\0 \\ ; 153 99 latin capital letter o with diaeresis
|
||||||
|
\0 \d154 ; 154 9A latin capital letter u with diaeresis
|
||||||
|
\0 \d155 ; 155 9B latin small letter o with stroke (CP865 mapping)
|
||||||
|
\0 \d156 ; 156 9C pound sign
|
||||||
|
\0 \d157 ; 157 9D latin capital letter o with stroke (CP865 mapping)
|
||||||
|
\0 \d158 ; 158 9E peseta sign
|
||||||
|
\0 \d159 ; 159 9F dutch guilder sign (ibm437 159)
|
||||||
|
\0 \d160 ; 160 A0 latin small letter a with acute
|
||||||
|
\0 \d161 ; 161 A1 latin small letter i with acute
|
||||||
|
\0 \d162 ; 162 A2 latin small letter o with acute
|
||||||
|
\0 \d163 ; 163 A3 latin small letter u with acute
|
||||||
|
\0 \d164 ; 164 A4 latin small letter n with tilde
|
||||||
|
\0 \d165 ; 165 A5 latin capital letter n with tilde
|
||||||
|
\0 \d166 ; 166 A6 feminine ordinal indicator
|
||||||
|
\0 \d167 ; 167 A7 masculine ordinal indicator
|
||||||
|
\0 \d168 ; 168 A8 inverted question mark
|
||||||
|
\0 \d169 ; 169 A9 reversed not sign
|
||||||
|
\0 \d170 ; 170 AA not sign
|
||||||
|
\0 \d171 ; 171 AB vulgar fraction one half
|
||||||
|
\0 \d172 ; 172 AC vulgar fraction one quarter
|
||||||
|
\0 \d173 ; 173 AD inverted exclamation mark
|
||||||
|
\0 \d174 ; 174 AE left-pointing double angle quotation mark
|
||||||
|
\0 \d175 ; 175 AF right-pointing double angle quotation mark
|
||||||
|
\0 \d176 ; 176 B0 light shade
|
||||||
|
\0 \d177 ; 177 B1 medium shade
|
||||||
|
\0 \d178 ; 178 B2 dark shade
|
||||||
|
\0 \d179 ; 179 B3 box drawings light vertical
|
||||||
|
\0 \d180 ; 180 B4 box drawings light vertical and left
|
||||||
|
\0 \d181 ; 181 B5 box drawings vertical light and left heavy
|
||||||
|
\0 \d182 ; 182 B6 box drawings vertical heavy and left light
|
||||||
|
\0 \d183 ; 183 B7 box drawings down heavy and left light
|
||||||
|
\0 \d184 ; 184 B8 box drawings down light and left heavy
|
||||||
|
\0 \d185 ; 185 B9 box drawings heavy vertical and left
|
||||||
|
\0 \d186 ; 186 BA box drawings heavy vertical
|
||||||
|
\0 \d187 ; 187 BB box drawings heavy down and left
|
||||||
|
\0 \d188 ; 188 BC box drawings heavy up and left
|
||||||
|
\0 \d189 ; 189 BD box drawings up heavy and left light
|
||||||
|
\0 \d190 ; 190 BE box drawings up light and left heavy
|
||||||
|
\0 \d191 ; 191 BF box drawings light down and left
|
||||||
|
\0 \d192 ; 192 C0 box drawings light up and right
|
||||||
|
\0 \d193 ; 193 C1 box drawings light up and horizontal
|
||||||
|
\0 \d194 ; 194 C2 box drawings light down and horizontal
|
||||||
|
\0 \d195 ; 195 C3 box drawings light vertical and right
|
||||||
|
\0 \d196 ; 196 C4 box drawings light horizontal
|
||||||
|
\0 \d197 ; 197 C5 box drawings light vertical and horizontal
|
||||||
|
\0 \d198 ; 198 C6 box drawings vertical light and right heavy
|
||||||
|
\0 \d199 ; 199 C7 box drawings vertical heavy and right light
|
||||||
|
\0 \d200 ; 200 C8 box drawings heavy up and right
|
||||||
|
\0 \d201 ; 201 C9 box drawings heavy down and right
|
||||||
|
\0 \d202 ; 202 CA box drawings heavy up and horizontal
|
||||||
|
\0 \d203 ; 203 CB box drawings heavy down and horizontal
|
||||||
|
\0 \d204 ; 204 CC box drawings heavy vertical and right
|
||||||
|
\0 \d205 ; 205 CD box drawings heavy horizontal
|
||||||
|
\0 \d206 ; 206 CE box drawings heavy vertical and horizontal
|
||||||
|
\0 \d207 ; 207 CF box drawings up light and horizontal heavy
|
||||||
|
\0 \d208 ; 208 D0 box drawings up heavy and horizontal light
|
||||||
|
\0 \d209 ; 209 D1 box drawings down light and horizontal heavy
|
||||||
|
\0 \d210 ; 210 D2 box drawings down heavy and horizontal light
|
||||||
|
\0 \d211 ; 211 D3 box drawings up heavy and right light
|
||||||
|
\0 \d212 ; 212 D4 box drawings up light and right heavy
|
||||||
|
\0 \d213 ; 213 D5 box drawings down light and right heavy
|
||||||
|
\0 \d214 ; 214 D6 box drawings down heavy and right light
|
||||||
|
\0 \d215 ; 215 D7 box drawings vertical heavy and horizontal light
|
||||||
|
\0 \d216 ; 216 D8 box drawings vertical light and horizontal heavy
|
||||||
|
\0 \d217 ; 217 D9 box drawings light up and left
|
||||||
|
\0 \d218 ; 218 DA box drawings light down and right
|
||||||
|
\0 \d219 ; 219 DB full block
|
||||||
|
\0 \d220 ; 220 DC lower half block
|
||||||
|
\0 \d221 ; 221 DD left half block
|
||||||
|
\0 \d222 ; 222 DE right half block
|
||||||
|
\0 \d223 ; 223 DF upper half block
|
||||||
|
\0 \d224 ; 224 E0 greek small letter alpha
|
||||||
|
\0 \d225 ; 225 E1 greek small letter beta (here used as german ss)
|
||||||
|
\0 \d226 ; 226 E2 greek capital letter gamma
|
||||||
|
\0 \d227 ; 227 E3 greek small letter pi
|
||||||
|
\0 \d228 ; 228 E4 greek capital letter sigma
|
||||||
|
\0 \d229 ; 229 E5 greek small letter sigma
|
||||||
|
\0 \d230 ; 230 E6 greek small letter mu
|
||||||
|
\0 \d231 ; 231 E7 greek small letter tau
|
||||||
|
\0 \d232 ; 232 E8 greek capital letter phi
|
||||||
|
\0 \d233 ; 233 E9 greek capital letter theta
|
||||||
|
\0 \d234 ; 234 EA greek capital letter omega
|
||||||
|
\0 \d235 ; 235 EB greek small letter delta
|
||||||
|
\0 \d236 ; 236 EC infinity
|
||||||
|
\0 \d237 ; 237 ED empty set
|
||||||
|
\0 \d238 ; 238 EE greek small letter epsilon
|
||||||
|
\0 \d239 ; 239 EF intersection
|
||||||
|
\0 \d240 ; 240 F0 identical to
|
||||||
|
\0 \d241 ; 241 F1 plus-minus sign
|
||||||
|
\0 \d242 ; 242 F2 greater-than or equal to
|
||||||
|
\0 \d243 ; 243 F3 less-than or equal to
|
||||||
|
\0 \d244 ; 244 F4 top half integral
|
||||||
|
\0 \d245 ; 245 F5 bottom half integral
|
||||||
|
\0 \d246 ; 246 F6 division sign
|
||||||
|
\0 \d247 ; 247 F7 almost equal to
|
||||||
|
\0 \d248 ; 248 F8 ring operator
|
||||||
|
\0 \d249 ; 249 F9 middle dot
|
||||||
|
\0 \d250 ; 250 FA bullet operator
|
||||||
|
\0 \d251 ; 251 FB square root
|
||||||
|
\0 \d252 ; 252 FC superscript latin small letter n
|
||||||
|
\0 \d253 ; 253 FD superscript two
|
||||||
|
\0 \d254 ; 254 FE black square
|
||||||
|
\0 \d255 ; 255 FF no-break space
|
||||||
|
END
|
164
cfgs/charset/ibm_vt1.chs
Normal file
164
cfgs/charset/ibm_vt1.chs
Normal file
@ -0,0 +1,164 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts IBM extended characters to VT100.
|
||||||
|
;
|
||||||
|
; NOTE: this file uses an implementation dependant feature!
|
||||||
|
; a 0 as the second character means "use DEC graphic set"
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
IBMPC ; from set
|
||||||
|
VT100 ; to set
|
||||||
|
;
|
||||||
|
\0 C ; C with cedilla
|
||||||
|
u e ; u dieresis
|
||||||
|
\0 e ; e acute
|
||||||
|
\0 a ; a circumflex
|
||||||
|
a e ; a dieresis
|
||||||
|
\0 a ; a grave
|
||||||
|
\0 a ; a ring
|
||||||
|
\0 c ; c cedilla
|
||||||
|
\0 e ; e circumflex
|
||||||
|
e e ; e dieresis
|
||||||
|
\0 e ; e grave
|
||||||
|
i e ; i dieresis
|
||||||
|
\0 i ; i circumflex
|
||||||
|
\0 i ; i grave
|
||||||
|
A e ; A dieresis
|
||||||
|
\0 A ; A ring
|
||||||
|
\0 E ; E acute
|
||||||
|
a e ; ae
|
||||||
|
A E ; AE
|
||||||
|
\0 o ; o circumflex
|
||||||
|
o e ; o dieresis
|
||||||
|
\0 o ; o acute
|
||||||
|
\0 u ; u circumflex
|
||||||
|
\0 u ; u grave
|
||||||
|
y e ; y dieresis
|
||||||
|
O e ; O dieresis
|
||||||
|
U e ; U dieresis
|
||||||
|
\0 c ; cent
|
||||||
|
\d125 \0 ; pound sterling
|
||||||
|
\0 Y ; yen
|
||||||
|
P t ; Pt
|
||||||
|
\0 f ; florin
|
||||||
|
\0 a ; a acute
|
||||||
|
\0 i ; i grave
|
||||||
|
\0 o ; o grave
|
||||||
|
\0 u ; u grave
|
||||||
|
\0 n ; n tilde
|
||||||
|
\0 N ; N tilde
|
||||||
|
\0 a ; ord feminine
|
||||||
|
\0 o ; ord masculine
|
||||||
|
\0 ? ; question downwards
|
||||||
|
\0 - ;
|
||||||
|
\0 ! ; logical not
|
||||||
|
. 5 ; half fraction
|
||||||
|
\x1 ? ; quarter fraction
|
||||||
|
\0 ! ; exclam downwards
|
||||||
|
< < ; guillemot left
|
||||||
|
> > ; guillemot right
|
||||||
|
\0 # ; grey
|
||||||
|
\d97 \0 ; grey
|
||||||
|
\d97 \0 ; grey
|
||||||
|
\d120 \0 ; |
|
||||||
|
\d117 \0 ; -|
|
||||||
|
\d117 \0 ; -|
|
||||||
|
\d117 \0 ; -|
|
||||||
|
\d107 \0 ; +
|
||||||
|
\d107 \0 ; +
|
||||||
|
\d117 \0 ; -|
|
||||||
|
\d120 \0 ; |
|
||||||
|
\d107 \0 ; +
|
||||||
|
\d106 \0 ; +
|
||||||
|
\d106 \0 ; +
|
||||||
|
\d106 \0 ; +
|
||||||
|
\d107 \0 ; +
|
||||||
|
\d109 \0 ; +
|
||||||
|
\d118 \0 ; -
|
||||||
|
\d119 \0 ; -
|
||||||
|
\d116 \0 ; |-
|
||||||
|
\d113 \0 ; -
|
||||||
|
\d110 \0 ; -|-
|
||||||
|
\d116 \0 ; |-
|
||||||
|
\d116 \0 ; |-
|
||||||
|
\d109 \0 ; +
|
||||||
|
\d108 \0 ; +
|
||||||
|
\d118 \0 ; -
|
||||||
|
\d119 \0 ; -
|
||||||
|
\d116 \0 ; |-
|
||||||
|
\d113 \0 ; -
|
||||||
|
\d110 \0 ; -|-
|
||||||
|
\d118 \0 ; -
|
||||||
|
\d118 \0 ; -
|
||||||
|
\d119 \0 ; -
|
||||||
|
\d119 \0 ; -
|
||||||
|
\d109 \0 ; +
|
||||||
|
\d109 \0 ; +
|
||||||
|
\d108 \0 ; +
|
||||||
|
\d108 \0 ; +
|
||||||
|
\d110 \0 ; -|-
|
||||||
|
\d110 \0 ; -|-
|
||||||
|
\d106 \0 ; +
|
||||||
|
\d108 \0 ; +
|
||||||
|
\0 # ;
|
||||||
|
\0 n ;
|
||||||
|
\0 | ;
|
||||||
|
\0 | ;
|
||||||
|
\0 ~ ;
|
||||||
|
\0 a ; alpha
|
||||||
|
\0 B ; german double s (misused as Beta)
|
||||||
|
\x1 ? ; Gamma
|
||||||
|
\d123 \0 ; pi
|
||||||
|
\x1 ? ; Sigma (summation)
|
||||||
|
\x1 ? ; sigma
|
||||||
|
m u ; mu
|
||||||
|
\x1 ? ; gamma
|
||||||
|
\x1 ? ; Phi
|
||||||
|
\x1 ? ; Theta
|
||||||
|
\0 O ; Omega
|
||||||
|
\0 d ; delta
|
||||||
|
\x1 ? ; infinity
|
||||||
|
\0 o ; o slash
|
||||||
|
\x1 ? ; element
|
||||||
|
\x1 ? ; intersection
|
||||||
|
= = ; equivalence
|
||||||
|
\d103 \0 ; plusminus
|
||||||
|
\d122 \0 ; greater equals
|
||||||
|
\d121 \0 ; smaller equals
|
||||||
|
\x1 ? ; integral top
|
||||||
|
\x1 ? ; integral bottom
|
||||||
|
\0 / ; divide
|
||||||
|
~ = ; approx.
|
||||||
|
\d102 \0 ; ring / degree
|
||||||
|
\d126 \0 ; centered dot
|
||||||
|
\0 - ; en dash
|
||||||
|
\x1 ? ; radical
|
||||||
|
^ n ; to the n'th power
|
||||||
|
^ 2 ; to the second power
|
||||||
|
\0 o ;
|
||||||
|
\0 \d32 ; space
|
||||||
|
END
|
161
cfgs/charset/iqp_850.chs
Normal file
161
cfgs/charset/iqp_850.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts ISO 8859-1 extended characters to IBM CP850 characters.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number, is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
LATIN1QP ; from set
|
||||||
|
CP850 ; to set
|
||||||
|
;
|
||||||
|
\0 \d128 ; 128 80 (missing) These codes are unused in the LATIN-1 set.
|
||||||
|
\0 \d129 ; 129 81 (missing) For transparency, these are not mapped.
|
||||||
|
\0 \d130 ; 130 82 (missing)
|
||||||
|
\0 \d131 ; 131 83 (missing) 4
|
||||||
|
\0 \d132 ; 132 84 (missing)
|
||||||
|
\0 \d133 ; 133 85 (missing)
|
||||||
|
\0 \d134 ; 134 86 (missing)
|
||||||
|
\0 \d135 ; 135 87 (missing) 8
|
||||||
|
\0 \d136 ; 136 88 (missing)
|
||||||
|
\0 \d137 ; 137 89 (missing)
|
||||||
|
\0 \d138 ; 138 8A (missing)
|
||||||
|
\0 \d139 ; 139 8B (missing) 12
|
||||||
|
\0 \d140 ; 140 8C (missing)
|
||||||
|
\0 \d141 ; 141 8D (missing)
|
||||||
|
\0 \d142 ; 142 8E (missing)
|
||||||
|
\0 \d143 ; 143 8F (missing) 16
|
||||||
|
\0 \d144 ; 144 90 (missing)
|
||||||
|
\0 \d145 ; 145 91 (missing)
|
||||||
|
\0 \d146 ; 146 92 (missing)
|
||||||
|
\0 \d147 ; 147 93 (missing) 20
|
||||||
|
\0 \d148 ; 148 94 (missing)
|
||||||
|
\0 \d149 ; 149 95 (missing)
|
||||||
|
\0 \d150 ; 150 96 (missing)
|
||||||
|
\0 \d151 ; 151 97 (missing) 24
|
||||||
|
\0 \d152 ; 152 98 (missing)
|
||||||
|
\0 \d153 ; 153 99 (missing)
|
||||||
|
\0 \d154 ; 154 9A (missing)
|
||||||
|
\0 \d155 ; 155 9B (missing) 28
|
||||||
|
\0 \d156 ; 156 9C (missing)
|
||||||
|
\0 \d157 ; 157 9D (missing)
|
||||||
|
\0 \d158 ; 158 9E (missing)
|
||||||
|
\0 \d159 ; 159 9F (missing) 32
|
||||||
|
\0 \xFF ; 160 A0 no-break space
|
||||||
|
\0 \xAD ; 161 A1 inverted exclamation mark
|
||||||
|
\0 \xBD ; 162 A2 cent sign
|
||||||
|
\0 \x9C ; 163 A3 pound sign
|
||||||
|
\0 \xCF ; 164 A4 currency sign
|
||||||
|
\0 \xBE ; 165 A5 yen sign
|
||||||
|
\0 \xDD ; 166 A6 broken bar
|
||||||
|
\0 \xF5 ; 167 A7 section sign
|
||||||
|
\0 \xF9 ; 168 A8 diaeresis
|
||||||
|
\0 \xB8 ; 169 A9 copyright sign
|
||||||
|
\0 \xA6 ; 170 AA feminine ordinal indicator
|
||||||
|
\0 \xAE ; 171 AB left-pointing double angle quotation mark
|
||||||
|
\0 \xAA ; 172 AC not sign
|
||||||
|
\0 \xF0 ; 173 AD soft hyphen
|
||||||
|
\0 \xA9 ; 174 AE registered sign
|
||||||
|
\0 \xEE ; 175 AF overline
|
||||||
|
\0 \xF8 ; 176 B0 degree sign
|
||||||
|
\0 \xF1 ; 177 B1 plus-minus sign
|
||||||
|
\0 \xFD ; 178 B2 superscript two
|
||||||
|
\0 \xFC ; 179 B3 superscript three
|
||||||
|
\0 \xEF ; 180 B4 acute accent
|
||||||
|
\0 \xE6 ; 181 B5 micro sign
|
||||||
|
\0 \xF4 ; 182 B6 pilcrow sign
|
||||||
|
\0 \xFE ; 183 B7 middle dot
|
||||||
|
\0 \xF7 ; 184 B8 cedilla
|
||||||
|
\0 \xFB ; 185 B9 superscript one
|
||||||
|
\0 \xA7 ; 186 BA masculine ordinal indicator
|
||||||
|
\0 \xAF ; 187 BB right-pointing double angle quotation mark
|
||||||
|
\0 \xAC ; 188 BC vulgar fraction one quarter
|
||||||
|
\0 \xAB ; 189 BD vulgar fraction one half
|
||||||
|
\0 \xF3 ; 190 BE vulgar fraction three quarters
|
||||||
|
\0 \xA8 ; 191 BF inverted question mark
|
||||||
|
\0 \xB7 ; 192 C0 latin capital letter a with grave
|
||||||
|
\0 \xB5 ; 193 C1 latin capital letter a with acute
|
||||||
|
\0 \xB6 ; 194 C2 latin capital letter a with circumflex
|
||||||
|
\0 \xC7 ; 195 C3 latin capital letter a with tilde
|
||||||
|
\0 \x8E ; 196 C4 latin capital letter a with diaeresis
|
||||||
|
\0 \x8F ; 197 C5 latin capital letter a with ring above
|
||||||
|
\0 \x92 ; 198 C6 latin capital letter ae
|
||||||
|
\0 \x80 ; 199 C7 latin capital letter c with cedilla
|
||||||
|
\0 \xD4 ; 200 C8 latin capital letter e with grave
|
||||||
|
\0 \x90 ; 201 C9 latin capital letter e with acute
|
||||||
|
\0 \xD2 ; 202 CA latin capital letter e with circumflex
|
||||||
|
\0 \xD3 ; 203 CB latin capital letter e with diaeresis
|
||||||
|
\0 \xDE ; 204 CC latin capital letter i with grave
|
||||||
|
\0 \xD6 ; 205 CD latin capital letter i with acute
|
||||||
|
\0 \xD7 ; 206 CE latin capital letter i with circumflex
|
||||||
|
\0 \xD8 ; 207 CF latin capital letter i with diaeresis
|
||||||
|
\0 \xD1 ; 208 D0 latin capital letter eth (icelandic)
|
||||||
|
\0 \xA5 ; 209 D1 latin capital letter n with tilde
|
||||||
|
\0 \xE3 ; 210 D2 latin capital letter o with grave
|
||||||
|
\0 \xE0 ; 211 D3 latin capital letter o with acute
|
||||||
|
\0 \xE2 ; 212 D4 latin capital letter o with circumflex
|
||||||
|
\0 \xE5 ; 213 D5 latin capital letter o with tilde
|
||||||
|
\0 \x99 ; 214 D6 latin capital letter o with diaeresis
|
||||||
|
\0 \x9E ; 215 D7 multiplication sign
|
||||||
|
\0 \x9D ; 216 D8 latin capital letter o with stroke
|
||||||
|
\0 \xEB ; 217 D9 latin capital letter u with grave
|
||||||
|
\0 \xE9 ; 218 DA latin capital letter u with acute
|
||||||
|
\0 \xEA ; 219 DB latin capital letter u with circumflex
|
||||||
|
\0 \x9A ; 220 DC latin capital letter u with diaeresis
|
||||||
|
\0 \xED ; 221 DD latin capital letter y with acute
|
||||||
|
\0 \xE7 ; 222 DE latin capital letter thorn (icelandic)
|
||||||
|
\0 \xE1 ; 223 DF latin small letter sharp s (german)
|
||||||
|
\0 \x85 ; 224 E0 latin small letter a with grave
|
||||||
|
\0 \xA0 ; 225 E1 latin small letter a with acute
|
||||||
|
\0 \x83 ; 226 E2 latin small letter a with circumflex
|
||||||
|
\0 \xC6 ; 227 E3 latin small letter a with tilde
|
||||||
|
\0 \x84 ; 228 E4 latin small letter a with diaeresis
|
||||||
|
\0 \x86 ; 229 E5 latin small letter a with ring above
|
||||||
|
\0 \x91 ; 230 E6 latin small letter ae
|
||||||
|
\0 \x87 ; 231 E7 latin small letter c with cedilla
|
||||||
|
\0 \x8A ; 232 E8 latin small letter e with grave
|
||||||
|
\0 \x82 ; 233 E9 latin small letter e with acute
|
||||||
|
\0 \x88 ; 234 EA latin small letter e with circumflex
|
||||||
|
\0 \x89 ; 235 EB latin small letter e with diaeresis
|
||||||
|
\0 \x8D ; 236 EC latin small letter i with grave
|
||||||
|
\0 \xA1 ; 237 ED latin small letter i with acute
|
||||||
|
\0 \x8C ; 238 EE latin small letter i with circumflex
|
||||||
|
\0 \x8B ; 239 EF latin small letter i with diaeresis
|
||||||
|
\0 \xD0 ; 240 F0 latin small letter eth (icelandic)
|
||||||
|
\0 \xA4 ; 241 F1 latin small letter n with tilde
|
||||||
|
\0 \x95 ; 242 F2 latin small letter o with grave
|
||||||
|
\0 \xA2 ; 243 F3 latin small letter o with acute
|
||||||
|
\0 \x93 ; 244 F4 latin small letter o with circumflex
|
||||||
|
\0 \xE4 ; 245 F5 latin small letter o with tilde
|
||||||
|
\0 \x94 ; 246 F6 latin small letter o with diaeresis
|
||||||
|
\0 \xF6 ; 247 F7 division sign
|
||||||
|
\0 \x9B ; 248 F8 latin small letter o with stroke
|
||||||
|
\0 \x97 ; 249 F9 latin small letter u with grave
|
||||||
|
\0 \xA3 ; 250 FA latin small letter u with acute
|
||||||
|
\0 \x96 ; 251 FB latin small letter u with circumflex
|
||||||
|
\0 \x81 ; 252 FC latin small letter u with diaeresis
|
||||||
|
\0 \xEC ; 253 FD latin small letter y with acute
|
||||||
|
\0 \xE8 ; 254 FE latin small letter thorn (icelandic)
|
||||||
|
\0 \x98 ; 255 FF latin small letter y with diaeresis
|
||||||
|
END
|
161
cfgs/charset/iqp_ibm.chs
Normal file
161
cfgs/charset/iqp_ibm.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts ISO_8859-1 extended characters to IBM-PC characters.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number, is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
LATIN1QP ; from set
|
||||||
|
IBMPC ; to set (actually CP865)
|
||||||
|
;
|
||||||
|
\0 \d128 ; 128 80 (missing) These codes are unused in the LATIN-1 set.
|
||||||
|
\0 \d129 ; 129 81 (missing) For transparency, these are not mapped.
|
||||||
|
\0 \d130 ; 130 82 (missing)
|
||||||
|
\0 \d131 ; 131 83 (missing) 4
|
||||||
|
\0 \d132 ; 132 84 (missing)
|
||||||
|
\0 \d133 ; 133 85 (missing)
|
||||||
|
\0 \d134 ; 134 86 (missing)
|
||||||
|
\0 \d135 ; 135 87 (missing) 8
|
||||||
|
\0 \d136 ; 136 88 (missing)
|
||||||
|
\0 \d137 ; 137 89 (missing)
|
||||||
|
\0 \d138 ; 138 8A (missing)
|
||||||
|
\0 \d139 ; 139 8B (missing) 12
|
||||||
|
\0 \d140 ; 140 8C (missing)
|
||||||
|
\0 \d141 ; 141 8D (missing)
|
||||||
|
\0 \d142 ; 142 8E (missing)
|
||||||
|
\0 \d143 ; 143 8F (missing) 16
|
||||||
|
\0 \d144 ; 144 90 (missing)
|
||||||
|
\0 \d145 ; 145 91 (missing)
|
||||||
|
\0 \d146 ; 146 92 (missing)
|
||||||
|
\0 \d147 ; 147 93 (missing) 20
|
||||||
|
\0 \d148 ; 148 94 (missing)
|
||||||
|
\0 \d149 ; 149 95 (missing)
|
||||||
|
\0 \d150 ; 150 96 (missing)
|
||||||
|
\0 \d151 ; 151 97 (missing) 24
|
||||||
|
\0 \d152 ; 152 98 (missing)
|
||||||
|
\0 \d153 ; 153 99 (missing)
|
||||||
|
\0 \d154 ; 154 9A (missing)
|
||||||
|
\0 \d155 ; 155 9B (missing) 28
|
||||||
|
\0 \d156 ; 156 9C (missing)
|
||||||
|
\0 \d157 ; 157 9D (missing)
|
||||||
|
\0 \d158 ; 158 9E (missing)
|
||||||
|
\0 \d159 ; 159 9F (missing) 32
|
||||||
|
\0 \xFF ; 160 A0 no-break space
|
||||||
|
\0 \xAD ; 161 A1 inverted exclamation mark
|
||||||
|
\0 \x9B ; 162 A2 cent sign
|
||||||
|
\0 \x9C ; 163 A3 pound sign
|
||||||
|
\0 \x0F ; 164 A4 currency sign
|
||||||
|
\0 \x9D ; 165 A5 yen sign
|
||||||
|
\0 | ; 166 A6 broken bar
|
||||||
|
\0 \x15 ; 167 A7 section sign
|
||||||
|
\0 " ; 168 A8 diaeresis
|
||||||
|
\0 c ; 169 A9 copyright sign
|
||||||
|
\0 \xA6 ; 170 AA feminine ordinal indicator
|
||||||
|
\0 \xAE ; 171 AB left-pointing double angle quotation mark
|
||||||
|
\0 \xAA ; 172 AC not sign
|
||||||
|
\0 - ; 173 AD soft hyphen
|
||||||
|
\0 R ; 174 AE registered sign
|
||||||
|
\0 - ; 175 AF overline
|
||||||
|
\0 \xF8 ; 176 B0 degree sign
|
||||||
|
\0 \xF1 ; 177 B1 plus-minus sign
|
||||||
|
\0 \xFD ; 178 B2 superscript two
|
||||||
|
^ 3 ; 179 B3 superscript three
|
||||||
|
\0 ' ; 180 B4 acute accent
|
||||||
|
\0 \xE6 ; 181 B5 micro sign
|
||||||
|
\0 \x14 ; 182 B6 pilcrow sign
|
||||||
|
\0 \xFE ; 183 B7 middle dot
|
||||||
|
\0 , ; 184 B8 cedilla
|
||||||
|
^ 1 ; 185 B9 superscript one
|
||||||
|
\0 \xA7 ; 186 BA masculine ordinal indicator
|
||||||
|
\0 \xAF ; 187 BB right-pointing double angle quotation mark
|
||||||
|
\0 \xAC ; 188 BC vulgar fraction one quarter
|
||||||
|
\0 \xAB ; 189 BD vulgar fraction one half
|
||||||
|
3 / 4 ; 190 BE vulgar fraction three quarters
|
||||||
|
\0 \xA8 ; 191 BF inverted question mark
|
||||||
|
\0 A ; 192 C0 latin capital letter a with grave
|
||||||
|
\0 A ; 193 C1 latin capital letter a with acute
|
||||||
|
\0 A ; 194 C2 latin capital letter a with circumflex
|
||||||
|
\0 A ; 195 C3 latin capital letter a with tilde
|
||||||
|
\0 \x8E ; 196 C4 latin capital letter a with diaeresis
|
||||||
|
\0 \x8F ; 197 C5 latin capital letter a with ring above
|
||||||
|
\0 \x92 ; 198 C6 latin capital letter ae
|
||||||
|
\0 \x80 ; 199 C7 latin capital letter c with cedilla
|
||||||
|
\0 E ; 200 C8 latin capital letter e with grave
|
||||||
|
\0 \x90 ; 201 C9 latin capital letter e with acute
|
||||||
|
\0 E ; 202 CA latin capital letter e with circumflex
|
||||||
|
E e ; 203 CB latin capital letter e with diaeresis
|
||||||
|
\0 I ; 204 CC latin capital letter i with grave
|
||||||
|
\0 I ; 205 CD latin capital letter i with acute
|
||||||
|
\0 I ; 206 CE latin capital letter i with circumflex
|
||||||
|
I e ; 207 CF latin capital letter i with diaeresis
|
||||||
|
\0 D ; 208 D0 latin capital letter eth (icelandic)
|
||||||
|
\0 \xA5 ; 209 D1 latin capital letter n with tilde
|
||||||
|
\0 O ; 210 D2 latin capital letter o with grave
|
||||||
|
\0 O ; 211 D3 latin capital letter o with acute
|
||||||
|
\0 O ; 212 D4 latin capital letter o with circumflex
|
||||||
|
\0 O ; 213 D5 latin capital letter o with tilde
|
||||||
|
\0 \x99 ; 214 D6 latin capital letter o with diaeresis
|
||||||
|
\0 x ; 215 D7 multiplication sign
|
||||||
|
\0 \x9D ; 216 D8 latin capital letter o with stroke (CP865 mapping)
|
||||||
|
\0 U ; 217 D9 latin capital letter u with grave
|
||||||
|
\0 U ; 218 DA latin capital letter u with acute
|
||||||
|
\0 U ; 219 DB latin capital letter u with circumflex
|
||||||
|
\0 \x9A ; 220 DC latin capital letter u with diaeresis
|
||||||
|
\0 Y ; 221 DD latin capital letter y with acute
|
||||||
|
T h ; 222 DE latin capital letter thorn (icelandic)
|
||||||
|
\0 \xE1 ; 223 DF latin small letter sharp s (german)
|
||||||
|
\0 \x85 ; 224 E0 latin small letter a with grave
|
||||||
|
\0 \xA0 ; 225 E1 latin small letter a with acute
|
||||||
|
\0 \x83 ; 226 E2 latin small letter a with circumflex
|
||||||
|
\0 a ; 227 E3 latin small letter a with tilde
|
||||||
|
\0 \x84 ; 228 E4 latin small letter a with diaeresis
|
||||||
|
\0 \x86 ; 229 E5 latin small letter a with ring above
|
||||||
|
\0 \x91 ; 230 E6 latin small letter ae
|
||||||
|
\0 \x87 ; 231 E7 latin small letter c with cedilla
|
||||||
|
\0 \x8A ; 232 E8 latin small letter e with grave
|
||||||
|
\0 \x82 ; 233 E9 latin small letter e with acute
|
||||||
|
\0 \x88 ; 234 EA latin small letter e with circumflex
|
||||||
|
\0 \x89 ; 235 EB latin small letter e with diaeresis
|
||||||
|
\0 \x8D ; 236 EC latin small letter i with grave
|
||||||
|
\0 \xA1 ; 237 ED latin small letter i with acute
|
||||||
|
\0 \x8C ; 238 EE latin small letter i with circumflex
|
||||||
|
\0 \x8B ; 239 EF latin small letter i with diaeresis
|
||||||
|
\0 \xE7 ; 240 F0 latin small letter eth (icelandic)
|
||||||
|
\0 \xA4 ; 241 F1 latin small letter n with tilde
|
||||||
|
\0 \x95 ; 242 F2 latin small letter o with grave
|
||||||
|
\0 \xA2 ; 243 F3 latin small letter o with acute
|
||||||
|
\0 \x93 ; 244 F4 latin small letter o with circumflex
|
||||||
|
\0 o ; 245 F5 latin small letter o with tilde
|
||||||
|
\0 \x94 ; 246 F6 latin small letter o with diaeresis
|
||||||
|
\0 \xF6 ; 247 F7 division sign
|
||||||
|
\0 \x9B ; 248 F8 latin small letter o with stroke (CP865 mapping)
|
||||||
|
\0 \x97 ; 249 F9 latin small letter u with grave
|
||||||
|
\0 \xA3 ; 250 FA latin small letter u with acute
|
||||||
|
\0 \x96 ; 251 FB latin small letter u with circumflex
|
||||||
|
\0 \x81 ; 252 FC latin small letter u with diaeresis
|
||||||
|
y e ; 253 FD latin small letter y with acute
|
||||||
|
t h ; 254 FE latin small letter thorn (icelandic)
|
||||||
|
\0 \x98 ; 255 FF latin small letter y with diaeresis
|
||||||
|
END
|
161
cfgs/charset/iso_850.chs
Normal file
161
cfgs/charset/iso_850.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts ISO 8859-1 extended characters to IBM CP850 characters.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number, is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
LATIN-1 ; from set
|
||||||
|
CP850 ; to set
|
||||||
|
;
|
||||||
|
\0 \d128 ; 128 80 (missing) These codes are unused in the LATIN-1 set.
|
||||||
|
\0 \d129 ; 129 81 (missing) For transparency, these are not mapped.
|
||||||
|
\0 \d130 ; 130 82 (missing)
|
||||||
|
\0 \d131 ; 131 83 (missing) 4
|
||||||
|
\0 \d132 ; 132 84 (missing)
|
||||||
|
\0 \d133 ; 133 85 (missing)
|
||||||
|
\0 \d134 ; 134 86 (missing)
|
||||||
|
\0 \d135 ; 135 87 (missing) 8
|
||||||
|
\0 \d136 ; 136 88 (missing)
|
||||||
|
\0 \d137 ; 137 89 (missing)
|
||||||
|
\0 \d138 ; 138 8A (missing)
|
||||||
|
\0 \d139 ; 139 8B (missing) 12
|
||||||
|
\0 \d140 ; 140 8C (missing)
|
||||||
|
\0 \d141 ; 141 8D (missing)
|
||||||
|
\0 \d142 ; 142 8E (missing)
|
||||||
|
\0 \d143 ; 143 8F (missing) 16
|
||||||
|
\0 \d144 ; 144 90 (missing)
|
||||||
|
\0 \d145 ; 145 91 (missing)
|
||||||
|
\0 \d146 ; 146 92 (missing)
|
||||||
|
\0 \d147 ; 147 93 (missing) 20
|
||||||
|
\0 \d148 ; 148 94 (missing)
|
||||||
|
\0 \d149 ; 149 95 (missing)
|
||||||
|
\0 \d150 ; 150 96 (missing)
|
||||||
|
\0 \d151 ; 151 97 (missing) 24
|
||||||
|
\0 \d152 ; 152 98 (missing)
|
||||||
|
\0 \d153 ; 153 99 (missing)
|
||||||
|
\0 \d154 ; 154 9A (missing)
|
||||||
|
\0 \d155 ; 155 9B (missing) 28
|
||||||
|
\0 \d156 ; 156 9C (missing)
|
||||||
|
\0 \d157 ; 157 9D (missing)
|
||||||
|
\0 \d158 ; 158 9E (missing)
|
||||||
|
\0 \d159 ; 159 9F (missing) 32
|
||||||
|
\0 \xFF ; 160 A0 no-break space
|
||||||
|
\0 \xAD ; 161 A1 inverted exclamation mark
|
||||||
|
\0 \xBD ; 162 A2 cent sign
|
||||||
|
\0 \x9C ; 163 A3 pound sign
|
||||||
|
\0 \xCF ; 164 A4 currency sign
|
||||||
|
\0 \xBE ; 165 A5 yen sign
|
||||||
|
\0 \xDD ; 166 A6 broken bar
|
||||||
|
\0 \xF5 ; 167 A7 section sign
|
||||||
|
\0 \xF9 ; 168 A8 diaeresis
|
||||||
|
\0 \xB8 ; 169 A9 copyright sign
|
||||||
|
\0 \xA6 ; 170 AA feminine ordinal indicator
|
||||||
|
\0 \xAE ; 171 AB left-pointing double angle quotation mark
|
||||||
|
\0 \xAA ; 172 AC not sign
|
||||||
|
\0 \xF0 ; 173 AD soft hyphen
|
||||||
|
\0 \xA9 ; 174 AE registered sign
|
||||||
|
\0 \xEE ; 175 AF overline
|
||||||
|
\0 \xF8 ; 176 B0 degree sign
|
||||||
|
\0 \xF1 ; 177 B1 plus-minus sign
|
||||||
|
\0 \xFD ; 178 B2 superscript two
|
||||||
|
\0 \xFC ; 179 B3 superscript three
|
||||||
|
\0 \xEF ; 180 B4 acute accent
|
||||||
|
\0 \xE6 ; 181 B5 micro sign
|
||||||
|
\0 \xF4 ; 182 B6 pilcrow sign
|
||||||
|
\0 \xFE ; 183 B7 middle dot
|
||||||
|
\0 \xF7 ; 184 B8 cedilla
|
||||||
|
\0 \xFB ; 185 B9 superscript one
|
||||||
|
\0 \xA7 ; 186 BA masculine ordinal indicator
|
||||||
|
\0 \xAF ; 187 BB right-pointing double angle quotation mark
|
||||||
|
\0 \xAC ; 188 BC vulgar fraction one quarter
|
||||||
|
\0 \xAB ; 189 BD vulgar fraction one half
|
||||||
|
\0 \xF3 ; 190 BE vulgar fraction three quarters
|
||||||
|
\0 \xA8 ; 191 BF inverted question mark
|
||||||
|
\0 \xB7 ; 192 C0 latin capital letter a with grave
|
||||||
|
\0 \xB5 ; 193 C1 latin capital letter a with acute
|
||||||
|
\0 \xB6 ; 194 C2 latin capital letter a with circumflex
|
||||||
|
\0 \xC7 ; 195 C3 latin capital letter a with tilde
|
||||||
|
\0 \x8E ; 196 C4 latin capital letter a with diaeresis
|
||||||
|
\0 \x8F ; 197 C5 latin capital letter a with ring above
|
||||||
|
\0 \x92 ; 198 C6 latin capital letter ae
|
||||||
|
\0 \x80 ; 199 C7 latin capital letter c with cedilla
|
||||||
|
\0 \xD4 ; 200 C8 latin capital letter e with grave
|
||||||
|
\0 \x90 ; 201 C9 latin capital letter e with acute
|
||||||
|
\0 \xD2 ; 202 CA latin capital letter e with circumflex
|
||||||
|
\0 \xD3 ; 203 CB latin capital letter e with diaeresis
|
||||||
|
\0 \xDE ; 204 CC latin capital letter i with grave
|
||||||
|
\0 \xD6 ; 205 CD latin capital letter i with acute
|
||||||
|
\0 \xD7 ; 206 CE latin capital letter i with circumflex
|
||||||
|
\0 \xD8 ; 207 CF latin capital letter i with diaeresis
|
||||||
|
\0 \xD1 ; 208 D0 latin capital letter eth (icelandic)
|
||||||
|
\0 \xA5 ; 209 D1 latin capital letter n with tilde
|
||||||
|
\0 \xE3 ; 210 D2 latin capital letter o with grave
|
||||||
|
\0 \xE0 ; 211 D3 latin capital letter o with acute
|
||||||
|
\0 \xE2 ; 212 D4 latin capital letter o with circumflex
|
||||||
|
\0 \xE5 ; 213 D5 latin capital letter o with tilde
|
||||||
|
\0 \x99 ; 214 D6 latin capital letter o with diaeresis
|
||||||
|
\0 \x9E ; 215 D7 multiplication sign
|
||||||
|
\0 \x9D ; 216 D8 latin capital letter o with stroke
|
||||||
|
\0 \xEB ; 217 D9 latin capital letter u with grave
|
||||||
|
\0 \xE9 ; 218 DA latin capital letter u with acute
|
||||||
|
\0 \xEA ; 219 DB latin capital letter u with circumflex
|
||||||
|
\0 \x9A ; 220 DC latin capital letter u with diaeresis
|
||||||
|
\0 \xED ; 221 DD latin capital letter y with acute
|
||||||
|
\0 \xE7 ; 222 DE latin capital letter thorn (icelandic)
|
||||||
|
\0 \xE1 ; 223 DF latin small letter sharp s (german)
|
||||||
|
\0 \x85 ; 224 E0 latin small letter a with grave
|
||||||
|
\0 \xA0 ; 225 E1 latin small letter a with acute
|
||||||
|
\0 \x83 ; 226 E2 latin small letter a with circumflex
|
||||||
|
\0 \xC6 ; 227 E3 latin small letter a with tilde
|
||||||
|
\0 \x84 ; 228 E4 latin small letter a with diaeresis
|
||||||
|
\0 \x86 ; 229 E5 latin small letter a with ring above
|
||||||
|
\0 \x91 ; 230 E6 latin small letter ae
|
||||||
|
\0 \x87 ; 231 E7 latin small letter c with cedilla
|
||||||
|
\0 \x8A ; 232 E8 latin small letter e with grave
|
||||||
|
\0 \x82 ; 233 E9 latin small letter e with acute
|
||||||
|
\0 \x88 ; 234 EA latin small letter e with circumflex
|
||||||
|
\0 \x89 ; 235 EB latin small letter e with diaeresis
|
||||||
|
\0 \x8D ; 236 EC latin small letter i with grave
|
||||||
|
\0 \xA1 ; 237 ED latin small letter i with acute
|
||||||
|
\0 \x8C ; 238 EE latin small letter i with circumflex
|
||||||
|
\0 \x8B ; 239 EF latin small letter i with diaeresis
|
||||||
|
\0 \xD0 ; 240 F0 latin small letter eth (icelandic)
|
||||||
|
\0 \xA4 ; 241 F1 latin small letter n with tilde
|
||||||
|
\0 \x95 ; 242 F2 latin small letter o with grave
|
||||||
|
\0 \xA2 ; 243 F3 latin small letter o with acute
|
||||||
|
\0 \x93 ; 244 F4 latin small letter o with circumflex
|
||||||
|
\0 \xE4 ; 245 F5 latin small letter o with tilde
|
||||||
|
\0 \x94 ; 246 F6 latin small letter o with diaeresis
|
||||||
|
\0 \xF6 ; 247 F7 division sign
|
||||||
|
\0 \x9B ; 248 F8 latin small letter o with stroke
|
||||||
|
\0 \x97 ; 249 F9 latin small letter u with grave
|
||||||
|
\0 \xA3 ; 250 FA latin small letter u with acute
|
||||||
|
\0 \x96 ; 251 FB latin small letter u with circumflex
|
||||||
|
\0 \x81 ; 252 FC latin small letter u with diaeresis
|
||||||
|
\0 \xEC ; 253 FD latin small letter y with acute
|
||||||
|
\0 \xE8 ; 254 FE latin small letter thorn (icelandic)
|
||||||
|
\0 \x98 ; 255 FF latin small letter y with diaeresis
|
||||||
|
END
|
161
cfgs/charset/iso_asc.chs
Normal file
161
cfgs/charset/iso_asc.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts ISO 8859-1 extended characters to ASCII characters.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number, is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
LATIN-1 ; from set
|
||||||
|
ASCII ; to set
|
||||||
|
;
|
||||||
|
\0 ? ; (missing) these codes are unused
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 4
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 8
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 12
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 16
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 20
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 24
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 28
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 32
|
||||||
|
\0 \d32 ; non-breaking space
|
||||||
|
\0 ! ; exclam downwards
|
||||||
|
\0 c ; cent
|
||||||
|
\0 # ; pound sterling
|
||||||
|
\x1 ? ; currency
|
||||||
|
\0 Y ; Yen
|
||||||
|
\0 | ; broken bar
|
||||||
|
\0 S ; section
|
||||||
|
\x1 ? ; dieresis
|
||||||
|
\0 c ; copyright
|
||||||
|
\0 a ; ord feminine
|
||||||
|
< < ; guillemot left
|
||||||
|
\0 ! ; logical not
|
||||||
|
\0 - ; soft hyphen (or em dash)
|
||||||
|
\0 R ; registered trademark
|
||||||
|
\x1 ? ; overbar (macron)
|
||||||
|
\0 o ; ring / degree
|
||||||
|
+ - ; plusminus
|
||||||
|
^ 2 ; superscript two (squared)
|
||||||
|
^ 3 ; superscript three (cubed)
|
||||||
|
\0 ' ; acute
|
||||||
|
m u ; mu
|
||||||
|
\x1 ? ; paragraph
|
||||||
|
\0 o ; bullet
|
||||||
|
\0 , ; cedilla
|
||||||
|
^ 1 ; superscript one
|
||||||
|
\0 o ; ord masculine
|
||||||
|
> > ; guillemot right
|
||||||
|
\x1 ? ; one quarter
|
||||||
|
. 5 ; half
|
||||||
|
\x1 ? ; three quarters
|
||||||
|
\0 ? ; question downwards
|
||||||
|
\0 A ; A grave
|
||||||
|
\0 A ; A acute
|
||||||
|
\0 A ; A circumflex
|
||||||
|
\0 A ; A tilde
|
||||||
|
A e ; A dieresis
|
||||||
|
\0 A ; A ring
|
||||||
|
A E ; AE
|
||||||
|
\0 C ; C cedilla
|
||||||
|
\0 E ; E grave
|
||||||
|
\0 E ; E acute
|
||||||
|
\0 E ; E circumflex
|
||||||
|
E e ; E dieresis
|
||||||
|
\0 I ; I grave
|
||||||
|
\0 I ; I acute
|
||||||
|
\0 I ; I circumflex
|
||||||
|
I e ; I dieresis
|
||||||
|
\0 D ; Eth
|
||||||
|
\0 N ; N tilde
|
||||||
|
\0 O ; O grave
|
||||||
|
\0 O ; O acute
|
||||||
|
\0 O ; O circumflex
|
||||||
|
\0 O ; O tilde
|
||||||
|
O e ; O dieresis
|
||||||
|
\0 x ; multiplication
|
||||||
|
\0 0 ; O slash
|
||||||
|
\0 U ; U grave
|
||||||
|
\0 U ; U acute
|
||||||
|
\0 U ; U circumflex
|
||||||
|
U e ; U dieresis
|
||||||
|
\0 Y ; Y acute
|
||||||
|
\x1 ? ; Thorn
|
||||||
|
\0 B ; german double s / beta
|
||||||
|
\0 a ; a grave
|
||||||
|
\0 a ; a acute
|
||||||
|
\0 a ; a circumflex
|
||||||
|
\0 a ; a tilde
|
||||||
|
a e ; a dieresis
|
||||||
|
\0 a ; a ring
|
||||||
|
a e ; ae
|
||||||
|
\0 c ; c cedilla
|
||||||
|
\0 e ; e grave
|
||||||
|
\0 e ; e acute
|
||||||
|
\0 e ; e circumflex
|
||||||
|
e e ; e dieresis
|
||||||
|
\0 i ; i grave
|
||||||
|
\0 i ; i acute
|
||||||
|
\0 i ; i circumflex
|
||||||
|
i e ; i dieresis
|
||||||
|
\x1 ? ; eth
|
||||||
|
\0 n ; n tilde
|
||||||
|
\0 o ; o grave
|
||||||
|
\0 o ; o acute
|
||||||
|
\0 o ; o circumflex
|
||||||
|
\0 o ; o tilde
|
||||||
|
o e ; o dieresis
|
||||||
|
\0 / ; division
|
||||||
|
\0 o ; o slash
|
||||||
|
\0 u ; u grave
|
||||||
|
\0 u ; u acute
|
||||||
|
\0 u ; u circumflex
|
||||||
|
u e ; u dieresis
|
||||||
|
y e ; y acute
|
||||||
|
\x1 ? ; thorn
|
||||||
|
y e ; y dieresis
|
||||||
|
END
|
161
cfgs/charset/iso_ibm.chs
Normal file
161
cfgs/charset/iso_ibm.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts ISO_8859-1 extended characters to IBM-PC characters.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number, is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
LATIN-1 ; from set
|
||||||
|
IBMPC ; to set (actually CP865)
|
||||||
|
;
|
||||||
|
\0 \d128 ; 128 80 (missing) These codes are unused in the LATIN-1 set.
|
||||||
|
\0 \d129 ; 129 81 (missing) For transparency, these are not mapped.
|
||||||
|
\0 \d130 ; 130 82 (missing)
|
||||||
|
\0 \d131 ; 131 83 (missing) 4
|
||||||
|
\0 \d132 ; 132 84 (missing)
|
||||||
|
\0 \d133 ; 133 85 (missing)
|
||||||
|
\0 \d134 ; 134 86 (missing)
|
||||||
|
\0 \d135 ; 135 87 (missing) 8
|
||||||
|
\0 \d136 ; 136 88 (missing)
|
||||||
|
\0 \d137 ; 137 89 (missing)
|
||||||
|
\0 \d138 ; 138 8A (missing)
|
||||||
|
\0 \d139 ; 139 8B (missing) 12
|
||||||
|
\0 \d140 ; 140 8C (missing)
|
||||||
|
\0 \d141 ; 141 8D (missing)
|
||||||
|
\0 \d142 ; 142 8E (missing)
|
||||||
|
\0 \d143 ; 143 8F (missing) 16
|
||||||
|
\0 \d144 ; 144 90 (missing)
|
||||||
|
\0 \d145 ; 145 91 (missing)
|
||||||
|
\0 \d146 ; 146 92 (missing)
|
||||||
|
\0 \d147 ; 147 93 (missing) 20
|
||||||
|
\0 \d148 ; 148 94 (missing)
|
||||||
|
\0 \d149 ; 149 95 (missing)
|
||||||
|
\0 \d150 ; 150 96 (missing)
|
||||||
|
\0 \d151 ; 151 97 (missing) 24
|
||||||
|
\0 \d152 ; 152 98 (missing)
|
||||||
|
\0 \d153 ; 153 99 (missing)
|
||||||
|
\0 \d154 ; 154 9A (missing)
|
||||||
|
\0 \d155 ; 155 9B (missing) 28
|
||||||
|
\0 \d156 ; 156 9C (missing)
|
||||||
|
\0 \d157 ; 157 9D (missing)
|
||||||
|
\0 \d158 ; 158 9E (missing)
|
||||||
|
\0 \d159 ; 159 9F (missing) 32
|
||||||
|
\0 \xFF ; 160 A0 no-break space
|
||||||
|
\0 \xAD ; 161 A1 inverted exclamation mark
|
||||||
|
\0 \x9B ; 162 A2 cent sign
|
||||||
|
\0 \x9C ; 163 A3 pound sign
|
||||||
|
\0 \x0F ; 164 A4 currency sign
|
||||||
|
\0 \x9D ; 165 A5 yen sign
|
||||||
|
\0 | ; 166 A6 broken bar
|
||||||
|
\0 \x15 ; 167 A7 section sign
|
||||||
|
\0 " ; 168 A8 diaeresis
|
||||||
|
\0 c ; 169 A9 copyright sign
|
||||||
|
\0 \xA6 ; 170 AA feminine ordinal indicator
|
||||||
|
\0 \xAE ; 171 AB left-pointing double angle quotation mark
|
||||||
|
\0 \xAA ; 172 AC not sign
|
||||||
|
\0 - ; 173 AD soft hyphen
|
||||||
|
\0 R ; 174 AE registered sign
|
||||||
|
\0 - ; 175 AF overline
|
||||||
|
\0 \xF8 ; 176 B0 degree sign
|
||||||
|
\0 \xF1 ; 177 B1 plus-minus sign
|
||||||
|
\0 \xFD ; 178 B2 superscript two
|
||||||
|
^ 3 ; 179 B3 superscript three
|
||||||
|
\0 ' ; 180 B4 acute accent
|
||||||
|
\0 \xE6 ; 181 B5 micro sign
|
||||||
|
\0 \x14 ; 182 B6 pilcrow sign
|
||||||
|
\0 \xFE ; 183 B7 middle dot
|
||||||
|
\0 , ; 184 B8 cedilla
|
||||||
|
^ 1 ; 185 B9 superscript one
|
||||||
|
\0 \xA7 ; 186 BA masculine ordinal indicator
|
||||||
|
\0 \xAF ; 187 BB right-pointing double angle quotation mark
|
||||||
|
\0 \xAC ; 188 BC vulgar fraction one quarter
|
||||||
|
\0 \xAB ; 189 BD vulgar fraction one half
|
||||||
|
3 / 4 ; 190 BE vulgar fraction three quarters
|
||||||
|
\0 \xA8 ; 191 BF inverted question mark
|
||||||
|
\0 A ; 192 C0 latin capital letter a with grave
|
||||||
|
\0 A ; 193 C1 latin capital letter a with acute
|
||||||
|
\0 A ; 194 C2 latin capital letter a with circumflex
|
||||||
|
\0 A ; 195 C3 latin capital letter a with tilde
|
||||||
|
\0 \x8E ; 196 C4 latin capital letter a with diaeresis
|
||||||
|
\0 \x8F ; 197 C5 latin capital letter a with ring above
|
||||||
|
\0 \x92 ; 198 C6 latin capital letter ae
|
||||||
|
\0 \x80 ; 199 C7 latin capital letter c with cedilla
|
||||||
|
\0 E ; 200 C8 latin capital letter e with grave
|
||||||
|
\0 \x90 ; 201 C9 latin capital letter e with acute
|
||||||
|
\0 E ; 202 CA latin capital letter e with circumflex
|
||||||
|
E e ; 203 CB latin capital letter e with diaeresis
|
||||||
|
\0 I ; 204 CC latin capital letter i with grave
|
||||||
|
\0 I ; 205 CD latin capital letter i with acute
|
||||||
|
\0 I ; 206 CE latin capital letter i with circumflex
|
||||||
|
I e ; 207 CF latin capital letter i with diaeresis
|
||||||
|
\0 D ; 208 D0 latin capital letter eth (icelandic)
|
||||||
|
\0 \xA5 ; 209 D1 latin capital letter n with tilde
|
||||||
|
\0 O ; 210 D2 latin capital letter o with grave
|
||||||
|
\0 O ; 211 D3 latin capital letter o with acute
|
||||||
|
\0 O ; 212 D4 latin capital letter o with circumflex
|
||||||
|
\0 O ; 213 D5 latin capital letter o with tilde
|
||||||
|
\0 \x99 ; 214 D6 latin capital letter o with diaeresis
|
||||||
|
\0 x ; 215 D7 multiplication sign
|
||||||
|
\0 \x9D ; 216 D8 latin capital letter o with stroke (CP865 mapping)
|
||||||
|
\0 U ; 217 D9 latin capital letter u with grave
|
||||||
|
\0 U ; 218 DA latin capital letter u with acute
|
||||||
|
\0 U ; 219 DB latin capital letter u with circumflex
|
||||||
|
\0 \x9A ; 220 DC latin capital letter u with diaeresis
|
||||||
|
\0 Y ; 221 DD latin capital letter y with acute
|
||||||
|
T h ; 222 DE latin capital letter thorn (icelandic)
|
||||||
|
\0 \xE1 ; 223 DF latin small letter sharp s (german)
|
||||||
|
\0 \x85 ; 224 E0 latin small letter a with grave
|
||||||
|
\0 \xA0 ; 225 E1 latin small letter a with acute
|
||||||
|
\0 \x83 ; 226 E2 latin small letter a with circumflex
|
||||||
|
\0 a ; 227 E3 latin small letter a with tilde
|
||||||
|
\0 \x84 ; 228 E4 latin small letter a with diaeresis
|
||||||
|
\0 \x86 ; 229 E5 latin small letter a with ring above
|
||||||
|
\0 \x91 ; 230 E6 latin small letter ae
|
||||||
|
\0 \x87 ; 231 E7 latin small letter c with cedilla
|
||||||
|
\0 \x8A ; 232 E8 latin small letter e with grave
|
||||||
|
\0 \x82 ; 233 E9 latin small letter e with acute
|
||||||
|
\0 \x88 ; 234 EA latin small letter e with circumflex
|
||||||
|
\0 \x89 ; 235 EB latin small letter e with diaeresis
|
||||||
|
\0 \x8D ; 236 EC latin small letter i with grave
|
||||||
|
\0 \xA1 ; 237 ED latin small letter i with acute
|
||||||
|
\0 \x8C ; 238 EE latin small letter i with circumflex
|
||||||
|
\0 \x8B ; 239 EF latin small letter i with diaeresis
|
||||||
|
\0 \xE7 ; 240 F0 latin small letter eth (icelandic)
|
||||||
|
\0 \xA4 ; 241 F1 latin small letter n with tilde
|
||||||
|
\0 \x95 ; 242 F2 latin small letter o with grave
|
||||||
|
\0 \xA2 ; 243 F3 latin small letter o with acute
|
||||||
|
\0 \x93 ; 244 F4 latin small letter o with circumflex
|
||||||
|
\0 o ; 245 F5 latin small letter o with tilde
|
||||||
|
\0 \x94 ; 246 F6 latin small letter o with diaeresis
|
||||||
|
\0 \xF6 ; 247 F7 division sign
|
||||||
|
\0 \x9B ; 248 F8 latin small letter o with stroke (CP865 mapping)
|
||||||
|
\0 \x97 ; 249 F9 latin small letter u with grave
|
||||||
|
\0 \xA3 ; 250 FA latin small letter u with acute
|
||||||
|
\0 \x96 ; 251 FB latin small letter u with circumflex
|
||||||
|
\0 \x81 ; 252 FC latin small letter u with diaeresis
|
||||||
|
y e ; 253 FD latin small letter y with acute
|
||||||
|
t h ; 254 FE latin small letter thorn (icelandic)
|
||||||
|
\0 \x98 ; 255 FF latin small letter y with diaeresis
|
||||||
|
END
|
161
cfgs/charset/iso_iso.chs
Normal file
161
cfgs/charset/iso_iso.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts LATIN-1 to LATIN-1. (no conversion)
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
LATIN-1 ; from set
|
||||||
|
LATIN-1 ; to set
|
||||||
|
;
|
||||||
|
\0 \d128
|
||||||
|
\0 \d129
|
||||||
|
\0 \d130
|
||||||
|
\0 \d131
|
||||||
|
\0 \d132
|
||||||
|
\0 \d133
|
||||||
|
\0 \d134
|
||||||
|
\0 \d135
|
||||||
|
\0 \d136
|
||||||
|
\0 \d137
|
||||||
|
\0 \d138
|
||||||
|
\0 \d139
|
||||||
|
\0 \d140
|
||||||
|
\0 \d141
|
||||||
|
\0 \d142
|
||||||
|
\0 \d143
|
||||||
|
\0 \d144
|
||||||
|
\0 \d145
|
||||||
|
\0 \d146
|
||||||
|
\0 \d147
|
||||||
|
\0 \d148
|
||||||
|
\0 \d149
|
||||||
|
\0 \d150
|
||||||
|
\0 \d151
|
||||||
|
\0 \d152
|
||||||
|
\0 \d153
|
||||||
|
\0 \d154
|
||||||
|
\0 \d155
|
||||||
|
\0 \d156
|
||||||
|
\0 \d157
|
||||||
|
\0 \d158
|
||||||
|
\0 \d159
|
||||||
|
\0 \d160
|
||||||
|
\0 \d161
|
||||||
|
\0 \d162
|
||||||
|
\0 \d163
|
||||||
|
\0 \d164
|
||||||
|
\0 \d165
|
||||||
|
\0 \d166
|
||||||
|
\0 \d167
|
||||||
|
\0 \d168
|
||||||
|
\0 \d169
|
||||||
|
\0 \d170
|
||||||
|
\0 \d171
|
||||||
|
\0 \d172
|
||||||
|
\0 \d173
|
||||||
|
\0 \d174
|
||||||
|
\0 \d175
|
||||||
|
\0 \d176
|
||||||
|
\0 \d177
|
||||||
|
\0 \d178
|
||||||
|
\0 \d179
|
||||||
|
\0 \d180
|
||||||
|
\0 \d181
|
||||||
|
\0 \d182
|
||||||
|
\0 \d183
|
||||||
|
\0 \d184
|
||||||
|
\0 \d185
|
||||||
|
\0 \d186
|
||||||
|
\0 \d187
|
||||||
|
\0 \d188
|
||||||
|
\0 \d189
|
||||||
|
\0 \d190
|
||||||
|
\0 \d191
|
||||||
|
\0 \d192
|
||||||
|
\0 \d193
|
||||||
|
\0 \d194
|
||||||
|
\0 \d195
|
||||||
|
\0 \d196
|
||||||
|
\0 \d197
|
||||||
|
\0 \d198
|
||||||
|
\0 \d199
|
||||||
|
\0 \d200
|
||||||
|
\0 \d201
|
||||||
|
\0 \d202
|
||||||
|
\0 \d203
|
||||||
|
\0 \d204
|
||||||
|
\0 \d205
|
||||||
|
\0 \d206
|
||||||
|
\0 \d207
|
||||||
|
\0 \d208
|
||||||
|
\0 \d209
|
||||||
|
\0 \d210
|
||||||
|
\0 \d211
|
||||||
|
\0 \d212
|
||||||
|
\0 \d213
|
||||||
|
\0 \d214
|
||||||
|
\0 \d215
|
||||||
|
\0 \d216
|
||||||
|
\0 \d217
|
||||||
|
\0 \d218
|
||||||
|
\0 \d219
|
||||||
|
\0 \d220
|
||||||
|
\0 \d221
|
||||||
|
\0 \d222
|
||||||
|
\0 \d223
|
||||||
|
\0 \d224
|
||||||
|
\0 \d225
|
||||||
|
\0 \d226
|
||||||
|
\0 \d227
|
||||||
|
\0 \d228
|
||||||
|
\0 \d229
|
||||||
|
\0 \d230
|
||||||
|
\0 \d231
|
||||||
|
\0 \d232
|
||||||
|
\0 \d233
|
||||||
|
\0 \d234
|
||||||
|
\0 \d235
|
||||||
|
\0 \d236
|
||||||
|
\0 \d237
|
||||||
|
\0 \d238
|
||||||
|
\0 \d239
|
||||||
|
\0 \d240
|
||||||
|
\0 \d241
|
||||||
|
\0 \d242
|
||||||
|
\0 \d243
|
||||||
|
\0 \d244
|
||||||
|
\0 \d245
|
||||||
|
\0 \d246
|
||||||
|
\0 \d247
|
||||||
|
\0 \d248
|
||||||
|
\0 \d249
|
||||||
|
\0 \d250
|
||||||
|
\0 \d251
|
||||||
|
\0 \d252
|
||||||
|
\0 \d253
|
||||||
|
\0 \d254
|
||||||
|
\0 \d255
|
||||||
|
END
|
161
cfgs/charset/iso_mac.chs
Normal file
161
cfgs/charset/iso_mac.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts ISO_8859-1 extended characters to Macintosh characters.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number, is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
Latin-1 ; from set
|
||||||
|
MAC ; to set
|
||||||
|
;
|
||||||
|
\0 ? ; (missing) these codes are unused
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 4
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 8
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 12
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 16
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 20
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 24
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 28
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 32
|
||||||
|
\0 \xca ; non-breaking space
|
||||||
|
\0 \xc1 ; exclam downwards
|
||||||
|
\0 \xa2 ; cent
|
||||||
|
\0 \xa3 ; pound sterling
|
||||||
|
\x1 ? ; currency
|
||||||
|
\0 \xb4 ; Yen
|
||||||
|
\0 | ; broken bar
|
||||||
|
\0 \xa4 ; section
|
||||||
|
\0 \xac ; dieresis
|
||||||
|
\0 \xa9 ; copyright
|
||||||
|
\0 \xbb ; ord feminine
|
||||||
|
\0 \xc7 ; guillemot left
|
||||||
|
\0 \xc2 ; logical not
|
||||||
|
\0 \xd1 ; soft hyphen (or em dash)
|
||||||
|
\0 \xa8 ; registered trademark
|
||||||
|
\x1 ? ; overbar (macron)
|
||||||
|
\0 \xa1 ; ring / degree
|
||||||
|
\0 \xb1 ; plusminus
|
||||||
|
^ 2 ; superscript two (squared)
|
||||||
|
^ 3 ; superscript three (cubed)
|
||||||
|
\0 \xab ; acute
|
||||||
|
\0 \xb5 ; mu
|
||||||
|
\0 \xa6 ; paragraph
|
||||||
|
\0 \xa5 ; bullet
|
||||||
|
\0 , ; cedilla
|
||||||
|
^ 1 ; superscript one
|
||||||
|
\0 \xbc ; ord masculine
|
||||||
|
\0 \xc8 ; guillemot right
|
||||||
|
\x1 ? ; one quarter
|
||||||
|
. 5 ; half
|
||||||
|
\x1 ? ; three quarters
|
||||||
|
\0 \xc0 ; question downwards
|
||||||
|
\0 A ; A grave
|
||||||
|
\0 A ; A acute
|
||||||
|
\0 A ; A circumflex
|
||||||
|
\0 A ; A tilde
|
||||||
|
\0 \x80 ; A dieresis
|
||||||
|
\0 \x81 ; A ring
|
||||||
|
\0 \xae ; AE
|
||||||
|
\0 \x82 ; C cedilla
|
||||||
|
\0 E ; E grave
|
||||||
|
\0 \x83 ; E acute
|
||||||
|
\0 E ; E circumflex
|
||||||
|
E e ; E dieresis
|
||||||
|
\0 I ; I grave
|
||||||
|
\0 I ; I acute
|
||||||
|
\0 I ; I circumflex
|
||||||
|
I e ; I dieresis
|
||||||
|
\0 D ; Eth
|
||||||
|
\0 \x84 ; N tilde
|
||||||
|
\0 O ; O grave
|
||||||
|
\0 O ; O acute
|
||||||
|
\0 O ; O circumflex
|
||||||
|
\0 O ; O tilde
|
||||||
|
\0 \x85 ; O dieresis
|
||||||
|
\0 x ; multiplication
|
||||||
|
\0 \xaf ; O slash
|
||||||
|
\0 U ; U grave
|
||||||
|
\0 U ; U acute
|
||||||
|
\0 U ; U circumflex
|
||||||
|
\0 \x86 ; U dieresis
|
||||||
|
\0 Y ; Y acute
|
||||||
|
\x1 ? ; Thorn
|
||||||
|
\0 \xa7 ; german double s / beta
|
||||||
|
\0 \x88 ; a grave
|
||||||
|
\0 \x87 ; a acute
|
||||||
|
\0 \x89 ; a circumflex
|
||||||
|
\0 \x8b ; a tilde
|
||||||
|
\0 \x8a ; a dieresis
|
||||||
|
\0 \x8c ; a ring
|
||||||
|
\0 \xbe ; ae
|
||||||
|
\0 \x8d ; c cedilla
|
||||||
|
\0 \x8f ; e grave
|
||||||
|
\0 \x8e ; e acute
|
||||||
|
\0 \x90 ; e circumflex
|
||||||
|
\0 \x91 ; e dieresis
|
||||||
|
\0 \x93 ; i grave
|
||||||
|
\0 \x92 ; i acute
|
||||||
|
\0 \x94 ; i circumflex
|
||||||
|
\0 \x95 ; i dieresis
|
||||||
|
\x1 ? ; eth
|
||||||
|
\0 \x96 ; n tilde
|
||||||
|
\0 \x98 ; o grave
|
||||||
|
\0 \x97 ; o acute
|
||||||
|
\0 \x99 ; o circumflex
|
||||||
|
\0 \x9b ; o tilde
|
||||||
|
\0 \x9a ; o dieresis
|
||||||
|
\0 \xd6 ; division
|
||||||
|
\0 \xbf ; o slash
|
||||||
|
\0 \x9d ; u grave
|
||||||
|
\0 \x9c ; u acute
|
||||||
|
\0 \x9e ; u circumflex
|
||||||
|
\0 \x9f ; u dieresis
|
||||||
|
y e ; y acute
|
||||||
|
\x1 ? ; thorn
|
||||||
|
\0 \xd7 ; y dieresis
|
||||||
|
END
|
161
cfgs/charset/iso_vt1.chs
Normal file
161
cfgs/charset/iso_vt1.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts ISO_8859-1 extended characters to VT100 characters.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number, is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
Latin-1 ; from set
|
||||||
|
VT100 ; to set
|
||||||
|
;
|
||||||
|
\0 ? ; (missing) these codes are unused
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 4
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 8
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 12
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 16
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 20
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 24
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 28
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing)
|
||||||
|
\0 ? ; (missing) 32
|
||||||
|
\0 \d32 ; non-breaking space
|
||||||
|
\0 ! ; exclam downwards
|
||||||
|
\0 c ; cent
|
||||||
|
\d125 \0 ; pound sterling
|
||||||
|
\x1 ? ; currency
|
||||||
|
\0 Y ; Yen
|
||||||
|
\0 | ; broken bar
|
||||||
|
\0 S ; section
|
||||||
|
\x1 ? ; dieresis
|
||||||
|
\0 c ; copyright
|
||||||
|
\0 a ; ord feminine
|
||||||
|
< < ; guillemot left
|
||||||
|
\0 ! ; logical not
|
||||||
|
\0 - ; soft hyphen (or em dash)
|
||||||
|
\0 R ; registered trademark
|
||||||
|
\d111 \0 ; overbar (macron)
|
||||||
|
\d102 \0 ; ring / degree
|
||||||
|
\d103 \0 ; plusminus
|
||||||
|
^ 2 ; superscript two (squared)
|
||||||
|
^ 3 ; superscript three (cubed)
|
||||||
|
\0 ' ; acute
|
||||||
|
m u ; mu
|
||||||
|
\x1 ? ; paragraph
|
||||||
|
\0 o ; bullet
|
||||||
|
\0 , ; cedilla
|
||||||
|
^ 1 ; superscript one
|
||||||
|
\0 o ; ord masculine
|
||||||
|
> > ; guillemot right
|
||||||
|
\x1 ? ; one quarter
|
||||||
|
. 5 ; half
|
||||||
|
\x1 ? ; three quarters
|
||||||
|
\0 ? ; question downwards
|
||||||
|
\0 A ; A grave
|
||||||
|
\0 A ; A acute
|
||||||
|
\0 A ; A circumflex
|
||||||
|
\0 A ; A tilde
|
||||||
|
A e ; A dieresis
|
||||||
|
\0 A ; A ring
|
||||||
|
A E ; AE
|
||||||
|
\0 C ; C cedilla
|
||||||
|
\0 E ; E grave
|
||||||
|
\0 E ; E acute
|
||||||
|
\0 E ; E circumflex
|
||||||
|
E e ; E dieresis
|
||||||
|
\0 I ; I grave
|
||||||
|
\0 I ; I acute
|
||||||
|
\0 I ; I circumflex
|
||||||
|
I e ; I dieresis
|
||||||
|
\0 D ; Eth
|
||||||
|
\0 N ; N tilde
|
||||||
|
\0 O ; O grave
|
||||||
|
\0 O ; O acute
|
||||||
|
\0 O ; O circumflex
|
||||||
|
\0 O ; O tilde
|
||||||
|
O e ; O dieresis
|
||||||
|
\0 x ; multiplication
|
||||||
|
\0 0 ; O slash
|
||||||
|
\0 U ; U grave
|
||||||
|
\0 U ; U acute
|
||||||
|
\0 U ; U circumflex
|
||||||
|
U e ; U dieresis
|
||||||
|
\0 Y ; Y acute
|
||||||
|
\x1 ? ; Thorn
|
||||||
|
\0 B ; german double s / beta
|
||||||
|
\0 a ; a grave
|
||||||
|
\0 a ; a acute
|
||||||
|
\0 a ; a circumflex
|
||||||
|
\0 a ; a tilde
|
||||||
|
a e ; a dieresis
|
||||||
|
\0 a ; a ring
|
||||||
|
a e ; ae
|
||||||
|
\0 c ; c cedilla
|
||||||
|
\0 e ; e grave
|
||||||
|
\0 e ; e acute
|
||||||
|
\0 e ; e circumflex
|
||||||
|
e e ; e dieresis
|
||||||
|
\0 i ; i grave
|
||||||
|
\0 i ; i acute
|
||||||
|
\0 i ; i circumflex
|
||||||
|
i e ; i dieresis
|
||||||
|
\x1 ? ; eth
|
||||||
|
\0 n ; n tilde
|
||||||
|
\0 o ; o grave
|
||||||
|
\0 o ; o acute
|
||||||
|
\0 o ; o circumflex
|
||||||
|
\0 o ; o tilde
|
||||||
|
o e ; o dieresis
|
||||||
|
\0 / ; division
|
||||||
|
\0 o ; o slash
|
||||||
|
\0 u ; u grave
|
||||||
|
\0 u ; u acute
|
||||||
|
\0 u ; u circumflex
|
||||||
|
u e ; u dieresis
|
||||||
|
y e ; y acute
|
||||||
|
\x1 ? ; thorn
|
||||||
|
y e ; y dieresis
|
||||||
|
END
|
162
cfgs/charset/ita_asc.chs
Normal file
162
cfgs/charset/ita_asc.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the Italian set to ASCII.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
ITALIAN ; from set
|
||||||
|
ASCII ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 # ; pound / number -> pound sterling
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 S ; at -> section
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 o ; bracket left -> ring / degree
|
||||||
|
\0 c ; backslash -> c cedilla
|
||||||
|
\0 e ; bracket right -> e acute
|
||||||
|
\0 ^ ; circum
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 u ; quote left -> u grave
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 a ; brace left -> a grave
|
||||||
|
\0 o ; bar -> o grave
|
||||||
|
\0 e ; brace right -> e grave
|
||||||
|
\0 i ; tilde -> i grave
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/itl_ibm.chs
Normal file
162
cfgs/charset/itl_ibm.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the Italian set to IBMPC.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
ITALIAN ; from set
|
||||||
|
IBMPC ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 \x9C ; pound / number -> pound sterling
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 \x15 ; at -> section
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 \xF8 ; bracket left -> ring / degree
|
||||||
|
\0 \x87 ; backslash -> c cedilla
|
||||||
|
\0 \x82 ; bracket right -> e acute
|
||||||
|
\0 ^ ; circum
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 \x97 ; quote left -> u grave
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 \x85 ; brace left -> a grave
|
||||||
|
\0 \x95 ; bar -> o grave
|
||||||
|
\0 \x8A ; brace right -> e grave
|
||||||
|
\0 \x8D ; tilde -> i grave
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
161
cfgs/charset/mac_850.chs
Normal file
161
cfgs/charset/mac_850.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts Macintosh extended characters to IBM CP850 characters.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
MAC ; from set
|
||||||
|
CP850 ; to set
|
||||||
|
;
|
||||||
|
\0 \x8E ; 128 80 latin capital letter a with diaeresis
|
||||||
|
\0 \x8F ; 129 81 latin capital letter a with ring above
|
||||||
|
\0 \x80 ; 130 82 latin capital letter c with cedilla
|
||||||
|
\0 \x90 ; 131 83 latin capital letter e with acute
|
||||||
|
\0 \xA5 ; 132 84 latin capital letter n with tilde
|
||||||
|
\0 \x94 ; 133 85 latin capital letter o with diaeresis
|
||||||
|
\0 \x9A ; 134 86 latin capital letter u with diaeresis
|
||||||
|
\0 \xA0 ; 135 87 latin small letter a with acute
|
||||||
|
\0 \x85 ; 136 88 latin small letter a with grave
|
||||||
|
\0 \x83 ; 137 89 latin small letter a with circumflex
|
||||||
|
\0 \x84 ; 138 8A latin small letter a with diaeresis
|
||||||
|
\0 \xC6 ; 139 8B latin small letter a with tilde
|
||||||
|
\0 \x86 ; 140 8C latin small letter a with ring above
|
||||||
|
\0 \x87 ; 141 8D latin small letter c with cedilla
|
||||||
|
\0 \x82 ; 142 8E latin small letter e with acute
|
||||||
|
\0 \x8A ; 143 8F latin small letter e with grave
|
||||||
|
\0 \x88 ; 144 90 latin small letter e with circumflex
|
||||||
|
\0 \x89 ; 145 91 latin small letter e with diaeresis
|
||||||
|
\0 \xA1 ; 146 92 latin small letter i with acute
|
||||||
|
\0 \x8D ; 147 93 latin small letter i with grave
|
||||||
|
\0 \x8C ; 148 94 latin small letter i with circumflex
|
||||||
|
\0 \x8B ; 149 95 latin small letter i with diaeresis
|
||||||
|
\0 \xA4 ; 150 96 latin small letter n with tilde
|
||||||
|
\0 \xA2 ; 151 97 latin small letter o with acute
|
||||||
|
\0 \x95 ; 152 98 latin small letter o with grave
|
||||||
|
\0 \x96 ; 153 99 latin small letter o with circumflex
|
||||||
|
\0 \x94 ; 154 9A latin small letter o with diaeresis
|
||||||
|
\0 \xE4 ; 155 9B latin small letter o with tilde
|
||||||
|
\0 \xA3 ; 156 9C latin small letter u with acute
|
||||||
|
\0 \x97 ; 157 9D latin small letter u with grave
|
||||||
|
\0 \x96 ; 158 9E latin small letter u with circumflex
|
||||||
|
\0 \x81 ; 159 9F latin small letter u with diaeresis
|
||||||
|
\0 + ; 160 A0 dagger
|
||||||
|
\0 \xF8 ; 161 A1 degree sign
|
||||||
|
\0 \x9B ; 162 A2 cent sign
|
||||||
|
\0 \x9C ; 163 A3 pound sign
|
||||||
|
\0 \x15 ; 164 A4 section sign
|
||||||
|
\0 \xFE ; 165 A5 bullet operator
|
||||||
|
\0 \x14 ; 166 A6 pilcrow sign
|
||||||
|
\0 \xE1 ; 167 A7 latin small letter sharp s (german)
|
||||||
|
\0 \xA9 ; 168 A8 registered sign
|
||||||
|
\0 \xB8 ; 169 A9 copyright sign
|
||||||
|
t m ; 170 AA trade mark sign
|
||||||
|
\0 \xEF ; 171 AB acute accent
|
||||||
|
\0 \xF9 ; 172 AC diaeresis
|
||||||
|
< > ; 173 AD not equal to
|
||||||
|
\0 \x92 ; 174 AE latin capital letter ae
|
||||||
|
\0 \x9D ; 175 AF latin capital letter o with stroke
|
||||||
|
\0 \xEC ; 176 B0 infinity
|
||||||
|
\0 \xF1 ; 177 B1 plus-minus sign
|
||||||
|
\0 \xF3 ; 178 B2 less-than or equal to
|
||||||
|
\0 \xF2 ; 179 B3 greater-than or equal to
|
||||||
|
\0 \x9D ; 180 B4 yen sign
|
||||||
|
\0 \xE6 ; 181 B5 micro sign
|
||||||
|
\0 \xEB ; 182 B6 partial differential
|
||||||
|
\0 \xE4 ; 183 B7 n-ary summation
|
||||||
|
\0 x ; 184 B8 n-ary product
|
||||||
|
\0 \xE3 ; 185 B9 greek small letter pi
|
||||||
|
I n ; 186 BA integral
|
||||||
|
\0 \xA6 ; 187 BB feminine ordinal indicator
|
||||||
|
\0 \xA7 ; 188 BC masculine ordinal indicator
|
||||||
|
\0 \xEA ; 189 BD greek capital letter omega
|
||||||
|
\0 \x91 ; 190 BE latin small letter ae
|
||||||
|
\0 \x9b ; 191 BF latin small letter o with stroke
|
||||||
|
\0 \xA8 ; 192 C0 inverted question mark
|
||||||
|
\0 \xAD ; 193 C1 inverted exclamation mark
|
||||||
|
\0 \xAA ; 194 C2 not sign
|
||||||
|
\0 \xFB ; 195 C3 square root
|
||||||
|
\0 \x9F ; 196 C4 dutch guilder sign (ibm437 159)
|
||||||
|
\0 \xF7 ; 197 C5 almost equal to
|
||||||
|
\0 \x7F ; 198 C6 greek capital letter delta
|
||||||
|
\0 \xAF ; 199 C7 left-pointing double angle quotation mark
|
||||||
|
\0 \xAE ; 200 C8 right-pointing double angle quotation mark
|
||||||
|
. . ; 201 C9 midline horizontal ellipsis
|
||||||
|
\0 \d32 ; 202 CA no-break space
|
||||||
|
\0 \xB7 ; 203 CB latin capital letter a with grave
|
||||||
|
\0 \xC7 ; 204 CC latin capital letter a with tilde
|
||||||
|
\0 \xE5 ; 205 CD latin capital letter o with tilde
|
||||||
|
O E ; 206 CE latin capital ligature oe
|
||||||
|
o e ; 207 CF latin small ligature oe
|
||||||
|
\0 \xFA ; 208 D0 em dash
|
||||||
|
\0 - ; 209 D1 en dash
|
||||||
|
\0 " ; 210 D2 left double quotation mark
|
||||||
|
\0 " ; 211 D3 right double quotation mark
|
||||||
|
\0 ` ; 212 D4 left single quotation mark
|
||||||
|
\0 ' ; 213 D5 right single quotation mark
|
||||||
|
\0 \xF6 ; 214 D6 division sign
|
||||||
|
\0 \x04 ; 215 D7 black diamond
|
||||||
|
\0 \x98 ; 216 D8 latin small letter y with diaeresis
|
||||||
|
\0 \x98 ; 217 D9 latin capital letter y with diaeresis
|
||||||
|
\0 / ; 218 DA fraction slash
|
||||||
|
C u ; 219 DB currency sign
|
||||||
|
\0 < ; 220 DC single left-pointing angle quotation mark
|
||||||
|
\0 > ; 221 DD single right-pointing angle quotation mark
|
||||||
|
f i ; 222 DE latin small ligature fi
|
||||||
|
f l ; 223 DF latin small ligature fl
|
||||||
|
+ + ; 224 E0 double dagger
|
||||||
|
\0 . ; 225 E1 middle dot
|
||||||
|
\0 ' ; 226 E2 single low-9 quotation mark
|
||||||
|
\0 " ; 227 E3 double low-9 quotation mark
|
||||||
|
% . ; 228 E4 per mille sign
|
||||||
|
\0 \xB6 ; 229 E5 latin capital letter a with circumflex
|
||||||
|
\0 \xD2 ; 230 E6 latin capital letter e with circumflex
|
||||||
|
\0 \xB5 ; 231 E7 latin capital letter a with acute
|
||||||
|
\0 \xD3 ; 232 E8 latin capital letter e with diaeresis
|
||||||
|
\0 \xD4 ; 233 E9 latin capital letter e with grave
|
||||||
|
\0 \xD6 ; 234 EA latin capital letter i with acute
|
||||||
|
\0 \xD7 ; 235 EB latin capital letter i with circumflex
|
||||||
|
\0 \xD8 ; 236 EC latin capital letter i with diaeresis
|
||||||
|
\0 \xDE ; 237 ED latin capital letter i with grave
|
||||||
|
\0 \xE0 ; 238 EE latin capital letter o with acute
|
||||||
|
\0 \xE2 ; 239 EF latin capital letter o with circumflex
|
||||||
|
\x1 ? ; 240 F0 ???
|
||||||
|
\0 \xE3 ; 241 F1 latin capital letter o with grave
|
||||||
|
\0 \xE9 ; 242 F2 latin capital letter u with acute
|
||||||
|
\0 \xEA ; 243 F3 latin capital letter u with circumflex
|
||||||
|
\0 \xEB ; 244 F4 latin capital letter u with grave
|
||||||
|
\0 i ; 245 F5 latin small letter i dotless
|
||||||
|
\x1 ? ; 246 F6 ???
|
||||||
|
\x1 ? ; 247 F7 ???
|
||||||
|
\0 \xEE ; 248 F8 overline
|
||||||
|
\0 u ; 249 F9 breve
|
||||||
|
\0 \xFA ; 250 FA dot above
|
||||||
|
\0 o ; 251 FB ring above
|
||||||
|
\0 , ; 252 FC cedilla
|
||||||
|
\0 " ; 253 FD double acute accent
|
||||||
|
\0 \xF7 ; 254 FE ogonek
|
||||||
|
\0 v ; 255 FF caron
|
||||||
|
END
|
161
cfgs/charset/mac_asc.chs
Normal file
161
cfgs/charset/mac_asc.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts Macintosh extended characters to IBM PC characters.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
MAC ; from set
|
||||||
|
ASCII ; to set
|
||||||
|
;
|
||||||
|
A e ; A dieresis
|
||||||
|
\0 A ; A ring
|
||||||
|
\0 C ; C cedilla
|
||||||
|
\0 E ; E acute
|
||||||
|
\0 N ; N tilde
|
||||||
|
O e ; O dieresis
|
||||||
|
U e ; U dieresis
|
||||||
|
\0 a ; a acute
|
||||||
|
\0 a ; a grave
|
||||||
|
\0 a ; a circumflex
|
||||||
|
a e ; a dieresis
|
||||||
|
\0 a ; a tilde
|
||||||
|
\0 a ; a ring
|
||||||
|
\0 c ; c cedilla
|
||||||
|
\0 e ; e acute
|
||||||
|
\0 e ; e grave
|
||||||
|
\0 e ; e circumflex
|
||||||
|
e e ; e dieresis
|
||||||
|
\0 i ; i acute
|
||||||
|
\0 i ; i grave
|
||||||
|
\0 i ; i circumflex
|
||||||
|
i e ; i dieresis
|
||||||
|
\0 n ; n tilde
|
||||||
|
\0 o ; o acute
|
||||||
|
\0 o ; o grave
|
||||||
|
\0 o ; o circumflex
|
||||||
|
o e ; o dieresis
|
||||||
|
\0 o ; o tilde
|
||||||
|
\0 u ; u grave
|
||||||
|
\0 u ; u acute
|
||||||
|
\0 u ; u circumflex
|
||||||
|
u e ; u dieresis
|
||||||
|
\0 + ; dagger
|
||||||
|
\0 o ; ring / degree
|
||||||
|
\0 c ; cent
|
||||||
|
\0 # ; pound sterling
|
||||||
|
\0 S ; section
|
||||||
|
\0 o ; bullet
|
||||||
|
\x1 ? ; paragraph
|
||||||
|
\0 B ; german double s
|
||||||
|
\0 R ; registered trademark
|
||||||
|
\0 c ; copyright
|
||||||
|
T M ; trademark
|
||||||
|
\0 ' ; acute
|
||||||
|
\x1 ? ; dieresis
|
||||||
|
< > ; not equal
|
||||||
|
A E ; AE
|
||||||
|
\0 0 ; O slash
|
||||||
|
\x1 ? ; infinity
|
||||||
|
+ - ; plusminus
|
||||||
|
< = ; smaller equals
|
||||||
|
> = ; greater equals
|
||||||
|
\0 Y ; Yen
|
||||||
|
m u ; mu
|
||||||
|
\0 d ; delta
|
||||||
|
\x1 ? ; Sigma (summation)
|
||||||
|
\x1 ? ; Pi
|
||||||
|
p i ; pi
|
||||||
|
\x1 ? ; integral
|
||||||
|
\0 a ; ord feminine
|
||||||
|
\0 o ; ord masculine
|
||||||
|
\0 O ; Omega
|
||||||
|
a e ; ae
|
||||||
|
\0 o ; o slash
|
||||||
|
\0 ? ; question downwards
|
||||||
|
\0 ! ; exclam downwards
|
||||||
|
\0 ! ; logical not
|
||||||
|
\x1 ? ; radical
|
||||||
|
\0 f ; florin
|
||||||
|
~ = ; approx.
|
||||||
|
\x1 ? ; Delta
|
||||||
|
> > ; guillemot right
|
||||||
|
< < ; guillemot left
|
||||||
|
. . ; ellipsis
|
||||||
|
\0 \d32 ; non breaking space
|
||||||
|
\0 A ; A acute
|
||||||
|
\0 A ; A tilde
|
||||||
|
\0 O ; O tilde
|
||||||
|
O E ; OE
|
||||||
|
o e ; oe
|
||||||
|
\0 - ; en dash
|
||||||
|
\0 - ; em dash
|
||||||
|
\0 " ; double quote left
|
||||||
|
\0 " ; double quote right
|
||||||
|
\0 ` ; quote left
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 / ; divide
|
||||||
|
\x1 ? ; lozenge
|
||||||
|
y e ; y dieresis
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
END
|
161
cfgs/charset/mac_ibm.chs
Normal file
161
cfgs/charset/mac_ibm.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts Macintosh extended characters to IBM-PC characters.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
MAC ; from set
|
||||||
|
IBMPC ; to set (actually CP865)
|
||||||
|
;
|
||||||
|
\0 \x8E ; 128 80 latin capital letter a with diaeresis
|
||||||
|
\0 \x8F ; 129 81 latin capital letter a with ring above
|
||||||
|
\0 \x80 ; 130 82 latin capital letter c with cedilla
|
||||||
|
\0 \x90 ; 131 83 latin capital letter e with acute
|
||||||
|
\0 \xA5 ; 132 84 latin capital letter n with tilde
|
||||||
|
\0 \x94 ; 133 85 latin capital letter o with diaeresis
|
||||||
|
\0 \x9A ; 134 86 latin capital letter u with diaeresis
|
||||||
|
\0 \xA0 ; 135 87 latin small letter a with acute
|
||||||
|
\0 \x85 ; 136 88 latin small letter a with grave
|
||||||
|
\0 \x83 ; 137 89 latin small letter a with circumflex
|
||||||
|
\0 \x84 ; 138 8A latin small letter a with diaeresis
|
||||||
|
\0 a ; 139 8B latin small letter a with tilde
|
||||||
|
\0 \x86 ; 140 8C latin small letter a with ring above
|
||||||
|
\0 \x87 ; 141 8D latin small letter c with cedilla
|
||||||
|
\0 \x82 ; 142 8E latin small letter e with acute
|
||||||
|
\0 \x8A ; 143 8F latin small letter e with grave
|
||||||
|
\0 \x88 ; 144 90 latin small letter e with circumflex
|
||||||
|
\0 \x89 ; 145 91 latin small letter e with diaeresis
|
||||||
|
\0 \xA1 ; 146 92 latin small letter i with acute
|
||||||
|
\0 \x8D ; 147 93 latin small letter i with grave
|
||||||
|
\0 \x8C ; 148 94 latin small letter i with circumflex
|
||||||
|
\0 \x8B ; 149 95 latin small letter i with diaeresis
|
||||||
|
\0 \xA4 ; 150 96 latin small letter n with tilde
|
||||||
|
\0 \xA2 ; 151 97 latin small letter o with acute
|
||||||
|
\0 \x95 ; 152 98 latin small letter o with grave
|
||||||
|
\0 \x96 ; 153 99 latin small letter o with circumflex
|
||||||
|
\0 \x94 ; 154 9A latin small letter o with diaeresis
|
||||||
|
\0 o ; 155 9B latin small letter o with tilde
|
||||||
|
\0 \xA3 ; 156 9C latin small letter u with acute
|
||||||
|
\0 \x97 ; 157 9D latin small letter u with grave
|
||||||
|
\0 \x96 ; 158 9E latin small letter u with circumflex
|
||||||
|
\0 \x81 ; 159 9F latin small letter u with diaeresis
|
||||||
|
\0 + ; 160 A0 dagger
|
||||||
|
\0 \xF8 ; 161 A1 degree sign
|
||||||
|
\0 \x9B ; 162 A2 cent sign
|
||||||
|
\0 \x9C ; 163 A3 pound sign
|
||||||
|
\0 \x15 ; 164 A4 section sign
|
||||||
|
\0 \xFE ; 165 A5 bullet operator
|
||||||
|
\0 \x14 ; 166 A6 pilcrow sign
|
||||||
|
\0 \xE1 ; 167 A7 latin small letter sharp s (german)
|
||||||
|
( R ) ; 168 A8 registered sign
|
||||||
|
( C ) ; 169 A9 copyright sign
|
||||||
|
t m ; 170 AA trade mark sign
|
||||||
|
\0 ' ; 171 AB acute accent
|
||||||
|
\x1 ? ; 172 AC diaeresis
|
||||||
|
< > ; 173 AD not equal to
|
||||||
|
\0 \x92 ; 174 AE latin capital letter ae
|
||||||
|
\0 \x9D ; 175 AF latin capital letter o with stroke (mapping for CP865)
|
||||||
|
\0 \xEC ; 176 B0 infinity
|
||||||
|
\0 \xF1 ; 177 B1 plus-minus sign
|
||||||
|
\0 \xF3 ; 178 B2 less-than or equal to
|
||||||
|
\0 \xF2 ; 179 B3 greater-than or equal to
|
||||||
|
\0 \x9D ; 180 B4 yen sign
|
||||||
|
\0 \xE6 ; 181 B5 micro sign
|
||||||
|
\0 \xEB ; 182 B6 partial differential
|
||||||
|
\0 \xE4 ; 183 B7 n-ary summation
|
||||||
|
\x1 ? ; 184 B8 n-ary product
|
||||||
|
\0 \xE3 ; 185 B9 greek small letter pi
|
||||||
|
\x1 ? ; 186 BA integral
|
||||||
|
\0 \xA6 ; 187 BB feminine ordinal indicator
|
||||||
|
\0 \xA7 ; 188 BC masculine ordinal indicator
|
||||||
|
\0 \xEA ; 189 BD greek capital letter omega
|
||||||
|
\0 \x91 ; 190 BE latin small letter ae
|
||||||
|
\0 \x9B ; 191 BF latin small letter o with stroke (mapping for CP865)
|
||||||
|
\0 \xA8 ; 192 C0 inverted question mark
|
||||||
|
\0 \xAD ; 193 C1 inverted exclamation mark
|
||||||
|
\0 \xAA ; 194 C2 not sign
|
||||||
|
\0 \xFB ; 195 C3 square root
|
||||||
|
\0 \x9F ; 196 C4 dutch guilder sign (ibm437 159)
|
||||||
|
\0 \xF7 ; 197 C5 almost equal to
|
||||||
|
\0 \x7F ; 198 C6 greek capital letter delta
|
||||||
|
\0 \xAF ; 199 C7 left-pointing double angle quotation mark
|
||||||
|
\0 \xAE ; 200 C8 right-pointing double angle quotation mark
|
||||||
|
. . ; 201 C9 midline horizontal ellipsis
|
||||||
|
\0 \d32 ; 202 CA no-break space
|
||||||
|
\0 A ; 203 CB latin capital letter a with grave
|
||||||
|
\0 A ; 204 CC latin capital letter a with tilde
|
||||||
|
\0 O ; 205 CD latin capital letter o with tilde
|
||||||
|
O E ; 206 CE latin capital ligature oe
|
||||||
|
o e ; 207 CF latin small ligature oe
|
||||||
|
\0 \xFA ; 208 D0 em dash
|
||||||
|
\0 - ; 209 D1 en dash
|
||||||
|
\0 " ; 210 D2 left double quotation mark
|
||||||
|
\0 " ; 211 D3 right double quotation mark
|
||||||
|
\0 ` ; 212 D4 left single quotation mark
|
||||||
|
\0 ' ; 213 D5 right single quotation mark
|
||||||
|
\0 \xF6 ; 214 D6 division sign
|
||||||
|
\0 \x04 ; 215 D7 black diamond
|
||||||
|
\0 \x98 ; 216 D8 latin small letter y with diaeresis
|
||||||
|
\0 Y ; 217 D9 latin capital letter y with diaeresis
|
||||||
|
\0 / ; 218 DA fraction slash
|
||||||
|
C u ; 219 DB currency sign
|
||||||
|
\0 < ; 220 DC single left-pointing angle quotation mark
|
||||||
|
\0 > ; 221 DD single right-pointing angle quotation mark
|
||||||
|
f i ; 222 DE latin small ligature fi
|
||||||
|
f l ; 223 DF latin small ligature fl
|
||||||
|
+ + ; 224 E0 double dagger
|
||||||
|
\0 . ; 225 E1 middle dot
|
||||||
|
\0 ' ; 226 E2 single low-9 quotation mark
|
||||||
|
\0 " ; 227 E3 double low-9 quotation mark
|
||||||
|
% . ; 228 E4 per mille sign
|
||||||
|
\0 A ; 229 E5 latin capital letter a with circumflex
|
||||||
|
\0 E ; 230 E6 latin capital letter e with circumflex
|
||||||
|
\0 A ; 231 E7 latin capital letter a with acute
|
||||||
|
\0 E ; 232 E8 latin capital letter e with diaeresis
|
||||||
|
\0 E ; 233 E9 latin capital letter e with grave
|
||||||
|
\0 I ; 234 EA latin capital letter i with acute
|
||||||
|
\0 I ; 235 EB latin capital letter i with circumflex
|
||||||
|
\0 I ; 236 EC latin capital letter i with diaeresis
|
||||||
|
\0 I ; 237 ED latin capital letter i with grave
|
||||||
|
\0 O ; 238 EE latin capital letter o with acute
|
||||||
|
\0 O ; 239 EF latin capital letter o with circumflex
|
||||||
|
\x1 ? ; 240 F0 ???
|
||||||
|
\0 O ; 241 F1 latin capital letter o with grave
|
||||||
|
\0 U ; 242 F2 latin capital letter u with acute
|
||||||
|
\0 U ; 243 F3 latin capital letter u with circumflex
|
||||||
|
\0 U ; 244 F4 latin capital letter u with grave
|
||||||
|
\0 i ; 245 F5 latin small letter i dotless
|
||||||
|
\x1 ? ; 246 F6 ???
|
||||||
|
\x1 ? ; 247 F7 ???
|
||||||
|
\0 - ; 248 F8 overline
|
||||||
|
\0 u ; 249 F9 breve
|
||||||
|
\0 . ; 250 FA dot above
|
||||||
|
\0 o ; 251 FB ring above
|
||||||
|
\0 , ; 252 FC cedilla
|
||||||
|
\0 " ; 253 FD double acute accent
|
||||||
|
\0 , ; 254 FE ogonek
|
||||||
|
\0 v ; 255 FF caron
|
||||||
|
END
|
161
cfgs/charset/mac_iso.chs
Normal file
161
cfgs/charset/mac_iso.chs
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts Macintosh extended characters to ISO 8859-1.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
MAC ; from set
|
||||||
|
LATIN-1 ; to set
|
||||||
|
;
|
||||||
|
\0 \xc4 ; A dieresis
|
||||||
|
\0 \xc5 ; A ring
|
||||||
|
\0 \xc7 ; C cedilla
|
||||||
|
\0 \xc9 ; E acute
|
||||||
|
\0 \xd1 ; N tilde
|
||||||
|
\0 \xd6 ; O dieresis
|
||||||
|
\0 \xdc ; U dieresis
|
||||||
|
\0 \xe1 ; a acute
|
||||||
|
\0 \xe0 ; a grave
|
||||||
|
\0 \xe2 ; a circumflex
|
||||||
|
\0 \xe4 ; a dieresis
|
||||||
|
\0 \xe3 ; a tilde
|
||||||
|
\0 \xe5 ; a ring
|
||||||
|
\0 \xe7 ; c cedilla
|
||||||
|
\0 \xe9 ; e acute
|
||||||
|
\0 \xe8 ; e grave
|
||||||
|
\0 \xea ; e circumflex
|
||||||
|
\0 \xeb ; e dieresis
|
||||||
|
\0 \xed ; i acute
|
||||||
|
\0 \xec ; i grave
|
||||||
|
\0 \xee ; i circumflex
|
||||||
|
\0 \xef ; i dieresis
|
||||||
|
\0 \xf1 ; n tilde
|
||||||
|
\0 \xf3 ; o acute
|
||||||
|
\0 \xf2 ; o grave
|
||||||
|
\0 \xf4 ; o circumflex
|
||||||
|
\0 \xf6 ; o dieresis
|
||||||
|
\0 \xf5 ; o tilde
|
||||||
|
\0 \xfa ; u acute
|
||||||
|
\0 \xf9 ; u grave
|
||||||
|
\0 \xfb ; u circumflex
|
||||||
|
\0 \xfc ; u dieresis
|
||||||
|
\0 + ; dagger
|
||||||
|
\0 \xb0 ; ring / degree
|
||||||
|
\0 \xa2 ; cent
|
||||||
|
\0 \xa3 ; pound sterling
|
||||||
|
\0 \xa7 ; section
|
||||||
|
\0 \xb7 ; bullet
|
||||||
|
\0 \xb6 ; paragraph
|
||||||
|
\0 \xdf ; german double s
|
||||||
|
\0 \xae ; registered trademark
|
||||||
|
\0 \xa9 ; copyright
|
||||||
|
T M ; trademark
|
||||||
|
\0 \xb4 ; acute
|
||||||
|
\0 \xa8 ; dieresis
|
||||||
|
< > ; not equal
|
||||||
|
\0 \xc6 ; AE
|
||||||
|
\0 \xd8 ; O slash
|
||||||
|
\x1 ? ; infinity
|
||||||
|
\0 \xb1 ; plusminus
|
||||||
|
< = ; smaller equals
|
||||||
|
> = ; greater equals
|
||||||
|
\0 \xa5 ; Yen
|
||||||
|
\0 \xb5 ; mu
|
||||||
|
\0 \xf0 ; delta
|
||||||
|
\x1 ? ; Sigma (summation)
|
||||||
|
\x1 ? ; Pi
|
||||||
|
p i ; pi
|
||||||
|
\x1 ? ; integral
|
||||||
|
\0 \xaa ; ord feminine
|
||||||
|
\0 \xba ; ord masculine
|
||||||
|
\x1 ? ; Omega
|
||||||
|
\0 \xe6 ; ae
|
||||||
|
\0 \xf8 ; o slash
|
||||||
|
\0 \xbf ; question downwards
|
||||||
|
\0 \xa1 ; exclam downwards
|
||||||
|
\0 \xac ; logical not
|
||||||
|
\x1 ? ; radical
|
||||||
|
f l ; florin
|
||||||
|
~ = ; approx.
|
||||||
|
\x1 ? ; Delta
|
||||||
|
\0 \xbb ; guillemot right
|
||||||
|
\0 \xab ; guillemot left
|
||||||
|
. . ; ellipsis
|
||||||
|
\0 \xa0 ; non breaking space
|
||||||
|
\0 \xc1 ; A acute
|
||||||
|
\0 \xc3 ; A tilde
|
||||||
|
\0 \xd5 ; O tilde
|
||||||
|
O E ; OE
|
||||||
|
o e ; oe
|
||||||
|
\0 - ; en dash
|
||||||
|
\0 \xad ; em dash
|
||||||
|
\0 " ; double quote left
|
||||||
|
\0 " ; double quote right
|
||||||
|
\0 ` ; quote left
|
||||||
|
\0 \xb4 ; quote right
|
||||||
|
\0 \xf7 ; divide
|
||||||
|
\0 o ; lozenge
|
||||||
|
\0 \xff ; y dieresis
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
END
|
164
cfgs/charset/mac_vt1.chs
Normal file
164
cfgs/charset/mac_vt1.chs
Normal file
@ -0,0 +1,164 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module Converts Macintosh extended characters to VT100.
|
||||||
|
;
|
||||||
|
; NOTE: this file uses an implementation dependant feature!
|
||||||
|
; a 0 as the second character means "use DEC graphic set"
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \d32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
2 ; level number
|
||||||
|
;
|
||||||
|
MAC ; from set
|
||||||
|
VT100 ; to set (change to UK for UK map file)
|
||||||
|
;
|
||||||
|
A e ; A dieresis
|
||||||
|
\0 A ; A ring
|
||||||
|
\0 C ; C cedilla
|
||||||
|
\0 E ; E acute
|
||||||
|
\0 N ; N tilde
|
||||||
|
O e ; O dieresis
|
||||||
|
U e ; U dieresis
|
||||||
|
\0 a ; a acute
|
||||||
|
\0 a ; a grave
|
||||||
|
\0 a ; a circumflex
|
||||||
|
a e ; a dieresis
|
||||||
|
\0 a ; a tilde
|
||||||
|
\0 a ; a ring
|
||||||
|
\0 c ; c cedilla
|
||||||
|
\0 e ; e acute
|
||||||
|
\0 e ; e grave
|
||||||
|
\0 e ; e circumflex
|
||||||
|
e e ; e dieresis
|
||||||
|
\0 i ; i acute
|
||||||
|
\0 i ; i grave
|
||||||
|
\0 i ; i circumflex
|
||||||
|
i e ; i dieresis
|
||||||
|
\0 n ; n tilde
|
||||||
|
\0 o ; o acute
|
||||||
|
\0 o ; o grave
|
||||||
|
\0 o ; o circumflex
|
||||||
|
o e ; o dieresis
|
||||||
|
\0 o ; o tilde
|
||||||
|
\0 u ; u grave
|
||||||
|
\0 u ; u acute
|
||||||
|
\0 u ; u circumflex
|
||||||
|
u e ; u dieresis
|
||||||
|
\0 + ; dagger
|
||||||
|
\d102 \0 ; ring / degree
|
||||||
|
\0 c ; cent
|
||||||
|
\d125 \0 ; pound sterling
|
||||||
|
\0 S ; section
|
||||||
|
\0 o ; bullet
|
||||||
|
\x1 ? ; paragraph
|
||||||
|
\0 B ; german double s
|
||||||
|
\0 R ; registered trademark
|
||||||
|
\0 c ; copyright
|
||||||
|
T M ; trademark
|
||||||
|
\0 ' ; acute
|
||||||
|
\x1 ? ; dieresis
|
||||||
|
\d124 \0 ; not equal
|
||||||
|
A E ; AE
|
||||||
|
\0 0 ; O slash
|
||||||
|
\x1 ? ; infinity
|
||||||
|
\d103 \0 ; plusminus
|
||||||
|
\d121 \0 ; smaller equals
|
||||||
|
\d122 \0 ; greater equals
|
||||||
|
\0 Y ; Yen
|
||||||
|
m u ; mu
|
||||||
|
\0 d ; delta
|
||||||
|
\x1 ? ; Sigma (summation)
|
||||||
|
\x1 ? ; Pi
|
||||||
|
\d123 \0 ; pi
|
||||||
|
\x1 ? ; integral
|
||||||
|
\0 a ; ord feminine
|
||||||
|
\0 o ; ord masculine
|
||||||
|
\0 O ; Omega
|
||||||
|
a e ; ae
|
||||||
|
\0 o ; o slash
|
||||||
|
\0 ? ; question downwards
|
||||||
|
\0 ! ; exclam downwards
|
||||||
|
\0 ! ; logical not
|
||||||
|
\x1 ? ; radical
|
||||||
|
\0 f ; florin
|
||||||
|
~ = ; approx.
|
||||||
|
\x1 ? ; Delta
|
||||||
|
> > ; guillemot right
|
||||||
|
< < ; guillemot left
|
||||||
|
. . ; ellipsis
|
||||||
|
\0 \d32 ; non breaking space
|
||||||
|
\0 A ; A acute
|
||||||
|
\0 A ; A tilde
|
||||||
|
\0 O ; O tilde
|
||||||
|
O E ; OE
|
||||||
|
o e ; oe
|
||||||
|
\0 - ; en dash
|
||||||
|
\0 - ; em dash
|
||||||
|
\0 " ; double quote left
|
||||||
|
\0 " ; double quote right
|
||||||
|
\0 ` ; quote left
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 / ; divide
|
||||||
|
\d96 \0 ; lozenge
|
||||||
|
y e ; y dieresis
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
\0 ? ;
|
||||||
|
END
|
182
cfgs/charset/mne_850.esc
Normal file
182
cfgs/charset/mne_850.esc
Normal file
@ -0,0 +1,182 @@
|
|||||||
|
; --------------------------------------------------------------------
|
||||||
|
; Escaped Characters Table for GoldED.
|
||||||
|
; --------------------------------------------------------------------
|
||||||
|
; Character Mnemonics & Character Sets, K. Simonsen.
|
||||||
|
; --------------------------------------------------------------------
|
||||||
|
CP850 ; Map codes to charset.
|
||||||
|
; --------------------------------------------------------------------
|
||||||
|
NU \d0
|
||||||
|
SH \d1
|
||||||
|
SX \d2
|
||||||
|
EX \d3
|
||||||
|
ET \d4
|
||||||
|
EQ \d5
|
||||||
|
AK \d6
|
||||||
|
BL \d7
|
||||||
|
BS \d8
|
||||||
|
HT \d9
|
||||||
|
LF \d10
|
||||||
|
VT \d11
|
||||||
|
FF \d12
|
||||||
|
CR \d13
|
||||||
|
SO \d14
|
||||||
|
SI \d15
|
||||||
|
DL \d16
|
||||||
|
D1 \d17
|
||||||
|
D2 \d18
|
||||||
|
D3 \d19
|
||||||
|
D4 \d20
|
||||||
|
NK \d21
|
||||||
|
SY \d22
|
||||||
|
EB \d23
|
||||||
|
CN \d24
|
||||||
|
EM \d25
|
||||||
|
SB \d26
|
||||||
|
EC \d27
|
||||||
|
FS \d28
|
||||||
|
GS \d29
|
||||||
|
RS \d30
|
||||||
|
US \d31
|
||||||
|
SP \d32
|
||||||
|
Nb \d35
|
||||||
|
DO \d36
|
||||||
|
At \d64
|
||||||
|
<( \d91
|
||||||
|
// \d92
|
||||||
|
)> \d93
|
||||||
|
'> \d94
|
||||||
|
'! \d96
|
||||||
|
(! \d123
|
||||||
|
!! \d124
|
||||||
|
!) \d125
|
||||||
|
'? \d126
|
||||||
|
DT \d127
|
||||||
|
C, \d128
|
||||||
|
u: \d129
|
||||||
|
e' \d130
|
||||||
|
a> \d131
|
||||||
|
a: \d132
|
||||||
|
a! \d133
|
||||||
|
aa \d134
|
||||||
|
c, \d135
|
||||||
|
e> \d136
|
||||||
|
e: \d137
|
||||||
|
e! \d138
|
||||||
|
i: \d139
|
||||||
|
i> \d140
|
||||||
|
i! \d141
|
||||||
|
A: \d142
|
||||||
|
AA \d143
|
||||||
|
E' \d144
|
||||||
|
ae \d145
|
||||||
|
AE \d146
|
||||||
|
o> \d147
|
||||||
|
o: \d148
|
||||||
|
o! \d149
|
||||||
|
u> \d150
|
||||||
|
u! \d151
|
||||||
|
y: \d152
|
||||||
|
O: \d153
|
||||||
|
U: \d154
|
||||||
|
o/ \d155
|
||||||
|
Pd \d156
|
||||||
|
O/ \d157
|
||||||
|
*X \d158
|
||||||
|
Fl \d159
|
||||||
|
a' \d160
|
||||||
|
i' \d161
|
||||||
|
o' \d162
|
||||||
|
u' \d163
|
||||||
|
n? \d164
|
||||||
|
N? \d165
|
||||||
|
-a \d166
|
||||||
|
-o \d167
|
||||||
|
?I \d168
|
||||||
|
Rg \d169
|
||||||
|
NO \d170
|
||||||
|
12 \d171
|
||||||
|
14 \d172
|
||||||
|
!I \d173
|
||||||
|
<< \d174
|
||||||
|
>> \d175
|
||||||
|
.S \d176
|
||||||
|
:S \d177
|
||||||
|
?S \d178
|
||||||
|
vv \d179
|
||||||
|
vl \d180
|
||||||
|
A' \d181
|
||||||
|
A> \d182
|
||||||
|
A! \d183
|
||||||
|
Co \d184
|
||||||
|
VL \d185
|
||||||
|
VV \d186
|
||||||
|
LD \d187
|
||||||
|
UL \d188
|
||||||
|
Ct \d189
|
||||||
|
Ye \d190
|
||||||
|
dl \d191
|
||||||
|
ur \d192
|
||||||
|
uh \d193
|
||||||
|
dh \d194
|
||||||
|
vr \d195
|
||||||
|
hh \d196
|
||||||
|
vh \d197
|
||||||
|
a? \d198
|
||||||
|
A? \d199
|
||||||
|
UR \d200
|
||||||
|
DR \d201
|
||||||
|
UH \d202
|
||||||
|
DH \d203
|
||||||
|
VR \d204
|
||||||
|
HH \d205
|
||||||
|
VH \d206
|
||||||
|
Cu \d207
|
||||||
|
d- \d208
|
||||||
|
D- \d209
|
||||||
|
E> \d210
|
||||||
|
E: \d211
|
||||||
|
E! \d212
|
||||||
|
i. \d213
|
||||||
|
I' \d214
|
||||||
|
I> \d215
|
||||||
|
I: \d216
|
||||||
|
ul \d217
|
||||||
|
dr \d218
|
||||||
|
FB \d219
|
||||||
|
LB \d220
|
||||||
|
BB \d221
|
||||||
|
I! \d222
|
||||||
|
TB \d223
|
||||||
|
O' \d224
|
||||||
|
ss \d225
|
||||||
|
O> \d226
|
||||||
|
O! \d227
|
||||||
|
o? \d228
|
||||||
|
O? \d229
|
||||||
|
m* \d230
|
||||||
|
TH \d231
|
||||||
|
th \d232
|
||||||
|
U' \d233
|
||||||
|
U> \d234
|
||||||
|
U! \d235
|
||||||
|
y' \d236
|
||||||
|
Y' \d237
|
||||||
|
-M \d238
|
||||||
|
'' \d239
|
||||||
|
-- \d240
|
||||||
|
+- \d241
|
||||||
|
== \d242
|
||||||
|
34 \d243
|
||||||
|
PI \d244
|
||||||
|
SE \d245
|
||||||
|
-: \d246
|
||||||
|
'; \d247
|
||||||
|
DG \d248
|
||||||
|
': \d249
|
||||||
|
'. \d250
|
||||||
|
1S \d251
|
||||||
|
3S \d252
|
||||||
|
2S \d253
|
||||||
|
fS \d254
|
||||||
|
NS \d255
|
||||||
|
; --------------------------------------------------------------------
|
185
cfgs/charset/mne_ibm.esc
Normal file
185
cfgs/charset/mne_ibm.esc
Normal file
@ -0,0 +1,185 @@
|
|||||||
|
; --------------------------------------------------------------------
|
||||||
|
; Escaped Characters Table for GoldED.
|
||||||
|
; Based on IBM Code Page 437 with additions for CP865.
|
||||||
|
; --------------------------------------------------------------------
|
||||||
|
; Character Mnemonics & Character Sets, K. Simonsen.
|
||||||
|
; --------------------------------------------------------------------
|
||||||
|
IBMPC ; Map codes to charset.
|
||||||
|
; --------------------------------------------------------------------
|
||||||
|
NU \d0
|
||||||
|
SH \d1
|
||||||
|
SX \d2
|
||||||
|
EX \d3
|
||||||
|
ET \d4
|
||||||
|
EQ \d5
|
||||||
|
AK \d6
|
||||||
|
BL \d7
|
||||||
|
BS \d8
|
||||||
|
HT \d9
|
||||||
|
LF \d10
|
||||||
|
VT \d11
|
||||||
|
FF \d12
|
||||||
|
CR \d13
|
||||||
|
SO \d14
|
||||||
|
SI \d15
|
||||||
|
DL \d16
|
||||||
|
D1 \d17
|
||||||
|
D2 \d18
|
||||||
|
D3 \d19
|
||||||
|
D4 \d20
|
||||||
|
NK \d21
|
||||||
|
SY \d22
|
||||||
|
EB \d23
|
||||||
|
CN \d24
|
||||||
|
EM \d25
|
||||||
|
SB \d26
|
||||||
|
EC \d27
|
||||||
|
FS \d28
|
||||||
|
GS \d29
|
||||||
|
RS \d30
|
||||||
|
US \d31
|
||||||
|
SP \d32
|
||||||
|
Nb \d35
|
||||||
|
DO \d36
|
||||||
|
At \d64
|
||||||
|
<( \d91
|
||||||
|
// \d92
|
||||||
|
)> \d93
|
||||||
|
'> \d94
|
||||||
|
'! \d96
|
||||||
|
(! \d123
|
||||||
|
!! \d124
|
||||||
|
!) \d125
|
||||||
|
'? \d126
|
||||||
|
DT \d127
|
||||||
|
C, \d128
|
||||||
|
u: \d129
|
||||||
|
e' \d130
|
||||||
|
a> \d131
|
||||||
|
a: \d132
|
||||||
|
a! \d133
|
||||||
|
aa \d134
|
||||||
|
c, \d135
|
||||||
|
e> \d136
|
||||||
|
e: \d137
|
||||||
|
e! \d138
|
||||||
|
i: \d139
|
||||||
|
i> \d140
|
||||||
|
i! \d141
|
||||||
|
A: \d142
|
||||||
|
AA \d143
|
||||||
|
E' \d144
|
||||||
|
ae \d145
|
||||||
|
AE \d146
|
||||||
|
o> \d147
|
||||||
|
o: \d148
|
||||||
|
o! \d149
|
||||||
|
u> \d150
|
||||||
|
u! \d151
|
||||||
|
y: \d152
|
||||||
|
O: \d153
|
||||||
|
U: \d154
|
||||||
|
Ct \d155 ; CP437
|
||||||
|
o/ \d155 ; CP865
|
||||||
|
Pd \d156
|
||||||
|
Ye \d157 ; CP437
|
||||||
|
O/ \d157 ; CP865
|
||||||
|
Pt \d158
|
||||||
|
Fl \d159
|
||||||
|
a' \d160
|
||||||
|
i' \d161
|
||||||
|
o' \d162
|
||||||
|
u' \d163
|
||||||
|
n? \d164
|
||||||
|
N? \d165
|
||||||
|
-a \d166
|
||||||
|
-o \d167
|
||||||
|
?I \d168
|
||||||
|
NI \d169
|
||||||
|
NO \d170
|
||||||
|
12 \d171
|
||||||
|
14 \d172
|
||||||
|
!I \d173
|
||||||
|
<< \d174
|
||||||
|
>> \d175
|
||||||
|
.S \d176
|
||||||
|
:S \d177
|
||||||
|
?S \d178
|
||||||
|
vv \d179
|
||||||
|
vl \d180
|
||||||
|
vL \d181
|
||||||
|
Vl \d182
|
||||||
|
Dl \d183
|
||||||
|
dL \d184
|
||||||
|
VL \d185
|
||||||
|
VV \d186
|
||||||
|
LD \d187
|
||||||
|
UL \d188
|
||||||
|
Ul \d189
|
||||||
|
uL \d190
|
||||||
|
dl \d191
|
||||||
|
ur \d192
|
||||||
|
uh \d193
|
||||||
|
dh \d194
|
||||||
|
vr \d195
|
||||||
|
hh \d196
|
||||||
|
vh \d197
|
||||||
|
vR \d198
|
||||||
|
Vr \d199
|
||||||
|
UR \d200
|
||||||
|
DR \d201
|
||||||
|
UH \d202
|
||||||
|
DH \d203
|
||||||
|
VR \d204
|
||||||
|
HH \d205
|
||||||
|
VH \d206
|
||||||
|
uH \d207
|
||||||
|
Uh \d208
|
||||||
|
dH \d209
|
||||||
|
Dh \d210
|
||||||
|
Ur \d211
|
||||||
|
uR \d212
|
||||||
|
dR \d213
|
||||||
|
Dr \d214
|
||||||
|
Vh \d215
|
||||||
|
vH \d216
|
||||||
|
ul \d217
|
||||||
|
dr \d218
|
||||||
|
FB \d219
|
||||||
|
LB \d220
|
||||||
|
lB \d221
|
||||||
|
RB \d222
|
||||||
|
TB \d223
|
||||||
|
a* \d224
|
||||||
|
b* \d225
|
||||||
|
G* \d226
|
||||||
|
p* \d227
|
||||||
|
S* \d228
|
||||||
|
s* \d229
|
||||||
|
m* \d230
|
||||||
|
t* \d231
|
||||||
|
F* \d232
|
||||||
|
H* \d233
|
||||||
|
W* \d234
|
||||||
|
d* \d235
|
||||||
|
00 \d236
|
||||||
|
/0 \d237
|
||||||
|
e* \d238
|
||||||
|
(U \d239
|
||||||
|
=3 \d240
|
||||||
|
+- \d241
|
||||||
|
>= \d242
|
||||||
|
=< \d243
|
||||||
|
Iu \d244
|
||||||
|
Il \d245
|
||||||
|
-: \d246
|
||||||
|
?2 \d247
|
||||||
|
Ob \d248
|
||||||
|
.M \d249
|
||||||
|
Sb \d250
|
||||||
|
RT \d251
|
||||||
|
nS \d252
|
||||||
|
2S \d253
|
||||||
|
fS \d254
|
||||||
|
NS \d255
|
||||||
|
; --------------------------------------------------------------------
|
162
cfgs/charset/nor_asc.chs
Normal file
162
cfgs/charset/nor_asc.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the Norwegian set to ASCII.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
NORWEG ; from set
|
||||||
|
ASCII ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 # ; pound / number
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 @ ; at
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
A E ; bracket left -> AE
|
||||||
|
\0 O ; backslash -> O slash
|
||||||
|
\0 A ; bracket right -> A ring
|
||||||
|
\0 ^ ; circum
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 ` ; quote left
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
a e ; brace left -> ae
|
||||||
|
\0 o ; bar -> o slash
|
||||||
|
\0 a ; brace right -> a ring
|
||||||
|
\0 ~ ; tilde
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/nor_ibm.chs
Normal file
162
cfgs/charset/nor_ibm.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the Norwegian set to IBMPC.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
NORWEG ; from set
|
||||||
|
IBMPC ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 # ; pound / number
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 @ ; at
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 \x92 ; bracket left -> AE
|
||||||
|
\0 \x9D ; backslash -> O slash
|
||||||
|
\0 \x8F ; bracket right -> A ring
|
||||||
|
\0 ^ ; circum
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 ` ; quote left
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 \x91 ; brace left -> ae
|
||||||
|
\0 \x9B ; bar -> o slash
|
||||||
|
\0 \x86 ; brace right -> a ring
|
||||||
|
\0 ~ ; tilde
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/prt_asc.chs
Normal file
162
cfgs/charset/prt_asc.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the Portugese set to ASCII.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
PORTU ; from set
|
||||||
|
ASCII ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 # ; pound / number
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 @ ; at
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 A ; bracket left -> A tilde
|
||||||
|
\0 C ; backslash -> C cedilla
|
||||||
|
\0 O ; bracket right -> O tilde
|
||||||
|
\0 ^ ; circum
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 ` ; quote left
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 a ; brace left -> a tilde
|
||||||
|
\0 c ; bar -> c cedilla
|
||||||
|
\0 o ; brace right -> o tilde
|
||||||
|
\0 ~ ; tilde
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/prt_ibm.chs
Normal file
162
cfgs/charset/prt_ibm.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the Portugese set to IBMPC.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
PORTU ; from set
|
||||||
|
IBMPC ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 # ; pound / number
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 @ ; at
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 A ; bracket left -> A tilde
|
||||||
|
\0 \x80 ; backslash -> C cedilla
|
||||||
|
\0 O ; bracket right -> O tilde
|
||||||
|
\0 ^ ; circum
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 ` ; quote left
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 a ; brace left -> a tilde
|
||||||
|
\0 \x87 ; bar -> c cedilla
|
||||||
|
\0 o ; brace right -> o tilde
|
||||||
|
\0 ~ ; tilde
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/spn_asc.chs
Normal file
162
cfgs/charset/spn_asc.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the Spanish set to ASCII.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
SPANISH ; from set
|
||||||
|
ASCII ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 # ; pound / number -> pound sterling
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 S ; at -> section
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 ! ; bracket left -> exclam downwards
|
||||||
|
\0 N ; backslash -> N tilde
|
||||||
|
\0 ? ; bracket right -> question downwards
|
||||||
|
\0 ^ ; circum
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 ` ; quote left
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 o ; brace left -> ring / degree
|
||||||
|
\0 n ; bar -> n tilde
|
||||||
|
\0 c ; brace right -> c cedilla
|
||||||
|
\0 ~ ; tilde
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/spn_ibm.chs
Normal file
162
cfgs/charset/spn_ibm.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the Spanish set to IBMPC.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
SPANISH ; from set
|
||||||
|
IBMPC ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 \x9C ; pound / number -> pound sterling
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 \x15 ; at -> section
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 \xAD ; bracket left -> exclam downwards
|
||||||
|
\0 \xA5 ; backslash -> N tilde
|
||||||
|
\0 \xA8 ; bracket right -> question downwards
|
||||||
|
\0 ^ ; circum
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 ` ; quote left
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 \xF8 ; brace left -> ring / degree
|
||||||
|
\0 \xA4 ; bar -> n tilde
|
||||||
|
\0 \x87 ; brace right -> c cedilla
|
||||||
|
\0 ~ ; tilde
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/swe_asc.chs
Normal file
162
cfgs/charset/swe_asc.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the Swedish set to ASCII.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
SWEDISH ; from set
|
||||||
|
ASCII ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 # ; pound / number
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 E ; at -> E acute
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 A ; bracket left -> A dieresis
|
||||||
|
\0 O ; backslash -> O dieresis
|
||||||
|
\0 A ; bracket right -> A ring
|
||||||
|
\0 U ; circum -> U dieresis
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 e ; quote left -> e acute
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 a ; brace left -> a dieresis
|
||||||
|
\0 o ; bar -> o dieresis
|
||||||
|
\0 a ; brace right -> a ring
|
||||||
|
\0 u ; tilde -> u dieresis
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/swe_ibm.chs
Normal file
162
cfgs/charset/swe_ibm.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the Swedish set to IBMPC.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
SWEDISH ; from set
|
||||||
|
IBMPC ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 # ; pound / number
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 \x90 ; Jag tror att det var h„r jag „ndrade. Tidigare ”versattes
|
||||||
|
\0 A ; tecknet h„r till ett <20> men ”vers„tts nu till en @.
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 \x8E ; bracket left -> A dieresis
|
||||||
|
\0 \x99 ; backslash -> O dieresis
|
||||||
|
\0 \x8F ; bracket right -> A ring
|
||||||
|
\0 \x9A ; circum -> U dieresis
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 \x82 ; quote left -> e acute
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 \x84 ; brace left -> a dieresis
|
||||||
|
\0 \x94 ; bar -> o dieresis
|
||||||
|
\0 \x86 ; brace right -> a ring
|
||||||
|
\0 \x81 ; tilde -> u dieresis
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/swi_asc.chs
Normal file
162
cfgs/charset/swi_asc.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the Swiss set to ASCII.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
SWISS ; from set
|
||||||
|
ASCII ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 u ; pound / number -> u grave
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 a ; at -> a grave
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 e ; bracket left -> e acute
|
||||||
|
\0 c ; backslash -> c cedilla
|
||||||
|
\0 e ; bracket right -> e circumflex
|
||||||
|
\0 i ; circum -> i circumflex
|
||||||
|
\0 e ; underscore -> e grave
|
||||||
|
\0 o ; quote left -> o circumflex
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 a ; brace left -> a dieresis
|
||||||
|
\0 o ; bar -> o dieresis
|
||||||
|
\0 u ; brace right -> u dieresis
|
||||||
|
\0 u ; tilde -> u circumflex
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/swi_ibm.chs
Normal file
162
cfgs/charset/swi_ibm.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the Swiss set to IBMPC.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
SWISS ; from set
|
||||||
|
IBMPC ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 \x97 ; pound / number -> u grave
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 \x85 ; at -> a grave
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 \x82 ; bracket left -> e acute
|
||||||
|
\0 \x87 ; backslash -> c cedilla
|
||||||
|
\0 \x88 ; bracket right -> e circumflex
|
||||||
|
\0 \x8C ; circum -> i circumflex
|
||||||
|
\0 \x8A ; underscore -> e grave
|
||||||
|
\0 \x93 ; quote left -> o circumflex
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 \x84 ; brace left -> a dieresis
|
||||||
|
\0 \x94 ; bar -> o dieresis
|
||||||
|
\0 \x81 ; brace right -> u dieresis
|
||||||
|
\0 \x96 ; tilde -> u circumflex
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/uk__asc.chs
Normal file
162
cfgs/charset/uk__asc.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the UK set to ASCII.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
UK ; from set
|
||||||
|
ASCII ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 # ; pound / number -> pound sterling
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 @ ; at
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 [ ; bracket left
|
||||||
|
\0 \\ ; backslash
|
||||||
|
\0 ] ; bracket right
|
||||||
|
\0 ^ ; circum
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 ` ; quote left
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 { ; brace left
|
||||||
|
\0 | ; bar
|
||||||
|
\0 } ; brace right
|
||||||
|
\0 ~ ; tilde
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
162
cfgs/charset/uk__ibm.chs
Normal file
162
cfgs/charset/uk__ibm.chs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
;
|
||||||
|
; This file is a charset conversion module in text form.
|
||||||
|
;
|
||||||
|
; This module converts the UK set to IBMPC.
|
||||||
|
; You can use it as a basis for a level 1 converter.
|
||||||
|
;
|
||||||
|
; Format: ID, version, level,
|
||||||
|
; from charset, to charset,
|
||||||
|
; 128 entries: first & second byte
|
||||||
|
; "END"
|
||||||
|
; Lines beginning with a ";" or a ";" after the entries are comments
|
||||||
|
;
|
||||||
|
; Unknown characters are mapped to the "?" character.
|
||||||
|
;
|
||||||
|
; cedilla = , ; dieresis = .. ; acute = '
|
||||||
|
; grave = ` ; circumflex = ^ ; ring = o
|
||||||
|
; tilde = ~ ; caron = v
|
||||||
|
; All of these are above the character, apart from the cedilla which is below.
|
||||||
|
;
|
||||||
|
; \ is the escape character: \0 means decimal zero,
|
||||||
|
; \dnnn where nnn is a decimal number is the ordinal value of the character
|
||||||
|
; \xnn where nn is a hexadecimal number
|
||||||
|
; e.g.: \x32 is the ASCII space character
|
||||||
|
; Two \\ is the character "\" itself.
|
||||||
|
;
|
||||||
|
0 ; ID number
|
||||||
|
0 ; version number
|
||||||
|
;
|
||||||
|
1 ; level number
|
||||||
|
;
|
||||||
|
UK ; from set
|
||||||
|
IBMPC ; to set
|
||||||
|
;
|
||||||
|
\0 \0 ; NUL
|
||||||
|
\0 \x1 ; SOH
|
||||||
|
\0 \x2 ; STX
|
||||||
|
\0 \x3 ; ETX
|
||||||
|
\0 \x4 ; EOT
|
||||||
|
\0 \x5 ; ENQ
|
||||||
|
\0 \x6 ; ACK
|
||||||
|
\0 \x7 ; BEL
|
||||||
|
\0 \x8 ; BS
|
||||||
|
\0 \x9 ; HT
|
||||||
|
\0 \xA ; LF
|
||||||
|
\0 \xB ; VT
|
||||||
|
\0 \xC ; FF
|
||||||
|
\0 \xD ; CR
|
||||||
|
\0 \xE ; SO
|
||||||
|
\0 \xF ; SI
|
||||||
|
\0 \x10 ; DLE
|
||||||
|
\0 \x11 ; DC1
|
||||||
|
\0 \x12 ; DC2
|
||||||
|
\0 \x13 ; DC3
|
||||||
|
\0 \x14 ; DC4
|
||||||
|
\0 \x15 ; NAK
|
||||||
|
\0 \x16 ; SYN
|
||||||
|
\0 \x17 ; ETB
|
||||||
|
\0 \x18 ; CAN
|
||||||
|
\0 \x19 ; EM
|
||||||
|
\0 \x1a ; SUB
|
||||||
|
\0 \x1b ; ESC
|
||||||
|
\0 \x1c ; FS
|
||||||
|
\0 \x1d ; GS
|
||||||
|
\0 \x1e ; RS
|
||||||
|
\0 \x1f ; US
|
||||||
|
\0 \x20 ; space
|
||||||
|
\0 ! ; exclam
|
||||||
|
\0 " ; double quotes
|
||||||
|
\0 \x9C ; pound / number -> pound sterling
|
||||||
|
\0 $ ; dollar
|
||||||
|
\0 % ; percent
|
||||||
|
\0 & ; ampersand
|
||||||
|
\0 ' ; quote right
|
||||||
|
\0 ( ; parenthesis left
|
||||||
|
\0 ) ; parenthesis right
|
||||||
|
\0 * ; asterisk
|
||||||
|
\0 + ; plus
|
||||||
|
\0 , ; comma
|
||||||
|
\0 - ; minus
|
||||||
|
\0 . ; period
|
||||||
|
\0 / ; slash
|
||||||
|
\0 0 ; zero
|
||||||
|
\0 1 ; one
|
||||||
|
\0 2 ; two
|
||||||
|
\0 3 ; three
|
||||||
|
\0 4 ; four
|
||||||
|
\0 5 ; five
|
||||||
|
\0 6 ; six
|
||||||
|
\0 7 ; seven
|
||||||
|
\0 8 ; eight
|
||||||
|
\0 9 ; nine
|
||||||
|
\0 : ; colon
|
||||||
|
\0 \d59 ; semicolon
|
||||||
|
\0 < ; less than
|
||||||
|
\0 = ; equals
|
||||||
|
\0 > ; greater than
|
||||||
|
\0 ? ; question
|
||||||
|
\0 @ ; at
|
||||||
|
\0 A ;
|
||||||
|
\0 B ;
|
||||||
|
\0 C ;
|
||||||
|
\0 D ;
|
||||||
|
\0 E ;
|
||||||
|
\0 F ;
|
||||||
|
\0 G ;
|
||||||
|
\0 H ;
|
||||||
|
\0 I ;
|
||||||
|
\0 J ;
|
||||||
|
\0 K ;
|
||||||
|
\0 L ;
|
||||||
|
\0 M ;
|
||||||
|
\0 N ;
|
||||||
|
\0 O ;
|
||||||
|
\0 P ;
|
||||||
|
\0 Q ;
|
||||||
|
\0 R ;
|
||||||
|
\0 S ;
|
||||||
|
\0 T ;
|
||||||
|
\0 U ;
|
||||||
|
\0 V ;
|
||||||
|
\0 W ;
|
||||||
|
\0 X ;
|
||||||
|
\0 Y ;
|
||||||
|
\0 Z ;
|
||||||
|
\0 [ ; bracket left
|
||||||
|
\0 \\ ; backslash
|
||||||
|
\0 ] ; bracket right
|
||||||
|
\0 ^ ; circum
|
||||||
|
\0 _ ; underscore
|
||||||
|
\0 ` ; quote left
|
||||||
|
\0 a ;
|
||||||
|
\0 b ;
|
||||||
|
\0 c ;
|
||||||
|
\0 d ;
|
||||||
|
\0 e ;
|
||||||
|
\0 f ;
|
||||||
|
\0 g ;
|
||||||
|
\0 h ;
|
||||||
|
\0 i ;
|
||||||
|
\0 j ;
|
||||||
|
\0 k ;
|
||||||
|
\0 l ;
|
||||||
|
\0 m ;
|
||||||
|
\0 n ;
|
||||||
|
\0 o ;
|
||||||
|
\0 p ;
|
||||||
|
\0 q ;
|
||||||
|
\0 r ;
|
||||||
|
\0 s ;
|
||||||
|
\0 t ;
|
||||||
|
\0 u ;
|
||||||
|
\0 v ;
|
||||||
|
\0 w ;
|
||||||
|
\0 x ;
|
||||||
|
\0 y ;
|
||||||
|
\0 z ;
|
||||||
|
\0 { ; brace left
|
||||||
|
\0 | ; bar
|
||||||
|
\0 } ; brace right
|
||||||
|
\0 ~ ; tilde
|
||||||
|
\0 \x7F ; DEL
|
||||||
|
END
|
50
cfgs/colorset/gedcol00.cfg
Normal file
50
cfgs/colorset/gedcol00.cfg
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Odinn Sorensen.
|
||||||
|
|
||||||
|
COLOR AREA BORDER Blue on Cyan
|
||||||
|
COLOR AREA HIGHLIGHT White on Cyan
|
||||||
|
COLOR AREA SELECTOR Yellow on Black
|
||||||
|
COLOR AREA TITLE White on Cyan
|
||||||
|
COLOR AREA WINDOW Blue on Cyan
|
||||||
|
COLOR ASK BORDER Red on LGrey
|
||||||
|
COLOR ASK HIGHLIGHT Cyan on LGrey
|
||||||
|
COLOR ASK NOSELECT DGrey on LGrey
|
||||||
|
COLOR ASK SELECTOR White on Blue
|
||||||
|
COLOR ASK TITLE Blue on LGrey
|
||||||
|
COLOR ASK WINDOW Black on LGrey
|
||||||
|
COLOR BACKGROUND WINDOW LGrey on Black
|
||||||
|
COLOR BRAG BLOCK LBlue on Black
|
||||||
|
COLOR BRAG BORDER White on Black
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Black
|
||||||
|
COLOR BRAG TITLE White on Black
|
||||||
|
COLOR BRAG WINDOW Yellow on Black
|
||||||
|
COLOR HEADER BORDER Cyan on Blue
|
||||||
|
COLOR HEADER EDIT White on Blue
|
||||||
|
COLOR HEADER HIGHLIGHT White on Blue
|
||||||
|
COLOR HEADER INPUT Blue on LGrey
|
||||||
|
COLOR HEADER TITLE White on Blue
|
||||||
|
COLOR HEADER WINDOW Lgrey on Blue
|
||||||
|
COLOR HELP BORDER Blue on LGrey
|
||||||
|
COLOR HELP HIGHLIGHT Red on LGrey
|
||||||
|
COLOR HELP SELECTOR White on Blue
|
||||||
|
COLOR HELP WINDOW Black on LGrey
|
||||||
|
COLOR INFO BORDER White on Blue
|
||||||
|
COLOR INFO TITLE White on Blue
|
||||||
|
COLOR INFO WINDOW White on Blue
|
||||||
|
COLOR MENU BORDER Blue on Cyan
|
||||||
|
COLOR MENU HIGHLIGHT White on Cyan
|
||||||
|
COLOR MENU NOSELECT DGrey on Cyan
|
||||||
|
COLOR MENU SELECTOR Yellow on Black
|
||||||
|
COLOR MENU TITLE White on Cyan
|
||||||
|
COLOR MENU WINDOW Blue on Cyan
|
||||||
|
COLOR READER BLOCK White on Red
|
||||||
|
COLOR READER BORDER LGrey on Black
|
||||||
|
COLOR READER CURSOR White on Black
|
||||||
|
COLOR READER KLUDHIDD LMagenta on Black
|
||||||
|
COLOR READER QUOTE Yellow on Black
|
||||||
|
COLOR READER TEARORIG LMagenta on Black
|
||||||
|
COLOR READER WINDOW LGrey on Black
|
||||||
|
COLOR SHADOW DGrey on Black
|
||||||
|
COLOR STATUS WINDOW White on Blue
|
50
cfgs/colorset/gedcol01.cfg
Normal file
50
cfgs/colorset/gedcol01.cfg
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Marco Van den Bovenkamp.
|
||||||
|
|
||||||
|
COLOR AREA BORDER Yellow on Black
|
||||||
|
COLOR AREA HIGHLIGHT White on Black
|
||||||
|
COLOR AREA SELECTOR Yellow on Red
|
||||||
|
COLOR AREA TITLE White on Black
|
||||||
|
COLOR AREA WINDOW LGrey on Black
|
||||||
|
COLOR ASK BORDER Red on LGrey
|
||||||
|
COLOR ASK HIGHLIGHT Cyan on LGrey
|
||||||
|
COLOR ASK NOSELECT DGrey on LGrey
|
||||||
|
COLOR ASK SELECTOR White on Blue
|
||||||
|
COLOR ASK TITLE Blue on LGrey
|
||||||
|
COLOR ASK WINDOW Black on LGrey
|
||||||
|
COLOR BACKGROUND WINDOW LGrey on Black
|
||||||
|
COLOR BRAG BLOCK LBlue on Black
|
||||||
|
COLOR BRAG BORDER White on Blue
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Black
|
||||||
|
COLOR BRAG TITLE White on Black
|
||||||
|
COLOR BRAG WINDOW White on Blue
|
||||||
|
COLOR HEADER BORDER Cyan on Black
|
||||||
|
COLOR HEADER EDIT White on Black
|
||||||
|
COLOR HEADER HIGHLIGHT White on Black
|
||||||
|
COLOR HEADER INPUT Blue on LGrey
|
||||||
|
COLOR HEADER TITLE White on Black
|
||||||
|
COLOR HEADER WINDOW Lgrey on Black
|
||||||
|
COLOR HELP BORDER Blue on LGrey
|
||||||
|
COLOR HELP HIGHLIGHT Red on LGrey
|
||||||
|
COLOR HELP SELECTOR White on Blue
|
||||||
|
COLOR HELP WINDOW Black on LGrey
|
||||||
|
COLOR INFO BORDER White on Blue
|
||||||
|
COLOR INFO TITLE White on Blue
|
||||||
|
COLOR INFO WINDOW White on Blue
|
||||||
|
COLOR MENU BORDER Blue on Cyan
|
||||||
|
COLOR MENU HIGHLIGHT White on Cyan
|
||||||
|
COLOR MENU NOSELECT DGrey on Cyan
|
||||||
|
COLOR MENU SELECTOR Yellow on Black
|
||||||
|
COLOR MENU TITLE White on Cyan
|
||||||
|
COLOR MENU WINDOW Blue on Cyan
|
||||||
|
COLOR READER BLOCK White on Red
|
||||||
|
COLOR READER BORDER LGrey on Black
|
||||||
|
COLOR READER CURSOR White on Black
|
||||||
|
COLOR READER KLUDHIDD Cyan on Black
|
||||||
|
COLOR READER QUOTE Green on Black
|
||||||
|
COLOR READER TEARORIG LGrey on Black
|
||||||
|
COLOR READER WINDOW LGrey on Black
|
||||||
|
COLOR SHADOW DGrey on Black
|
||||||
|
COLOR STATUS WINDOW White on Blue
|
50
cfgs/colorset/gedcol02.cfg
Normal file
50
cfgs/colorset/gedcol02.cfg
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Steve Shapiro.
|
||||||
|
|
||||||
|
COLOR AREA BORDER Yellow on Black
|
||||||
|
COLOR AREA HIGHLIGHT Red on Black
|
||||||
|
COLOR AREA SELECTOR White on Red
|
||||||
|
COLOR AREA TITLE White on Black
|
||||||
|
COLOR AREA WINDOW LGrey on Black
|
||||||
|
COLOR ASK BORDER Red on LGrey
|
||||||
|
COLOR ASK HIGHLIGHT Red on LGrey
|
||||||
|
COLOR ASK NOSELECT DGrey on LGrey
|
||||||
|
COLOR ASK SELECTOR White on Blue
|
||||||
|
COLOR ASK TITLE Blue on LGrey
|
||||||
|
COLOR ASK WINDOW Black on LGrey
|
||||||
|
COLOR BACKGROUND WINDOW Black on Black
|
||||||
|
COLOR BRAG BLOCK LBlue on Black
|
||||||
|
COLOR BRAG BORDER Green on Black
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Black
|
||||||
|
COLOR BRAG TITLE White on Black
|
||||||
|
COLOR BRAG WINDOW Green on Black
|
||||||
|
COLOR HEADER BORDER Cyan on Black
|
||||||
|
COLOR HEADER EDIT Yellow on Black
|
||||||
|
COLOR HEADER HIGHLIGHT Red on Black
|
||||||
|
COLOR HEADER INPUT Blue on LGrey
|
||||||
|
COLOR HEADER TITLE Green on Black
|
||||||
|
COLOR HEADER WINDOW Green on Black
|
||||||
|
COLOR HELP BORDER Blue on LGrey
|
||||||
|
COLOR HELP HIGHLIGHT Red on LGrey
|
||||||
|
COLOR HELP SELECTOR White on Blue
|
||||||
|
COLOR HELP WINDOW Black on LGrey
|
||||||
|
COLOR INFO BORDER White on Blue
|
||||||
|
COLOR INFO TITLE White on Blue
|
||||||
|
COLOR INFO WINDOW White on Blue
|
||||||
|
COLOR MENU BORDER Blue on Black
|
||||||
|
COLOR MENU HIGHLIGHT Red on Black
|
||||||
|
COLOR MENU NOSELECT DGrey on Black
|
||||||
|
COLOR MENU SELECTOR Yellow on Black
|
||||||
|
COLOR MENU TITLE White on Black
|
||||||
|
COLOR MENU WINDOW Green on Black
|
||||||
|
COLOR READER BLOCK White on Red
|
||||||
|
COLOR READER BORDER LGrey on Black
|
||||||
|
COLOR READER CURSOR White on Black
|
||||||
|
COLOR READER KLUDHIDD Cyan on Black
|
||||||
|
COLOR READER QUOTE Yellow on Black
|
||||||
|
COLOR READER TEARORIG Cyan on Black
|
||||||
|
COLOR READER WINDOW LGrey on Black
|
||||||
|
COLOR SHADOW DGrey on Black
|
||||||
|
COLOR STATUS WINDOW Black on Green
|
50
cfgs/colorset/gedcol03.cfg
Normal file
50
cfgs/colorset/gedcol03.cfg
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Teddy Winstead.
|
||||||
|
|
||||||
|
COLOR AREA BORDER Green on Black
|
||||||
|
COLOR AREA HIGHLIGHT Yellow on Black
|
||||||
|
COLOR AREA SELECTOR Yellow on Blue
|
||||||
|
COLOR AREA TITLE White on Black
|
||||||
|
COLOR AREA WINDOW Yellow on Black
|
||||||
|
COLOR ASK BORDER Green on Black
|
||||||
|
COLOR ASK HIGHLIGHT White on Black
|
||||||
|
COLOR ASK NOSELECT Green on Yellow
|
||||||
|
COLOR ASK SELECTOR Yellow on Blue
|
||||||
|
COLOR ASK TITLE White on Black
|
||||||
|
COLOR ASK WINDOW Yellow on Black
|
||||||
|
COLOR BACKGROUND WINDOW LGrey on Black
|
||||||
|
COLOR BRAG BLOCK LBlue on Black
|
||||||
|
COLOR BRAG BORDER White on Blue
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Black
|
||||||
|
COLOR BRAG TITLE White on Black
|
||||||
|
COLOR BRAG WINDOW White on Blue
|
||||||
|
COLOR HEADER BORDER Green on Black
|
||||||
|
COLOR HEADER EDIT Yellow on Blue
|
||||||
|
COLOR HEADER HIGHLIGHT Yellow on LGrey
|
||||||
|
COLOR HEADER INPUT Yellow on Blue
|
||||||
|
COLOR HEADER TITLE White on Black
|
||||||
|
COLOR HEADER WINDOW Yellow on Black
|
||||||
|
COLOR HELP BORDER Green on Black
|
||||||
|
COLOR HELP HIGHLIGHT White on Black
|
||||||
|
COLOR HELP SELECTOR Yellow on Blue
|
||||||
|
COLOR HELP WINDOW Yellow on Black
|
||||||
|
COLOR INFO BORDER White on Blue
|
||||||
|
COLOR INFO TITLE White on Blue
|
||||||
|
COLOR INFO WINDOW White on Blue
|
||||||
|
COLOR MENU BORDER Green on Black
|
||||||
|
COLOR MENU HIGHLIGHT White on Black
|
||||||
|
COLOR MENU NOSELECT Green on Black
|
||||||
|
COLOR MENU SELECTOR Yellow on Blue
|
||||||
|
COLOR MENU TITLE White on Black
|
||||||
|
COLOR MENU WINDOW Yellow on Black
|
||||||
|
COLOR READER BLOCK Yellow on Blue
|
||||||
|
COLOR READER BORDER Black on Black
|
||||||
|
COLOR READER CURSOR LGrey on Black
|
||||||
|
COLOR READER KLUDHIDD Green on Black
|
||||||
|
COLOR READER QUOTE Yellow on Black
|
||||||
|
COLOR READER TEARORIG Green on Black
|
||||||
|
COLOR READER WINDOW Green on Black
|
||||||
|
COLOR SHADOW DGrey on Black
|
||||||
|
COLOR STATUS WINDOW White on Blue
|
50
cfgs/colorset/gedcol04.cfg
Normal file
50
cfgs/colorset/gedcol04.cfg
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Richard Merit.
|
||||||
|
|
||||||
|
COLOR AREA BORDER Blue on LGrey
|
||||||
|
COLOR AREA HIGHLIGHT Red on LGrey
|
||||||
|
COLOR AREA SELECTOR Black on Cyan
|
||||||
|
COLOR AREA TITLE Red on LGrey
|
||||||
|
COLOR AREA WINDOW Black on LGrey
|
||||||
|
COLOR ASK BORDER LGrey on Blue
|
||||||
|
COLOR ASK HIGHLIGHT Yellow on Blue
|
||||||
|
COLOR ASK NOSELECT LGrey on Blue
|
||||||
|
COLOR ASK SELECTOR Black on LGrey
|
||||||
|
COLOR ASK TITLE Yellow on Blue
|
||||||
|
COLOR ASK WINDOW White on Blue
|
||||||
|
COLOR BACKGROUND WINDOW Black on LGrey
|
||||||
|
COLOR BRAG BLOCK LBlue on Black
|
||||||
|
COLOR BRAG BORDER White on Blue
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Black
|
||||||
|
COLOR BRAG TITLE White on Black
|
||||||
|
COLOR BRAG WINDOW White on Blue
|
||||||
|
COLOR HEADER BORDER Red on LGrey
|
||||||
|
COLOR HEADER EDIT White on LGrey
|
||||||
|
COLOR HEADER HIGHLIGHT Yellow on LGrey
|
||||||
|
COLOR HEADER INPUT Black on Cyan
|
||||||
|
COLOR HEADER TITLE Red on LGrey
|
||||||
|
COLOR HEADER WINDOW Blue on LGrey
|
||||||
|
COLOR HELP BORDER Blue on Cyan
|
||||||
|
COLOR HELP HIGHLIGHT Yellow on Cyan
|
||||||
|
COLOR HELP SELECTOR Black on LGrey
|
||||||
|
COLOR HELP WINDOW Black on Cyan
|
||||||
|
COLOR INFO BORDER White on Blue
|
||||||
|
COLOR INFO TITLE White on Blue
|
||||||
|
COLOR INFO WINDOW White on Blue
|
||||||
|
COLOR MENU BORDER Blue on Cyan
|
||||||
|
COLOR MENU HIGHLIGHT Yellow on Cyan
|
||||||
|
COLOR MENU NOSELECT DGrey on Cyan
|
||||||
|
COLOR MENU SELECTOR Black on LGrey
|
||||||
|
COLOR MENU TITLE White on Cyan
|
||||||
|
COLOR MENU WINDOW Black on Cyan
|
||||||
|
COLOR READER BLOCK Black on Cyan
|
||||||
|
COLOR READER BORDER DGrey on Cyan
|
||||||
|
COLOR READER CURSOR LGrey on Black
|
||||||
|
COLOR READER KLUDHIDD Magenta on LGrey
|
||||||
|
COLOR READER QUOTE Brown on LGrey
|
||||||
|
COLOR READER TEARORIG Red on LGrey
|
||||||
|
COLOR READER WINDOW Black on LGrey
|
||||||
|
COLOR SHADOW DGrey on Black
|
||||||
|
COLOR STATUS WINDOW Yellow on Blue
|
50
cfgs/colorset/gedcol05.cfg
Normal file
50
cfgs/colorset/gedcol05.cfg
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Thomas Kraft.
|
||||||
|
|
||||||
|
COLOR AREA BORDER LGrey on Blue
|
||||||
|
COLOR AREA HIGHLIGHT White on Blue
|
||||||
|
COLOR AREA SELECTOR White on Blue
|
||||||
|
COLOR AREA TITLE White on Blue
|
||||||
|
COLOR AREA WINDOW LGrey on Blue
|
||||||
|
COLOR ASK BORDER Red on Lgrey
|
||||||
|
COLOR ASK HIGHLIGHT Red on Lgrey
|
||||||
|
COLOR ASK NOSELECT Lgrey on Lgrey
|
||||||
|
COLOR ASK SELECTOR Yellow on Blue
|
||||||
|
COLOR ASK TITLE Black on Lgrey
|
||||||
|
COLOR ASK WINDOW Blue on Lgrey
|
||||||
|
COLOR BACKGROUND WINDOW Cyan on Blue
|
||||||
|
COLOR BRAG BLOCK LBlue on Black
|
||||||
|
COLOR BRAG BORDER Lgrey on Blue
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Black
|
||||||
|
COLOR BRAG TITLE White on Black
|
||||||
|
COLOR BRAG WINDOW White on Blue
|
||||||
|
COLOR HEADER BORDER LGrey on Blue
|
||||||
|
COLOR HEADER EDIT LGrey on Blue
|
||||||
|
COLOR HEADER HIGHLIGHT Yellow on Blue
|
||||||
|
COLOR HEADER INPUT Red on Blue
|
||||||
|
COLOR HEADER TITLE White on Blue
|
||||||
|
COLOR HEADER WINDOW White on Blue
|
||||||
|
COLOR HELP BORDER Yellow on Green
|
||||||
|
COLOR HELP HIGHLIGHT White on Green
|
||||||
|
COLOR HELP SELECTOR Yellow on Blue
|
||||||
|
COLOR HELP WINDOW Black on Green
|
||||||
|
COLOR INFO BORDER Green on Black
|
||||||
|
COLOR INFO TITLE White on Black
|
||||||
|
COLOR INFO WINDOW Yellow on Black
|
||||||
|
COLOR MENU BORDER Lgrey on Blue
|
||||||
|
COLOR MENU HIGHLIGHT White on Blue
|
||||||
|
COLOR MENU NOSELECT Blue on Blue
|
||||||
|
COLOR MENU SELECTOR Yellow on Blue
|
||||||
|
COLOR MENU TITLE White on Blue
|
||||||
|
COLOR MENU WINDOW Lgrey on Blue
|
||||||
|
COLOR READER BLOCK White on Red
|
||||||
|
COLOR READER BORDER Lgrey on Blue
|
||||||
|
COLOR READER CURSOR White on Blue
|
||||||
|
COLOR READER KLUDHIDD Yellow on Blue
|
||||||
|
COLOR READER QUOTE Cyan on Blue
|
||||||
|
COLOR READER TEARORIG Lgrey on Blue
|
||||||
|
COLOR READER WINDOW Lgrey on Blue
|
||||||
|
COLOR SHADOW White on Black
|
||||||
|
COLOR STATUS WINDOW White on Black
|
50
cfgs/colorset/gedcol06.cfg
Normal file
50
cfgs/colorset/gedcol06.cfg
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Magnus Jacobsen.
|
||||||
|
|
||||||
|
COLOR AREA BORDER Cyan on Blue
|
||||||
|
COLOR AREA HIGHLIGHT White on Blue
|
||||||
|
COLOR AREA SELECTOR White on LGrey
|
||||||
|
COLOR AREA TITLE White on Blue
|
||||||
|
COLOR AREA WINDOW LGrey on Blue
|
||||||
|
COLOR ASK BORDER Blue on LGrey
|
||||||
|
COLOR ASK HIGHLIGHT White on LGrey
|
||||||
|
COLOR ASK NOSELECT DGrey on LGrey
|
||||||
|
COLOR ASK SELECTOR White on Blue
|
||||||
|
COLOR ASK TITLE White on LGrey
|
||||||
|
COLOR ASK WINDOW Blue on LGrey
|
||||||
|
COLOR BACKGROUND WINDOW LGrey on Black
|
||||||
|
COLOR BRAG BLOCK LBlue on Black
|
||||||
|
COLOR BRAG BORDER White on Blue
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Black
|
||||||
|
COLOR BRAG TITLE White on Black
|
||||||
|
COLOR BRAG WINDOW White on Blue
|
||||||
|
COLOR HEADER BORDER Cyan on Blue
|
||||||
|
COLOR HEADER EDIT White on Blue
|
||||||
|
COLOR HEADER HIGHLIGHT White on Blue
|
||||||
|
COLOR HEADER INPUT Blue on LGrey
|
||||||
|
COLOR HEADER TITLE White on Blue
|
||||||
|
COLOR HEADER WINDOW Lgrey on Blue
|
||||||
|
COLOR HELP BORDER Blue on LGrey
|
||||||
|
COLOR HELP HIGHLIGHT Red on LGrey
|
||||||
|
COLOR HELP SELECTOR White on Blue
|
||||||
|
COLOR HELP WINDOW Black on LGrey
|
||||||
|
COLOR INFO BORDER White on Blue
|
||||||
|
COLOR INFO TITLE White on Blue
|
||||||
|
COLOR INFO WINDOW White on Blue
|
||||||
|
COLOR MENU BORDER Blue on Cyan
|
||||||
|
COLOR MENU HIGHLIGHT LCyan on Cyan
|
||||||
|
COLOR MENU NOSELECT DGrey on Cyan
|
||||||
|
COLOR MENU SELECTOR White on Blue
|
||||||
|
COLOR MENU TITLE White on Cyan
|
||||||
|
COLOR MENU WINDOW Blue on Cyan
|
||||||
|
COLOR READER BLOCK White on Red
|
||||||
|
COLOR READER BORDER LGrey on Black
|
||||||
|
COLOR READER CURSOR White on Black
|
||||||
|
COLOR READER KLUDHIDD LMagenta on Black
|
||||||
|
COLOR READER QUOTE Yellow on Black
|
||||||
|
COLOR READER TEARORIG LMagenta on Black
|
||||||
|
COLOR READER WINDOW LGrey on Black
|
||||||
|
COLOR SHADOW DGrey on Black
|
||||||
|
COLOR STATUS WINDOW White on Blue
|
50
cfgs/colorset/gedcol07.cfg
Normal file
50
cfgs/colorset/gedcol07.cfg
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Lars Pehrsson.
|
||||||
|
|
||||||
|
COLOR AREA BORDER Cyan on Blue
|
||||||
|
COLOR AREA HIGHLIGHT White on Blue
|
||||||
|
COLOR AREA SELECTOR White on LGrey
|
||||||
|
COLOR AREA TITLE White on Blue
|
||||||
|
COLOR AREA WINDOW LGrey on Blue
|
||||||
|
COLOR ASK BORDER Blue on LGrey
|
||||||
|
COLOR ASK HIGHLIGHT White on LGrey
|
||||||
|
COLOR ASK NOSELECT DGrey on LGrey
|
||||||
|
COLOR ASK SELECTOR White on Blue
|
||||||
|
COLOR ASK TITLE White on LGrey
|
||||||
|
COLOR ASK WINDOW Blue on LGrey
|
||||||
|
COLOR BACKGROUND WINDOW LGrey on Black
|
||||||
|
COLOR BRAG BLOCK LBlue on Black
|
||||||
|
COLOR BRAG BORDER White on Blue
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Black
|
||||||
|
COLOR BRAG TITLE White on Black
|
||||||
|
COLOR BRAG WINDOW White on Blue
|
||||||
|
COLOR HEADER BORDER Cyan on Blue
|
||||||
|
COLOR HEADER EDIT White on Blue
|
||||||
|
COLOR HEADER HIGHLIGHT White on Blue
|
||||||
|
COLOR HEADER INPUT Blue on LGrey
|
||||||
|
COLOR HEADER TITLE White on Blue
|
||||||
|
COLOR HEADER WINDOW Lgrey on Blue
|
||||||
|
COLOR HELP BORDER Blue on LGrey
|
||||||
|
COLOR HELP HIGHLIGHT Red on LGrey
|
||||||
|
COLOR HELP SELECTOR White on Blue
|
||||||
|
COLOR HELP WINDOW Black on LGrey
|
||||||
|
COLOR INFO BORDER White on Blue
|
||||||
|
COLOR INFO TITLE White on Blue
|
||||||
|
COLOR INFO WINDOW White on Blue
|
||||||
|
COLOR MENU BORDER Blue on Cyan
|
||||||
|
COLOR MENU HIGHLIGHT LCyan on Cyan
|
||||||
|
COLOR MENU NOSELECT DGrey on Cyan
|
||||||
|
COLOR MENU SELECTOR White on Blue
|
||||||
|
COLOR MENU TITLE White on Cyan
|
||||||
|
COLOR MENU WINDOW Blue on Cyan
|
||||||
|
COLOR READER BLOCK White on Red
|
||||||
|
COLOR READER BORDER LGrey on Black
|
||||||
|
COLOR READER CURSOR White on Black
|
||||||
|
COLOR READER KLUDHIDD LMagenta on Black
|
||||||
|
COLOR READER QUOTE Yellow on Black
|
||||||
|
COLOR READER TEARORIG LMagenta on Black
|
||||||
|
COLOR READER WINDOW LGrey on Black
|
||||||
|
COLOR SHADOW DGrey on Black
|
||||||
|
COLOR STATUS WINDOW White on Blue
|
98
cfgs/colorset/gedcol08.cfg
Normal file
98
cfgs/colorset/gedcol08.cfg
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; ===================================================================
|
||||||
|
; By Tony Van den Bogaert 2:292/843 (tonyvdb@glo.be)
|
||||||
|
|
||||||
|
; ===================================================================
|
||||||
|
; COLOR CONFIGURATION
|
||||||
|
; ===================================================================
|
||||||
|
; General screen color setup
|
||||||
|
; ==========================
|
||||||
|
COLOR BACKGROUND WINDOW Black on Black
|
||||||
|
COLOR STATUS WINDOW White on Red
|
||||||
|
COLOR SHADOW Black on Black
|
||||||
|
; Startup screen / logo window
|
||||||
|
; ============================
|
||||||
|
COLOR BRAG WINDOW Black on Black
|
||||||
|
COLOR BRAG BORDER Black on Black
|
||||||
|
COLOR BRAG TITLE Black on Black
|
||||||
|
COLOR BRAG HIGHLIGHT Black on Black
|
||||||
|
COLOR BRAG BLOCK Black on Black
|
||||||
|
COLOR BRAG BTYPE 0
|
||||||
|
; Area Selection Menu
|
||||||
|
; ===================
|
||||||
|
COLOR AREA WINDOW White on Blue
|
||||||
|
COLOR AREA BORDER White on Red
|
||||||
|
COLOR AREA TITLE White on Red
|
||||||
|
COLOR AREA SELECTOR Yellow on Green
|
||||||
|
COLOR AREA HIGHLIGHT White on Blue
|
||||||
|
COLOR AREA PAGEBAR Black on Black
|
||||||
|
COLOR AREA BTYPE 0
|
||||||
|
; Message Header
|
||||||
|
; ==============
|
||||||
|
COLOR HEADER WINDOW Lgrey on Black
|
||||||
|
COLOR HEADER BORDER Green on Black
|
||||||
|
COLOR HEADER TITLE White on Red
|
||||||
|
COLOR HEADER INPUT Blue on Lgrey
|
||||||
|
COLOR HEADER EDIT Yellow on Black
|
||||||
|
COLOR HEADER HIGHLIGHT Green on Black
|
||||||
|
COLOR HEADER FROM Green on Black
|
||||||
|
COLOR HEADER TO Lgrey on Black
|
||||||
|
COLOR HEADER SUBJECT Lgrey on Black
|
||||||
|
COLOR HEADER BTYPE 0
|
||||||
|
; Message Text
|
||||||
|
; ============
|
||||||
|
COLOR READER WINDOW Lgrey on Black
|
||||||
|
COLOR READER BORDER Green on Black
|
||||||
|
COLOR READER QUOTE LBlue on Black
|
||||||
|
COLOR READER QUOTE2 Green on Black
|
||||||
|
COLOR READER CURSOR Lgrey on Black
|
||||||
|
COLOR READER TEARORIG Lgrey on Black
|
||||||
|
COLOR READER BLOCK Yellow on Red
|
||||||
|
COLOR READER HIGHLIGHT Yellow on Black
|
||||||
|
COLOR READER KLUDGE Lgrey on Black
|
||||||
|
COLOR READER HIDDEN Green on Black
|
||||||
|
COLOR READER TAGLINE Lgrey on Black
|
||||||
|
COLOR READER TEARLINE Lgrey on Black
|
||||||
|
COLOR READER ORIGIN Lgrey on Black
|
||||||
|
COLOR READER PAGEBAR Black on Black
|
||||||
|
COLOR READER SIGNATURE Lgrey on Black
|
||||||
|
COLOR READER BTYPE 0
|
||||||
|
; Miscellaneous Smaller Menus
|
||||||
|
; ===========================
|
||||||
|
COLOR ASK WINDOW White on Blue
|
||||||
|
COLOR ASK BORDER White on Red
|
||||||
|
COLOR ASK TITLE White on Red
|
||||||
|
COLOR ASK SELECTOR Yellow on Green
|
||||||
|
COLOR ASK NOSELECT White on Blue
|
||||||
|
COLOR ASK HIGHLIGHT Yellow on Blue
|
||||||
|
COLOR ASK BTYPE 0
|
||||||
|
; Miscellaneous Larger Menus (Browser Windows)
|
||||||
|
; ============================================
|
||||||
|
COLOR MENU UNREAD Green on Black
|
||||||
|
COLOR MENU UNREADHIGH White on Black
|
||||||
|
COLOR MENU UNSENT LGrey on Black
|
||||||
|
COLOR MENU UNSENTHIGH LRed on Black
|
||||||
|
COLOR MENU WINDOW White on Blue
|
||||||
|
COLOR MENU BORDER White on Red
|
||||||
|
COLOR MENU TITLE White on Red
|
||||||
|
COLOR MENU SELECTOR Yellow on Green
|
||||||
|
COLOR MENU NOSELECT White on Blue
|
||||||
|
COLOR MENU HIGHLIGHT Yellow on Blue
|
||||||
|
COLOR MENU PAGEBAR Black on Black
|
||||||
|
COLOR MENU BTYPE 0
|
||||||
|
; Help Screens
|
||||||
|
; ============
|
||||||
|
COLOR HELP WINDOW White on Blue
|
||||||
|
COLOR HELP BORDER White on Blue
|
||||||
|
COLOR HELP SELECTOR Yellow on Green
|
||||||
|
COLOR HELP HIGHLIGHT Yellow on Blue
|
||||||
|
COLOR HELP BTYPE 0
|
||||||
|
; Pop Up Information Windows
|
||||||
|
; ==========================
|
||||||
|
COLOR INFO WINDOW White on Blue
|
||||||
|
COLOR INFO BORDER White on Red
|
||||||
|
COLOR INFO TITLE White on Red
|
||||||
|
COLOR INFO BTYPE 0
|
||||||
|
; ==================================================================
|
||||||
|
|
50
cfgs/colorset/gedcol09.cfg
Normal file
50
cfgs/colorset/gedcol09.cfg
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Karsten Palmvig.
|
||||||
|
|
||||||
|
COLOR AREA BORDER Green on Black
|
||||||
|
COLOR AREA HIGHLIGHT LRed on Black
|
||||||
|
COLOR AREA SELECTOR Black om LGrey
|
||||||
|
COLOR AREA TITLE Yellow on Black
|
||||||
|
COLOR AREA WINDOW Yellow on Black
|
||||||
|
COLOR ASK BORDER Green on Black
|
||||||
|
COLOR ASK HIGHLIGHT Yellow on Black
|
||||||
|
COLOR ASK NOSELECT LGrey on Black
|
||||||
|
COLOR ASK SELECTOR Black on LGrey
|
||||||
|
COLOR ASK TITLE Yellow on Black
|
||||||
|
COLOR ASK WINDOW Green on Black
|
||||||
|
COLOR BACKGROUND WINDOW Green on Black
|
||||||
|
COLOR BRAG BLOCK LBlue on Black
|
||||||
|
COLOR BRAG BORDER Black on LGrey
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Black
|
||||||
|
COLOR BRAG TITLE Yellow on Black
|
||||||
|
COLOR BRAG WINDOW Black on LGrey
|
||||||
|
COLOR HEADER BORDER Green on Black
|
||||||
|
COLOR HEADER EDIT Black on LGrey
|
||||||
|
COLOR HEADER HIGHLIGHT Yellow on Black
|
||||||
|
COLOR HEADER INPUT Black on LGrey
|
||||||
|
COLOR HEADER TITLE Yellow on Black
|
||||||
|
COLOR HEADER WINDOW Yellow on Black
|
||||||
|
COLOR HELP BORDER Black on LGrey
|
||||||
|
COLOR HELP HIGHLIGHT Red on LGrey
|
||||||
|
COLOR HELP SELECTOR White on Blue
|
||||||
|
COLOR HELP WINDOW Black on LGrey
|
||||||
|
COLOR INFO BORDER Black on LGrey
|
||||||
|
COLOR INFO TITLE Black on LGrey
|
||||||
|
COLOR INFO WINDOW Black on LGrey
|
||||||
|
COLOR MENU BORDER Green on Black
|
||||||
|
COLOR MENU HIGHLIGHT Yellow on Black
|
||||||
|
COLOR MENU NOSELECT LGrey on Black
|
||||||
|
COLOR MENU SELECTOR Black on LGrey
|
||||||
|
COLOR MENU TITLE Yellow on Black
|
||||||
|
COLOR MENU WINDOW Green on Black
|
||||||
|
COLOR READER BLOCK White on Red
|
||||||
|
COLOR READER BORDER Green on Black
|
||||||
|
COLOR READER CURSOR Yellow on Black
|
||||||
|
COLOR READER KLUDHIDD Cyan on Black
|
||||||
|
COLOR READER QUOTE Yellow on Black
|
||||||
|
COLOR READER TEARORIG Green on Black
|
||||||
|
COLOR READER WINDOW Green on Black
|
||||||
|
COLOR SHADOW DGrey on Black
|
||||||
|
COLOR STATUS WINDOW Black on LGrey
|
51
cfgs/colorset/gedcol10.cfg
Normal file
51
cfgs/colorset/gedcol10.cfg
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Odinn Sorensen.
|
||||||
|
|
||||||
|
COLOR AREA BORDER LBlue on Black
|
||||||
|
COLOR AREA HIGHLIGHT White on Black
|
||||||
|
COLOR AREA SELECTOR White on Blue
|
||||||
|
COLOR AREA TITLE Yellow on Black
|
||||||
|
COLOR AREA WINDOW LGrey on Black
|
||||||
|
COLOR ASK BORDER LRed on Black
|
||||||
|
COLOR ASK HIGHLIGHT White on Black
|
||||||
|
COLOR ASK NOSELECT DGrey on Black
|
||||||
|
COLOR ASK SELECTOR White on Blue
|
||||||
|
COLOR ASK TITLE Yellow on Black
|
||||||
|
COLOR ASK WINDOW LGrey on Black
|
||||||
|
COLOR BACKGROUND WINDOW LGrey on Black
|
||||||
|
COLOR BACKGROUND BORDER Black on Black
|
||||||
|
COLOR BRAG BLOCK LBlue on Black
|
||||||
|
COLOR BRAG BORDER Yellow on Black
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Black
|
||||||
|
COLOR BRAG TITLE Yellow on Black
|
||||||
|
COLOR BRAG WINDOW White on Black
|
||||||
|
COLOR HEADER BORDER LBlue on Black
|
||||||
|
COLOR HEADER EDIT White on Black
|
||||||
|
COLOR HEADER HIGHLIGHT White on Black
|
||||||
|
COLOR HEADER INPUT Blue on LGrey
|
||||||
|
COLOR HEADER TITLE Yellow on Black
|
||||||
|
COLOR HEADER WINDOW LGrey on Black
|
||||||
|
COLOR HELP BORDER Yellow on Black
|
||||||
|
COLOR HELP HIGHLIGHT White on Black
|
||||||
|
COLOR HELP SELECTOR White on Red
|
||||||
|
COLOR HELP WINDOW LGrey on Black
|
||||||
|
COLOR INFO BORDER LRed on Black
|
||||||
|
COLOR INFO TITLE Yellow on Black
|
||||||
|
COLOR INFO WINDOW White on Black
|
||||||
|
COLOR MENU BORDER LRed on Black
|
||||||
|
COLOR MENU HIGHLIGHT White on Black
|
||||||
|
COLOR MENU NOSELECT DGrey on Black
|
||||||
|
COLOR MENU SELECTOR White on Blue
|
||||||
|
COLOR MENU TITLE Yellow on Black
|
||||||
|
COLOR MENU WINDOW LGrey on Black
|
||||||
|
COLOR READER BLOCK White on Red
|
||||||
|
COLOR READER BORDER LGrey on Black
|
||||||
|
COLOR READER CURSOR White on Black
|
||||||
|
COLOR READER KLUDHIDD DGrey on Black
|
||||||
|
COLOR READER QUOTE Yellow on Black
|
||||||
|
COLOR READER TEARORIG White on Black
|
||||||
|
COLOR READER WINDOW LGrey on Black
|
||||||
|
COLOR SHADOW DGrey on Black
|
||||||
|
COLOR STATUS WINDOW White on Blue
|
54
cfgs/colorset/gedcol11.cfg
Normal file
54
cfgs/colorset/gedcol11.cfg
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration. (Example of intense color setup)
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Odinn Sorensen.
|
||||||
|
|
||||||
|
; Turn on intense colors for this setup!
|
||||||
|
INTENSECOLORS Yes
|
||||||
|
|
||||||
|
COLOR AREA BORDER Blue on White
|
||||||
|
COLOR AREA HIGHLIGHT Red on White
|
||||||
|
COLOR AREA SELECTOR White on DGrey
|
||||||
|
COLOR AREA TITLE Red on White
|
||||||
|
COLOR AREA WINDOW Black on White
|
||||||
|
COLOR ASK BORDER Brown on Yellow
|
||||||
|
COLOR ASK HIGHLIGHT Red on Yellow
|
||||||
|
COLOR ASK NOSELECT LGrey on Yellow
|
||||||
|
COLOR ASK SELECTOR White on DGrey
|
||||||
|
COLOR ASK TITLE DGrey on Yellow
|
||||||
|
COLOR ASK WINDOW Black on Yellow
|
||||||
|
COLOR BACKGROUND WINDOW Black on White
|
||||||
|
COLOR BACKGROUND BORDER White on Black
|
||||||
|
COLOR BRAG BLOCK LBlue on Black
|
||||||
|
COLOR BRAG BORDER Yellow on Black
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Black
|
||||||
|
COLOR BRAG TITLE Yellow on Black
|
||||||
|
COLOR BRAG WINDOW White on Black
|
||||||
|
COLOR HEADER BORDER Yellow on DGrey
|
||||||
|
COLOR HEADER EDIT White on DGrey
|
||||||
|
COLOR HEADER HIGHLIGHT White on DGrey
|
||||||
|
COLOR HEADER INPUT Black on Red
|
||||||
|
COLOR HEADER TITLE Yellow on DGrey
|
||||||
|
COLOR HEADER WINDOW LGrey on DGrey
|
||||||
|
COLOR HELP BORDER Yellow on DGrey
|
||||||
|
COLOR HELP HIGHLIGHT White on DGrey
|
||||||
|
COLOR HELP SELECTOR Red on Yellow
|
||||||
|
COLOR HELP WINDOW LGrey on DGrey
|
||||||
|
COLOR INFO BORDER LRed on Black
|
||||||
|
COLOR INFO TITLE Yellow on Black
|
||||||
|
COLOR INFO WINDOW White on Black
|
||||||
|
COLOR MENU BORDER Yellow on LGrey
|
||||||
|
COLOR MENU HIGHLIGHT Yellow on LGrey
|
||||||
|
COLOR MENU NOSELECT DGrey on LGrey
|
||||||
|
COLOR MENU SELECTOR White on DGrey
|
||||||
|
COLOR MENU TITLE Red on LGrey
|
||||||
|
COLOR MENU WINDOW Black on LGrey
|
||||||
|
COLOR READER BLOCK Black on Red
|
||||||
|
COLOR READER BORDER Black on White
|
||||||
|
COLOR READER CURSOR Green on White
|
||||||
|
COLOR READER KLUDHIDD DGrey on White
|
||||||
|
COLOR READER QUOTE Red on White
|
||||||
|
COLOR READER TEARORIG Black on White
|
||||||
|
COLOR READER WINDOW Blue on White
|
||||||
|
COLOR SHADOW DGrey on Black
|
||||||
|
COLOR STATUS WINDOW White on DGrey
|
52
cfgs/colorset/gedcol12.cfg
Normal file
52
cfgs/colorset/gedcol12.cfg
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Michael Hembo
|
||||||
|
|
||||||
|
INTENSECOLORS YES
|
||||||
|
|
||||||
|
COLOR AREA BORDER Blue on Lgray
|
||||||
|
COLOR AREA HIGHLIGHT Lgreen on lgray
|
||||||
|
COLOR AREA SELECTOR White on Blue
|
||||||
|
COLOR AREA TITLE yellow on lgray
|
||||||
|
COLOR AREA WINDOW black on lgray
|
||||||
|
COLOR ASK BORDER lblue on LGrey
|
||||||
|
COLOR ASK HIGHLIGHT yellow on lgray
|
||||||
|
COLOR ASK NOSELECT black on LGrey
|
||||||
|
COLOR ASK SELECTOR White on Blue
|
||||||
|
COLOR ASK TITLE yellow on LGrey
|
||||||
|
COLOR ASK WINDOW Black on LGrey
|
||||||
|
COLOR BACKGROUND WINDOW LGrey on Black
|
||||||
|
COLOR BRAG BLOCK LBlue on Black
|
||||||
|
COLOR BRAG BORDER White on Black
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Black
|
||||||
|
COLOR BRAG TITLE White on Black
|
||||||
|
COLOR BRAG WINDOW Yellow on Black
|
||||||
|
COLOR HEADER BORDER blue on dgray
|
||||||
|
COLOR HEADER EDIT white on lgray
|
||||||
|
COLOR HEADER HIGHLIGHT yellow on dgray
|
||||||
|
COLOR HEADER INPUT lgray on black
|
||||||
|
COLOR HEADER TITLE lred on dgray
|
||||||
|
COLOR HEADER WINDOW green on dgray
|
||||||
|
COLOR HELP BORDER Blue on LGrey
|
||||||
|
COLOR HELP HIGHLIGHT yellow on LGrey
|
||||||
|
COLOR HELP SELECTOR White on Blue
|
||||||
|
COLOR HELP WINDOW Black on LGrey
|
||||||
|
COLOR INFO BORDER blue on lgrey
|
||||||
|
COLOR INFO TITLE yellow on lgrey
|
||||||
|
COLOR INFO WINDOW black on lgrey
|
||||||
|
COLOR MENU BORDER Blue on lgrey
|
||||||
|
COLOR MENU HIGHLIGHT yellow on lgrey
|
||||||
|
COLOR MENU NOSELECT black on lgrey
|
||||||
|
COLOR MENU SELECTOR white on Blue
|
||||||
|
COLOR MENU TITLE yellow on lgrey
|
||||||
|
COLOR MENU WINDOW black on lgrey
|
||||||
|
COLOR READER BLOCK black on brown
|
||||||
|
COLOR READER BORDER lgrey on blue
|
||||||
|
COLOR READER CURSOR White on Black
|
||||||
|
COLOR READER KLUDHIDD green on Black
|
||||||
|
COLOR READER QUOTE lgreen on Black
|
||||||
|
COLOR READER TEARORIG Lblue on Black
|
||||||
|
COLOR READER WINDOW yellow on Black
|
||||||
|
COLOR SHADOW DGrey on Black
|
||||||
|
COLOR STATUS WINDOW White on Blue
|
62
cfgs/colorset/gedcol13.cfg
Normal file
62
cfgs/colorset/gedcol13.cfg
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Karsten Palmvig.
|
||||||
|
|
||||||
|
INTENSECOLORS Yes
|
||||||
|
|
||||||
|
COLOR AREA BORDER Green on Black
|
||||||
|
COLOR AREA HIGHLIGHT LRed on Black
|
||||||
|
COLOR AREA SELECTOR Black om LGrey
|
||||||
|
COLOR AREA TITLE Yellow on Black
|
||||||
|
COLOR AREA WINDOW Yellow on Black
|
||||||
|
|
||||||
|
COLOR ASK BORDER Green on Black
|
||||||
|
COLOR ASK HIGHLIGHT Yellow on Black
|
||||||
|
COLOR ASK NOSELECT LGrey on Black
|
||||||
|
COLOR ASK SELECTOR Black on LGrey
|
||||||
|
COLOR ASK TITLE Yellow on Black
|
||||||
|
COLOR ASK WINDOW Green on Black
|
||||||
|
|
||||||
|
COLOR BACKGROUND BORDER Black on Black
|
||||||
|
COLOR BACKGROUND WINDOW Green on Black
|
||||||
|
|
||||||
|
COLOR BRAG BLOCK LBlue on Black
|
||||||
|
COLOR BRAG BORDER Black on LGrey
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Black
|
||||||
|
COLOR BRAG TITLE Yellow on Black
|
||||||
|
COLOR BRAG WINDOW Black on LGrey
|
||||||
|
|
||||||
|
COLOR HEADER BORDER Green on Black
|
||||||
|
COLOR HEADER EDIT Black on LGrey
|
||||||
|
COLOR HEADER HIGHLIGHT Yellow on Black
|
||||||
|
COLOR HEADER INPUT Black on LGrey
|
||||||
|
COLOR HEADER TITLE Yellow on Black
|
||||||
|
COLOR HEADER WINDOW Yellow on Black
|
||||||
|
|
||||||
|
COLOR HELP BORDER Black on LGrey
|
||||||
|
COLOR HELP HIGHLIGHT Red on LGrey
|
||||||
|
COLOR HELP SELECTOR White on Blue
|
||||||
|
COLOR HELP WINDOW Black on LGrey
|
||||||
|
|
||||||
|
COLOR INFO BORDER Black on Yellow
|
||||||
|
COLOR INFO TITLE Black on Yellow
|
||||||
|
COLOR INFO WINDOW LRed on Yellow
|
||||||
|
|
||||||
|
COLOR MENU BORDER Green on Black
|
||||||
|
COLOR MENU HIGHLIGHT Yellow on Black
|
||||||
|
COLOR MENU NOSELECT LGrey on Black
|
||||||
|
COLOR MENU SELECTOR Black on LGrey
|
||||||
|
COLOR MENU TITLE Yellow on Black
|
||||||
|
COLOR MENU WINDOW Green on Black
|
||||||
|
|
||||||
|
COLOR READER BLOCK White on Red
|
||||||
|
COLOR READER BORDER Green on Black
|
||||||
|
COLOR READER CURSOR Yellow on Black
|
||||||
|
COLOR READER KLUDHIDD Cyan on Black
|
||||||
|
COLOR READER QUOTE Yellow on Black
|
||||||
|
COLOR READER TEARORIG Green on Black
|
||||||
|
COLOR READER WINDOW Green on Black
|
||||||
|
|
||||||
|
COLOR SHADOW DGrey on Black
|
||||||
|
COLOR STATUS WINDOW Black on LGrey
|
50
cfgs/colorset/gedcol14.cfg
Normal file
50
cfgs/colorset/gedcol14.cfg
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Thomas Endres
|
||||||
|
|
||||||
|
COLOR AREA BORDER Blue on Black
|
||||||
|
COLOR AREA HIGHLIGHT Yellow on Black
|
||||||
|
COLOR AREA SELECTOR Yellow on Blue
|
||||||
|
COLOR AREA TITLE Yellow on Black
|
||||||
|
COLOR AREA WINDOW Cyan on Black
|
||||||
|
COLOR ASK BORDER Red on LGrey
|
||||||
|
COLOR ASK HIGHLIGHT White on LGrey
|
||||||
|
COLOR ASK NOSELECT Blue on LGrey
|
||||||
|
COLOR ASK SELECTOR Yellow on Black
|
||||||
|
COLOR ASK TITLE Red on LGrey
|
||||||
|
COLOR ASK WINDOW Red on LGrey
|
||||||
|
COLOR BACKGROUND WINDOW LGrey on Black
|
||||||
|
COLOR BACKGROUND BORDER Black on Black
|
||||||
|
COLOR BRAG BLOCK LBlue on Black
|
||||||
|
COLOR BRAG BORDER Yellow on Black
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Black
|
||||||
|
COLOR BRAG TITLE Yellow on Black
|
||||||
|
COLOR BRAG WINDOW White on Black
|
||||||
|
COLOR HEADER BORDER LBlue on Black
|
||||||
|
COLOR HEADER EDIT White on Black
|
||||||
|
COLOR HEADER HIGHLIGHT White on Black
|
||||||
|
COLOR HEADER INPUT Blue on LGrey
|
||||||
|
COLOR HEADER TITLE Yellow on Black
|
||||||
|
COLOR HEADER WINDOW LGrey on Black
|
||||||
|
COLOR HELP BORDER Red on LGrey
|
||||||
|
COLOR HELP HIGHLIGHT White on LGrey
|
||||||
|
COLOR HELP SELECTOR Yellow on Black
|
||||||
|
COLOR HELP WINDOW Blue on LGrey
|
||||||
|
COLOR INFO BORDER Red on LGrey
|
||||||
|
COLOR INFO TITLE Yellow on LGrey
|
||||||
|
COLOR INFO WINDOW Blue on LGrey
|
||||||
|
COLOR MENU BORDER Red on LGrey
|
||||||
|
COLOR MENU HIGHLIGHT White on LGrey
|
||||||
|
COLOR MENU NOSELECT Red on LGrey
|
||||||
|
COLOR MENU SELECTOR Yellow on Black
|
||||||
|
COLOR MENU TITLE Red on LGrey
|
||||||
|
COLOR MENU WINDOW Red on LGrey
|
||||||
|
COLOR READER BLOCK White on Red
|
||||||
|
COLOR READER BORDER LGrey on Black
|
||||||
|
COLOR READER CURSOR White on Black
|
||||||
|
COLOR READER KLUDHIDD LRed on Black
|
||||||
|
COLOR READER QUOTE Green on Black
|
||||||
|
COLOR READER TEARORIG White on Black
|
||||||
|
COLOR READER WINDOW LGrey on Black
|
||||||
|
COLOR SHADOW DGrey on Black
|
||||||
|
COLOR STATUS WINDOW Red on LGrey
|
51
cfgs/colorset/gedcol15.cfg
Normal file
51
cfgs/colorset/gedcol15.cfg
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
|
||||||
|
; GoldED Color Configuration.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Nathan Moschkin.
|
||||||
|
|
||||||
|
COLOR AREA BORDER LCyan on Black
|
||||||
|
COLOR AREA HIGHLIGHT Yellow on Black
|
||||||
|
COLOR AREA SELECTOR Blue on LGrey
|
||||||
|
COLOR AREA TITLE LGreen on Black
|
||||||
|
COLOR AREA WINDOW LGrey on Black
|
||||||
|
COLOR ASK BORDER LCyan on Blue
|
||||||
|
COLOR ASK HIGHLIGHT Yellow on Blue
|
||||||
|
COLOR ASK NOSELECT DGrey on Blue
|
||||||
|
COLOR ASK SELECTOR Blue on LGrey
|
||||||
|
COLOR ASK TITLE Black on Cyan
|
||||||
|
COLOR ASK WINDOW LGrey on Blue
|
||||||
|
COLOR BACKGROUND WINDOW LGrey on Black
|
||||||
|
COLOR BRAG BLOCK LBlue on Black
|
||||||
|
COLOR BRAG BORDER White on Black
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Black
|
||||||
|
COLOR BRAG TITLE White on Black
|
||||||
|
COLOR BRAG WINDOW Yellow on Black
|
||||||
|
COLOR HEADER BORDER Cyan on Blue
|
||||||
|
COLOR HEADER EDIT Blue on Green
|
||||||
|
COLOR HEADER HIGHLIGHT Yellow on Blue
|
||||||
|
COLOR HEADER INPUT Blue on Green
|
||||||
|
COLOR HEADER TITLE LGreen on Blue
|
||||||
|
COLOR HEADER WINDOW White on Blue
|
||||||
|
COLOR HELP BORDER Blue on LGrey
|
||||||
|
COLOR HELP HIGHLIGHT Red on LGrey
|
||||||
|
COLOR HELP SELECTOR White on Blue
|
||||||
|
COLOR HELP WINDOW Black on LGrey
|
||||||
|
COLOR INFO BORDER White on Blue
|
||||||
|
COLOR INFO TITLE White on Blue
|
||||||
|
COLOR INFO WINDOW White on Blue
|
||||||
|
COLOR MENU BORDER Blue on Cyan
|
||||||
|
COLOR MENU HIGHLIGHT White on Cyan
|
||||||
|
COLOR MENU NOSELECT DGrey on Cyan
|
||||||
|
COLOR MENU SELECTOR Yellow on Black
|
||||||
|
COLOR MENU TITLE White on Cyan
|
||||||
|
COLOR MENU WINDOW Blue on Cyan
|
||||||
|
COLOR READER BLOCK White on Red
|
||||||
|
COLOR READER BORDER LGrey on Black
|
||||||
|
COLOR READER CURSOR White on Black
|
||||||
|
COLOR READER KLUDHIDD LGreen on Black
|
||||||
|
COLOR READER QUOTE LCyan on Black
|
||||||
|
COLOR READER TEARORIG Yellow on Black
|
||||||
|
COLOR READER WINDOW LGrey on Black
|
||||||
|
COLOR SHADOW DGrey on Black
|
||||||
|
COLOR STATUS WINDOW White on Blue
|
||||||
|
|
49
cfgs/colorset/gedcol16.cfg
Normal file
49
cfgs/colorset/gedcol16.cfg
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Micheal Dunnagan
|
||||||
|
|
||||||
|
COLOR AREA BORDER Red on Blue
|
||||||
|
COLOR AREA HIGHLIGHT White on Blue
|
||||||
|
COLOR AREA SELECTOR LRed on Black
|
||||||
|
COLOR AREA TITLE White on Blue
|
||||||
|
COLOR AREA WINDOW White on DGrey
|
||||||
|
COLOR ASK BORDER Blue on LGrey
|
||||||
|
COLOR ASK HIGHLIGHT White on LGrey
|
||||||
|
COLOR ASK NOSELECT DGrey on LGrey
|
||||||
|
COLOR ASK SELECTOR White on Blue
|
||||||
|
COLOR ASK TITLE Red on LGrey
|
||||||
|
COLOR ASK WINDOW Blue on LGrey
|
||||||
|
COLOR BACKGROUND WINDOW White on DGrey
|
||||||
|
COLOR BRAG BLOCK Yellow on Blue
|
||||||
|
COLOR BRAG BORDER Red on Blue
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Blue
|
||||||
|
COLOR BRAG TITLE Yellow on Blue
|
||||||
|
COLOR BRAG WINDOW White on Blue
|
||||||
|
COLOR HEADER BORDER Red on Black
|
||||||
|
COLOR HEADER EDIT White on Blue
|
||||||
|
COLOR HEADER HIGHLIGHT Yellow on Blue
|
||||||
|
COLOR HEADER INPUT White on Blue
|
||||||
|
COLOR HEADER TITLE Blue on LGrey
|
||||||
|
COLOR HEADER WINDOW White on Blue
|
||||||
|
COLOR HELP BORDER Blue on LGrey
|
||||||
|
COLOR HELP HIGHLIGHT Red on LGrey
|
||||||
|
COLOR HELP SELECTOR White on Blue
|
||||||
|
COLOR HELP WINDOW Blue on LGrey
|
||||||
|
COLOR INFO BORDER White on Blue
|
||||||
|
COLOR INFO TITLE White on Blue
|
||||||
|
COLOR INFO WINDOW White on Blue
|
||||||
|
COLOR MENU BORDER Blue on LGrey
|
||||||
|
COLOR MENU HIGHLIGHT White on Blue
|
||||||
|
COLOR MENU NOSELECT DGrey on Cyan
|
||||||
|
COLOR MENU SELECTOR Yellow on Black
|
||||||
|
COLOR MENU TITLE White on Blue
|
||||||
|
COLOR MENU WINDOW Blue on LGrey
|
||||||
|
COLOR READER BLOCK White on Red
|
||||||
|
COLOR READER BORDER LGrey on Black
|
||||||
|
COLOR READER CURSOR White on Black
|
||||||
|
COLOR READER KLUDHIDD Cyan on Black
|
||||||
|
COLOR READER QUOTE Yellow on Black
|
||||||
|
COLOR READER TEARORIG LMagenta on Black
|
||||||
|
COLOR READER WINDOW LGreen on Black
|
||||||
|
COLOR SHADOW Blue on Black
|
||||||
|
COLOR STATUS WINDOW Blue on LGrey
|
62
cfgs/colorset/gedcol17.cfg
Normal file
62
cfgs/colorset/gedcol17.cfg
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; -------------------------------------------------------------
|
||||||
|
; By Joseph Carnage
|
||||||
|
|
||||||
|
IntenseColors Yes
|
||||||
|
|
||||||
|
Color Area Border Green on Black
|
||||||
|
Color Area Highlight LRed on Black
|
||||||
|
Color Area Selector Black om LGrey
|
||||||
|
Color Area Title Yellow on Black
|
||||||
|
Color Area Window Yellow on Black
|
||||||
|
|
||||||
|
Color Ask Border White on Blue
|
||||||
|
Color Ask Highlight LRed on Blue
|
||||||
|
Color Ask Noselect Dgrey on Blue
|
||||||
|
Color Ask Selector LCyan on LRed
|
||||||
|
Color Ask Title White on Blue
|
||||||
|
Color Ask Window White on Blue
|
||||||
|
|
||||||
|
Color Background Border Black on Black
|
||||||
|
Color Background Window Green on Black
|
||||||
|
|
||||||
|
Color Brag Block LBlue on Black
|
||||||
|
Color Brag Border Black on LGrey
|
||||||
|
Color Brag Highlight LRed on Black
|
||||||
|
Color Brag Title Yellow on Black
|
||||||
|
Color Brag Window Black on LGrey
|
||||||
|
|
||||||
|
Color Header border LRed on Black
|
||||||
|
Color Header edit Black on LGrey
|
||||||
|
Color Header highlight LCyan on Black
|
||||||
|
Color Header input Black on LGrey
|
||||||
|
Color Header title White on Black
|
||||||
|
Color Header window LGrey on Black
|
||||||
|
|
||||||
|
Color Help border Black on White
|
||||||
|
Color Help highlight Red on White
|
||||||
|
Color Help selector White on Blue
|
||||||
|
Color Help window Black on White
|
||||||
|
|
||||||
|
Color Info Border Black on Yellow
|
||||||
|
Color Info Title Black on Yellow
|
||||||
|
Color Info Window LRed on Yellow
|
||||||
|
|
||||||
|
Color Menu Border Yellow on LGrey
|
||||||
|
Color Menu Highlight Yellow on LGrey
|
||||||
|
Color Menu Noselect Dgrey on LGrey
|
||||||
|
Color Menu Selector White on DGrey
|
||||||
|
Color Menu Title Red on LGrey
|
||||||
|
Color Menu Window Black on LGrey
|
||||||
|
|
||||||
|
Color Reader Block White on Red
|
||||||
|
Color Reader Border Green on Black
|
||||||
|
Color Reader Cursor Yellow on Black
|
||||||
|
Color Reader Kludhidd Lcyan on Black
|
||||||
|
Color Reader Quote Yellow on Black
|
||||||
|
Color Reader Tearorig White on Black
|
||||||
|
Color Reader Window Green on Black
|
||||||
|
|
||||||
|
Color Shadow DGrey on Black
|
||||||
|
Color Status Window Black on LGrey
|
||||||
|
|
50
cfgs/colorset/gedcol18.cfg
Normal file
50
cfgs/colorset/gedcol18.cfg
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Thomas Endres
|
||||||
|
|
||||||
|
COLOR AREA BORDER Blue on Black
|
||||||
|
COLOR AREA HIGHLIGHT Yellow on Black
|
||||||
|
COLOR AREA SELECTOR Yellow on Blue
|
||||||
|
COLOR AREA TITLE Yellow on Black
|
||||||
|
COLOR AREA WINDOW Cyan on Black
|
||||||
|
COLOR ASK BORDER Red on LGrey
|
||||||
|
COLOR ASK HIGHLIGHT White on LGrey
|
||||||
|
COLOR ASK NOSELECT Blue on LGrey
|
||||||
|
COLOR ASK SELECTOR Yellow on Black
|
||||||
|
COLOR ASK TITLE Red on LGrey
|
||||||
|
COLOR ASK WINDOW Red on LGrey
|
||||||
|
COLOR BACKGROUND WINDOW LGrey on Black
|
||||||
|
COLOR BACKGROUND BORDER Black on Black
|
||||||
|
COLOR BRAG BLOCK LBlue on Black
|
||||||
|
COLOR BRAG BORDER Yellow on Black
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Black
|
||||||
|
COLOR BRAG TITLE Yellow on Black
|
||||||
|
COLOR BRAG WINDOW White on Black
|
||||||
|
COLOR HEADER BORDER LBlue on Black
|
||||||
|
COLOR HEADER EDIT White on Black
|
||||||
|
COLOR HEADER HIGHLIGHT White on Black
|
||||||
|
COLOR HEADER INPUT Blue on LGrey
|
||||||
|
COLOR HEADER TITLE Yellow on Black
|
||||||
|
COLOR HEADER WINDOW LGrey on Black
|
||||||
|
COLOR HELP BORDER Red on LGrey
|
||||||
|
COLOR HELP HIGHLIGHT White on LGrey
|
||||||
|
COLOR HELP SELECTOR Yellow on Black
|
||||||
|
COLOR HELP WINDOW Blue on LGrey
|
||||||
|
COLOR INFO BORDER Red on LGrey
|
||||||
|
COLOR INFO TITLE Yellow on LGrey
|
||||||
|
COLOR INFO WINDOW Blue on LGrey
|
||||||
|
COLOR MENU BORDER Red on LGrey
|
||||||
|
COLOR MENU HIGHLIGHT White on LGrey
|
||||||
|
COLOR MENU NOSELECT Red on LGrey
|
||||||
|
COLOR MENU SELECTOR Yellow on Black
|
||||||
|
COLOR MENU TITLE Red on LGrey
|
||||||
|
COLOR MENU WINDOW Red on LGrey
|
||||||
|
COLOR READER BLOCK White on Red
|
||||||
|
COLOR READER BORDER LGrey on Black
|
||||||
|
COLOR READER CURSOR White on Black
|
||||||
|
COLOR READER KLUDHIDD LRed on Black
|
||||||
|
COLOR READER QUOTE Green on Black
|
||||||
|
COLOR READER TEARORIG Yellow on Black
|
||||||
|
COLOR READER WINDOW LGrey on Black
|
||||||
|
COLOR SHADOW DGrey on Black
|
||||||
|
COLOR STATUS WINDOW Red on LGrey
|
50
cfgs/colorset/gedcol19.cfg
Normal file
50
cfgs/colorset/gedcol19.cfg
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By ???
|
||||||
|
|
||||||
|
COLOR AREA BORDER LBlue on Blue
|
||||||
|
COLOR AREA HIGHLIGHT White on Blue
|
||||||
|
COLOR AREA SELECTOR Yellow on Black
|
||||||
|
COLOR AREA TITLE Yellow on Blue
|
||||||
|
COLOR AREA WINDOW LGrey on Blue
|
||||||
|
COLOR ASK BORDER White on Red
|
||||||
|
COLOR ASK HIGHLIGHT White on Red
|
||||||
|
COLOR ASK NOSELECT DGrey on Red
|
||||||
|
COLOR ASK SELECTOR White on Black
|
||||||
|
COLOR ASK TITLE Yellow on Red
|
||||||
|
COLOR ASK WINDOW Black on Red
|
||||||
|
COLOR BACKGROUND WINDOW LGrey on Blue
|
||||||
|
COLOR BACKGROUND BORDER Black on Blue
|
||||||
|
COLOR BRAG BLOCK LBlue on Blue
|
||||||
|
COLOR BRAG BORDER Yellow on Blue
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Blue
|
||||||
|
COLOR BRAG TITLE Yellow on Blue
|
||||||
|
COLOR BRAG WINDOW White on Blue
|
||||||
|
COLOR HEADER BORDER White on LBlue
|
||||||
|
COLOR HEADER EDIT White on LBlue
|
||||||
|
COLOR HEADER HIGHLIGHT White on LBlue
|
||||||
|
COLOR HEADER INPUT Blue on LBlue
|
||||||
|
COLOR HEADER TITLE LGreen on LBlue
|
||||||
|
COLOR HEADER WINDOW Yellow on LBlue
|
||||||
|
COLOR HELP BORDER White on Red
|
||||||
|
COLOR HELP HIGHLIGHT Yellow on Black
|
||||||
|
COLOR HELP SELECTOR White on Red
|
||||||
|
COLOR HELP WINDOW Black on Red
|
||||||
|
COLOR INFO BORDER Black on Magenta
|
||||||
|
COLOR INFO TITLE Yellow on Magenta
|
||||||
|
COLOR INFO WINDOW White on Magenta
|
||||||
|
COLOR MENU BORDER White on Red
|
||||||
|
COLOR MENU HIGHLIGHT White on Red
|
||||||
|
COLOR MENU NOSELECT DGrey on Red
|
||||||
|
COLOR MENU SELECTOR White on Black
|
||||||
|
COLOR MENU TITLE Yellow on Red
|
||||||
|
COLOR MENU WINDOW Black on Red
|
||||||
|
COLOR READER BLOCK White on Red
|
||||||
|
COLOR READER BORDER LGrey on Blue
|
||||||
|
COLOR READER CURSOR White on Blue
|
||||||
|
COLOR READER KLUDHIDD White on Blue
|
||||||
|
COLOR READER QUOTE LGrey on Blue
|
||||||
|
COLOR READER TEARORIG LRed on Blue
|
||||||
|
COLOR READER WINDOW Yellow on Blue
|
||||||
|
COLOR SHADOW DGrey on Grey
|
||||||
|
COLOR STATUS WINDOW White on LBlue
|
53
cfgs/colorset/gedcol20.cfg
Normal file
53
cfgs/colorset/gedcol20.cfg
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Niels Axelsson 2:231/78.11
|
||||||
|
; To be enhanced indefinitely ...
|
||||||
|
|
||||||
|
INTENSECOLORS YES
|
||||||
|
|
||||||
|
COLOR AREA BORDER Blue on Lgray
|
||||||
|
COLOR AREA HIGHLIGHT Lgreen on lgray
|
||||||
|
COLOR AREA SELECTOR White on Blue
|
||||||
|
COLOR AREA TITLE yellow on lgray
|
||||||
|
COLOR AREA WINDOW black on lgray
|
||||||
|
COLOR ASK BORDER lblue on LGrey
|
||||||
|
COLOR ASK HIGHLIGHT yellow on lgray
|
||||||
|
COLOR ASK NOSELECT black on LGrey
|
||||||
|
COLOR ASK SELECTOR White on Blue
|
||||||
|
COLOR ASK TITLE yellow on LGrey
|
||||||
|
COLOR ASK WINDOW Black on LGrey
|
||||||
|
COLOR BACKGROUND WINDOW LGrey on Black
|
||||||
|
COLOR BRAG BLOCK LBlue on Black
|
||||||
|
COLOR BRAG BORDER White on Black
|
||||||
|
COLOR BRAG HIGHLIGHT LRed on Black
|
||||||
|
COLOR BRAG TITLE White on Black
|
||||||
|
COLOR BRAG WINDOW Yellow on Black
|
||||||
|
COLOR HEADER BORDER blue on lgrey
|
||||||
|
COLOR HEADER EDIT white on Red
|
||||||
|
COLOR HEADER HIGHLIGHT yellow on lgray
|
||||||
|
COLOR HEADER INPUT lgray on black
|
||||||
|
COLOR HEADER TITLE white on lgrey
|
||||||
|
COLOR HEADER WINDOW LBlue on lgrey
|
||||||
|
COLOR HELP BORDER Blue on LGrey
|
||||||
|
COLOR HELP HIGHLIGHT yellow on LGrey
|
||||||
|
COLOR HELP SELECTOR White on Blue
|
||||||
|
COLOR HELP WINDOW Black on LGrey
|
||||||
|
COLOR INFO BORDER blue on lgrey
|
||||||
|
COLOR INFO TITLE yellow on lgrey
|
||||||
|
COLOR INFO WINDOW black on lgrey
|
||||||
|
COLOR MENU BORDER Blue on lgrey
|
||||||
|
COLOR MENU HIGHLIGHT yellow on lgrey
|
||||||
|
COLOR MENU NOSELECT black on lgrey
|
||||||
|
COLOR MENU SELECTOR white on Blue
|
||||||
|
COLOR MENU TITLE yellow on lgrey
|
||||||
|
COLOR MENU WINDOW black on lgrey
|
||||||
|
COLOR READER BLOCK black on brown
|
||||||
|
COLOR READER BORDER blue on blue
|
||||||
|
COLOR READER CURSOR White on DGrey
|
||||||
|
COLOR READER KLUDHIDD green on DGrey
|
||||||
|
COLOR READER QUOTE lgreen on DGrey
|
||||||
|
COLOR READER TEARORIG LRed on DGrey
|
||||||
|
COLOR READER WINDOW yellow on DGrey
|
||||||
|
COLOR SHADOW DGrey on Black
|
||||||
|
COLOR STATUS WINDOW White on Blue
|
67
cfgs/colorset/gedcol21.cfg
Normal file
67
cfgs/colorset/gedcol21.cfg
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration.
|
||||||
|
; Norton Commander Color Style.
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Gustav Brock.
|
||||||
|
|
||||||
|
COLOR AREA BORDER LCyan on Blue
|
||||||
|
COLOR AREA HIGHLIGHT Yellow on Blue
|
||||||
|
COLOR AREA SELECTOR Black on Cyan
|
||||||
|
COLOR AREA TITLE Yellow on Blue
|
||||||
|
COLOR AREA WINDOW LCyan on Blue
|
||||||
|
|
||||||
|
COLOR ASK BORDER Black on LGrey
|
||||||
|
COLOR ASK HIGHLIGHT Yellow on LGrey
|
||||||
|
COLOR ASK NOSELECT Black on Lgrey
|
||||||
|
COLOR ASK SELECTOR Black on Cyan
|
||||||
|
COLOR ASK TITLE Black on LGrey
|
||||||
|
COLOR ASK WINDOW Black on LGrey
|
||||||
|
|
||||||
|
COLOR BACKGROUND WINDOW Blue on LGrey
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Original Logotype by Odinn Sorensen
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
;COLOR BRAG BLOCK LBlue on Black
|
||||||
|
;COLOR BRAG HIGHLIGHT LRed on Black
|
||||||
|
;COLOR BRAG TITLE White on Black
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
COLOR BRAG BLOCK LCyan on Blue ; Logotype
|
||||||
|
COLOR BRAG BORDER LCyan on Blue ; Box
|
||||||
|
COLOR BRAG HIGHLIGHT LMagenta on Blue ; Logotype
|
||||||
|
COLOR BRAG TITLE Yellow on Blue ; Logotype
|
||||||
|
COLOR BRAG WINDOW Yellow on Blue ; Box
|
||||||
|
|
||||||
|
COLOR HEADER BORDER Black on Cyan
|
||||||
|
COLOR HEADER EDIT White on Black
|
||||||
|
COLOR HEADER HIGHLIGHT Yellow on Cyan
|
||||||
|
COLOR HEADER INPUT Blue on LGrey
|
||||||
|
COLOR HEADER TITLE White on Cyan
|
||||||
|
COLOR HEADER WINDOW Black on Cyan
|
||||||
|
|
||||||
|
COLOR HELP BORDER Black on Cyan
|
||||||
|
COLOR HELP HIGHLIGHT Yellow on Cyan
|
||||||
|
COLOR HELP SELECTOR White on Black
|
||||||
|
COLOR HELP WINDOW Black on Cyan
|
||||||
|
|
||||||
|
COLOR INFO BORDER White on Red
|
||||||
|
COLOR INFO TITLE White on Red
|
||||||
|
COLOR INFO WINDOW White on Red
|
||||||
|
|
||||||
|
COLOR MENU BORDER Black on LGrey
|
||||||
|
COLOR MENU HIGHLIGHT Yellow on LGrey
|
||||||
|
COLOR MENU NOSELECT Black on LGrey
|
||||||
|
COLOR MENU SELECTOR Black on Cyan
|
||||||
|
COLOR MENU TITLE Black on LGrey
|
||||||
|
COLOR MENU WINDOW Black on LGrey
|
||||||
|
|
||||||
|
COLOR READER BLOCK White on Black
|
||||||
|
COLOR READER BORDER LGrey on Blue
|
||||||
|
COLOR READER CURSOR LCyan on Blue
|
||||||
|
COLOR READER KLUDHIDD LGrey on Black
|
||||||
|
COLOR READER QUOTE White on Blue
|
||||||
|
COLOR READER TEARORIG Yellow on Blue
|
||||||
|
COLOR READER WINDOW LCyan on Blue
|
||||||
|
|
||||||
|
COLOR SHADOW DGrey on Black
|
||||||
|
COLOR STATUS WINDOW Black on Cyan
|
58
cfgs/colorset/gedcol22.cfg
Normal file
58
cfgs/colorset/gedcol22.cfg
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
;---------------------------GOLDED COLOR CONFIGURATION----------------------
|
||||||
|
; DESCRIPTION: New By Odinn Sorensen
|
||||||
|
; MADE WITH GEDCOLOR 1.00 BY MICHAEL REILER
|
||||||
|
;---------------------------------------------------------------------------
|
||||||
|
COLOR AREA WINDOW BLACK ON LGREY
|
||||||
|
COLOR AREA BORDER BLUE ON LGREY
|
||||||
|
COLOR AREA TITLE RED ON LGREY
|
||||||
|
COLOR AREA SELECTOR WHITE ON BLUE
|
||||||
|
COLOR AREA HIGHLIGHT LBLUE ON LGREY
|
||||||
|
COLOR AREA BTYPE 0
|
||||||
|
COLOR STATUS WINDOW WHITE ON BLUE
|
||||||
|
COLOR BACKGROUND WINDOW LBLUE ON LGREY
|
||||||
|
COLOR BRAG WINDOW WHITE ON BLUE
|
||||||
|
COLOR BRAG BORDER BLACK ON BLUE
|
||||||
|
COLOR BRAG TITLE YELLOW ON BLACK
|
||||||
|
COLOR BRAG HIGHLIGHT LRED ON BLACK
|
||||||
|
COLOR BRAG BLOCK LBLUE ON BLACK
|
||||||
|
COLOR BRAG BTYPE 0
|
||||||
|
COLOR HEADER EDIT LRED ON LGREY
|
||||||
|
COLOR HEADER WINDOW BLUE ON LGREY
|
||||||
|
COLOR HEADER BORDER RED ON LGREY
|
||||||
|
COLOR HEADER TITLE RED ON LGREY
|
||||||
|
COLOR HEADER INPUT WHITE ON BLUE
|
||||||
|
COLOR HEADER HIGHLIGHT LRED ON LGREY
|
||||||
|
COLOR HEADER BTYPE 0
|
||||||
|
COLOR READER WINDOW BLACK ON LGREY
|
||||||
|
COLOR READER BORDER DGREY ON CYAN
|
||||||
|
COLOR READER QUOTE RED ON LGREY
|
||||||
|
COLOR READER CURSOR LBLUE ON LGREY
|
||||||
|
COLOR READER KLUDHIDD DGREY ON LGREY
|
||||||
|
COLOR READER BTYPE 0
|
||||||
|
COLOR READER TEARORIG BLUE ON LGREY
|
||||||
|
COLOR READER BLOCK BLACK ON CYAN
|
||||||
|
COLOR ASK WINDOW WHITE ON BLUE
|
||||||
|
COLOR ASK BORDER BLACK ON BLUE
|
||||||
|
COLOR ASK TITLE WHITE ON BLUE
|
||||||
|
COLOR ASK SELECTOR BLACK ON LGREY
|
||||||
|
COLOR ASK HIGHLIGHT LCYAN ON BLUE
|
||||||
|
COLOR ASK BTYPE 0
|
||||||
|
COLOR ASK NOSELECT LGREY ON BLUE
|
||||||
|
COLOR MENU WINDOW BLACK ON LGREY
|
||||||
|
COLOR MENU BORDER BLUE ON LGREY
|
||||||
|
COLOR MENU TITLE WHITE ON RED
|
||||||
|
COLOR MENU SELECTOR WHITE ON BLUE
|
||||||
|
COLOR MENU HIGHLIGHT WHITE ON RED
|
||||||
|
COLOR MENU NOSELECT DGREY ON CYAN
|
||||||
|
COLOR HELP WINDOW WHITE ON GREEN
|
||||||
|
COLOR HELP BORDER YELLOW ON GREEN
|
||||||
|
COLOR HELP SELECTOR BLACK ON LGREY
|
||||||
|
COLOR HELP HIGHLIGHT YELLOW ON CYAN
|
||||||
|
COLOR HELP BTYPE 0
|
||||||
|
COLOR INFO WINDOW WHITE ON RED
|
||||||
|
COLOR INFO BORDER WHITE ON RED
|
||||||
|
COLOR INFO BTYPE 0
|
||||||
|
COLOR SHADOW DGREY ON BLACK
|
||||||
|
COLOR MENU BTYPE BLACK ON BLACK
|
||||||
|
COLOR INFO TITLE WHITE ON RED
|
||||||
|
;---------------------------THATS IT----------------------------------------
|
68
cfgs/colorset/gedcol23.cfg
Normal file
68
cfgs/colorset/gedcol23.cfg
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
;---------------------------GOLDED COLOR CONFIGURATION----------------------
|
||||||
|
; DESCRIPTION: OS/2 Friendly 2
|
||||||
|
; MADE WITH GEDCOLOR 1.00 BY MICHAEL REILER
|
||||||
|
;---------------------------------------------------------------------------
|
||||||
|
COLOR AREA WINDOW BLACK ON LGREY
|
||||||
|
COLOR AREA BORDER BLUE ON LGREY
|
||||||
|
COLOR AREA TITLE BLUE ON LGREY
|
||||||
|
COLOR AREA SELECTOR WHITE ON BLUE
|
||||||
|
COLOR AREA HIGHLIGHT RED ON LGREY
|
||||||
|
COLOR AREA BTYPE 0
|
||||||
|
COLOR STATUS WINDOW WHITE ON BLUE
|
||||||
|
COLOR BACKGROUND WINDOW BLACK ON LGREY
|
||||||
|
COLOR BACKGROUND BORDER LGREY ON LGREY
|
||||||
|
COLOR BRAG WINDOW WHITE ON BLUE
|
||||||
|
COLOR BRAG BORDER LBLUE ON BLUE
|
||||||
|
COLOR BRAG TITLE YELLOW ON BLUE
|
||||||
|
COLOR BRAG HIGHLIGHT WHITE ON BLUE
|
||||||
|
COLOR BRAG BLOCK LBLUE ON BLUE
|
||||||
|
COLOR BRAG BTYPE 0
|
||||||
|
COLOR HEADER EDIT RED ON LGREY
|
||||||
|
COLOR HEADER WINDOW BLUE ON LGREY
|
||||||
|
COLOR HEADER BORDER YELLOW ON LGREY
|
||||||
|
COLOR HEADER TITLE RED ON LGREY
|
||||||
|
COLOR HEADER INPUT WHITE ON BLUE
|
||||||
|
COLOR HEADER HIGHLIGHT RED ON LGREY
|
||||||
|
COLOR HEADER BTYPE 2
|
||||||
|
COLOR READER WINDOW BLACK ON LGREY
|
||||||
|
COLOR READER BORDER DGREY ON LGREY
|
||||||
|
COLOR READER QUOTE BLUE ON LGREY
|
||||||
|
COLOR READER KLUDHIDD DGREY ON LGREY
|
||||||
|
COLOR READER BTYPE 0
|
||||||
|
COLOR READER TEARORIG BLUE ON LGREY
|
||||||
|
COLOR READER BLOCK BLACK ON CYAN
|
||||||
|
COLOR READER HIGHLIGHT BLINKING WHITE ON RED
|
||||||
|
COLOR READER CURSOR RED ON LGREY
|
||||||
|
COLOR ASK WINDOW LGREY ON BLUE
|
||||||
|
COLOR ASK BORDER LBLUE ON BLUE
|
||||||
|
COLOR ASK TITLE YELLOW ON BLUE
|
||||||
|
COLOR ASK SELECTOR WHITE ON RED
|
||||||
|
COLOR ASK HIGHLIGHT YELLOW ON BLUE
|
||||||
|
COLOR ASK BTYPE 0
|
||||||
|
COLOR ASK NOSELECT LGREY ON BLUE
|
||||||
|
COLOR MENU WINDOW BLACK ON LGREY
|
||||||
|
COLOR MENU BORDER BLUE ON LGREY
|
||||||
|
COLOR MENU TITLE RED ON LGREY
|
||||||
|
COLOR MENU SELECTOR WHITE ON BLUE
|
||||||
|
COLOR MENU HIGHLIGHT RED ON LGREY
|
||||||
|
COLOR MENU NOSELECT DGREY ON LGREY
|
||||||
|
COLOR HELP WINDOW BLACK ON LGREY
|
||||||
|
COLOR HELP BORDER BLUE ON LGREY
|
||||||
|
COLOR HELP SELECTOR WHITE ON RED
|
||||||
|
COLOR HELP HIGHLIGHT RED ON LGREY
|
||||||
|
COLOR HELP BTYPE 0
|
||||||
|
COLOR INFO WINDOW WHITE ON BLUE
|
||||||
|
COLOR INFO BORDER LBLUE ON BLUE
|
||||||
|
COLOR INFO BTYPE 0
|
||||||
|
COLOR SHADOW DGREY ON BLACK
|
||||||
|
COLOR MENU BTYPE BLACK ON BLACK
|
||||||
|
COLOR INFO TITLE YELLOW ON BLUE
|
||||||
|
|
||||||
|
COLOR HEADER FROM BLUE ON LGREY
|
||||||
|
COLOR HEADER TO BLUE ON LGREY
|
||||||
|
COLOR HEADER SUBJECT BLUE ON LGREY
|
||||||
|
COLOR READER TAGLINE BLUE ON LGREY
|
||||||
|
COLOR READER TEARLINE BLUE ON LGREY
|
||||||
|
COLOR READER ORIGIN BLUE ON LGREY
|
||||||
|
|
||||||
|
;---------------------------THATS IT----------------------------------------
|
50
cfgs/colorset/gedmon00.cfg
Normal file
50
cfgs/colorset/gedmon00.cfg
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration. (Monocrome)
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Odinn Sorensen.
|
||||||
|
|
||||||
|
COLOR AREA BORDER Reverse
|
||||||
|
COLOR AREA HIGHLIGHT Highlight
|
||||||
|
COLOR AREA SELECTOR Normal
|
||||||
|
COLOR AREA TITLE Reverse
|
||||||
|
COLOR AREA WINDOW Reverse
|
||||||
|
COLOR ASK BORDER Normal
|
||||||
|
COLOR ASK HIGHLIGHT Reverse
|
||||||
|
COLOR ASK NOSELECT Normal
|
||||||
|
COLOR ASK SELECTOR Reverse
|
||||||
|
COLOR ASK TITLE Highlight
|
||||||
|
COLOR ASK WINDOW Normal
|
||||||
|
COLOR BACKGROUND WINDOW Highlight
|
||||||
|
COLOR BRAG BLOCK Normal
|
||||||
|
COLOR BRAG BORDER Normal
|
||||||
|
COLOR BRAG HIGHLIGHT Highlight
|
||||||
|
COLOR BRAG TITLE Highlight
|
||||||
|
COLOR BRAG WINDOW Highlight
|
||||||
|
COLOR HEADER BORDER Reverse
|
||||||
|
COLOR HEADER EDIT Reverse
|
||||||
|
COLOR HEADER HIGHLIGHT Reverse
|
||||||
|
COLOR HEADER INPUT Reverse
|
||||||
|
COLOR HEADER TITLE Reverse
|
||||||
|
COLOR HEADER WINDOW Reverse
|
||||||
|
COLOR HELP BORDER Highlight
|
||||||
|
COLOR HELP HIGHLIGHT Highlight
|
||||||
|
COLOR HELP SELECTOR Reverse
|
||||||
|
COLOR HELP WINDOW Normal
|
||||||
|
COLOR INFO BORDER Highlight
|
||||||
|
COLOR INFO TITLE Highlight
|
||||||
|
COLOR INFO WINDOW Highlight
|
||||||
|
COLOR MENU BORDER Reverse
|
||||||
|
COLOR MENU HIGHLIGHT Reverse
|
||||||
|
COLOR MENU NOSELECT Reverse
|
||||||
|
COLOR MENU SELECTOR Highlight
|
||||||
|
COLOR MENU TITLE Highlight
|
||||||
|
COLOR MENU WINDOW Reverse
|
||||||
|
COLOR READER BLOCK Reverse
|
||||||
|
COLOR READER BORDER Normal
|
||||||
|
COLOR READER CURSOR Normal
|
||||||
|
COLOR READER KLUDHIDD Highlight
|
||||||
|
COLOR READER QUOTE Highlight
|
||||||
|
COLOR READER TEARORIG Normal
|
||||||
|
COLOR READER WINDOW Normal
|
||||||
|
COLOR SHADOW Normal
|
||||||
|
COLOR STATUS WINDOW Reverse
|
50
cfgs/colorset/gedmon01.cfg
Normal file
50
cfgs/colorset/gedmon01.cfg
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration. (Monocrome)
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Stig Jacobsen.
|
||||||
|
|
||||||
|
COLOR AREA BORDER Normal
|
||||||
|
COLOR AREA HIGHLIGHT Highlight
|
||||||
|
COLOR AREA SELECTOR Reverse
|
||||||
|
COLOR AREA TITLE Highlight
|
||||||
|
COLOR AREA WINDOW Normal
|
||||||
|
COLOR ASK BORDER Reverse
|
||||||
|
COLOR ASK HIGHLIGHT Highlight
|
||||||
|
COLOR ASK NOSELECT Normal
|
||||||
|
COLOR ASK SELECTOR Highlight
|
||||||
|
COLOR ASK TITLE Reverse
|
||||||
|
COLOR ASK WINDOW Reverse
|
||||||
|
COLOR BACKGROUND WINDOW Highlight
|
||||||
|
COLOR BRAG BLOCK Normal
|
||||||
|
COLOR BRAG BORDER Normal
|
||||||
|
COLOR BRAG HIGHLIGHT Highlight
|
||||||
|
COLOR BRAG TITLE Highlight
|
||||||
|
COLOR BRAG WINDOW Highlight
|
||||||
|
COLOR HEADER BORDER Normal
|
||||||
|
COLOR HEADER EDIT Reverse
|
||||||
|
COLOR HEADER HIGHLIGHT Highlight
|
||||||
|
COLOR HEADER INPUT Highlight
|
||||||
|
COLOR HEADER TITLE Highlight
|
||||||
|
COLOR HEADER WINDOW Normal
|
||||||
|
COLOR HELP BORDER Reverse
|
||||||
|
COLOR HELP HIGHLIGHT Reverse
|
||||||
|
COLOR HELP SELECTOR Highlight
|
||||||
|
COLOR HELP WINDOW Reverse
|
||||||
|
COLOR INFO BORDER Normal
|
||||||
|
COLOR INFO TITLE Normal
|
||||||
|
COLOR INFO WINDOW Highlight
|
||||||
|
COLOR MENU BORDER Normal
|
||||||
|
COLOR MENU HIGHLIGHT Highlight
|
||||||
|
COLOR MENU NOSELECT Normal
|
||||||
|
COLOR MENU SELECTOR Reverse
|
||||||
|
COLOR MENU TITLE Reverse
|
||||||
|
COLOR MENU WINDOW Normal
|
||||||
|
COLOR READER BLOCK Normal
|
||||||
|
COLOR READER BORDER Normal
|
||||||
|
COLOR READER CURSOR Highlight
|
||||||
|
COLOR READER KLUDHIDD Highlight
|
||||||
|
COLOR READER QUOTE Highlight
|
||||||
|
COLOR READER TEARORIG Normal
|
||||||
|
COLOR READER WINDOW Normal
|
||||||
|
COLOR SHADOW Normal
|
||||||
|
COLOR STATUS WINDOW Reverse
|
50
cfgs/colorset/gedmon02.cfg
Normal file
50
cfgs/colorset/gedmon02.cfg
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
|
||||||
|
; GoldED Example Color Configuration. (Monocrome)
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; By Erik Wachtmeester.
|
||||||
|
|
||||||
|
COLOR AREA BORDER Highlight
|
||||||
|
COLOR AREA HIGHLIGHT Highlight
|
||||||
|
COLOR AREA SELECTOR Reverse
|
||||||
|
COLOR AREA TITLE Highlight
|
||||||
|
COLOR AREA WINDOW Normal
|
||||||
|
COLOR ASK BORDER Reverse
|
||||||
|
COLOR ASK HIGHLIGHT Reverse
|
||||||
|
COLOR ASK NOSELECT Normal
|
||||||
|
COLOR ASK SELECTOR Highlight
|
||||||
|
COLOR ASK TITLE Reverse
|
||||||
|
COLOR ASK WINDOW Reverse
|
||||||
|
COLOR BACKGROUND WINDOW Normal
|
||||||
|
COLOR BRAG BLOCK Normal
|
||||||
|
COLOR BRAG BORDER Normal
|
||||||
|
COLOR BRAG HIGHLIGHT Highlight
|
||||||
|
COLOR BRAG TITLE Highlight
|
||||||
|
COLOR BRAG WINDOW Highlight
|
||||||
|
COLOR HEADER BORDER Highlight
|
||||||
|
COLOR HEADER EDIT Reverse
|
||||||
|
COLOR HEADER HIGHLIGHT Highlight
|
||||||
|
COLOR HEADER INPUT Reverse
|
||||||
|
COLOR HEADER TITLE Highlight
|
||||||
|
COLOR HEADER WINDOW Normal
|
||||||
|
COLOR HELP BORDER Highlight
|
||||||
|
COLOR HELP HIGHLIGHT Highlight
|
||||||
|
COLOR HELP SELECTOR Reverse
|
||||||
|
COLOR HELP WINDOW Normal
|
||||||
|
COLOR INFO BORDER Reverse
|
||||||
|
COLOR INFO TITLE Reverse
|
||||||
|
COLOR INFO WINDOW Reverse
|
||||||
|
COLOR MENU BORDER Reverse
|
||||||
|
COLOR MENU HIGHLIGHT Reverse
|
||||||
|
COLOR MENU NOSELECT Normal
|
||||||
|
COLOR MENU SELECTOR Highlight
|
||||||
|
COLOR MENU TITLE Reverse
|
||||||
|
COLOR MENU WINDOW Reverse
|
||||||
|
COLOR READER BLOCK Reverse
|
||||||
|
COLOR READER BORDER Normal
|
||||||
|
COLOR READER CURSOR Normal
|
||||||
|
COLOR READER KLUDHIDD Highlight
|
||||||
|
COLOR READER QUOTE Highlight
|
||||||
|
COLOR READER TEARORIG Normal
|
||||||
|
COLOR READER WINDOW Normal
|
||||||
|
COLOR SHADOW Normal
|
||||||
|
COLOR STATUS WINDOW Reverse
|
1811
cfgs/config/advanced.cfg
Normal file
1811
cfgs/config/advanced.cfg
Normal file
File diff suppressed because it is too large
Load Diff
59
cfgs/config/gedlngdk.cfg
Normal file
59
cfgs/config/gedlngdk.cfg
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
----------------------------------------------------------------------
|
||||||
|
-- GoldED 2.50 * Partial Language File, Danish Version.
|
||||||
|
|
||||||
|
WT_MSG "Brev"
|
||||||
|
WT_MSGREAL "Brev#"
|
||||||
|
|
||||||
|
HD_From " Fra : "
|
||||||
|
HD_To " Til : "
|
||||||
|
HD_Subj " Emne : "
|
||||||
|
HD_File " Fil : "
|
||||||
|
|
||||||
|
MS_DateTimeFmt "%a %d %b %y %H:%M"
|
||||||
|
MS_DateFmt "%A %d. %B %Y"
|
||||||
|
MS_TimeFmt "%H:%M"
|
||||||
|
|
||||||
|
MS_SWSun "S›n"
|
||||||
|
MS_SWMon "Man"
|
||||||
|
MS_SWTue "Tir"
|
||||||
|
MS_SWWed "Ons"
|
||||||
|
MS_SWThu "Tor"
|
||||||
|
MS_SWFri "Fre"
|
||||||
|
MS_SWSat "L›r"
|
||||||
|
|
||||||
|
MS_LWSunday "S›ndag"
|
||||||
|
MS_LWMonday "Mandag"
|
||||||
|
MS_LWTuesday "Tirsdag"
|
||||||
|
MS_LWWednesday "Onsdag"
|
||||||
|
MS_LWThursday "Torsdag"
|
||||||
|
MS_LWFriday "Fredag"
|
||||||
|
MS_LWSaturday "L›rdag"
|
||||||
|
|
||||||
|
MS_SMJan "Jan"
|
||||||
|
MS_SMFeb "Feb"
|
||||||
|
MS_SMMar "Mar"
|
||||||
|
MS_SMApr "Apr"
|
||||||
|
MS_SMMay "Maj"
|
||||||
|
MS_SMJun "Jun"
|
||||||
|
MS_SMJul "Jul"
|
||||||
|
MS_SMAug "Aug"
|
||||||
|
MS_SMSep "Sep"
|
||||||
|
MS_SMOct "Okt"
|
||||||
|
MS_SMNov "Nov"
|
||||||
|
MS_SMDec "Dec"
|
||||||
|
|
||||||
|
MS_LMJanuary "Januar"
|
||||||
|
MS_LMFebruary "Februar"
|
||||||
|
MS_LMMarch "Marts"
|
||||||
|
MS_LMApril "April"
|
||||||
|
MS_LMMay "Maj"
|
||||||
|
MS_LMJune "Juni"
|
||||||
|
MS_LMJuly "Juli"
|
||||||
|
MS_LMAugust "August"
|
||||||
|
MS_LMSeptember "September"
|
||||||
|
MS_LMOctober "Oktober"
|
||||||
|
MS_LMNovember "November"
|
||||||
|
MS_LMDecember "December"
|
||||||
|
|
||||||
|
----------------------------------------------------------------------
|
||||||
|
|
63
cfgs/config/gedlngit.cfg
Normal file
63
cfgs/config/gedlngit.cfg
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
----------------------------------------------------------------------
|
||||||
|
-- GoldED 3.00 * Partial Language File, Italian Version.
|
||||||
|
|
||||||
|
WT_MSG "Msg"
|
||||||
|
WT_MSGREAL "Msg#"
|
||||||
|
|
||||||
|
HD_FROM " From : "
|
||||||
|
HD_TO " To : "
|
||||||
|
HD_SUBJ " Subj : "
|
||||||
|
HD_FILE " File : "
|
||||||
|
|
||||||
|
MS_DATETIMEFMT "%d %b %y %H:%M:%S"
|
||||||
|
MS_DATEFMT "%d %b %y"
|
||||||
|
MS_TIMEFMT "%H:%M"
|
||||||
|
|
||||||
|
// Giorni della settimana, forma breve
|
||||||
|
MS_SWSUN "Dom"
|
||||||
|
MS_SWMON "Lun"
|
||||||
|
MS_SWTUE "Mar"
|
||||||
|
MS_SWWED "Mer"
|
||||||
|
MS_SWTHU "Gio"
|
||||||
|
MS_SWFRI "Ven"
|
||||||
|
MS_SWSAT "Sab"
|
||||||
|
|
||||||
|
// Giorni della settimana, forma lunga
|
||||||
|
MS_LWSUNDAY "Domenica"
|
||||||
|
MS_LWMONDAY "Lunedi"
|
||||||
|
MS_LWTUESDAY "Martedi"
|
||||||
|
MS_LWWEDNESDAY "Mercoledi"
|
||||||
|
MS_LWTHURSDAY "Giovedi"
|
||||||
|
MS_LWFRIDAY "Venerdi"
|
||||||
|
MS_LWSATURDAY "Sabato"
|
||||||
|
|
||||||
|
// Mesi, forma breve
|
||||||
|
MS_SMJAN "Gen"
|
||||||
|
MS_SMFEB "Feb"
|
||||||
|
MS_SMMAR "Mar"
|
||||||
|
MS_SMAPR "Apr"
|
||||||
|
MS_SMMAY "Mag"
|
||||||
|
MS_SMJUN "Giu"
|
||||||
|
MS_SMJUL "Lug"
|
||||||
|
MS_SMAUG "Ago"
|
||||||
|
MS_SMSEP "Set"
|
||||||
|
MS_SMOCT "Ott"
|
||||||
|
MS_SMNOV "Nov"
|
||||||
|
MS_SMDEC "Dic"
|
||||||
|
|
||||||
|
// Mesi, forma lunga
|
||||||
|
MS_LMJANUARY "Gennaio"
|
||||||
|
MS_LMFEBRUARY "Febbraio"
|
||||||
|
MS_LMMARCH "Marzo"
|
||||||
|
MS_LMAPRIL "Aprile"
|
||||||
|
MS_LMMAY "Maggio"
|
||||||
|
MS_LMJUNE "Giugno"
|
||||||
|
MS_LMJULY "Luglio"
|
||||||
|
MS_LMAUGUST "Agosto"
|
||||||
|
MS_LMSEPTEMBER "Settembre"
|
||||||
|
MS_LMOCTOBER "Ottobre"
|
||||||
|
MS_LMNOVEMBER "Novembre"
|
||||||
|
MS_LMDECEMBER "Dicembre"
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------------------------------------------------
|
63
cfgs/config/gedlngnl.cfg
Normal file
63
cfgs/config/gedlngnl.cfg
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
----------------------------------------------------------------------
|
||||||
|
-- GoldED 3.00 * Partial Language File, Dutch Version.
|
||||||
|
|
||||||
|
WT_MSG "Bericht"
|
||||||
|
WT_MSGREAL "Bericht#"
|
||||||
|
|
||||||
|
HD_FROM " Van : "
|
||||||
|
HD_TO " Aan : "
|
||||||
|
HD_SUBJ " Ondw : "
|
||||||
|
HD_FILE " Bstd : "
|
||||||
|
|
||||||
|
MS_DATETIMEFMT "%d %b %y %H:%M:%S"
|
||||||
|
MS_DATEFMT "%d %b %y"
|
||||||
|
MS_TIMEFMT "%H:%M"
|
||||||
|
|
||||||
|
// Weekdays, short
|
||||||
|
MS_SWSUN "Zon"
|
||||||
|
MS_SWMON "Maa"
|
||||||
|
MS_SWTUE "Din"
|
||||||
|
MS_SWWED "Woe"
|
||||||
|
MS_SWTHU "Don"
|
||||||
|
MS_SWFRI "Vrij"
|
||||||
|
MS_SWSAT "Zat"
|
||||||
|
|
||||||
|
// Weekdays, long
|
||||||
|
MS_LWSUNDAY "Zondag"
|
||||||
|
MS_LWMONDAY "Maandag"
|
||||||
|
MS_LWTUESDAY "Dinsdag"
|
||||||
|
MS_LWWEDNESDAY "Woensdag"
|
||||||
|
MS_LWTHURSDAY "Donderdag"
|
||||||
|
MS_LWFRIDAY "Vrijdag"
|
||||||
|
MS_LWSATURDAY "Zaterdag"
|
||||||
|
|
||||||
|
// Months, short
|
||||||
|
MS_SMJAN "Jan"
|
||||||
|
MS_SMFEB "Feb"
|
||||||
|
MS_SMMAR "Maa"
|
||||||
|
MS_SMAPR "Apr"
|
||||||
|
MS_SMMAY "Mei"
|
||||||
|
MS_SMJUN "Jun"
|
||||||
|
MS_SMJUL "Jul"
|
||||||
|
MS_SMAUG "Aug"
|
||||||
|
MS_SMSEP "Sep"
|
||||||
|
MS_SMOCT "Okt"
|
||||||
|
MS_SMNOV "Nov"
|
||||||
|
MS_SMDEC "Dec"
|
||||||
|
|
||||||
|
// Months, long
|
||||||
|
MS_LMJANUARY "Januari"
|
||||||
|
MS_LMFEBRUARY "Februari"
|
||||||
|
MS_LMMARCH "Maart"
|
||||||
|
MS_LMAPRIL "April"
|
||||||
|
MS_LMMAY "Mei"
|
||||||
|
MS_LMJUNE "Juni"
|
||||||
|
MS_LMJULY "Juli"
|
||||||
|
MS_LMAUGUST "Augustus"
|
||||||
|
MS_LMSEPTEMBER "September"
|
||||||
|
MS_LMOCTOBER "Oktober"
|
||||||
|
MS_LMNOVEMBER "November"
|
||||||
|
MS_LMDECEMBER "December"
|
||||||
|
|
||||||
|
----------------------------------------------------------------------
|
||||||
|
|
59
cfgs/config/gedlngus.cfg
Normal file
59
cfgs/config/gedlngus.cfg
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
----------------------------------------------------------------------
|
||||||
|
-- GoldED 2.50 * Partial Language File, English Version.
|
||||||
|
|
||||||
|
WT_MSG "Msg"
|
||||||
|
WT_MSGREAL "Msg#"
|
||||||
|
|
||||||
|
HD_From " From : "
|
||||||
|
HD_To " To : "
|
||||||
|
HD_Subj " Subj : "
|
||||||
|
HD_File " File : "
|
||||||
|
|
||||||
|
MS_DateTimeFmt "%a %d %b %y %H:%M"
|
||||||
|
MS_DateFmt "%A %B %d %Y"
|
||||||
|
MS_TimeFmt "%H:%M"
|
||||||
|
|
||||||
|
MS_SWSun "Sun"
|
||||||
|
MS_SWMon "Mon"
|
||||||
|
MS_SWTue "Tue"
|
||||||
|
MS_SWWed "Wed"
|
||||||
|
MS_SWThu "Thu"
|
||||||
|
MS_SWFri "Fri"
|
||||||
|
MS_SWSat "Sat"
|
||||||
|
|
||||||
|
MS_LWSunday "Sunday"
|
||||||
|
MS_LWMonday "Monday"
|
||||||
|
MS_LWTuesday "Tuesday"
|
||||||
|
MS_LWWednesday "Wednesday"
|
||||||
|
MS_LWThursday "Thursday"
|
||||||
|
MS_LWFriday "Friday"
|
||||||
|
MS_LWSaturday "Saturday"
|
||||||
|
|
||||||
|
MS_SMJan "Jan"
|
||||||
|
MS_SMFeb "Feb"
|
||||||
|
MS_SMMar "Mar"
|
||||||
|
MS_SMApr "Apr"
|
||||||
|
MS_SMMay "May"
|
||||||
|
MS_SMJun "Jun"
|
||||||
|
MS_SMJul "Jul"
|
||||||
|
MS_SMAug "Aug"
|
||||||
|
MS_SMSep "Sep"
|
||||||
|
MS_SMOct "Oct"
|
||||||
|
MS_SMNov "Nov"
|
||||||
|
MS_SMDec "Dec"
|
||||||
|
|
||||||
|
MS_LMJanuary "January"
|
||||||
|
MS_LMFebruary "February"
|
||||||
|
MS_LMMarch "March"
|
||||||
|
MS_LMApril "April"
|
||||||
|
MS_LMMay "May"
|
||||||
|
MS_LMJune "June"
|
||||||
|
MS_LMJuly "July"
|
||||||
|
MS_LMAugust "August"
|
||||||
|
MS_LMSeptember "September"
|
||||||
|
MS_LMOctober "October"
|
||||||
|
MS_LMNovember "November"
|
||||||
|
MS_LMDecember "December"
|
||||||
|
|
||||||
|
----------------------------------------------------------------------
|
||||||
|
|
714
cfgs/config/goldhelp.cfg
Normal file
714
cfgs/config/goldhelp.cfg
Normal file
@ -0,0 +1,714 @@
|
|||||||
|
--------------------------------------------------------------------------------
|
||||||
|
GoldED Help System Definition File
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
|
||||||
|
³ 1234567890123456789012345678901234567890123456789012345678901234567890123456 ³
|
||||||
|
³ 2 ³
|
||||||
|
³ 3 ³
|
||||||
|
³ 4 ³
|
||||||
|
³ 5 ³
|
||||||
|
³ 6 ³
|
||||||
|
³ 7 ³
|
||||||
|
³ 8 ³
|
||||||
|
³ 9 ³
|
||||||
|
³ 10 ³
|
||||||
|
³ 11 This is a model of the help screen as it will look in GoldED. ³
|
||||||
|
³ 12 ³
|
||||||
|
³ 13 ³
|
||||||
|
³ 14 ³
|
||||||
|
³ 15 ³
|
||||||
|
³ 16 ³
|
||||||
|
³ 17 ³
|
||||||
|
³ 18 ³
|
||||||
|
³ 19 ³
|
||||||
|
³ 20 ³
|
||||||
|
³ 21 ³
|
||||||
|
³ 22 - This line cannot be used. If used, the window will scroll one line. ³
|
||||||
|
ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
|
||||||
|
|
||||||
|
|
||||||
|
Here is a small "ruler" for the actual definitions below:
|
||||||
|
|
||||||
|
³123456789012345678901234567890123456789012345678901234567890123456789012345678³
|
||||||
|
ÃÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄ´
|
||||||
|
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 1000,General
|
||||||
|
Help Menu.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 1001,Drop Message
|
||||||
|
|
||||||
|
You are about to loose the message you have just written or changed.
|
||||||
|
|
||||||
|
Are you quite sure you want to do that?
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 1002,Quit GoldED
|
||||||
|
|
||||||
|
You can now exit GoldED or stay in.
|
||||||
|
|
||||||
|
A quicker way of exiting is by using <Ctrl-Q>, which exits
|
||||||
|
immediately.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 1003,File Exists
|
||||||
|
|
||||||
|
The file you want to export to already exists. You can append to the end of
|
||||||
|
the existing file or overwrite it.
|
||||||
|
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 1004,Change Attributes
|
||||||
|
|
||||||
|
Here you can change the attributes of the message.
|
||||||
|
|
||||||
|
NOTE: Some attributes apply only to certain message bases or area types
|
||||||
|
(NET, ECHO or LOCAL areas).
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 1005,Change Aka
|
||||||
|
|
||||||
|
Here you can change the default AKA (Also Known As) address for the current
|
||||||
|
area.
|
||||||
|
|
||||||
|
See also: ^Change Origin^, ^Change Template^, ^Change Username^
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 1006,Change Origin
|
||||||
|
|
||||||
|
Here you can change the origin for the current area or message.
|
||||||
|
|
||||||
|
See also: ^Change Aka^, ^Change Template^, ^Change Username^
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 1007,Change Template
|
||||||
|
|
||||||
|
Here you can change the template for the current area or message.
|
||||||
|
|
||||||
|
See also: ^Change Aka^, ^Change Origin^, ^Change Username^
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 1008,Change Username
|
||||||
|
|
||||||
|
Here you can change the current username.
|
||||||
|
|
||||||
|
See also: ^Change Aka^, ^Change Origin^, ^Change Template^
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 2000,Area Keys
|
||||||
|
|
||||||
|
Home Move selection bar to first area
|
||||||
|
End Move selection bar to last area
|
||||||
|
Right Move selection bar to next area
|
||||||
|
Left Move selection bar to previous area
|
||||||
|
Alt-J Move selection bar to next marked area
|
||||||
|
|
||||||
|
Enter Enter the reader for the selected area
|
||||||
|
|
||||||
|
Alt-T, Ins Toggle mark on selected area. See also ^Area Marking^.
|
||||||
|
Alt-S Scan areas - all or marked. See also ^Scan areas^.
|
||||||
|
Alt-A Abort the area selection
|
||||||
|
Alt-B Toggle sequential area numbering or board numbers
|
||||||
|
Alt-O Shell to DOS
|
||||||
|
Alt-X Exit GoldED, prompt for final decision
|
||||||
|
Ctrl-Q Exit immediately, no questions asked
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 2001,Area Marking
|
||||||
|
|
||||||
|
In the area list, a small arrow by the area number indicates that the area
|
||||||
|
is marked. Areas are marked automatically, if the lastread pointer is below
|
||||||
|
the highest message.
|
||||||
|
|
||||||
|
If you have unscanned areas, you can mark areas for rescan.
|
||||||
|
|
||||||
|
You can toggle an area mark by pressing Insert, and go to the scanning menu
|
||||||
|
with Alt-S.
|
||||||
|
|
||||||
|
You can jump from mark to mark with Alt-J or use Ctrl-Left,Right to Jump
|
||||||
|
back and forth.
|
||||||
|
|
||||||
|
See also: ^Area Selection^, ^Scan Areas^ or ^Area Keys^
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 2002,Scan Areas
|
||||||
|
|
||||||
|
You can scan all areas, marked areas or current area.
|
||||||
|
|
||||||
|
See also: ^Area Selection^, ^Area Marking^ or ^Area Keys^
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 2003,Area Selection
|
||||||
|
|
||||||
|
Select a new area to read or a destination area for moved replies or
|
||||||
|
copy/move/forward.
|
||||||
|
|
||||||
|
You can select the area by typing a part of the echo name, which will cause
|
||||||
|
the selection bar to move automatically to the closest match to the name, or
|
||||||
|
you can use the cursor and page keys to browse around.
|
||||||
|
|
||||||
|
The area is selected by pressing Enter.
|
||||||
|
|
||||||
|
See also: ^Area Keys^, ^Area Marking^, ^Scan Areas^ or ^Reader Keys^
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 2004,Heat Areas
|
||||||
|
|
||||||
|
This function sets the "Highwater mark" (1.MSG) in *.MSG areas to point to
|
||||||
|
the *last* message in the area. The effect is that no msgs will be scanned
|
||||||
|
out from the area.
|
||||||
|
|
||||||
|
You can "heat" all areas, marked areas or the current area.
|
||||||
|
|
||||||
|
See also: ^Area Selection^, ^Area Marking^ or ^Area Keys^
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 2005,Zap Areas
|
||||||
|
|
||||||
|
This function sets the "Highwater mark" (1.MSG) in *.MSG areas to point to
|
||||||
|
the *first* message in the area. The effect is that all msgs in the area
|
||||||
|
will be scanned out again.
|
||||||
|
|
||||||
|
You can "zap" all areas, marked areas or current area.
|
||||||
|
|
||||||
|
See also: ^Area Selection^, ^Area Marking^ or ^Area Keys^
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 3000,Reader Keys
|
||||||
|
|
||||||
|
Esc, Alt-A Enter the area selection screen
|
||||||
|
Ins, Alt-E Enter a new message
|
||||||
|
Del, Alt-D Delete current/marked message(s), ask first
|
||||||
|
Right Next message
|
||||||
|
Left Previous message
|
||||||
|
Enter Page down or go to next message
|
||||||
|
End Display last part of current message
|
||||||
|
Home Display first part of current message
|
||||||
|
Down Scroll message display
|
||||||
|
Up Scroll message display
|
||||||
|
PgDn Display next page of message
|
||||||
|
PgUp Display previous page of message
|
||||||
|
Tab Toggle a BookMark on the current message
|
||||||
|
Sh-Tab, BckSp Go to the BookMarked message
|
||||||
|
Ctrl-Left, - Previous message in the replylink
|
||||||
|
Ctrl-Home, < First message in the area
|
||||||
|
Ctrl-End, > Last message in the area
|
||||||
|
Ctrl-G, num Go to a specific message number
|
||||||
|
Ctrl-N Go directly to the next area
|
||||||
|
Ctrl-P Go directly to the previous area
|
||||||
|
*P
|
||||||
|
|
||||||
|
Ctrl-Right, + Go to the next message in the replylink
|
||||||
|
Ctrl-F Request files from the current msg
|
||||||
|
Alt-F, Sh-F6 Find string(s) in message header and text
|
||||||
|
Z, Alt-Z, F6 Find string(s) in message header
|
||||||
|
F10 Lookup current FROM node
|
||||||
|
Shift-F10 Lookup current TO node
|
||||||
|
Ctrl-A Change AKA for the current area
|
||||||
|
Ctrl-S Change the attributes of the current message
|
||||||
|
Alt-C, Sh-F2 Change message
|
||||||
|
Ctrl-O Change origin for the current area
|
||||||
|
Ctrl-T Change template
|
||||||
|
Ctrl-I Change tagline
|
||||||
|
Ctrl-U Change username
|
||||||
|
Q, Alt-Q, F4 Quote-Reply to message. (Reply to FROM name)
|
||||||
|
G, Alt-G Comment-Reply to message. (Reply to TO name)
|
||||||
|
R, Alt-R, F3 Reply to message, without quoting
|
||||||
|
N, Alt-N, F5 Quote-Reply in another area
|
||||||
|
B, Alt-B Comment-Reply in another area
|
||||||
|
L, Alt-L, F9 Enter the message lister.
|
||||||
|
Alt-M, Sh-F8 Enter the Copy/Move/Forward function menu
|
||||||
|
*P
|
||||||
|
|
||||||
|
Alt-S, Alt-F9 Enter the marking menu
|
||||||
|
W, Alt-W, F7 Write/export message(s) to file or printer
|
||||||
|
Alt-O, Ct-F10 Shell to DOS
|
||||||
|
Ctrl-R, Sh-F4 Renumber Fido/Opus *.MSG files
|
||||||
|
Ctrl-L Generate FIDOUSER.LST of all users in area
|
||||||
|
X, Alt-X Exit GoldED, prompt for final decision
|
||||||
|
Ctrl-Q Exit GoldED immediately, no questions asked
|
||||||
|
Alt-I,Ctrl-F9 Toggle hexdump mode. For test/debugging
|
||||||
|
Alt-V,Ctrl-F5 Toggle display of Hidden and Kludge lines
|
||||||
|
Alt-H,Ctrl-F7 Toggle display of Hidden lines
|
||||||
|
Alt-K,Ctrl-F6 Toggle display of Kludge lines
|
||||||
|
Space Toggle a message mark on the current message
|
||||||
|
Alt-J,Alt-F10 Toggle "Read Marked" mode
|
||||||
|
Alt-P,Ctrl-F8 Toggle the "PageBar" feature
|
||||||
|
Alt-U,Ctrl-F3 Toggle ROT13 crypting for the current message
|
||||||
|
Alt-Y,Ctrl-F4 Toggle between seq. or real message numbers
|
||||||
|
T, Alt-T Toggle Twit display - Show/Blank/Skip/Ignore
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 3001,Change Message
|
||||||
|
|
||||||
|
The message you are about to change, is not written by you, or at least not
|
||||||
|
with the name you have given in the GoldED configuration file.
|
||||||
|
|
||||||
|
If you decide to change it anyway, the lines defined in the template as
|
||||||
|
"@changed" will be inserted at the top of the message.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 3002,Delete Message
|
||||||
|
|
||||||
|
Are you quite sure you want to delete this/these message(s)?
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 3003,Marked Messages
|
||||||
|
|
||||||
|
One or more messages are marked.
|
||||||
|
|
||||||
|
You can either perform the function on only the current message or all the
|
||||||
|
marked messages.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 3004,Go To Next Area
|
||||||
|
|
||||||
|
You have reached the last (or first) message in this area.
|
||||||
|
|
||||||
|
You can now proceed to the next area or stay in this one. By pressing
|
||||||
|
<Right> (or <Left>), you also go to the next area.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 3005,Copy/Move/Forward
|
||||||
|
|
||||||
|
Copy Copy message(s) to another area
|
||||||
|
Move Move message(s) to another area
|
||||||
|
Forward Forward this message.
|
||||||
|
|
||||||
|
Copy and Move never changes the content of the affected message(s). Move
|
||||||
|
deletes the original message(s), so be careful when using this feature.
|
||||||
|
|
||||||
|
If you select Forward, you are asked for the destination area, and you will
|
||||||
|
be able to change the header data. A template-defined message is inserted at
|
||||||
|
the top of the message.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 3006,Find String
|
||||||
|
|
||||||
|
You can enter several strings, separated by the '|' search string separator
|
||||||
|
character like this:
|
||||||
|
|
||||||
|
Odinn|GoldED
|
||||||
|
|
||||||
|
By default, GoldED searches forward (next messages), but by preceeding the
|
||||||
|
search string with a '-', the search goes backwards (previous messages).
|
||||||
|
|
||||||
|
Besides the backward search, there are a number of other search command
|
||||||
|
characters. Here is the complete list:
|
||||||
|
|
||||||
|
- Search backward.
|
||||||
|
+ Search forward. (Just for completeness).
|
||||||
|
< Search the From: field.
|
||||||
|
> Search the To: field.
|
||||||
|
: Search the Subj: field.
|
||||||
|
= Case-sensitive search.
|
||||||
|
! Reverse - Stop/mark when the search string(s) are NOT found.
|
||||||
|
*P
|
||||||
|
|
||||||
|
By default the '<', '>' and ':' search commands are enabled, so that GoldED
|
||||||
|
searches all header fields. However, when one of these options are actually
|
||||||
|
used, the search is limited to those only.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
<Odinn Searches in the From: field only.
|
||||||
|
<>Odinn Searches in From: and To:, but not Subj:.
|
||||||
|
:tagline Search for "tagline" in the Subj: field only.
|
||||||
|
|
||||||
|
The search command characters are stripped before the search is started. If
|
||||||
|
you need to search for a string that begins with a search command character,
|
||||||
|
you must precede it with the search string separator, like this:
|
||||||
|
|
||||||
|
-|++ Search backwards for the string "++".
|
||||||
|
|
||||||
|
See also ^Marking String^.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 3007,Go To Message
|
||||||
|
|
||||||
|
Enter the number of the message you wish to read.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 3008,Message Marking
|
||||||
|
|
||||||
|
You can select many different ways to mark messages.
|
||||||
|
|
||||||
|
If you select "Your mail", all messages that contain your name in the From,
|
||||||
|
To or Subject fields will be marked.
|
||||||
|
|
||||||
|
Marked messages, can be Copied, Moved, Deleted or Written to a disk file or
|
||||||
|
printer.
|
||||||
|
|
||||||
|
GoldED has a special "read marked" mode, toggled by <Alt-J>, with which you
|
||||||
|
can read the marked messages only.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 3009,Marking String
|
||||||
|
|
||||||
|
Enter the string(s) you want messages marked from.
|
||||||
|
|
||||||
|
The syntax of the marking string function is the same as the regular find
|
||||||
|
function.
|
||||||
|
|
||||||
|
See also ^Find String^.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 3010,Message Lister
|
||||||
|
|
||||||
|
Esc Abort message lister
|
||||||
|
Home First message
|
||||||
|
End Last message
|
||||||
|
Right Next message
|
||||||
|
Left Previous message
|
||||||
|
Alt-S Go to Marking menu
|
||||||
|
Ctrl-B Switch between wide and narrow subject column.
|
||||||
|
Enter Go to reader at the selected message
|
||||||
|
Space Toggle Mark on the selected message
|
||||||
|
Tab Toggle BookMark on the selected message
|
||||||
|
Sh-Tab, BckSp Go to BookMarked message
|
||||||
|
Alt-X Exit GoldED - ask first
|
||||||
|
Ctrl-Q Quit GoldED immediately
|
||||||
|
Alt-O Shell to DOS
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 3011,Write Message
|
||||||
|
|
||||||
|
You can write the current for marked message(s) to either a file or to the
|
||||||
|
PRN device.
|
||||||
|
|
||||||
|
If you decide to write to the Print Device, you must make sure that it is
|
||||||
|
turned on and ready to receive data. In the present version, GoldED uses DOS
|
||||||
|
calls to send the data to the device, and if the device fails for some
|
||||||
|
reason, you will get ugly Dos messages and prompts plastered all over the
|
||||||
|
nice GoldED screen.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 3013,File Requesting
|
||||||
|
|
||||||
|
The menu is a list of the files found in the current msg. To filerequest one
|
||||||
|
or more of these, you have mark them by pressing <Space> when the cursor bar
|
||||||
|
sits on the desired file(s).
|
||||||
|
|
||||||
|
Press <Enter> to send the request. You will be asked for the destination
|
||||||
|
system of the request, defaulting to the originator of the original msg. You
|
||||||
|
can send the request with or without an accompanying msg. A FILES.BBS will
|
||||||
|
be created, containing the names and descriptions (if any).
|
||||||
|
|
||||||
|
NOTE: Only as many files as can fit in the subject can be requested at the
|
||||||
|
same time.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 4000,Header Editing
|
||||||
|
|
||||||
|
You are editing the message header. move around with the cursorkeys, <Tab>
|
||||||
|
and <Enter>. You can quit the message by pressing <Esc>.
|
||||||
|
|
||||||
|
If you press <Enter> in the subject field, or <Ctrl-Enter> anywhere, you end
|
||||||
|
the header editing, and proceed to the editor menu.
|
||||||
|
|
||||||
|
In netmail areas, you can use the nodelist lookup and address macro feature
|
||||||
|
by entering a partial address or last name in the "TO:" name or address
|
||||||
|
fields. In echo/local areas, only the address macros work.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 4001,Delete Original Message
|
||||||
|
|
||||||
|
Do you want to delete the message you have just replied to?
|
||||||
|
|
||||||
|
You can turn off this menu by setting the configuration keyword "ASKDELORIG"
|
||||||
|
in GOLDED.CFG to "No".
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 4002,Read Only Area
|
||||||
|
|
||||||
|
You are trying to write a message in "Read Only" area.
|
||||||
|
|
||||||
|
Please think twice before answering Yes..
|
||||||
|
|
||||||
|
It is probably a better idea to reply in netmail or in another area.
|
||||||
|
If you want to do reply in another area, press <Alt-N> instead.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 4003,Send Via Zonegate
|
||||||
|
|
||||||
|
The message destination is in another Zone. The INTL kludge will be inserted
|
||||||
|
in your message (if USEINTL is enabled), but you must now decide if the
|
||||||
|
message should be sent directly to the destination or via the established
|
||||||
|
Zonegate.
|
||||||
|
|
||||||
|
Zonegates have the address <thiszone:thiszone/thatzone.0>
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 4004,Carbon Copy
|
||||||
|
|
||||||
|
The message contained a Carbon Copy list.
|
||||||
|
|
||||||
|
You can make GoldED process the list and generate the Carbon Copy messages,
|
||||||
|
you can change the format of the CC list and change the attributes of the CC
|
||||||
|
messages.
|
||||||
|
|
||||||
|
It is also possible to ignore the CC list, so that it won't be processed.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 4005,File Selection
|
||||||
|
|
||||||
|
Esc Abort file selection
|
||||||
|
Home First file
|
||||||
|
End Last file
|
||||||
|
Right, Left Next/previous file
|
||||||
|
Enter Select the marked file(s)
|
||||||
|
Space Toggle file mark
|
||||||
|
Ins Mark file
|
||||||
|
Del Unmark file
|
||||||
|
Ctrl-Home Mark all files
|
||||||
|
Ctrl-End Unmark all files
|
||||||
|
Alt-O Shell to DOS
|
||||||
|
Alt-X Exit GoldED - ask first
|
||||||
|
Ctrl-Q Quit GoldED immediately
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 4006,Editor Options
|
||||||
|
|
||||||
|
In this menu, you can select internal vs external editor, change attributes,
|
||||||
|
template and origin for the message.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 4007,Nodelist Browser
|
||||||
|
|
||||||
|
Esc Abort nodelist browsing
|
||||||
|
Nodenumber Search for node
|
||||||
|
Home First node
|
||||||
|
End Last node
|
||||||
|
Right Next node
|
||||||
|
Left Previous node
|
||||||
|
Enter Select node
|
||||||
|
Alt-O Shell to DOS
|
||||||
|
Alt-X Exit GoldED - ask first
|
||||||
|
Ctrl-Q Quit GoldED immediately
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 4008,Save Message
|
||||||
|
|
||||||
|
You have just written a message, and now you have the option to either Save
|
||||||
|
it, Drop it, Continue editing it, View it, ROT13 crypt it, change Attributes
|
||||||
|
or Origin.
|
||||||
|
|
||||||
|
Please don't crypt messages, unless you have explicit permission from all
|
||||||
|
systems the message will pass through. FidoNet Policy 4 says so.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 5000,Internal Editor
|
||||||
|
|
||||||
|
Internal Editor Cursor Movements:
|
||||||
|
|
||||||
|
Enter Terminate paragraph and/or add a new line
|
||||||
|
Up, Down Move cursor up/down one line
|
||||||
|
Left, Right Move cursor one position left/right
|
||||||
|
Home Move cursor to beginning of line
|
||||||
|
End Move cursor to the end of the line
|
||||||
|
PgDn Move cursor one page of lines down
|
||||||
|
PgUp Move cursor one page of lines up
|
||||||
|
Ctrl-Home Move cursor to the top line in the display
|
||||||
|
Ctrl-End Move cursor to the bottom line in the display
|
||||||
|
Ctrl-PgUp Move cursor to the first line in the message
|
||||||
|
Ctrl-PgDn Move cursor to the last line in the message
|
||||||
|
Ctrl-Left Move cursor to the previous word
|
||||||
|
Ctrl-Right Move cursor to the next word
|
||||||
|
*P
|
||||||
|
|
||||||
|
Internal Editor Edit commands:
|
||||||
|
|
||||||
|
Ins Toggle insert mode
|
||||||
|
Del Delete character at the cursor position
|
||||||
|
BackSpace Delete character to the left of the cursor
|
||||||
|
Tab Add spaces to the next tab-stop
|
||||||
|
Alt-K, Alt-Y Delete from cursor position to end of line
|
||||||
|
C-BckSp C-F5 Delete the word to the left of the cursor
|
||||||
|
Ctrl-T,Ctrl-F6 Delete the word to the right of the cursor
|
||||||
|
F4 Duplicates the current line
|
||||||
|
Alt-D, Ctrl-Y Delete the current line. (Move to Killbuffer)
|
||||||
|
Ctrl-U Undelete previously deleted lines
|
||||||
|
Alt-1 Change cursor character to uppercase
|
||||||
|
Alt-2 Change cursor character to lowercase
|
||||||
|
Alt-3 Toggle case of the cursor character
|
||||||
|
*P
|
||||||
|
|
||||||
|
Internal Editor Block commands:
|
||||||
|
|
||||||
|
Alt-A Set a block "anchor" on the current line
|
||||||
|
Alt-C Copy current block to Cut'n'Paste buffer
|
||||||
|
Alt-M Cut current block to Cut'n'Paste buffer
|
||||||
|
Alt-P Paste a prev. Cut block at cursor position
|
||||||
|
|
||||||
|
Internal Editor Other commands:
|
||||||
|
|
||||||
|
Esc Abort editing this message - ask first
|
||||||
|
Alt-S, F2 Save this message
|
||||||
|
(no default) Drop this message - NO ASKING! DANGEROUS!
|
||||||
|
Alt-H Change attributes
|
||||||
|
Alt-O Shell to DOS
|
||||||
|
Alt-I,Alt-R,F3 Import text file into this message
|
||||||
|
Alt-W Export block to a file
|
||||||
|
F7 Saves the current message as a file
|
||||||
|
F8 Loads the message file saved with F7
|
||||||
|
F9 Calls external spellchecker with message
|
||||||
|
Alt-X Exit from GoldED - ask first
|
||||||
|
Ctrl-Q Quit GoldED immediately - no asking
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 5001,Export Message
|
||||||
|
|
||||||
|
Type the filename of the block to export.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 5002,Import File
|
||||||
|
|
||||||
|
Select the filename of the text file to import in this message.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 9001,Out Of Memory
|
||||||
|
|
||||||
|
GoldED just ran out of memory. There is nothing you can do now except press
|
||||||
|
<Esc> and let GoldED exit.
|
||||||
|
|
||||||
|
If you were writing a message in the internal editor, you may be able to
|
||||||
|
recover all or most of your message in the file GOLDED.MSG.
|
||||||
|
|
||||||
|
See also: ^Memory Warning^.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 9002,Hudson Size Warning
|
||||||
|
|
||||||
|
GoldED has detected that your Hudson message base is rapidly approaching a
|
||||||
|
very dangerous size. If you do not run a packing utility very soon, you risk
|
||||||
|
permanent damage to your message base.
|
||||||
|
|
||||||
|
The absolute maximum size for your message base is a 16 MB big MSGTXT.BBS
|
||||||
|
file (65536 records of 256 bytes). This is approximately 16000 messages of
|
||||||
|
average size.
|
||||||
|
|
||||||
|
The GOLDED.CFG keyword HUDSONSIZEWARN defines the size when GoldED starts
|
||||||
|
displaying this warning screen.
|
||||||
|
|
||||||
|
Press <Esc> to continue.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 9008,Hudson/Goldbase Index Errors
|
||||||
|
|
||||||
|
Your message base index files are out of synchronization. The number of
|
||||||
|
records in MSGHDR.* does not match the number of records in either MSGIDX.*
|
||||||
|
or MSGTOIDX.* (or both).
|
||||||
|
|
||||||
|
GoldED cannot continue until the index files are rebuilt. Please run a
|
||||||
|
message base index rebuild utility immediately.
|
||||||
|
|
||||||
|
Press <Esc> to exit.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*B 9009,Memory Warning
|
||||||
|
|
||||||
|
You are dangerously low on memory.
|
||||||
|
|
||||||
|
If you proceed now, you may get kicked out later with an "Out of memory"
|
||||||
|
error. Watch the memory meter on the status line - if it gets under 20-30k,
|
||||||
|
you may experience strange lockups.
|
||||||
|
|
||||||
|
To correct this situation, run GoldED with more free memory or use the -O
|
||||||
|
commandline option or GEDCMD environment variable to decrease the overlay
|
||||||
|
size.
|
||||||
|
*E
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
END OF HELP FILE
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
420
cfgs/config/goldkeys.cfg
Normal file
420
cfgs/config/goldkeys.cfg
Normal file
@ -0,0 +1,420 @@
|
|||||||
|
; ------------------------------------------------------------------
|
||||||
|
; GOLDED KEYBOARD DEFINITION FILE. (3.0.0)
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
;
|
||||||
|
; Keyboard syntax: <Key> <Command>
|
||||||
|
;
|
||||||
|
; <Key> can be:
|
||||||
|
;
|
||||||
|
; Key Key (Character or key symbol)
|
||||||
|
; @Key Alt-Key
|
||||||
|
; ^Key Ctrl-Key
|
||||||
|
; #Key Shift-Key
|
||||||
|
;
|
||||||
|
; A complete list of definable keys can be found in GOLDREF.TXT.
|
||||||
|
;
|
||||||
|
; All possible <Command>'s are listed below. Descriptions of the
|
||||||
|
; commands can be found in GOLDREF.TXT or in the online-help.
|
||||||
|
;
|
||||||
|
; NOTE: GoldED has a built-in default keyboard definition map, so
|
||||||
|
; you actually don't need this file if you want to use only
|
||||||
|
; the defaults.
|
||||||
|
;
|
||||||
|
; - You can de-activate these defaults by putting
|
||||||
|
;
|
||||||
|
; KEYBDEFAULTS NO
|
||||||
|
;
|
||||||
|
; into GOLDED.CFG. If you don't put this statement into
|
||||||
|
; GOLDED.CFG, GoldED will add the following definitions to
|
||||||
|
; the already existing default layout.
|
||||||
|
;
|
||||||
|
; - If you want to replace a default definition, simply put a
|
||||||
|
; different definition into this file.
|
||||||
|
;
|
||||||
|
; - If you want to remove a single default definition, replace
|
||||||
|
; it with XXXXundefine, where XXXX is the respective prefix
|
||||||
|
; (like "AREAundefine", for example).
|
||||||
|
;
|
||||||
|
;
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
; last update on 98/07/27 (DAM)
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
; EXTERNAL UTILITY COMMANDS
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
|
||||||
|
;^F1 ExternUtil01
|
||||||
|
;^F2 ExternUtil02
|
||||||
|
;^F3 ExternUtil03
|
||||||
|
;^F4 ExternUtil04
|
||||||
|
;^F5 ExternUtil05
|
||||||
|
;^F6 ExternUtil06
|
||||||
|
;^F7 ExternUtil07
|
||||||
|
;^F8 ExternUtil08
|
||||||
|
;^F9 ExternUtil09
|
||||||
|
;^F10 ExternUtil10
|
||||||
|
;^F11 ExternUtil11
|
||||||
|
;^F12 ExternUtil12
|
||||||
|
;....
|
||||||
|
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
; AREA SELECTION COMMANDS
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
|
||||||
|
@A AREAabort
|
||||||
|
Esc AREAaskexit
|
||||||
|
@X AREAaskexit
|
||||||
|
@F4 AREAaskexit
|
||||||
|
@B AREAboardnos
|
||||||
|
@C AREAcatchup
|
||||||
|
@O AREAdosshell
|
||||||
|
^M AREAdropmsgmarks
|
||||||
|
Home AREAgotofirst
|
||||||
|
;Up AREAgotoprev
|
||||||
|
;Down AREAgotonext
|
||||||
|
End AREAgotolast
|
||||||
|
@H AREAheat
|
||||||
|
@J AREAjump
|
||||||
|
^Left AREAjump
|
||||||
|
^Right AREAjump
|
||||||
|
^Enter AREAjumpnextmatch
|
||||||
|
Tab AREAjumpnextmatch
|
||||||
|
^Q AREAquitnow
|
||||||
|
@S AREAscan
|
||||||
|
@P AREAscanpm
|
||||||
|
Right AREAselect
|
||||||
|
Enter AREAselect
|
||||||
|
@R AREAselectmarks
|
||||||
|
Ins AREAtoggle
|
||||||
|
@T AREAtoggle
|
||||||
|
^Z AREAtouchnetscan
|
||||||
|
@W AREAwritegoldlast
|
||||||
|
@Z AREAzap
|
||||||
|
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
; INTERNAL EDITOR COMMANDS
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
|
||||||
|
Esc EDITabort
|
||||||
|
@A EDITanchor
|
||||||
|
@X EDITaskexit
|
||||||
|
@F4 EDITaskexit
|
||||||
|
@F5 EDITcleardeletebuf
|
||||||
|
@F6 EDITclearpastebuf
|
||||||
|
@C EDITcopy
|
||||||
|
^- EDITcopyabovechar
|
||||||
|
@M EDITcut
|
||||||
|
Del EDITdelchar
|
||||||
|
@K EDITdeleteeol
|
||||||
|
@Y EDITdeleteeol
|
||||||
|
BackSpace EDITdelleft
|
||||||
|
@D EDITdelline
|
||||||
|
^Y EDITdelline
|
||||||
|
^BackSpace EDITdelltword
|
||||||
|
^F5 EDITdelltword
|
||||||
|
^F6 EDITdelrtword
|
||||||
|
^T EDITdelrtword
|
||||||
|
@O EDITdosshell
|
||||||
|
F4 EDITdupline
|
||||||
|
;@Z EDITexitmsg
|
||||||
|
@W EDITexporttext
|
||||||
|
Home EDITgobegline
|
||||||
|
^PgDn EDITgobotline
|
||||||
|
^End EDITgobotmsg
|
||||||
|
@Down EDITgodown
|
||||||
|
Down EDITgodown
|
||||||
|
^Down EDITgodown
|
||||||
|
End EDITgoeol
|
||||||
|
@Left EDITgoleft
|
||||||
|
@Left EDITgoleft
|
||||||
|
Left EDITgoleft
|
||||||
|
PgDn EDITgopgdn
|
||||||
|
PgUp EDITgopgup
|
||||||
|
@Right EDITgoright
|
||||||
|
@Right EDITgoright
|
||||||
|
Right EDITgoright
|
||||||
|
^PgUp EDITgotopline
|
||||||
|
^Home EDITgotopmsg
|
||||||
|
@Up EDITgoup
|
||||||
|
Up EDITgoup
|
||||||
|
^Up EDITgoup
|
||||||
|
^Left EDITgowordleft
|
||||||
|
^Right EDITgowordright
|
||||||
|
@H EDITheader
|
||||||
|
@Q EDITimportquotebuf
|
||||||
|
@I EDITimporttext
|
||||||
|
@R EDITimporttext
|
||||||
|
F3 EDITimporttext
|
||||||
|
F8 EDITloadfile
|
||||||
|
@L EDITlookupcursor
|
||||||
|
#F10 EDITlookupdest
|
||||||
|
F10 EDITlookuporig
|
||||||
|
Enter EDITnewline
|
||||||
|
@P EDITpaste
|
||||||
|
^Q EDITquitnow
|
||||||
|
@B EDITreflow
|
||||||
|
F7 EDITsavefile
|
||||||
|
@S EDITsavemsg
|
||||||
|
F2 EDITsavemsg
|
||||||
|
^Z EDITsavemsg
|
||||||
|
F9 EDITspellcheck
|
||||||
|
Tab EDITtab
|
||||||
|
#Tab EDITtabreverse
|
||||||
|
@3 EDITtogglecase
|
||||||
|
Ins EDITtoggleinsert
|
||||||
|
@2 EDITtolower
|
||||||
|
@1 EDITtoupper
|
||||||
|
^U EDITundelete
|
||||||
|
@Z EDITzapquotebelow
|
||||||
|
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
; FILE SELECTION COMMANDS
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
|
||||||
|
Esc FILEabort
|
||||||
|
@X FILEaskexit
|
||||||
|
@F4 FILEaskexit
|
||||||
|
@O FILEdosshell
|
||||||
|
Home FILEgotofirst
|
||||||
|
End FILEgotolast
|
||||||
|
Right FILEgotonext
|
||||||
|
Left FILEgotoprev
|
||||||
|
Ins FILEmark
|
||||||
|
;+ FILEmark
|
||||||
|
^Enter FILEmarkall
|
||||||
|
^Home FILEmarkall
|
||||||
|
^Q FILEquitnow
|
||||||
|
Enter FILEselect
|
||||||
|
Space FILEtogglemark
|
||||||
|
;* FILEtogglemarkall
|
||||||
|
Del FILEunmark
|
||||||
|
;- FILEunmark
|
||||||
|
^End FILEunmarkall
|
||||||
|
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
; MESSAGE LISTER COMMANDS
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
|
||||||
|
Esc LISTabort
|
||||||
|
@X LISTaskexit
|
||||||
|
@F4 LISTaskexit
|
||||||
|
@O LISTdosshell
|
||||||
|
#Tab LISTgotobookmark
|
||||||
|
BackSpace LISTgotobookmark
|
||||||
|
Home LISTgotofirst
|
||||||
|
End LISTgotolast
|
||||||
|
Right LISTgotonext
|
||||||
|
Left LISTgotoprev
|
||||||
|
S LISTmarkingoptions
|
||||||
|
@S LISTmarkingoptions
|
||||||
|
@F9 LISTmarkingoptions
|
||||||
|
^Q LISTquitnow
|
||||||
|
Enter LISTselect
|
||||||
|
Tab LISTtogglebookmark
|
||||||
|
^D LISTtoggledate
|
||||||
|
Space LISTtogglemark
|
||||||
|
^B LISTtogglewidesubj
|
||||||
|
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
; NODELIST BROWSER COMMANDS
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
|
||||||
|
Esc NODEabort
|
||||||
|
@X NODEaskexit
|
||||||
|
@F4 NODEaskexit
|
||||||
|
@O NODEdosshell
|
||||||
|
Home NODEgotofirst
|
||||||
|
End NODEgotolast
|
||||||
|
Right NODEgotonext
|
||||||
|
Left NODEgotoprev
|
||||||
|
^Q NODEquitnow
|
||||||
|
Enter NODEselect
|
||||||
|
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
; MESSAGE READER COMMANDS
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
|
||||||
|
^B READaddressbookadd
|
||||||
|
@F4 READaskexit
|
||||||
|
@X READaskexit
|
||||||
|
X READaskexit
|
||||||
|
^A READchangeaka
|
||||||
|
^S READchangeattrs
|
||||||
|
; READchangecharsin
|
||||||
|
; READchangecharsout
|
||||||
|
@C READchangemsg
|
||||||
|
C READchangemsg
|
||||||
|
F2 READchangemsg
|
||||||
|
^O READchangeorigin
|
||||||
|
^I READchangetagline
|
||||||
|
^T READchangetemplate
|
||||||
|
^U READchangeusername
|
||||||
|
^J READchangexlatimport
|
||||||
|
@G READcommentmsg
|
||||||
|
G READcommentmsg
|
||||||
|
#F8 READcopymoveforward
|
||||||
|
@M READcopymoveforward
|
||||||
|
M READcopymoveforward
|
||||||
|
; READdecreasemargin
|
||||||
|
@D READdeletemsg
|
||||||
|
D READdeletemsg
|
||||||
|
Del READdeletemsg
|
||||||
|
@O READdosshell
|
||||||
|
O READdosshell
|
||||||
|
^F10 READdosshell
|
||||||
|
#F4 READfidorenumber
|
||||||
|
^R READfidorenumber
|
||||||
|
^F READfilerequest
|
||||||
|
F READfindall
|
||||||
|
@F READfindall
|
||||||
|
#F6 READfindall
|
||||||
|
Z READfindheader
|
||||||
|
@Z READfindheader
|
||||||
|
F6 READfindheader
|
||||||
|
#Tab READgotobookmark
|
||||||
|
BackSpace READgotobookmark
|
||||||
|
- READgotoreplyprev
|
||||||
|
@Left READgotoreplyprev
|
||||||
|
^Left READgotoreplyprev
|
||||||
|
< READgotofirstmsg
|
||||||
|
^Home READgotofirstmsg
|
||||||
|
> READgotolastmsg
|
||||||
|
^End READgotolastmsg
|
||||||
|
^G READgotomsgno
|
||||||
|
^N READgotonextarea
|
||||||
|
Right READgotonextmsg
|
||||||
|
@Right READgotonextunread
|
||||||
|
@U READgotonextunread
|
||||||
|
^P READgotoprevarea
|
||||||
|
Left READgotoprevmsg
|
||||||
|
@Left READgotoprevunread
|
||||||
|
+ READgotoreplies
|
||||||
|
^Right READgotoreplies
|
||||||
|
* READgotoreplynext
|
||||||
|
- READgotoreplyprev
|
||||||
|
^Left READgotoreplyprev
|
||||||
|
; READincreasemargin
|
||||||
|
#F10 READlookupdest
|
||||||
|
F10 READlookuporig
|
||||||
|
;^M READmainmenu
|
||||||
|
^L READmakeuserlist
|
||||||
|
^K READmakepathreport
|
||||||
|
S READmarkingoptions
|
||||||
|
@S READmarkingoptions
|
||||||
|
@F9 READmarkingoptions
|
||||||
|
@L READmessagelist
|
||||||
|
F9 READmessagelist
|
||||||
|
L READmessagelist
|
||||||
|
@B READmovecommentmsg
|
||||||
|
B READmovecommentmsg
|
||||||
|
@N READmovequotemsg
|
||||||
|
F5 READmovequotemsg
|
||||||
|
N READmovequotemsg
|
||||||
|
Enter READmsgcontinue
|
||||||
|
End READmsgend
|
||||||
|
Home READmsghome
|
||||||
|
Down READmsglinedown
|
||||||
|
^Down READmsglinedown
|
||||||
|
Up READmsglineup
|
||||||
|
^Up READmsglineup
|
||||||
|
PgDn READmsgpgdn
|
||||||
|
PgUp READmsgpgup
|
||||||
|
@A READnewarea
|
||||||
|
A READnewarea
|
||||||
|
Esc READnewarea
|
||||||
|
^F1 READnewarea
|
||||||
|
@E READnewmsg
|
||||||
|
E READnewmsg
|
||||||
|
Ins READnewmsg
|
||||||
|
^Q READquitnow
|
||||||
|
^W READquotebuf
|
||||||
|
@Q READquotemsg
|
||||||
|
F4 READquotemsg
|
||||||
|
Q READquotemsg
|
||||||
|
@R READreplymsg
|
||||||
|
F3 READreplymsg
|
||||||
|
R READreplymsg
|
||||||
|
; READthreadtree
|
||||||
|
Tab READtogglebookmark
|
||||||
|
@I READtogglehexdump
|
||||||
|
I READtogglehexdump
|
||||||
|
^F9 READtogglehexdump
|
||||||
|
@H READtogglehidden
|
||||||
|
H READtogglehidden
|
||||||
|
^F7 READtogglehidden
|
||||||
|
@V READtogglehiddklud
|
||||||
|
V READtogglehiddklud
|
||||||
|
^F5 READtogglehiddklud
|
||||||
|
@K READtogglekludge
|
||||||
|
K READtogglekludge
|
||||||
|
^F6 READtogglekludge
|
||||||
|
Space READtogglemark
|
||||||
|
@J READtogglemarkread
|
||||||
|
J READtogglemarkread
|
||||||
|
@P READtogglepagebar
|
||||||
|
P READtogglepagebar
|
||||||
|
^F8 READtogglepagebar
|
||||||
|
^V READtogglequote
|
||||||
|
@Y READtogglerealmsgno
|
||||||
|
Y READtogglerealmsgno
|
||||||
|
^F4 READtogglerealmsgno
|
||||||
|
U READtogglerot13
|
||||||
|
^F3 READtogglerot13
|
||||||
|
@T READtoggletwits
|
||||||
|
T READtoggletwits
|
||||||
|
^Z READtouchnetscan
|
||||||
|
@F10 READuserbase
|
||||||
|
^X READuudecode
|
||||||
|
@W READwritemsg
|
||||||
|
F7 READwritemsg
|
||||||
|
W READwritemsg
|
||||||
|
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
; KEYBOARD MACROS
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
;
|
||||||
|
; Macro syntax: <Key> Macro <Key,String,Command> [..]
|
||||||
|
;
|
||||||
|
; <Key> Any valid Key.
|
||||||
|
; <String> A string of letters, enclosed in quotes.
|
||||||
|
; <Command> Any valid GoldED Command, see the above.
|
||||||
|
;
|
||||||
|
; If <Key> is "Auto", the macro will be executed automatically after
|
||||||
|
; GoldED has initialized.
|
||||||
|
;
|
||||||
|
; ------------------------------------------------------------------
|
||||||
|
|
||||||
|
; This Auto macro scans all areas and puts you in the first with new
|
||||||
|
; mail.
|
||||||
|
;Auto Macro AREAscan "A" End AREAjump
|
||||||
|
|
||||||
|
; For the internal editor: Add an empty line below the current.
|
||||||
|
;^N EDITmacro EDITnewline EDITgoup
|
||||||
|
|
||||||
|
; Move-reply to netmail and go to template selection menu. Note that
|
||||||
|
; ^Enter means "accept all" in this context (header edit).
|
||||||
|
;@F1 READmacro READmovequotemsg "NETMAIL" AREAselect ^Enter "T"
|
||||||
|
|
||||||
|
; Set bookmark on the current message before moving in the link.
|
||||||
|
;@Left READmacro READtogglebookmark READgotoreplyprev
|
||||||
|
;@Right READmacro READtogglebookmark READgotoreplies
|
||||||
|
|
||||||
|
;@F1 READmacro READcopymoveforward "M" "NET.DK-BBS" Enter
|
||||||
|
;@F2 READmacro READcopymoveforward "M" "NET.DK-POINT" Enter
|
||||||
|
;@F3 READmacro READcopymoveforward "M" "NET.GOLDED" Enter
|
||||||
|
;@F4 READmacro READcopymoveforward "M" "NET.RCVD" Enter
|
||||||
|
;@F5 READmacro READcopymoveforward "M" "NET.SITES" Enter
|
||||||
|
|
||||||
|
;F12 READmacro READreplymsg ^Enter "T" End Enter "I" EDITsavemsg "Y"
|
||||||
|
;F11 EDITmacro ":-)"
|
||||||
|
;^F11 EDITmacro ":-("
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------
|
499
cfgs/config/goldlang.cfg
Normal file
499
cfgs/config/goldlang.cfg
Normal file
@ -0,0 +1,499 @@
|
|||||||
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// GoldED 3.0.1-asa10 * Example Language Definition File
|
||||||
|
//
|
||||||
|
// Before you start redefining the language, I suggest you print this
|
||||||
|
// file and keep it close for reference. Redefining can be a slow and
|
||||||
|
// difficult process.
|
||||||
|
//
|
||||||
|
// The format of lines in this language file is:
|
||||||
|
//
|
||||||
|
// <stringid> <"string">
|
||||||
|
//
|
||||||
|
// Each stringid is prefixed with a category, to allow easier
|
||||||
|
// identification for your own redefinitions. Not case sensitive.
|
||||||
|
//
|
||||||
|
// ID Categories:
|
||||||
|
// --------------
|
||||||
|
// ST_ Status Line Variable length.
|
||||||
|
// WT_ Window Title Variable length.
|
||||||
|
// MI_ Menu Item Fixed length, first character QuickChar.
|
||||||
|
// IL_ Info Line Variable length.
|
||||||
|
// WL_ Window Line Usually fixed length.
|
||||||
|
// HD_ Header Line Usually fixed length.
|
||||||
|
// MS_ Message Variable length.
|
||||||
|
// ER_ Error Message Variable length.
|
||||||
|
//
|
||||||
|
// "Fixed length" means that all the strings must the same length.
|
||||||
|
// The actual length is normally only limited by the screen size. In
|
||||||
|
// case of menus, the window width is always based on the length of
|
||||||
|
// the *first* item string.
|
||||||
|
//
|
||||||
|
// A "QuickChar" is the highlighted direct-select character in the
|
||||||
|
// menu items. The QuickChar is case sensitive, and must match a
|
||||||
|
// character in the string.
|
||||||
|
//
|
||||||
|
// Strings should always be enclosed in quotes ("" or ''). The
|
||||||
|
// exception is if the string does not need leading/trailing spaces.
|
||||||
|
//
|
||||||
|
// Some strings contains escape sequences or format specifiers as
|
||||||
|
// used in the "C" language. Certain tokens from the templates can
|
||||||
|
// also be used in some special strings.
|
||||||
|
//
|
||||||
|
// Escape sequences: (Case sensitive!)
|
||||||
|
// -----------------------------------
|
||||||
|
// \n - Line Feed (LF) (translates to CR+LF in files under DOS,
|
||||||
|
// Windows and OS/2).
|
||||||
|
// \r - Carriage Return (CR).
|
||||||
|
//
|
||||||
|
// The escape sequences are normally used in lines for files or
|
||||||
|
// standard (OS) output messages.
|
||||||
|
//
|
||||||
|
// Format specifiers: (Case sensitive!)
|
||||||
|
// ------------------------------------
|
||||||
|
// %c - Character.
|
||||||
|
// %s - String.
|
||||||
|
// %i - Integer.
|
||||||
|
// %u - Unsigned Integer.
|
||||||
|
// %% - A literal percent (%) character.
|
||||||
|
//
|
||||||
|
// If you change a line with format specifiers, please be careful to
|
||||||
|
// have them in the same quantity and order as in the original
|
||||||
|
// example. Failure to do this can cause unpredictable results..
|
||||||
|
//
|
||||||
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------------------------------------------------
|
||||||
|
-- WEEKDAY AND MONTH NAMES
|
||||||
|
|
||||||
|
// Weekdays, short
|
||||||
|
MS_SWSUN "Sun"
|
||||||
|
MS_SWMON "Mon"
|
||||||
|
MS_SWTUE "Tue"
|
||||||
|
MS_SWWED "Wed"
|
||||||
|
MS_SWTHU "Thu"
|
||||||
|
MS_SWFRI "Fri"
|
||||||
|
MS_SWSAT "Sat"
|
||||||
|
|
||||||
|
// Weekdays, long
|
||||||
|
MS_LWSUNDAY "Sunday"
|
||||||
|
MS_LWMONDAY "Monday"
|
||||||
|
MS_LWTUESDAY "Tuesday"
|
||||||
|
MS_LWWEDNESDAY "Wednesday"
|
||||||
|
MS_LWTHURSDAY "Thursday"
|
||||||
|
MS_LWFRIDAY "Friday"
|
||||||
|
MS_LWSATURDAY "Saturday"
|
||||||
|
|
||||||
|
// Months, short
|
||||||
|
MS_SMJAN "Jan"
|
||||||
|
MS_SMFEB "Feb"
|
||||||
|
MS_SMMAR "Mar"
|
||||||
|
MS_SMAPR "Apr"
|
||||||
|
MS_SMMAY "May"
|
||||||
|
MS_SMJUN "Jun"
|
||||||
|
MS_SMJUL "Jul"
|
||||||
|
MS_SMAUG "Aug"
|
||||||
|
MS_SMSEP "Sep"
|
||||||
|
MS_SMOCT "Oct"
|
||||||
|
MS_SMNOV "Nov"
|
||||||
|
MS_SMDEC "Dec"
|
||||||
|
|
||||||
|
// Months, long
|
||||||
|
MS_LMJANUARY "January"
|
||||||
|
MS_LMFEBRUARY "February"
|
||||||
|
MS_LMMARCH "March"
|
||||||
|
MS_LMAPRIL "April"
|
||||||
|
MS_LMMAY "May"
|
||||||
|
MS_LMJUNE "June"
|
||||||
|
MS_LMJULY "July"
|
||||||
|
MS_LMAUGUST "August"
|
||||||
|
MS_LMSEPTEMBER "September"
|
||||||
|
MS_LMOCTOBER "October"
|
||||||
|
MS_LMNOVEMBER "November"
|
||||||
|
MS_LMDECEMBER "December"
|
||||||
|
|
||||||
|
----------------------------------------------------------------------
|
||||||
|
-- MISCELLANEOUS LANGUAGE KEYWORDS
|
||||||
|
|
||||||
|
ST_IMPORTFILE "Import File"
|
||||||
|
WT_IMPORTWHICHFILE " Import which file? "
|
||||||
|
WT_IMPORTPICK " Import "
|
||||||
|
WT_IMPORTTXT " Import "
|
||||||
|
MI_IMPORTTXTTEXT "T File as Text "
|
||||||
|
MI_IMPORTTXTQUOTE "Q File as Quote "
|
||||||
|
MI_IMPORTTXTUUE "U Binary as UUE "
|
||||||
|
MI_IMPORTTXTMIME "M Binary as MIME "
|
||||||
|
MI_IMPORTTXTCLIP "C From Clipboard "
|
||||||
|
MI_IMPORTTXTXLAT "s Use Charset.. "
|
||||||
|
MI_IMPORTTXTQUIT "N Nothing / Quit "
|
||||||
|
ST_IMPORTSTATUS "Importing from %s"
|
||||||
|
ST_EXPORTFILE "Export File"
|
||||||
|
WT_EXPORTWHATFILE " Export to what file? "
|
||||||
|
ST_EXPORTSTATUS "Exporting to %s"
|
||||||
|
ST_EDITSTATUS "Edit %i,%i. %s"
|
||||||
|
ST_SELECTFILES "Select Files"
|
||||||
|
WL_SELECTEDFILES "Selected Files "
|
||||||
|
WL_SELECTEDBYTES " Bytes "
|
||||||
|
WL_TOTALFILES "Total Files "
|
||||||
|
WL_TOTALBYTES " Bytes "
|
||||||
|
WL_SCANNINGDIRECTORY " Scanning Directory "
|
||||||
|
WL_NOFILESFOUND " * NO FILES FOUND * "
|
||||||
|
ST_FILESPRESSKEY "Press any key to continue"
|
||||||
|
WT_AREA "Area"
|
||||||
|
WT_DESCRIPTION "Description"
|
||||||
|
WT_MSGS "Msgs"
|
||||||
|
WT_LAST "Last"
|
||||||
|
WT_ECHOID "EchoID"
|
||||||
|
ST_UNREAD "unread"
|
||||||
|
WT_SCANAREAS " Scan Areas "
|
||||||
|
MI_SCANALL "A Scan All "
|
||||||
|
MI_SCANMARKED "M Scan Marked "
|
||||||
|
MI_SCANCURRENT "C Scan Current "
|
||||||
|
MI_SCANMATCHING "t Scan Matching "
|
||||||
|
MI_SCANUNSCANNED "U Scan Unscanned "
|
||||||
|
MI_NOSCAN "N No Scan / ESC "
|
||||||
|
WT_HEATAREAS " Heat Areas "
|
||||||
|
MI_HEATALL "A Heat All "
|
||||||
|
MI_HEATMARKED "M Heat Marked "
|
||||||
|
MI_HEATCURRENT "C Heat Current "
|
||||||
|
MI_NOHEAT "N No Heat / ESC "
|
||||||
|
WT_ZAPAREAS " Zap Areas "
|
||||||
|
MI_ZAPALL "A Zap All "
|
||||||
|
MI_ZAPMARKED "M Zap Marked "
|
||||||
|
MI_ZAPCURRENT "C Zap Current "
|
||||||
|
MI_NOZAP "N No Zap / ESC "
|
||||||
|
MS_DOS_SHELL "GoldED Shell. Type EXIT To Return."
|
||||||
|
IL_SCANNINGAREA " Scanning Area:"
|
||||||
|
IL_SEARCHINGFOR " Searching for"
|
||||||
|
ST_READINGMSG "Reading Msg %u of %u"
|
||||||
|
ER_OUTOFMEM "Out of memory!"
|
||||||
|
MS_HEXDUMPHEAD "Hexdump of message header:"
|
||||||
|
MS_HEXDUMPTEXT "Hexdump of message text:"
|
||||||
|
ST_RENUMBERING "Renumbering"
|
||||||
|
ST_LOCKED " (locked)"
|
||||||
|
ST_RENUMBERED "Messages Renumbered - Press Key"
|
||||||
|
WL_BLANKMSG ""
|
||||||
|
WL_WAIT " Wait "
|
||||||
|
IL_GENHEXDUMP " Generating Hexdump - Please Wait "
|
||||||
|
ST_PROCESSCC "Processing Carbon Copies"
|
||||||
|
ST_STATUSCC "CC: %s of %u:%u/%u.%u"
|
||||||
|
ST_DESTINATIONCC "Select Carbon Copy Destination"
|
||||||
|
MS_LISTCC "%s %u:%u/%u.%u"
|
||||||
|
WT_DELORIG " Delete Original? "
|
||||||
|
MI_DELORIGYES "Y Yes Please. "
|
||||||
|
MI_DELORIGNO "N No! "
|
||||||
|
WT_DROPMSG " Drop This Msg? "
|
||||||
|
MI_DROPMSGYES "Y Yes Please. "
|
||||||
|
MI_DROPMSGNO "N No! "
|
||||||
|
WT_ZONEGATE " Send via ZoneGate? "
|
||||||
|
MI_ZONEGATEYES "Y Yes Please. "
|
||||||
|
MI_ZONEGATENO "N No! "
|
||||||
|
ST_QUOTEPCT "Your Msg Contains %i%% Quotes%s"
|
||||||
|
WT_SAVEMSG " Save these %i lines? "
|
||||||
|
MI_YESGREAT "Y Yes, it's great stuff "
|
||||||
|
MI_KICKIT "N No, drop it.. / ESC "
|
||||||
|
MI_CONTINUE "C Continue writing "
|
||||||
|
MI_ROT13 "R ROT13 Crypting "
|
||||||
|
MI_ATTRS "A Change Attributes "
|
||||||
|
MI_ORIGS "O Change Origin "
|
||||||
|
MI_VIEW "V View the message "
|
||||||
|
ST_SELECTDESTNODE "Select Destination Node"
|
||||||
|
WT_ATTACHFILES " Attach Files "
|
||||||
|
WT_UPDREQFILES " Update Request Files "
|
||||||
|
ST_EDITHEADER "Edit Header Data"
|
||||||
|
WT_EDITING " Editing "
|
||||||
|
MI_INTERNALED "I Internal Editor "
|
||||||
|
MI_EXTERNALED "E External Editor "
|
||||||
|
MI_SAVEMESSAGE "S Save Message "
|
||||||
|
MI_ATTRO "A Attributes "
|
||||||
|
MI_TEMPLATE "T Templates "
|
||||||
|
MI_ORIGIN "O Origins "
|
||||||
|
MI_QUITMESSAGE "Q Quit / ESC "
|
||||||
|
ST_TEMPLATES " Templates "
|
||||||
|
WT_CHANGETEMPLATES "Change Default Template"
|
||||||
|
WT_CARBONCOPY " Carbon Copy "
|
||||||
|
MI_CCPROCESS "P Process CC's "
|
||||||
|
MI_CCIGNORE "I Ignore CC's "
|
||||||
|
MI_CCATTRIBS "C Change Attrs "
|
||||||
|
MI_CCLISTFMT "L List Format "
|
||||||
|
WT_CCLIST " CC List "
|
||||||
|
MI_CCLISTKEEP "K Keep "
|
||||||
|
MI_CCLISTNAMES "N Names only "
|
||||||
|
MI_CCLISTVISIBLE "V Visible "
|
||||||
|
MI_CCLISTHIDDEN "H Hidden "
|
||||||
|
MI_CCLISTREMOVE "R Remove "
|
||||||
|
WT_ATTRTITLE " Attributes "
|
||||||
|
MI_ATTR01 " Private <Alt-P> Archive/Sent <Alt-B> "
|
||||||
|
MI_ATTR02 " Crash <Alt-C> Direct <Alt-D> "
|
||||||
|
MI_ATTR03 " Received <Alt-R> Zonegate <Alt-G> "
|
||||||
|
MI_ATTR04 " Sent <Alt-S> Hub/Host-Route <Alt-V> "
|
||||||
|
MI_ATTR05 " File Attach <Alt-A> Immediate <Alt-I> "
|
||||||
|
MI_ATTR06 " Transit <Alt-J> Xmail <Alt-X> "
|
||||||
|
MI_ATTR07 " Orphan <Alt-O> Erase File/Sent <Alt-E> "
|
||||||
|
MI_ATTR08 " Kill/Sent <Alt-K> Trunc File/Sent <Alt-T> "
|
||||||
|
MI_ATTR09 " Local <Alt-W> Locked <Alt-L> "
|
||||||
|
MI_ATTR10 " Hold <Alt-H> Confirm Rcpt Request <Alt-Y> "
|
||||||
|
MI_ATTR11 " File Request <Alt-F> FTS1 Reserved <Alt-1> "
|
||||||
|
MI_ATTR12 " Return Rcpt Request <Alt-M> QBBS Reserved, Net <Alt-2> "
|
||||||
|
MI_ATTR13 " Return Rcpt <Alt-N> QBBS Reserved, Echo <Alt-3> "
|
||||||
|
MI_ATTR14 " Audit Request <Alt-Q> Squish Scanned <Alt-4> "
|
||||||
|
MI_ATTR15 " File Update Request <Alt-U> Zap all attribs <Alt-Z> "
|
||||||
|
HD_FROM " From : "
|
||||||
|
HD_TO " To : "
|
||||||
|
HD_SUBJ " Subj : "
|
||||||
|
HD_FILE " File : "
|
||||||
|
MS_EMPTYMSG "\r"
|
||||||
|
MS_AUTOATTACHMSG "\r"
|
||||||
|
MS_AUTOREQUESTMSG "\r"
|
||||||
|
MS_AUTOUPDREQMSG "\r"
|
||||||
|
WT_FILEATTACH " File Attach "
|
||||||
|
WT_FILEREQUEST " File Request "
|
||||||
|
WT_FILEUPDREQ " Update Request "
|
||||||
|
ST_FILEATTACHING "File Attaching [%i/%i] to %u:%u/%u.%u"
|
||||||
|
ST_FILEREQUESTING "File Requesting [%i/%i] from %u:%u/%u.%u"
|
||||||
|
ST_FILEUPDREQING "Update Requesting [%i/%i] from %u:%u/%u.%u"
|
||||||
|
ST_READMARKED "Read Marked - Msg %u of %u (%u left)"
|
||||||
|
ST_READALL "Read All - Msg %u of %u (%u left)"
|
||||||
|
ST_NOQRENUM "This area cannot be renumbered"
|
||||||
|
MS_HIDINGTWIT "This is a Twit Message - Press <Home> to read."
|
||||||
|
HD_VIA "via"
|
||||||
|
WT_CHANGEATTRS "Change Message Attributes"
|
||||||
|
WT_HEADERTEXT " Enter Searchstring (Header+Text) "
|
||||||
|
WT_HEADERONLY " Enter Searchstring (Header Only) "
|
||||||
|
WT_NEWAREA ">>Pick New Area: "
|
||||||
|
WT_REPLYAREA ">>Answer In Area: "
|
||||||
|
WT_COPYAREA ">>Copy To Area: "
|
||||||
|
WT_MOVEAREA ">>Move To Area: "
|
||||||
|
WT_FORWARDAREA ">>Forward To Area: "
|
||||||
|
WT_FREQAREA ">>Filerequest In Area: "
|
||||||
|
WT_FREQMENUTITLE "Requestable files"
|
||||||
|
ST_FREQSTAT "Pick files to request"
|
||||||
|
IL_FREQINFONOFILES " No requestable files were found in this msg! "
|
||||||
|
WT_COPY " Copy "
|
||||||
|
WT_MOVE " Move "
|
||||||
|
WT_COPYING " Copying "
|
||||||
|
WT_MOVING " Moving "
|
||||||
|
ST_COPYINGMSG "Copying Msg %u of %u to %s"
|
||||||
|
ST_MOVINGMSG "Moving Msg %u of %u to %s"
|
||||||
|
WT_DELETE " Delete "
|
||||||
|
WT_DELETING " Deleting "
|
||||||
|
ST_DELETINGMSG "Deleting Msg %u of %u"
|
||||||
|
WT_WRITE " Write "
|
||||||
|
WT_WRITEMSGS " Write Msg(s) to File "
|
||||||
|
WT_WRITING " Writing "
|
||||||
|
ST_WRITINGMSG "Writing Msg %u of %u"
|
||||||
|
WT_WRITINGFILE " Writing Msg(s) to File %s "
|
||||||
|
WT_WRITINGPRN " Writing Msg(s) to Print Device "
|
||||||
|
IL_READONLYWARN " This area is READ ONLY! "
|
||||||
|
WT_ISREADONLY " Write msg anyway? "
|
||||||
|
MI_READONLYYES "Y Yes Please. "
|
||||||
|
MI_READONLYNO "N No! "
|
||||||
|
IL_CHANGEWARN " This msg is NOT from you! "
|
||||||
|
WT_CHANGE " Change this msg? "
|
||||||
|
MI_CHANGEYES "Y Yes Please. "
|
||||||
|
MI_CHANGENO "N No! "
|
||||||
|
WT_DELETETHIS " Delete this msg? "
|
||||||
|
MI_DELETEYES "Y Yes Please. "
|
||||||
|
MI_DELETENO "N No! "
|
||||||
|
MI_DELETENOASK "D Don't ask.. "
|
||||||
|
WT_GOTONEXT " Goto Next Area? "
|
||||||
|
MI_GOTONEXTYES "Y Yes Please. "
|
||||||
|
MI_GOTONEXTNO "N No! "
|
||||||
|
MI_GOTONEXTNEW "U Yes, Next Unread Area. "
|
||||||
|
WT_FORWARD " Use FWD kludges? "
|
||||||
|
MI_FORWARDYES "Y Yes Please. "
|
||||||
|
MI_FORWARDNO "N No! "
|
||||||
|
WT_MSG "Msg"
|
||||||
|
WT_MSGREAL "Msg#"
|
||||||
|
WT_FROML "From"
|
||||||
|
WT_TOL "To"
|
||||||
|
WT_SUBJL "Subj"
|
||||||
|
ST_MSGLISTER "Lister - Msg %u of %u (%u left)"
|
||||||
|
ST_COPYMOVEFORWARD "Copy, Move or Forward this message"
|
||||||
|
WT_SELECTACTION " Action "
|
||||||
|
MI_FORWARDMESSAGE "F Forward Msg "
|
||||||
|
MI_MOVEMESSAGE "M Move Msg "
|
||||||
|
MI_COPYMESSAGE "C Copy Msg "
|
||||||
|
MI_QUITCMF "Q Quit / ESC "
|
||||||
|
ST_ARE "messages are"
|
||||||
|
ST_IS "message is"
|
||||||
|
ST_MARKED "marked"
|
||||||
|
MI_MARKEDMSG "M Marked Msgs "
|
||||||
|
MI_CURRENTMSG "C Current Msg "
|
||||||
|
MI_QUITMSGS "Q Quit / ESC "
|
||||||
|
ST_WRITEMSGSTO "Write Msg(s) to File or Printer"
|
||||||
|
WT_WRITETO " Write To: "
|
||||||
|
MI_DISKFILE "D Disk File "
|
||||||
|
MI_PRINTER "P Print device "
|
||||||
|
MI_QUITWRITE "Q Quit / ESC "
|
||||||
|
ST_MARKINGOPTIONS "Message Marking"
|
||||||
|
WT_MARKWHAT " Mark What? "
|
||||||
|
MI_YOURMAIL "Y Your personal mail "
|
||||||
|
MI_FROMTOSUBJ "H Header (From/To/Subj) "
|
||||||
|
MI_TEXTHDR "T Text and header "
|
||||||
|
MI_THREAD "R Reply thread "
|
||||||
|
MI_NEWMSGS "N New msgs >current "
|
||||||
|
MI_OLDMSGS "O Old msgs <current "
|
||||||
|
MI_ALLMSGS "A All msgs "
|
||||||
|
MI_UNMARK "U Unmark all msgs "
|
||||||
|
MI_RANGE "M Msg range (bookm-curr) "
|
||||||
|
MI_MARKSTOGGLE "g Toggle all marks "
|
||||||
|
MI_QUITMARKS "Q Quit / ESC "
|
||||||
|
WT_ENTERMARKSTRING " Enter Marking String "
|
||||||
|
ST_SEARCHINGMSG "Searching Msg %u of %u. Marked: %u"
|
||||||
|
WT_USERLISTNAME " Userlist filename? "
|
||||||
|
IL_GENUSERLIST " Generating Userlist "
|
||||||
|
WT_FILEEXISTS " File Exists! "
|
||||||
|
MI_APPEND "A Append to end of file "
|
||||||
|
MI_OVERWRITE "O Overwrite the file "
|
||||||
|
MI_QUITEXIST "R Re-enter filename / ESC "
|
||||||
|
IL_WARNUNSENT " WARNING! This message is NOT sent! "
|
||||||
|
IL_WARNLOCKED " WARNING! This message is LOcKed! "
|
||||||
|
ST_CHANGEORIGIN "Change Default Origin"
|
||||||
|
WT_ORIGINS " Origins "
|
||||||
|
ST_CHANGEUSERNAME "Change Default Username"
|
||||||
|
WT_USERNAMES " Usernames "
|
||||||
|
ST_CHANGEAKA "Change Default Address AKA"
|
||||||
|
WT_AKAS " AKA's "
|
||||||
|
WT_LOOKUP " Lookup: %s "
|
||||||
|
WL_PHONE "Phone"
|
||||||
|
WT_QUITGOLDED " Quit GoldED? "
|
||||||
|
MI_QUITYES "Y Yes Please. "
|
||||||
|
MI_QUITNO "N No! "
|
||||||
|
MS_EDITCMD "Editor: %s"
|
||||||
|
IL_NOORIGDEFINED " No origins defined. Press key "
|
||||||
|
IL_NOUSERDEFINED " No usernames defined. Press key "
|
||||||
|
IL_NOAKADEFINED " No AKA's defined. Press key "
|
||||||
|
IL_NOTPLDEFINED " No templates defined. Press key "
|
||||||
|
IL_NOTHREADLIST " Sorry, no thread available. Press key "
|
||||||
|
MS_SKIPPINGTWIT "Skipping Twit Message..."
|
||||||
|
MS_KILLINGTWIT "Killing Twit Message..."
|
||||||
|
IL_WRITINGCFG " Writing Configuration "
|
||||||
|
IL_COULDNOTOPEN " Couldn't open %s "
|
||||||
|
MS_PROMPT "Enter the command \"EXIT\" to return to GoldED.\r\n"
|
||||||
|
IL_UNFINISHEDMSG " Unfinished message found! "
|
||||||
|
ST_LOADUNFINISHED "Press any key to load it or <ESC> to ignore"
|
||||||
|
IL_READINGECHOLIST "Reading Echolist Files"
|
||||||
|
IL_READINGADDRMACROS "Reading Address Macros"
|
||||||
|
IL_CHECKINGNODELISTS "Checking Nodelists"
|
||||||
|
ST_CROSSPOSTING "Crossposting in %s"
|
||||||
|
IL_TWITBLANKED " Twit Msgs Blanked "
|
||||||
|
IL_TWITSKIPPED " Twit Msgs Skipped "
|
||||||
|
IL_TWITIGNORESKIP " Twit Msgs Ignored and Skipped "
|
||||||
|
IL_TWITDISPLAYED " Twit Msgs Displayed "
|
||||||
|
IL_TWITKILLED " Twit Msgs Killed "
|
||||||
|
IL_STYLECODESNO " Stylecodes disabled "
|
||||||
|
IL_STYLECODESYES " Stylecodes enabled "
|
||||||
|
IL_STYLECODESHIDE " Stylecodes enabled and stripped "
|
||||||
|
ST_GENCFMRECEIPT "Generating Confirmation Receipt"
|
||||||
|
WT_NEW "New"
|
||||||
|
ST_LOOKUPINFO "Nodelist Lookup Information"
|
||||||
|
MS_DATETIMEFMT "%d %b %y %H:%M:%S"
|
||||||
|
MS_DATEFMT "%d %b %y"
|
||||||
|
MS_TIMEFMT "%H:%M"
|
||||||
|
MS_ORIGINALLYIN "* Originally in %s"
|
||||||
|
MS_CROSSPOSTEDIN "* Crossposted in %s"
|
||||||
|
ST_STATUSLINEHELP "F1 Help"
|
||||||
|
HD_OF "of"
|
||||||
|
MS_ROBOTMSG "\r--- @longpid @version\r"
|
||||||
|
ST_STATUSLINETIMEFMT "%H:%M"
|
||||||
|
|
||||||
|
WT_REPLIES " Replies "
|
||||||
|
ST_SELECTREPLY "Select the reply you want to see"
|
||||||
|
IL_WAITOREXIT " At this point you must either wait or exit GoldED entirely - Sorry! "
|
||||||
|
WT_REALLYEXIT " Really exit? "
|
||||||
|
MI_TAGLINES "T Change Tagline"
|
||||||
|
MI_HEADEREDIT "H Edit Header"
|
||||||
|
MI_SCANGROUP "G Scan Group"
|
||||||
|
WT_QWKPACKET " QWK Packet "
|
||||||
|
MI_SCANQWK "Q QWK Packet"
|
||||||
|
WT_SOUPPACKET " SOUP Packet "
|
||||||
|
MI_SCANSOUP "S SOUP Packet"
|
||||||
|
MI_SCANIMPORT "I Import"
|
||||||
|
MI_SCANEXPORT "E Export"
|
||||||
|
WT_SCANPM " Scan PM "
|
||||||
|
MI_TAGLINE "g Taglines"
|
||||||
|
WT_CONFIRM " Honor receipt request? "
|
||||||
|
MI_CONFIRMYES "Y Yes, send a receipt msg "
|
||||||
|
MI_CONFIRMNO "N No, ignore the request "
|
||||||
|
IL_CONFIRMINFO " The sender of this message requests confirmation of receipt (CFM) "
|
||||||
|
ST_MSG "msg"
|
||||||
|
ST_MSGS "msgs"
|
||||||
|
ST_PERSONAL "personal"
|
||||||
|
WT_GRP "Grp"
|
||||||
|
IL_FOUNDPERSONAL " Found %u personal mail%s in %u area%s "
|
||||||
|
IL_NOPERSONAL " No personal mail found "
|
||||||
|
ST_ESCORCONTINUE "ESC exits. Other keys: Tries to continue"
|
||||||
|
MS_SPELLCHECKER "SpellChecker: %s"
|
||||||
|
WT_INS " Ins "
|
||||||
|
MI_FILELISTFROM "Filelist from %s"
|
||||||
|
ST_INITIALIZING "Initializing ..."
|
||||||
|
ST_CHECKING "Checking"
|
||||||
|
ST_LOCKSHARECAP "%s Lock/Share Capability"
|
||||||
|
WT_ATTRTURNOFF " Press Alt-F1 to turn off this window "
|
||||||
|
WT_TAGLINES " Taglines "
|
||||||
|
ST_CHANGETAGLINE "Change Default Tagline"
|
||||||
|
IL_NOTAGLINE " No taglines defined. Press key "
|
||||||
|
WT_CHARSETS " Charsets "
|
||||||
|
ST_CHANGEXLATIMP "Change Default Import Charset"
|
||||||
|
IL_NOXLATIMPORT " No XLATIMPORT's defined. Press key "
|
||||||
|
WT_N_A "n/a"
|
||||||
|
WT_WRITTEN "Written"
|
||||||
|
WT_ARRIVED "Arrived"
|
||||||
|
WT_RECEIVED "Received"
|
||||||
|
IL_NONODELIST " Unable to access the nodelist or index files "
|
||||||
|
IL_NODELISTMISSING "Nodelist missing:"
|
||||||
|
IL_NODELISTOUTDATED "Nodelist out of date:"
|
||||||
|
MS_REPLYLINKER "Replylinker: %s"
|
||||||
|
WT_ENTERMSGNO " Enter msgno "
|
||||||
|
IL_WAITUUDECODING " Wait - uudecoding the current message "
|
||||||
|
IL_COMPLETEDUUDECODE " Completed uudecode of %s "
|
||||||
|
IL_NOTUUENCODED " Could not find anything to uudecode in this message "
|
||||||
|
IL_UUEINVALIDPATH " Invalid path for uudecoding - file not written "
|
||||||
|
IL_PATHREPORT " Generating PATH report "
|
||||||
|
IL_ERRORINSOUP " Error in SOUP file %s "
|
||||||
|
IL_WARNALREADYSENT " WARNING: This message is already sent! "
|
||||||
|
IL_WAITLOCKED " Wait: %s is locked "
|
||||||
|
ST_RETRYORESC "%s retry (%lu). Press ESC to exit GoldED."
|
||||||
|
ST_RETRYLOCK "Lock"
|
||||||
|
ST_RETRYOPEN "Open"
|
||||||
|
WT_TOUCHSEMAPHORE " Enter name of semaphore file to touch "
|
||||||
|
MI_WRITETOHDRNO "H Use Header: NO "
|
||||||
|
MI_WRITETOHDRYES "H Use Header: YES "
|
||||||
|
MI_CLIPBOARD "C Clipboard "
|
||||||
|
WT_SELECTMARKS " Select Mark "
|
||||||
|
WT_SELECTMARKSEDIT " Edit Mark Description "
|
||||||
|
IL_DROPMARKSINFO " %s Messages Are Marked "
|
||||||
|
WT_DROPMARKS " Drop Msg Marks "
|
||||||
|
MI_DROPALL "A Drop All "
|
||||||
|
MI_DROPMARKED "M Drop Marked "
|
||||||
|
MI_DROPCURRENT "C Drop Current "
|
||||||
|
MI_NODROP "N No Drop / ESC "
|
||||||
|
WT_CATCHAREAS " Catch-Up Areas "
|
||||||
|
MI_CATCHALL "A Catch All "
|
||||||
|
MI_CATCHMARKED "M Catch Marked "
|
||||||
|
MI_CATCHCURRENT "C Catch Current "
|
||||||
|
MI_NOCATCH "N No Catch / ESC "
|
||||||
|
WT_CROSSPOST " Crosspost "
|
||||||
|
MI_XCPROCESS "P Process XC's "
|
||||||
|
MI_XCIGNORE "I Ignore XC's "
|
||||||
|
MI_XCLISTFMT "L List Format "
|
||||||
|
WT_XCLIST " XC List "
|
||||||
|
MI_XCLISTRAW "K Keep "
|
||||||
|
MI_XCLISTVERBOSE "V Verbose "
|
||||||
|
MI_XCLISTLINE "L Line "
|
||||||
|
MI_XCLISTREMOVE "R Remove "
|
||||||
|
|
||||||
|
WT_ADDRESSBOOK " Addressbook "
|
||||||
|
WT_ADVANCEDSEARCH " Advanced Search "
|
||||||
|
IL_NOMOREMATCHES " No more matches found "
|
||||||
|
WT_HEADEREDITHELP1 " #F10: Nodelist "
|
||||||
|
WT_HEADEREDITHELP2 " F10: Addressbook "
|
||||||
|
WT_THREADLISTTITLE " Message Thread List "
|
||||||
|
WT_ADVANCEDMARKING " Advanced Marking "
|
||||||
|
ST_USERSTATUSLINE "GoldED's Address Book - %d of %d (%d left)"
|
||||||
|
WT_USERHEADERNAME "Name"
|
||||||
|
WT_USERHEADERORG "Organization"
|
||||||
|
WT_USERHEADERAKA "Address"
|
||||||
|
IL_USERWAIT " Wait - Browsing Address Book... "
|
488
cfgs/config/goldlang.ger
Normal file
488
cfgs/config/goldlang.ger
Normal file
@ -0,0 +1,488 @@
|
|||||||
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// GoldED 3.00 * Beispieldatei f<>r eine eingedeutschte Oberfl„che
|
||||||
|
//
|
||||||
|
// Bevor du diese Datei ver„nderst, schlage ich Dir vor, sie zuerst
|
||||||
|
// auszudrucken und als Vorlage zu verwenden. Das Umdefinieren kann
|
||||||
|
// eine langsame und schwierige Sache sein.
|
||||||
|
//
|
||||||
|
// Das Zeilenformat in dieser Sprachdatei ist:
|
||||||
|
//
|
||||||
|
// <stringid> <"string">
|
||||||
|
//
|
||||||
|
// Jede <stringid> hat einen Kategorieprefix, um Dir mehr Infos
|
||||||
|
// bei deinen eigenen Redefinitionen zu geben. Groá/Kleinschreibung
|
||||||
|
// ist egal.
|
||||||
|
//
|
||||||
|
// Kategorieprefix:
|
||||||
|
// --------------
|
||||||
|
// ST_ Statuszeile L„nge variabel.
|
||||||
|
// WT_ Fenstertitel L„nge variabel.
|
||||||
|
// MI_ Men<65>eintrag feste L„nge, erstes Zeichen Quickchar.
|
||||||
|
// IL_ Infozeile L„nge variabel.
|
||||||
|
// WL_ Fensterzeile meist feste L„nge.
|
||||||
|
// HD_ Kopfzeile meist feste L„nge.
|
||||||
|
// MS_ Infotext L„nge variabel.
|
||||||
|
// ER_ Fehlertext L„nge variabel.
|
||||||
|
//
|
||||||
|
// "feste L„nge" bedeutet, daá alle Zeichenketten dieselbe L„nge haben
|
||||||
|
// m<>ssen. Die jeweilige L„nge ist normalerweise nur durch die
|
||||||
|
// Bildschirmbreite begrenzt. Bei Men<65>s h„ngt die Breite von der L„nge
|
||||||
|
// des *ersten* Men<65>eintrags ab.
|
||||||
|
//
|
||||||
|
// Ein "Quickchar" ist der hervorgehobene "Direktauswahl" Buchstabe
|
||||||
|
// der Men<65>eintr„ge. Der Quickchar ist Groá/Kleinschreibungsabh„ngig,
|
||||||
|
// und muá mit einem Buchstaben in der restlichen Zeichenkette
|
||||||
|
// <20>bereinstimmen.
|
||||||
|
//
|
||||||
|
// Die Zeichenketten m<>ssen immer in "" oder '' eingebettet sein, es
|
||||||
|
// sei denn, es werden keine f<>hrenden/nachfolgenden Leerzeichen
|
||||||
|
// ben”tigt.
|
||||||
|
//
|
||||||
|
// Manche Zeichenketten k”nnen Formatierungsangaben, wie sie in der
|
||||||
|
// Programmiersprache "C" verwendet werden, enthalten. Manche
|
||||||
|
// Templatetokens k”nnen ebenfalls in speziellen Zeichenketten
|
||||||
|
// verwendet werden.
|
||||||
|
//
|
||||||
|
// Kontrollzeichen (Groá/Kleinschreibungsabh„ngig!):
|
||||||
|
// -------------------------------------------------
|
||||||
|
// \n - Zeilenvorschub (LF) (wird in CRLF bei Dateien umgesetzt)
|
||||||
|
// \r - Wagenr<6E>cklauf (CR).
|
||||||
|
//
|
||||||
|
// Die Kontrollzeichen werden normalerweise in Zeilen f<>r Dateien oder
|
||||||
|
// Standardausgaben (via DOS) benutzt.
|
||||||
|
//
|
||||||
|
// Formatierungsangaben (Groá/Kleinschreibungsabh„ngig!):
|
||||||
|
// ------------------------------------------------------
|
||||||
|
// %c - einzelnes Zeichen.
|
||||||
|
// %s - Zeichenkette.
|
||||||
|
// %i - eine ganzzahlige Zahl.
|
||||||
|
// %u - eine vorzeichenlose, ganze Zahl.
|
||||||
|
// %% - ein Prozent-Zeichen (%)
|
||||||
|
//
|
||||||
|
// Wenn du eine Zeile mit Formatierunngsangaben ver„nderst, sei bitte
|
||||||
|
// vorsichtig und achte darauf, daá sie in der gleichen Anzahl und
|
||||||
|
// Reihenfolge wie in der urspr<70>nglichen Form stehen. Wenn du dies
|
||||||
|
// nicht befolgst, k”nnen unerwartete Dinge passieren (sic!).
|
||||||
|
//
|
||||||
|
// ------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// deutsche šbersetzung by Dirk A. Mueller, 2:2468/9909.9
|
||||||
|
// e-mail: damware@gmx.net
|
||||||
|
//
|
||||||
|
// basierend auf Arbeit by Dirk Frieborg, 2:240/6231
|
||||||
|
//
|
||||||
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------------------------------------------------
|
||||||
|
-- WOCHENTAGE UND MONATE
|
||||||
|
|
||||||
|
// Wochentage, kurz
|
||||||
|
MS_SWSUN "So"
|
||||||
|
MS_SWMON "Mo"
|
||||||
|
MS_SWTUE "Di"
|
||||||
|
MS_SWWED "Mi"
|
||||||
|
MS_SWTHU "Do"
|
||||||
|
MS_SWFRI "Fr"
|
||||||
|
MS_SWSAT "Sa"
|
||||||
|
|
||||||
|
// Wochentage, lang
|
||||||
|
MS_LWSUNDAY "Sonntag"
|
||||||
|
MS_LWMONDAY "Montag"
|
||||||
|
MS_LWTUESDAY "Dienstag"
|
||||||
|
MS_LWWEDNESDAY "Mittwoch"
|
||||||
|
MS_LWTHURSDAY "Donnerstag"
|
||||||
|
MS_LWFRIDAY "Freitag"
|
||||||
|
MS_LWSATURDAY "Samstag"
|
||||||
|
|
||||||
|
// Monate, kurz
|
||||||
|
MS_SMJAN "Jan"
|
||||||
|
MS_SMFEB "Feb"
|
||||||
|
MS_SMMAR "Mrz"
|
||||||
|
MS_SMAPR "Apr"
|
||||||
|
MS_SMMAY "Mai"
|
||||||
|
MS_SMJUN "Jun"
|
||||||
|
MS_SMJUL "Jul"
|
||||||
|
MS_SMAUG "Aug"
|
||||||
|
MS_SMSEP "Sep"
|
||||||
|
MS_SMOCT "Okt"
|
||||||
|
MS_SMNOV "Nov"
|
||||||
|
MS_SMDEC "Dez"
|
||||||
|
|
||||||
|
// Monate, lang
|
||||||
|
MS_LMJANUARY "Januar"
|
||||||
|
MS_LMFEBRUARY "Februar"
|
||||||
|
MS_LMMARCH "M„rz"
|
||||||
|
MS_LMAPRIL "April"
|
||||||
|
MS_LMMAY "Mai"
|
||||||
|
MS_LMJUNE "Juni"
|
||||||
|
MS_LMJULY "Juli"
|
||||||
|
MS_LMAUGUST "August"
|
||||||
|
MS_LMSEPTEMBER "September"
|
||||||
|
MS_LMOCTOBER "Oktober"
|
||||||
|
MS_LMNOVEMBER "November"
|
||||||
|
MS_LMDECEMBER "Dezember"
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------------------------------------------------
|
||||||
|
-- VERSCHIEDENES
|
||||||
|
|
||||||
|
ST_IMPORTFILE "Importiere Datei"
|
||||||
|
WT_IMPORTWHICHFILE " Importiere welche Datei? "
|
||||||
|
WT_IMPORTPICK " Importiere "
|
||||||
|
WT_IMPORTTXT " Import "
|
||||||
|
MI_IMPORTTXTTEXT "T Datei als Text "
|
||||||
|
MI_IMPORTTXTQUOTE "Q Datei als Quote "
|
||||||
|
MI_IMPORTTXTUUE "U Bin„r als UUE "
|
||||||
|
MI_IMPORTTXTMIME "M Bin„r als MIME "
|
||||||
|
MI_IMPORTTXTCLIP "C Vom Clipboard "
|
||||||
|
MI_IMPORTTXTXLAT "s Benutze Charset.. "
|
||||||
|
MI_IMPORTTXTQUIT "N Nichts / zur<75>ck "
|
||||||
|
ST_IMPORTSTATUS "Importiere von %s"
|
||||||
|
ST_EXPORTFILE "Exportiere Datei"
|
||||||
|
WT_EXPORTWHATFILE " Exportiere nach.. "
|
||||||
|
ST_EXPORTSTATUS "Exportiere nach %s"
|
||||||
|
ST_EDITSTATUS "Editor %i,%i. %s"
|
||||||
|
ST_SELECTFILES "Dateiauswahl"
|
||||||
|
WL_SELECTEDFILES "Gew„hlte Dateien "
|
||||||
|
WL_SELECTEDBYTES " Bytes "
|
||||||
|
WL_TOTALFILES "Gesamt Dateien "
|
||||||
|
WL_TOTALBYTES " Bytes "
|
||||||
|
WL_SCANNINGDIRECTORY " Lese Verzeichnis "
|
||||||
|
WL_NOFILESFOUND " * KEINE DATEIEN GEFUNDEN * "
|
||||||
|
ST_FILESPRESSKEY "Beliebige Taste zum Fortsetzen"
|
||||||
|
WT_AREA "Area"
|
||||||
|
WT_DESCRIPTION "Beschreibung"
|
||||||
|
WT_MSGS "Msgs"
|
||||||
|
WT_LAST "Letzte"
|
||||||
|
WT_ECHOID "EchoID"
|
||||||
|
ST_UNREAD "ungelesen"
|
||||||
|
WT_SCANAREAS " Areas scannen "
|
||||||
|
MI_SCANALL "A Alle "
|
||||||
|
MI_SCANMARKED "M Markierte "
|
||||||
|
MI_SCANCURRENT "D Diese Hier "
|
||||||
|
MI_SCANMATCHING "P Passende "
|
||||||
|
MI_SCANUNSCANNED "U Undurchsuchte "
|
||||||
|
MI_NOSCAN "N Nichts / ESC "
|
||||||
|
WT_HEATAREAS " Area-Endmarke setzen "
|
||||||
|
MI_HEATALL "A Alle Areas "
|
||||||
|
MI_HEATMARKED "M Markierte "
|
||||||
|
MI_HEATCURRENT "D Diese Hier "
|
||||||
|
MI_NOHEAT "N Nichts / ESC "
|
||||||
|
WT_ZAPAREAS " Area-Endmarke l”schen "
|
||||||
|
MI_ZAPALL "A Alle Areas "
|
||||||
|
MI_ZAPMARKED "M Markierte "
|
||||||
|
MI_ZAPCURRENT "D Diese Hier "
|
||||||
|
MI_NOZAP "N Nichts / ESC "
|
||||||
|
MS_DOS_SHELL "GoldED-Kommandozeile. Zur<75>ck mit EXIT."
|
||||||
|
IL_SCANNINGAREA " Scanne Area:"
|
||||||
|
IL_SEARCHINGFOR " Suche nach"
|
||||||
|
ST_READINGMSG "Lese Message %u von %u"
|
||||||
|
ER_OUTOFMEM "Nicht gen<65>gend Speicher!"
|
||||||
|
MS_HEXDUMPHEAD "Hexdump des Messageheaders:"
|
||||||
|
MS_HEXDUMPTEXT "Hexdump des Messagetextes:"
|
||||||
|
ST_RENUMBERING "Renumeriere"
|
||||||
|
ST_LOCKED " (gesch<63>tzt)"
|
||||||
|
ST_RENUMBERED "Messages renumeriert - bitte Taste dr<64>cken!"
|
||||||
|
WL_BLANKMSG ""
|
||||||
|
WL_WAIT " Moment... "
|
||||||
|
IL_GENHEXDUMP " Erzeuge Hexdump - Moment... "
|
||||||
|
ST_PROCESSCC "Bearbeite Carbon Copies"
|
||||||
|
ST_STATUSCC "CC: %s von %u:%u/%u.%u"
|
||||||
|
ST_DESTINATIONCC "Wer soll Kopien erhalten?"
|
||||||
|
MS_LISTCC "%s %u:%u/%u.%u"
|
||||||
|
WT_DELORIG " Original l”schen? "
|
||||||
|
MI_DELORIGYES "J Ja bitte. "
|
||||||
|
MI_DELORIGNO "N Nein! "
|
||||||
|
WT_DROPMSG " Mail verwerfen? "
|
||||||
|
MI_DROPMSGYES "J Ja bitte. "
|
||||||
|
MI_DROPMSGNO "N Nein! "
|
||||||
|
WT_ZONEGATE " Sende via ZoneGate? "
|
||||||
|
MI_ZONEGATEYES "J Ja bitte. "
|
||||||
|
MI_ZONEGATENO "N Nein! "
|
||||||
|
ST_QUOTEPCT "Deine Mail enth„lt %i%% Quotes%s"
|
||||||
|
WT_SAVEMSG " Speichern der %i Zeilen? "
|
||||||
|
MI_YESGREAT "J Ja klar - ist super! "
|
||||||
|
MI_KICKIT "N Nein, weg damit / ESC "
|
||||||
|
MI_CONTINUE "W Weiterschreiben "
|
||||||
|
MI_ROT13 "R ROT13 verschl<68>sseln "
|
||||||
|
MI_ATTRS "A Attribute „ndern "
|
||||||
|
MI_ORIGS "O Origin „ndern "
|
||||||
|
MI_VIEW "L Nochmals Lesen "
|
||||||
|
ST_SELECTDESTNODE "Ziel-Node ausw„hlen"
|
||||||
|
WT_ATTACHFILES " Dateien anh„ngen "
|
||||||
|
WT_UPDREQFILES " Datei-Updaterequest "
|
||||||
|
ST_EDITHEADER "Bearbeite Header"
|
||||||
|
WT_EDITING " Editieren "
|
||||||
|
MI_INTERNALED "I Interner Editor "
|
||||||
|
MI_EXTERNALED "E Externer Editor "
|
||||||
|
MI_SAVEMESSAGE "S Speichern "
|
||||||
|
MI_ATTRO "A Attribute "
|
||||||
|
MI_TEMPLATE "V Vorlagen "
|
||||||
|
MI_ORIGIN "O Origins "
|
||||||
|
MI_QUITMESSAGE "N Nichts / ESC "
|
||||||
|
ST_TEMPLATES " Vorlagen "
|
||||||
|
WT_CHANGETEMPLATES " Standard-Vorlage „ndern "
|
||||||
|
WT_CARBONCOPY " Carbon Copy "
|
||||||
|
MI_CCPROCESS "B Bearbeiten "
|
||||||
|
MI_CCIGNORE "I Ignorieren "
|
||||||
|
MI_CCATTRIBS "A Attr. „ndern "
|
||||||
|
MI_CCLISTFMT "L Listenformat "
|
||||||
|
WT_CCLIST " CC-Liste "
|
||||||
|
MI_CCLISTKEEP "B Behalten "
|
||||||
|
MI_CCLISTNAMES "N Nur Namen "
|
||||||
|
MI_CCLISTVISIBLE "S Sichtbar "
|
||||||
|
MI_CCLISTHIDDEN "U Versteckt "
|
||||||
|
MI_CCLISTREMOVE "L L”schen "
|
||||||
|
WT_ATTRTITLE " Attribute "
|
||||||
|
MI_ATTR01 " Private <Alt-P> Archive/Sent <Alt-B> "
|
||||||
|
MI_ATTR02 " Crash <Alt-C> Direct <Alt-D> "
|
||||||
|
MI_ATTR03 " Received <Alt-R> Zonegate <Alt-G> "
|
||||||
|
MI_ATTR04 " Sent <Alt-S> Hub/Host-Route <Alt-V> "
|
||||||
|
MI_ATTR05 " File Attach <Alt-A> Immediate <Alt-I> "
|
||||||
|
MI_ATTR06 " Transit <Alt-J> Xmail <Alt-X> "
|
||||||
|
MI_ATTR07 " Orphan <Alt-O> Erase File/Sent <Alt-E> "
|
||||||
|
MI_ATTR08 " Kill/Sent <Alt-K> Trunc File/Sent <Alt-T> "
|
||||||
|
MI_ATTR09 " Local <Alt-W> Locked <Alt-L> "
|
||||||
|
MI_ATTR10 " Hold <Alt-H> Confirm Rcpt Request <Alt-Y> "
|
||||||
|
MI_ATTR11 " File Request <Alt-F> FTS1 Reserved <Alt-1> "
|
||||||
|
MI_ATTR12 " Return Rcpt Request <Alt-M> QBBS Reserved, Net <Alt-2> "
|
||||||
|
MI_ATTR13 " Return Rcpt <Alt-N> QBBS Reserved, Echo <Alt-3> "
|
||||||
|
MI_ATTR14 " Audit Request <Alt-Q> Squish Scanned <Alt-4> "
|
||||||
|
MI_ATTR15 " File Update Request <Alt-U> Zap all attribs <Alt-Z> "
|
||||||
|
HD_FROM " Von : "
|
||||||
|
HD_TO " An : "
|
||||||
|
HD_SUBJ " Betr : "
|
||||||
|
HD_FILE " Datei: "
|
||||||
|
MS_EMPTYMSG "\r"
|
||||||
|
MS_AUTOATTACHMSG "\r"
|
||||||
|
MS_AUTOREQUESTMSG "\r"
|
||||||
|
MS_AUTOUPDREQMSG "\r"
|
||||||
|
WT_FILEATTACH " Datei anh„ngen "
|
||||||
|
WT_FILEREQUEST " Datei requesten "
|
||||||
|
WT_FILEUPDREQ " Datei-Updaterequest "
|
||||||
|
ST_FILEATTACHING "Dateiversand [%i/%i] an %u:%u/%u.%u"
|
||||||
|
ST_FILEREQUESTING "Dateirequest [%i/%i] bei %u:%u/%u.%u"
|
||||||
|
ST_FILEUPDREQING "Datei-Updaterequest [%i/%i] bei %u:%u/%u.%u"
|
||||||
|
ST_READMARKED "Markierte lesen - Msg %u von %u (%u <20>brig)"
|
||||||
|
ST_READALL "Alle lesen - Msg %u von %u (%u <20>brig)"
|
||||||
|
ST_NOQRENUM "Diese Area kann nicht renummeriert werden"
|
||||||
|
HD_VIA "via"
|
||||||
|
WT_CHANGEATTRS "Attribute „ndern"
|
||||||
|
WT_HEADERTEXT " Suchen nach (Header+Text): "
|
||||||
|
WT_HEADERONLY " Suchen nach (nur Header): "
|
||||||
|
WT_NEWAREA ">>W„hle Area: "
|
||||||
|
WT_REPLYAREA ">>Antworte in Area: "
|
||||||
|
WT_COPYAREA ">>Kopieren in Area: "
|
||||||
|
WT_MOVEAREA ">>Verschieben in Area: "
|
||||||
|
WT_FORWARDAREA ">>Weiterleiten in Area: "
|
||||||
|
WT_FREQAREA ">>Dateirequest in Area: "
|
||||||
|
WT_FREQMENUTITLE " Requestbare Dateien: "
|
||||||
|
ST_FREQSTAT "W„hle Dateien zum Request aus"
|
||||||
|
IL_FREQINFONOFILES " Keine requestbaren Dateien gefunden! "
|
||||||
|
WT_COPY " Kopieren "
|
||||||
|
WT_MOVE " Verschieben "
|
||||||
|
WT_COPYING " Kopiere.. "
|
||||||
|
WT_MOVING " Verschiebe.. "
|
||||||
|
ST_COPYINGMSG "Kopiere Mail %u von %u nach %s"
|
||||||
|
ST_MOVINGMSG "Verschiebe Mail von %u nach %s"
|
||||||
|
WT_DELETE " L”schen "
|
||||||
|
WT_DELETING " L”sche... "
|
||||||
|
ST_DELETINGMSG "L”sche Mail %u von %u"
|
||||||
|
WT_WRITE " Sichern "
|
||||||
|
WT_WRITEMSGS " Mail(s) in Datei sichern "
|
||||||
|
WT_WRITING " Sichere.. "
|
||||||
|
ST_WRITINGMSG "Sichere Mail %u von %u"
|
||||||
|
WT_WRITINGFILE " Sichere Mail(s) in Datei %s "
|
||||||
|
WT_WRITINGPRN " Drucke Mail(s) "
|
||||||
|
IL_READONLYWARN " Diese Area ist READ ONLY! "
|
||||||
|
WT_ISREADONLY " Trotzdem schreiben? "
|
||||||
|
MI_READONLYYES "J Ja bitte. "
|
||||||
|
MI_READONLYNO "N Nein! "
|
||||||
|
IL_CHANGEWARN " Die Mail stammt NICHT von Dir! "
|
||||||
|
WT_CHANGE " Trotzdem „ndern? "
|
||||||
|
MI_CHANGEYES "J Ja bitte. "
|
||||||
|
MI_CHANGENO "N Nein! "
|
||||||
|
WT_DELETETHIS " Mail l”schen? "
|
||||||
|
MI_DELETEYES "J Ja bitte. "
|
||||||
|
MI_DELETENO "N Nein! "
|
||||||
|
MI_DELETENOASK "A Alle! Frag' nicht... "
|
||||||
|
WT_GOTONEXT " Zur n„chsten Area? "
|
||||||
|
MI_GOTONEXTYES "J Ja bitte. "
|
||||||
|
MI_GOTONEXTNO "N Nein! "
|
||||||
|
MI_GOTONEXTNEW "U zur Ungelesenen Area. "
|
||||||
|
WT_FORWARD " Nutze FWD-Kludges? "
|
||||||
|
MI_FORWARDYES "J Ja bitte. "
|
||||||
|
MI_FORWARDNO "N Nein! "
|
||||||
|
WT_MSG "Msg"
|
||||||
|
WT_MSGREAL "Msg#"
|
||||||
|
WT_FROML "Von"
|
||||||
|
WT_TOL "An"
|
||||||
|
WT_SUBJL "Betr"
|
||||||
|
ST_MSGLISTER "Liste - Msg. %u von %u (%u <20>brig)"
|
||||||
|
ST_COPYMOVEFORWARD "Kopieren, Verschieben oder Weiterleiten"
|
||||||
|
WT_SELECTACTION " Aktion "
|
||||||
|
MI_FORWARDMESSAGE "W Weiterleiten "
|
||||||
|
MI_MOVEMESSAGE "V Verschieben "
|
||||||
|
MI_COPYMESSAGE "K Kopieren "
|
||||||
|
MI_QUITCMF "N Nichts / ESC "
|
||||||
|
ST_ARE "Mails sind"
|
||||||
|
ST_IS "Mail ist"
|
||||||
|
ST_MARKED "markiert"
|
||||||
|
MI_MARKEDMSG "M Markierte "
|
||||||
|
MI_CURRENTMSG "k Aktuelle "
|
||||||
|
MI_QUITMSGS "N Nichts / ESC "
|
||||||
|
ST_WRITEMSGSTO "Mail sichern oder drucken"
|
||||||
|
WT_WRITETO " Schreiben: "
|
||||||
|
MI_DISKFILE "S Sichern "
|
||||||
|
MI_PRINTER "D Drucken "
|
||||||
|
MI_QUITWRITE "N Nichts / ESC "
|
||||||
|
ST_MARKINGOPTIONS "Mails markieren"
|
||||||
|
WT_MARKWHAT " Was Markieren? "
|
||||||
|
MI_YOURMAIL "P Pers”nliche Mail "
|
||||||
|
MI_FROMTOSUBJ "H Header (Von/An/Betr) "
|
||||||
|
MI_TEXTHDR "T Text und Header "
|
||||||
|
MI_THREAD "R Reply-Kette "
|
||||||
|
MI_NEWMSGS "n nachfolgende >aktuell "
|
||||||
|
MI_OLDMSGS "v vorhergehende <aktuell "
|
||||||
|
MI_ALLMSGS "A Alle Mails "
|
||||||
|
MI_UNMARK "D Demarkiere alle Mails "
|
||||||
|
MI_RANGE "B Bereich (Lesez.-akt.) "
|
||||||
|
MI_MARKSTOGGLE "I Invertieren "
|
||||||
|
MI_QUITMARKS "N Nichts / ESC "
|
||||||
|
WT_ENTERMARKSTRING " Suchtext Eingeben "
|
||||||
|
ST_SEARCHINGMSG " Durchsuche Mail %u von %u. Markiert: %u"
|
||||||
|
WT_USERLISTNAME " Name Der Userliste? "
|
||||||
|
IL_GENUSERLIST " Schreibe Userliste.. "
|
||||||
|
WT_FILEEXISTS " Datei existiert! "
|
||||||
|
MI_APPEND "A Am Ende Anh„ngen "
|
||||||
|
MI_OVERWRITE "š šberschreiben "
|
||||||
|
MI_QUITEXIST "N Neueingabe / ESC "
|
||||||
|
IL_WARNUNSENT " ACHTUNG! Diese Mail ist NICHT versendet! "
|
||||||
|
IL_WARNLOCKED " ACHTUNG! Diese Mail ist LOcKt!
|
||||||
|
ST_CHANGEORIGIN "Standard Origin „ndern"
|
||||||
|
WT_ORIGINS " Origins "
|
||||||
|
ST_CHANGEUSERNAME "Standard Benutzername „ndern"
|
||||||
|
WT_USERNAMES " Benutzername "
|
||||||
|
ST_CHANGEAKA "Standard AKA „ndern "
|
||||||
|
WT_AKAS " AKA's "
|
||||||
|
WT_LOOKUP " Suche: %s "
|
||||||
|
WL_PHONE "Telefon"
|
||||||
|
WT_QUITGOLDED " GoldED beenden? "
|
||||||
|
MI_QUITYES "J Ja bitte. "
|
||||||
|
MI_QUITNO "N Nein! "
|
||||||
|
MS_EDITCMD "Editor: %s"
|
||||||
|
IL_NOORIGDEFINED " Keine Origins definiert. Taste dr<64>cken "
|
||||||
|
IL_NOUSERDEFINED " Keine Benutzernamen definiert. Taste dr<64>cken "
|
||||||
|
IL_NOAKADEFINED " Keine AKA's definiert. Taste dr<64>cken "
|
||||||
|
IL_NOTPLDEFINED " Keine Vorlagen definiert. Taste dr<64>cken "
|
||||||
|
IL_NOTHREADLIST " Schade, keine Replies vorhanden. Taste dr<64>cken "
|
||||||
|
MS_SKIPPINGTWIT "šberspringe Twitmails.."
|
||||||
|
MS_KILLINGTWIT "L”sche Twitmails.."
|
||||||
|
IL_WRITINGCFG " Schreibe Konfiguration "
|
||||||
|
IL_COULDNOTOPEN " Kann %s nicht ”ffnen "
|
||||||
|
MS_PROMPT "\"EXIT\" f<>r R<>ckkehr zu GoldED.\r\n"
|
||||||
|
IL_UNFINISHEDMSG " Unfertige Mail gefunden! "
|
||||||
|
ST_LOADUNFINISHED " Taste zum Laden oder <ESC> zum šbergehen"
|
||||||
|
IL_READINGECHOLIST "Lese Echolist-Dateien"
|
||||||
|
IL_READINGADDRMACROS "Lese Adress-Macros"
|
||||||
|
IL_CHECKINGNODELISTS "Pr<50>fe Nodelisten"
|
||||||
|
ST_CROSSPOSTING "Crossposting in %s"
|
||||||
|
IL_TWITBLANKED " Twitmails leeren "
|
||||||
|
IL_TWITSKIPPED " Twitmails <20>berspringen "
|
||||||
|
IL_TWITIGNORESKIP " Twitmails ignorieren und <20>berspringen "
|
||||||
|
IL_TWITDISPLAYED " Twitmails anzeigen "
|
||||||
|
IL_TWITKILLED " Twitmails l”schen "
|
||||||
|
IL_STYLECODESNO " Hervorhebung ausgeschaltet "
|
||||||
|
IL_STYLECODESYES " Hervorhebung eingeschaltet "
|
||||||
|
IL_STYLECODESHIDE " Hervorhebung ohne Begrenzer "
|
||||||
|
ST_GENCFMRECEIPT "Erzeuge Empfangsbest„tigung"
|
||||||
|
WT_NEW "Neu"
|
||||||
|
ST_LOOKUPINFO "Nodelist-Suche: "
|
||||||
|
MS_DATETIMEFMT "%d %b %y %H:%M:%S"
|
||||||
|
MS_DATEFMT "%d %b %y"
|
||||||
|
MS_TIMEFMT "%H:%M"
|
||||||
|
MS_CROSSPOSTEDIN "* Crossposted in %s"
|
||||||
|
ST_STATUSLINEHELP "F1 Hilfe"
|
||||||
|
HD_OF "von"
|
||||||
|
MS_ROBOTMSG "\r--- @longpid @version\r"
|
||||||
|
ST_STATUSLINETIMEFMT "%H:%M:%S"
|
||||||
|
WT_REPLIES " Replies "
|
||||||
|
ST_SELECTREPLY "W„hle den zu lesenden Reply aus"
|
||||||
|
IL_WAITOREXIT " Hier muát du warten oder GoldED komplett beenden - Sorry! "
|
||||||
|
WT_REALLYEXIT " Wirklich beenden? "
|
||||||
|
MI_TAGLINES "T Tagline „ndern"
|
||||||
|
MI_HEADEREDIT "H Header editieren"
|
||||||
|
MI_SCANGROUP "G Gruppe durchsuchen"
|
||||||
|
WT_QWKPACKET " QWK Paket "
|
||||||
|
MI_SCANQWK "Q QWK Paket"
|
||||||
|
WT_SOUPPACKET " SOUP Paket "
|
||||||
|
MI_SCANSOUP "S SOUP Paket"
|
||||||
|
MI_SCANIMPORT "I Import"
|
||||||
|
MI_SCANEXPORT "E Export"
|
||||||
|
WT_SCANPM " Suche pers”nliche Mail "
|
||||||
|
MI_TAGLINE "g Taglines"
|
||||||
|
WT_CONFIRM " Ankunft best„tigen? "
|
||||||
|
MI_CONFIRMYES "J Ja, sende Best„tigung "
|
||||||
|
MI_CONFIRMNO "N Nein, Anfrage ablehnen "
|
||||||
|
IL_CONFIRMINFO " Der Absender erbittet Ankunftsbest„tigung (CFM) "
|
||||||
|
ST_MSG "msg"
|
||||||
|
ST_MSGS "msgs"
|
||||||
|
ST_PERSONAL "pers”nlich"
|
||||||
|
WT_GRP "Grp"
|
||||||
|
IL_FOUNDPERSONAL " %u pers”nliche Mail%s in %u Area%s gefunden "
|
||||||
|
IL_NOPERSONAL " Keine pers”nliche Mails gefunden "
|
||||||
|
ST_ESCORCONTINUE "ESC bricht ab. Jede andere: Versuche fortzusetzen."
|
||||||
|
MS_SPELLCHECKER "Rechtschreibungspr<70>fer: %s"
|
||||||
|
WT_INS " Einf "
|
||||||
|
MI_FILELISTFROM "Dateiliste von %s"
|
||||||
|
ST_UNREGWAIT "Unregistriert - Bitte Taste dr<64>cken oder %ld Sekunden warten"
|
||||||
|
ST_INITIALIZING "Initialisiere.."
|
||||||
|
ST_CHECKING "Pr<50>fe.."
|
||||||
|
ST_LOCKSHARECAP "%s Lock/Share-Unterst<73>tzung"
|
||||||
|
WT_ATTRTURNOFF " Alt-F1 schlieát dieses Fenster "
|
||||||
|
WT_TAGLINES " Taglines "
|
||||||
|
ST_CHANGETAGLINE "Standard-Tagline „ndern"
|
||||||
|
IL_NOTAGLINE " Keine Taglines definiert. Taste dr<64>cken "
|
||||||
|
WT_CHARSETS " Zeichens„tze "
|
||||||
|
ST_CHANGEXLATIMP "Standard-Charset f<>r Import „ndern"
|
||||||
|
IL_NOXLATIMPORT " Keine XLATIMPORT's definiert. Taste dr<64>cken "
|
||||||
|
WT_N_A "nv."
|
||||||
|
WT_WRITTEN "Verfasst"
|
||||||
|
WT_ARRIVED "Angekommen"
|
||||||
|
WT_RECEIVED "Gelesen"
|
||||||
|
IL_NONODELIST " Kann Nodeliste oder Index nicht ”ffnen "
|
||||||
|
IL_NODELISTMISSING "Nodeliste fehlt:"
|
||||||
|
IL_NODELISTOUTDATED "Nodeliste veraltet:"
|
||||||
|
MS_REPLYLINKER "Replylinker: %s"
|
||||||
|
WT_ENTERMSGNO " Msg.-Nr eingeben: "
|
||||||
|
IL_WAITUUDECODING " Moment... UUdecodiere Nachricht "
|
||||||
|
IL_COMPLETEDUUDECODE " UUdecode von %s beendet "
|
||||||
|
IL_NOTUUENCODED " Nichts zum UUdecodieren gefunden "
|
||||||
|
IL_ERRORINSOUP " Fehler in SOUP-Datei %s "
|
||||||
|
IL_WARNALREADYSENT " ACHTUNG: Nachricht ist bereits versendet! "
|
||||||
|
IL_WAITLOCKED " Moment: %s ist gesch<63>tzt "
|
||||||
|
ST_RETRYORESC "%s Wiederholung (%lu). Um GoldED zu beenden, dr<64>cke ESC."
|
||||||
|
ST_RETRYLOCK "Gesch<63>tzt"
|
||||||
|
ST_RETRYOPEN "Verf<72>gbar"
|
||||||
|
WT_TOUCHSEMAPHORE " Name der Semaphore eingeben "
|
||||||
|
MI_WRITETOHDRNO "H Header: Nein "
|
||||||
|
MI_WRITETOHDRYES "K Header: Ja "
|
||||||
|
MI_CLIPBOARD "C Clipboard "
|
||||||
|
WT_SELECTMARKS " Markierungsgruppe w„hlen "
|
||||||
|
WT_SELECTMARKSEDIT " Editiere Gruppenbeschreibung "
|
||||||
|
IL_DROPMARKSINFO "%s Nachrichten sind markiert "
|
||||||
|
WT_DROPMARKS " L”sche Markierungen in.. "
|
||||||
|
MI_DROPALL "A Allen Areas "
|
||||||
|
MI_DROPMARKED "M Markierten Areas "
|
||||||
|
MI_DROPCURRENT "D Dieser Area hier "
|
||||||
|
MI_NODROP "N Nichts / ESC "
|
||||||
|
WT_CATCHAREAS " Areas einholen "
|
||||||
|
MI_CATCHALL "A Alle "
|
||||||
|
MI_CATCHMARKED "M Markierte "
|
||||||
|
MI_CATCHCURRENT "D Diese hier "
|
||||||
|
MI_NOCATCH "N Nichts / ESC "
|
||||||
|
|
||||||
|
----------------------------------------------------------------------
|
||||||
|
|
501
cfgs/config/goldlang.it
Normal file
501
cfgs/config/goldlang.it
Normal file
@ -0,0 +1,501 @@
|
|||||||
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// GoldED 3.00 * Italian Language Definition File
|
||||||
|
//
|
||||||
|
// Translated 15-04-1999 (rev 1.00) by : Gd'A;
|
||||||
|
// e-mail : gda@cryogen.com
|
||||||
|
//
|
||||||
|
// Note : Alcune parole sono intraducibili e quindi ho preferito
|
||||||
|
// lasciarle invariate.
|
||||||
|
// Spero di aver tempo per rimettere mano a questa traduzione
|
||||||
|
// in modo da ottenere un risultato meno ridicolo! :-)
|
||||||
|
// Sicuramente ho fatto molti errori di traduzione, ogni
|
||||||
|
// segnalazione sara' ben gradita!
|
||||||
|
//
|
||||||
|
// Prima di iniziare la ridefinizione di questo file di linguaggio,
|
||||||
|
// e' consigliabile stamparlo cosi' da poterlo tenere vicino
|
||||||
|
// come testo di riferimento.
|
||||||
|
// La ridefinizione potrebbe diventare un processo lento e difficile.
|
||||||
|
//
|
||||||
|
// Il formato delle linee in questo file di linguaggio e':
|
||||||
|
//
|
||||||
|
// <stringid> <"stringa">
|
||||||
|
//
|
||||||
|
// Ogni stringa e' prefissata da una categoria, questo per
|
||||||
|
// permettere una piu' facile identificazione delle
|
||||||
|
// ridefinizioni. La stringa non differenzia tra maiuscolo e
|
||||||
|
// minuscolo.
|
||||||
|
//
|
||||||
|
// Categorie identificative:
|
||||||
|
// --------------
|
||||||
|
// ST_ Linea di stato Lunghezza variabile.
|
||||||
|
// WT_ Titolo di finestra Lunghezza variabile.
|
||||||
|
// MI_ Voce del menu Lunghezza fissa, primo carattere QuickChar.
|
||||||
|
// IL_ Linea informativa Lunghezza variabile.
|
||||||
|
// WL_ Linea di finestra Usualmente lunghezza fissa.
|
||||||
|
// HD_ Linea dell'header Usualmente lunghezza fissa.
|
||||||
|
// MS_ Messaggio Lunghezza variabile.
|
||||||
|
// ER_ Messaggio di errore Lunghezza variabile.
|
||||||
|
//
|
||||||
|
// "Lunghezza fissa" significa che tutte le stringhe devono avere
|
||||||
|
// la medesima lunghezza.
|
||||||
|
// Effettivamente la lunghezza e' normalmente limitata solo dalla
|
||||||
|
// dimensione dello schermo. Nel caso dei menu, la larghezza della
|
||||||
|
// finestra e' sempre basata sulla lunghezza della stringa della
|
||||||
|
// *prima* voce.
|
||||||
|
//
|
||||||
|
// Il "QuickChar", all'interno di un menu, e' il carattere che viene
|
||||||
|
// mostrato come evidenziato e che e' direttamente selezionabile.
|
||||||
|
// Questo QuickChar e' sensibile all'uso delle maiuscole o minuscole
|
||||||
|
// e naturalmente deve trovare corrispondenza in una carattere che
|
||||||
|
// si trova all'interno della stringa.
|
||||||
|
//
|
||||||
|
// Le stringhe dovrebbero sempre essere racchiuse tra la virgolette
|
||||||
|
// doppie o singole ("" oppure ''). Si puo' fare eccezione a questa
|
||||||
|
// regola se la stringa non ha bisogno di spazi in testa o alla
|
||||||
|
// fine.
|
||||||
|
//
|
||||||
|
// Alcune stringhe contengono delle sequenze di "escape" o degli
|
||||||
|
// specificatori di formato cosi' come vengono utilizzati dal
|
||||||
|
// linguaggio di programmazione "C".
|
||||||
|
// Alcune espressioni provenienti da template possono essere
|
||||||
|
// utilizzate in stringhe speciali.
|
||||||
|
//
|
||||||
|
// Sequenze di escape: (sensibili alle maiuscole/minuscole!)
|
||||||
|
// -----------------------------------
|
||||||
|
// \n - Fine riga (LF) (tradotto in CR+LF nei files).
|
||||||
|
// \r - Ritorno carrello (CR).
|
||||||
|
//
|
||||||
|
// Le sequenze di escape sono normalmente usate nelle linee
|
||||||
|
// per files oppure nei messaggi di output standard (DOS).
|
||||||
|
//
|
||||||
|
// Specificatori di formato: (sensibili alle maiuscole/minuscole!)
|
||||||
|
// ------------------------------------
|
||||||
|
// %c - Carattere.
|
||||||
|
// %s - Stringa.
|
||||||
|
// %i - Intero.
|
||||||
|
// %u - Integero senza segno.
|
||||||
|
// %% - Il carattere percentuale (%).
|
||||||
|
//
|
||||||
|
// Se modifichi una linea che contiene uno specificatore di formato,
|
||||||
|
// fai attenzione che questi siano in numero ed ordine uguali a quanto
|
||||||
|
// specificato dall'esempio originale.
|
||||||
|
// Non seguire questa regola puo' causare degli errori imprevedibili.
|
||||||
|
//
|
||||||
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------------------------------------------------
|
||||||
|
-- NOMI DEI GIORNI DELLA SETTIMANA E DEI MESI
|
||||||
|
|
||||||
|
// Giorni della settimana, forma breve
|
||||||
|
MS_SWSUN "Dom"
|
||||||
|
MS_SWMON "Lun"
|
||||||
|
MS_SWTUE "Mar"
|
||||||
|
MS_SWWED "Mer"
|
||||||
|
MS_SWTHU "Gio"
|
||||||
|
MS_SWFRI "Ven"
|
||||||
|
MS_SWSAT "Sab"
|
||||||
|
|
||||||
|
// Giorni della settimana, forma lunga
|
||||||
|
MS_LWSUNDAY "Domenica"
|
||||||
|
MS_LWMONDAY "Lunedi"
|
||||||
|
MS_LWTUESDAY "Martedi"
|
||||||
|
MS_LWWEDNESDAY "Mercoledi"
|
||||||
|
MS_LWTHURSDAY "Giovedi"
|
||||||
|
MS_LWFRIDAY "Venerdi"
|
||||||
|
MS_LWSATURDAY "Sabato"
|
||||||
|
|
||||||
|
// Mesi, forma breve
|
||||||
|
MS_SMJAN "Gen"
|
||||||
|
MS_SMFEB "Feb"
|
||||||
|
MS_SMMAR "Mar"
|
||||||
|
MS_SMAPR "Apr"
|
||||||
|
MS_SMMAY "Mag"
|
||||||
|
MS_SMJUN "Giu"
|
||||||
|
MS_SMJUL "Lug"
|
||||||
|
MS_SMAUG "Ago"
|
||||||
|
MS_SMSEP "Set"
|
||||||
|
MS_SMOCT "Ott"
|
||||||
|
MS_SMNOV "Nov"
|
||||||
|
MS_SMDEC "Dic"
|
||||||
|
|
||||||
|
// Mesi, forma lunga
|
||||||
|
MS_LMJANUARY "Gennaio"
|
||||||
|
MS_LMFEBRUARY "Febbraio"
|
||||||
|
MS_LMMARCH "Marzo"
|
||||||
|
MS_LMAPRIL "Aprile"
|
||||||
|
MS_LMMAY "Maggio"
|
||||||
|
MS_LMJUNE "Giugno"
|
||||||
|
MS_LMJULY "Luglio"
|
||||||
|
MS_LMAUGUST "Agosto"
|
||||||
|
MS_LMSEPTEMBER "Settembre"
|
||||||
|
MS_LMOCTOBER "Ottobre"
|
||||||
|
MS_LMNOVEMBER "Novembre"
|
||||||
|
MS_LMDECEMBER "Dicembre"
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------------------------------------------------
|
||||||
|
-- MISCELA DI PAROLE CHIAVE
|
||||||
|
|
||||||
|
ST_IMPORTFILE "File da importare"
|
||||||
|
WT_IMPORTWHICHFILE " Quale file importare? "
|
||||||
|
WT_IMPORTPICK " Importa "
|
||||||
|
WT_IMPORTTXT " Importa "
|
||||||
|
MI_IMPORTTXTTEXT "T File di Testo "
|
||||||
|
MI_IMPORTTXTQUOTE "Q File come Quote"
|
||||||
|
MI_IMPORTTXTUUE "U Binario in UUE "
|
||||||
|
MI_IMPORTTXTMIME "M Binario in MIME"
|
||||||
|
MI_IMPORTTXTCLIP "C da Clipboard "
|
||||||
|
MI_IMPORTTXTXLAT "s Usa Charset.. "
|
||||||
|
MI_IMPORTTXTQUIT "N Nulla / Esci "
|
||||||
|
ST_IMPORTSTATUS "Importo da %s"
|
||||||
|
ST_EXPORTFILE "Esporta File"
|
||||||
|
WT_EXPORTWHATFILE " Esporto su quale file? "
|
||||||
|
ST_EXPORTSTATUS "Esporto su %s"
|
||||||
|
ST_EDITSTATUS "Edita %i,%i. %s"
|
||||||
|
ST_SELECTFILES "Seleziona Files"
|
||||||
|
WL_SELECTEDFILES "Files Selezionati "
|
||||||
|
WL_SELECTEDBYTES " Bytes "
|
||||||
|
WL_TOTALFILES "Totale Files "
|
||||||
|
WL_TOTALBYTES " Bytes "
|
||||||
|
WL_SCANNINGDIRECTORY " Analizzo le directory "
|
||||||
|
WL_NOFILESFOUND " * NESSUN FILE TROVATO * "
|
||||||
|
ST_FILESPRESSKEY "Premi un carattere per continuare"
|
||||||
|
WT_AREA "Area"
|
||||||
|
WT_DESCRIPTION "Descrizione"
|
||||||
|
WT_MSGS "Msgs"
|
||||||
|
WT_LAST "Ultimo"
|
||||||
|
WT_ECHOID "EchoID"
|
||||||
|
ST_UNREAD "non letti"
|
||||||
|
WT_SCANAREAS " Analizzo Aree "
|
||||||
|
MI_SCANALL "A Scan All "
|
||||||
|
MI_SCANALL "A Tutte "
|
||||||
|
MI_SCANMARKED "M Selezionate "
|
||||||
|
MI_SCANCURRENT "C Corrente "
|
||||||
|
MI_SCANMATCHING "t Corrispondenti "
|
||||||
|
MI_SCANUNSCANNED "U Non analizzate "
|
||||||
|
MI_NOSCAN "N Nessuna / ESC "
|
||||||
|
WT_HEATAREAS " Seleziona Aree "
|
||||||
|
MI_HEATALL "A Tutte "
|
||||||
|
MI_HEATMARKED "M Marcate "
|
||||||
|
MI_HEATCURRENT "C Corrente "
|
||||||
|
MI_NOHEAT "N Nessuna / ESC "
|
||||||
|
WT_ZAPAREAS " Deseleziona Aree "
|
||||||
|
MI_ZAPALL "A Tutte "
|
||||||
|
MI_ZAPMARKED "M Marcate "
|
||||||
|
MI_ZAPCURRENT "C Corrente "
|
||||||
|
MI_NOZAP "N Nessuna / ESC"
|
||||||
|
MS_DOS_SHELL "GoldED Shell. Scrivi EXIT per ritornare."
|
||||||
|
IL_SCANNINGAREA " Analizzo Area:"
|
||||||
|
IL_SEARCHINGFOR " Cerca"
|
||||||
|
ST_READINGMSG "Leggo Msg %u di %u"
|
||||||
|
ER_OUTOFMEM "Fine della memoria!"
|
||||||
|
MS_HEXDUMPHEAD "Contenuto esadecimale dell'header del messaggio:"
|
||||||
|
MS_HEXDUMPTEXT "Contenuto esadecimale del corpo del messaggio:"
|
||||||
|
ST_RENUMBERING "Rinumerazione"
|
||||||
|
ST_LOCKED " (lockato)"
|
||||||
|
ST_RENUMBERED "Messaggi rinumerati - Premi un tasto"
|
||||||
|
WL_BLANKMSG ""
|
||||||
|
WL_WAIT " Stop "
|
||||||
|
IL_GENHEXDUMP " Genero l'Hexdump - Attendi "
|
||||||
|
ST_PROCESSCC "Processo le copie carbone"
|
||||||
|
ST_STATUSCC "CC: %s of %u:%u/%u.%u"
|
||||||
|
ST_DESTINATIONCC "Seleziona le destinazioni delle copie carbone"
|
||||||
|
MS_LISTCC "%s %u:%u/%u.%u"
|
||||||
|
WT_DELORIG " Cancello l'originale? "
|
||||||
|
MI_DELORIGYES "Y Si, grazie. "
|
||||||
|
MI_DELORIGNO "N No! "
|
||||||
|
WT_DROPMSG " D Elimino questo messaggio? "
|
||||||
|
MI_DROPMSGYES "Y Si, grazie. "
|
||||||
|
MI_DROPMSGNO "N No! "
|
||||||
|
WT_ZONEGATE " Spedisco via ZoneGate? "
|
||||||
|
MI_ZONEGATEYES "Y Si, grazie. "
|
||||||
|
MI_ZONEGATENO "N No! "
|
||||||
|
ST_QUOTEPCT "Il tuo messaggio contiene %i%% Quotes%s"
|
||||||
|
WT_SAVEMSG " Salvo queste %i linee? "
|
||||||
|
MI_YESGREAT "Y Si, certo! "
|
||||||
|
MI_KICKIT "N No, grazie.. / ESC "
|
||||||
|
MI_CONTINUE "C Continuo a scrivere "
|
||||||
|
MI_ROT13 "R Criptazione ROT13 "
|
||||||
|
MI_ATTRS "A Cambia gli attributi "
|
||||||
|
MI_ORIGS "O Cambia l'Origin "
|
||||||
|
MI_VIEW "V Visualizza messaggio "
|
||||||
|
ST_SELECTDESTNODE "Seleziona il nodo di destinazione"
|
||||||
|
WT_ATTACHFILES " Files Attaccati "
|
||||||
|
WT_UPDREQFILES " Aggiorna i File richiesti "
|
||||||
|
ST_EDITHEADER "Modifica i dati dell'Header"
|
||||||
|
WT_EDITING " Modifica "
|
||||||
|
MI_INTERNALED "I Editor Interno "
|
||||||
|
MI_EXTERNALED "E Editor Esterno "
|
||||||
|
MI_SAVEMESSAGE "S Salva Messaggio "
|
||||||
|
MI_ATTRO "A Attributi "
|
||||||
|
MI_TEMPLATE "T Template "
|
||||||
|
MI_ORIGIN "O Origini "
|
||||||
|
MI_QUITMESSAGE "Q Esci / ESC "
|
||||||
|
ST_TEMPLATES " Template "
|
||||||
|
WT_CHANGETEMPLATES "Cambia il Template"
|
||||||
|
WT_CARBONCOPY " Copia carbone "
|
||||||
|
MI_CCPROCESS "P Processa CC "
|
||||||
|
MI_CCIGNORE "I Ignora CC "
|
||||||
|
MI_CCATTRIBS "C Cambia Attr. "
|
||||||
|
MI_CCLISTFMT "L Mostra Form. "
|
||||||
|
WT_CCLIST " Lista CC"
|
||||||
|
MI_CCLISTKEEP "K Mantini "
|
||||||
|
MI_CCLISTNAMES "N Solo Nomi "
|
||||||
|
MI_CCLISTVISIBLE "V Visibili "
|
||||||
|
MI_CCLISTHIDDEN "H Nascosti "
|
||||||
|
MI_CCLISTREMOVE "R Rimuovi "
|
||||||
|
WT_ATTRTITLE " Attributi "
|
||||||
|
MI_ATTR01 " Privato <Alt-P> Archiviato/Spedito <Alt-B> "
|
||||||
|
MI_ATTR02 " Crash <Alt-C> Diretto <Alt-D> "
|
||||||
|
MI_ATTR03 " Ricevuto <Alt-R> Zonegate <Alt-G> "
|
||||||
|
MI_ATTR04 " Spedito <Alt-S> Hub/Host-Route <Alt-V> "
|
||||||
|
MI_ATTR05 " File attaccato <Alt-A> Immediato <Alt-I> "
|
||||||
|
MI_ATTR06 " In transito <Alt-J> Xmail <Alt-X> "
|
||||||
|
MI_ATTR07 " Orfano <Alt-O> Erase File/Sent <Alt-E> "
|
||||||
|
MI_ATTR08 " Kill/Sent <Alt-K> Trunc File/Sent <Alt-T> "
|
||||||
|
MI_ATTR09 " Locale <Alt-W> Lockato <Alt-L> "
|
||||||
|
MI_ATTR10 " Hold <Alt-H> Confirm Rcpt Request <Alt-Y> "
|
||||||
|
MI_ATTR11 " Richiesta file <Alt-F> FTS1 Reserved <Alt-1> "
|
||||||
|
MI_ATTR12 " Return Rcpt Request <Alt-M> QBBS Reserved, Net <Alt-2> "
|
||||||
|
MI_ATTR13 " Return Rcpt <Alt-N> QBBS Reserved, Echo <Alt-3> "
|
||||||
|
MI_ATTR14 " Audit Request <Alt-Q> Squish scanned <Alt-4> "
|
||||||
|
MI_ATTR15 " File Update Request <Alt-U> Elimina tutti attrib <Alt-Z> "
|
||||||
|
HD_FROM " From : "
|
||||||
|
HD_TO " To : "
|
||||||
|
HD_SUBJ " Subj : "
|
||||||
|
HD_FILE " File : "
|
||||||
|
MS_EMPTYMSG "\r"
|
||||||
|
MS_AUTOATTACHMSG "\r"
|
||||||
|
MS_AUTOREQUESTMSG "\r"
|
||||||
|
MS_AUTOUPDREQMSG "\r"
|
||||||
|
WT_FILEATTACH " File Attaccato "
|
||||||
|
WT_FILEREQUEST " File Richiesto "
|
||||||
|
WT_FILEUPDREQ " Aggiorna richiesta "
|
||||||
|
ST_FILEATTACHING "File Attaccato [%i/%i] a %u:%u/%u.%u"
|
||||||
|
ST_FILEREQUESTING "File Richiesto [%i/%i] da %u:%u/%u.%u"
|
||||||
|
ST_FILEUPDREQING "Aggiona Richiesta [%i/%i] da %u:%u/%u.%u"
|
||||||
|
ST_READMARKED "Leggi Marcati - Msg %u di %u (%u ancora)"
|
||||||
|
ST_READALL "Leggi Tutti - Msg %u di %u (%u ancora)"
|
||||||
|
ST_NOQRENUM "Questa area non puo' essere renumerata"
|
||||||
|
MS_HIDINGTWIT "Questo e' un Twit Message - Premi <Home> per leggerlo."
|
||||||
|
HD_VIA "via"
|
||||||
|
WT_CHANGEATTRS "Cambia gli attributi del messaggio"
|
||||||
|
WT_HEADERTEXT " Stringa di ricerca (Header+Testo) "
|
||||||
|
WT_HEADERONLY " Stringa di ricerca (Solo Header) "
|
||||||
|
WT_NEWAREA ">>Seleziona nuova area: "
|
||||||
|
WT_REPLYAREA ">>Rispondi nell'area: "
|
||||||
|
WT_COPYAREA ">>Copia nell'area: "
|
||||||
|
WT_MOVEAREA ">>Muovi nell'area: "
|
||||||
|
WT_FORWARDAREA ">>Sposta nell'area: "
|
||||||
|
WT_FREQAREA ">>Filerequest nell'area: "
|
||||||
|
WT_FREQMENUTITLE "File richiedibili"
|
||||||
|
ST_FREQSTAT "Prendi i file richiedibili"
|
||||||
|
IL_FREQINFONOFILES " Non ci sono file richiedibili in questo messaggio! "
|
||||||
|
WT_COPY " Copia "
|
||||||
|
WT_MOVE " Muovi "
|
||||||
|
WT_COPYING " Copio "
|
||||||
|
WT_MOVING " Muovo "
|
||||||
|
ST_COPYINGMSG "Copio Msg %u di %u a %s"
|
||||||
|
ST_MOVINGMSG "Muovo Msg %u di %u a %s"
|
||||||
|
WT_DELETE " Cancella "
|
||||||
|
WT_DELETING " Cancello "
|
||||||
|
ST_DELETINGMSG "Cancello Msg %u di %u"
|
||||||
|
WT_WRITE " Scrivi "
|
||||||
|
WT_WRITEMSGS " Scrivi Msg/i sul file "
|
||||||
|
WT_WRITING " Scrivo "
|
||||||
|
ST_WRITINGMSG "Srivo Msg %u di %u"
|
||||||
|
WT_WRITINGFILE " Scrivo Msg/i sul file %s "
|
||||||
|
WT_WRITINGPRN " Stampo Msg/i "
|
||||||
|
IL_READONLYWARN " Quest'area e' in SOLA LETTURA "
|
||||||
|
WT_ISREADONLY " Scrivi comunque il messaggio? "
|
||||||
|
MI_READONLYYES "Y Si, grazie. "
|
||||||
|
MI_READONLYNO "N No! "
|
||||||
|
IL_CHANGEWARN " Questo messaggio NON proviene da te! "
|
||||||
|
WT_CHANGE " Cambia questo messaggio? "
|
||||||
|
MI_CHANGEYES "Y Si, grazie. "
|
||||||
|
MI_CHANGENO "N No! "
|
||||||
|
WT_DELETETHIS " Cancello questo messaggio? "
|
||||||
|
MI_DELETEYES "Y Si, grazie. "
|
||||||
|
MI_DELETENO "N No! "
|
||||||
|
MI_DELETENOASK "D Non chiedere.. "
|
||||||
|
WT_GOTONEXT " Prossima area? "
|
||||||
|
MI_GOTONEXTYES "Y Si, grazie. "
|
||||||
|
MI_GOTONEXTNO "N No! "
|
||||||
|
MI_GOTONEXTNEW "U Si, prossima non letta "
|
||||||
|
WT_FORWARD " Usa FWD kludges? "
|
||||||
|
MI_FORWARDYES "Y Si, grazie. "
|
||||||
|
MI_FORWARDNO "N No! "
|
||||||
|
WT_MSG "Msg"
|
||||||
|
WT_MSGREAL "Msg#"
|
||||||
|
WT_FROML "From"
|
||||||
|
WT_TOL "To"
|
||||||
|
WT_SUBJL "Subj"
|
||||||
|
ST_MSGLISTER "Lista - Msg %u di %u (%u ancora)"
|
||||||
|
ST_COPYMOVEFORWARD "Copia, Muovi or Sposta questo messaggio"
|
||||||
|
WT_SELECTACTION " Azione "
|
||||||
|
MI_FORWARDMESSAGE "F Sposta Msg "
|
||||||
|
MI_MOVEMESSAGE "M Muovi Msg "
|
||||||
|
MI_COPYMESSAGE "C Copia Msg "
|
||||||
|
MI_QUITCMF "Q Esci / ESC "
|
||||||
|
ST_ARE "messaggi sono"
|
||||||
|
ST_IS "messaggio è"
|
||||||
|
ST_MARKED "marcato"
|
||||||
|
MI_MARKEDMSG "M Msg marcati "
|
||||||
|
MI_CURRENTMSG "C Msg correnti"
|
||||||
|
MI_QUITMSGS "Q Esci / ESC "
|
||||||
|
ST_WRITEMSGSTO "Scrivi Msg/i su File o Stampante"
|
||||||
|
WT_WRITETO " Scrivi a: "
|
||||||
|
MI_DISKFILE "D Su disco "
|
||||||
|
MI_PRINTER "P Su stampante "
|
||||||
|
MI_QUITWRITE "Q Esci / ESC "
|
||||||
|
ST_MARKINGOPTIONS "Marco messaggio"
|
||||||
|
WT_MARKWHAT " Quale marco? "
|
||||||
|
MI_YOURMAIL "Y Posta personale "
|
||||||
|
MI_FROMTOSUBJ "H Header (From/To/Subj) "
|
||||||
|
MI_TEXTHDR "T Testo ed header "
|
||||||
|
MI_THREAD "R Catena delle repliche "
|
||||||
|
MI_NEWMSGS "N Nuovi msg/i > attuale "
|
||||||
|
MI_OLDMSGS "O Vecchi msg/i < attuale "
|
||||||
|
MI_ALLMSGS "A Tutti "
|
||||||
|
MI_UNMARK "U Deseleziona msg/i "
|
||||||
|
MI_RANGE "M Msg range (bookm-curr) "
|
||||||
|
MI_MARKSTOGGLE "g Inverti i marcati "
|
||||||
|
MI_QUITMARKS "Q Esci / ESC "
|
||||||
|
WT_ENTERMARKSTRING " Stringa per marcare "
|
||||||
|
ST_SEARCHINGMSG "Ricerco Msg %u di %u. Marcati: %u"
|
||||||
|
WT_USERLISTNAME " Nome del file della lista utenti? "
|
||||||
|
IL_GENUSERLIST " Lista utenti... "
|
||||||
|
WT_FILEEXISTS " Il file esiste! "
|
||||||
|
MI_APPEND "A Aggiungi alla fine "
|
||||||
|
MI_OVERWRITE "O Sovrascrivi "
|
||||||
|
MI_QUITEXIST "R Nuovo nome ESC "
|
||||||
|
IL_WARNUNSENT " ATTENZIONE! Questo messaggio NON è stato spedito!"
|
||||||
|
IL_WARNLOCKED " ATTENZIONE! Questo messaggio è in uso! "
|
||||||
|
ST_CHANGEORIGIN "Cambia l'origin di default"
|
||||||
|
WT_ORIGINS " Origini "
|
||||||
|
ST_CHANGEUSERNAME "Cambia il nome utente di default"
|
||||||
|
WT_USERNAMES " Nomi utente "
|
||||||
|
ST_CHANGEAKA "Cambia l'indizzo AKA di default"
|
||||||
|
WT_AKAS " AKA "
|
||||||
|
WT_LOOKUP " Ricerca: %s "
|
||||||
|
WL_PHONE "Telefono"
|
||||||
|
WT_QUITGOLDED " Esci da GoldED? "
|
||||||
|
MI_QUITYES "Y Si, grazie. "
|
||||||
|
MI_QUITNO "N No! "
|
||||||
|
MS_EDITCMD "Editor: %s"
|
||||||
|
IL_NOORIGDEFINED " Nessuna origin definita. Premi un tasto "
|
||||||
|
IL_NOUSERDEFINED " Nessun nome utente definito. Premi un tasto "
|
||||||
|
IL_NOAKADEFINED " Nessuna AKA definito. Premi un tasto "
|
||||||
|
IL_NOTPLDEFINED " Nessun template definito. Premi un tasto "
|
||||||
|
IL_NOTHREADLIST " Nessana catena delle repliche. Premi un tasto"
|
||||||
|
MS_SKIPPINGTWIT "Salto i messaggi Twit..."
|
||||||
|
MS_KILLINGTWIT "Cancello i messaggi Twit..."
|
||||||
|
IL_WRITINGCFG " Scrivo la configurazione "
|
||||||
|
IL_COULDNOTOPEN " Non posso aprire %s "
|
||||||
|
MS_PROMPT "Digita il comando \"EXIT\" per tornare a GoldED.\r\n"
|
||||||
|
IL_UNFINISHEDMSG " Ho trovato un messaggio NON finito! "
|
||||||
|
ST_LOADUNFINISHED "Premi un tasto per caricarlo o <ESC> per ignorarlo"
|
||||||
|
IL_READINGECHOLIST "Leggo i file di Echolist "
|
||||||
|
IL_READINGADDRMACROS "Leggo le macro per gli Indirizzi"
|
||||||
|
IL_CHECKINGNODELISTS "Controllo la Nodelist"
|
||||||
|
ST_CROSSPOSTING "Crossposting in %s"
|
||||||
|
IL_TWITBLANKED " Msg/i Twit ripuliti "
|
||||||
|
IL_TWITSKIPPED " Msg/i Twit saltati "
|
||||||
|
IL_TWITIGNORESKIP " Msg/i Twit ignorati e saltati "
|
||||||
|
IL_TWITDISPLAYED " Msg/i Twit visualizzati "
|
||||||
|
IL_TWITKILLED " Msg/i Twit cancellati "
|
||||||
|
IL_STYLECODESNO " Codici di stile disabilitati "
|
||||||
|
IL_STYLECODESYES " Codici di stile abilitati "
|
||||||
|
IL_STYLECODESHIDE " Codici di stile abilitati ed eliminati "
|
||||||
|
ST_GENCFMRECEIPT "Generazione conferma di ricevimento"
|
||||||
|
WT_NEW "Nuovo"
|
||||||
|
ST_LOOKUPINFO "Informazioni di ricerca sulla Nodelist"
|
||||||
|
MS_DATETIMEFMT "%d %b %y %H:%M:%S"
|
||||||
|
MS_DATEFMT "%d %b %y"
|
||||||
|
MS_TIMEFMT "%H:%M"
|
||||||
|
MS_CROSSPOSTEDIN "* Crosspostato su %s"
|
||||||
|
ST_STATUSLINEHELP "F1 Aiuto"
|
||||||
|
HD_OF "of"
|
||||||
|
MS_ROBOTMSG "\r--- @longpid @version\r"
|
||||||
|
ST_STATUSLINETIMEFMT "%H:%M:%S"
|
||||||
|
WT_REPLIES " Repliche "
|
||||||
|
ST_SELECTREPLY "Seleziona le repliche che vuoi vedere"
|
||||||
|
IL_WAITOREXIT " A questo punto devi aspettare o uscire totalmente da GoldED! "
|
||||||
|
WT_REALLYEXIT " Confermi uscita? "
|
||||||
|
MI_TAGLINES "T Cambia Tagline"
|
||||||
|
MI_HEADEREDIT "H Edit Header"
|
||||||
|
MI_SCANGROUP "G Group."
|
||||||
|
WT_QWKPACKET " Paccheto QWK "
|
||||||
|
MI_SCANQWK "Q QWK Pack. "
|
||||||
|
WT_SOUPPACKET " SOUP Pack. "
|
||||||
|
MI_SCANSOUP "S SOUP Pack. "
|
||||||
|
MI_SCANIMPORT "I Import"
|
||||||
|
MI_SCANEXPORT "E Esport"
|
||||||
|
WT_SCANPM " Ricerva PM "
|
||||||
|
MI_TAGLINE "g Tagline "
|
||||||
|
WT_CONFIRM " Permetti le richieste di avvenuta conferma? "
|
||||||
|
MI_CONFIRMYES "Y Si, ma la conferma "
|
||||||
|
MI_CONFIRMNO "N No, ignorala "
|
||||||
|
IL_CONFIRMINFO " Il mittente di questo messaggio ha richiesto una conferma di ricezione (CFM) "
|
||||||
|
ST_MSG "msg"
|
||||||
|
ST_MSGS "msgs"
|
||||||
|
ST_PERSONAL "personali"
|
||||||
|
WT_GRP "Grp"
|
||||||
|
IL_FOUNDPERSONAL " Trovati %u mail personali%s in %u aree%s "
|
||||||
|
IL_NOPERSONAL " Nessuna mail personale trovata "
|
||||||
|
ST_ESCORCONTINUE "ESC per uscire. Altro tasto: Per tentare di continuare"
|
||||||
|
MS_SPELLCHECKER "SpellChecker: %s"
|
||||||
|
WT_INS " Ins "
|
||||||
|
MI_FILELISTFROM "Lista file da %s"
|
||||||
|
ST_UNREGWAIT "Non registrato - Premi un tasto oppure attendi %ld secondi"
|
||||||
|
ST_INITIALIZING "Inizializzazione ..."
|
||||||
|
ST_CHECKING "Controllo..."
|
||||||
|
ST_LOCKSHARECAP "%s caratteristica di Esclusione/Condivisione"
|
||||||
|
WT_ATTRTURNOFF " Premi Alt-F1 per chiudere questa finestra "
|
||||||
|
WT_TAGLINES " Taglines "
|
||||||
|
ST_CHANGETAGLINE "Modifica la Tagline di default"
|
||||||
|
IL_NOTAGLINE " Nessuna tagline definita. Premi un tasto "
|
||||||
|
WT_CHARSETS " Charsets "
|
||||||
|
ST_CHANGEXLATIMP "Cambia il Charset di default per l'importazione"
|
||||||
|
IL_NOXLATIMPORT " Nessun XLATIMPORT è definito. Permi un tasto "
|
||||||
|
WT_N_A "n/a"
|
||||||
|
WT_WRITTEN "Scritto"
|
||||||
|
WT_ARRIVED "Arrivato"
|
||||||
|
WT_RECEIVED "Ricevuto"
|
||||||
|
IL_NONODELIST " Non sono in grado di accedere alla nodelist o alla lista file "
|
||||||
|
IL_NODELISTMISSING "Nodelist mancante:"
|
||||||
|
IL_NODELISTOUTDATED "Nodelist scaduta:"
|
||||||
|
MS_REPLYLINKER "Replylinker: %s"
|
||||||
|
WT_ENTERMSGNO " Numero del msg "
|
||||||
|
IL_WAITUUDECODING " Attendi - decodifica del messaggio corrente "
|
||||||
|
IL_COMPLETEDUUDECODE " Ho completato la decodifica del msg %s "
|
||||||
|
IL_NOTUUENCODED " Non c'è nulla da decodificare in questo messaggio "
|
||||||
|
IL_UUEINVALIDPATH " Percorso non valido per la decodifica - file non scritto "
|
||||||
|
IL_ERRORINSOUP " Errore nel file SOUP %s "
|
||||||
|
IL_WARNALREADYSENT " Attenzione: Questo messaggio è già stato spedito! "
|
||||||
|
IL_WAITLOCKED " Attendi: %s è lockato"
|
||||||
|
ST_RETRYORESC "%s ritentativo (%lu). Premi ESC per uscire da GoldED."
|
||||||
|
ST_RETRYLOCK "Lock"
|
||||||
|
ST_RETRYOPEN "Apri"
|
||||||
|
WT_TOUCHSEMAPHORE " Indica il nome del file semaforo da aggiornare " },
|
||||||
|
MI_WRITETOHDRNO "H Usa Header: NO "
|
||||||
|
MI_WRITETOHDRYES "H Usa Header: YES "
|
||||||
|
MI_CLIPBOARD "C Clipboard "
|
||||||
|
WT_SELECTMARKS " Seleziona marchio "
|
||||||
|
WT_SELECTMARKSEDIT " Edita la descrizone del marchio "
|
||||||
|
IL_DROPMARKSINFO " %s Messaggi sono marcati " },
|
||||||
|
WT_DROPMARKS " Elimina Msg Marcati "
|
||||||
|
MI_DROPALL "A Elimina tutti "
|
||||||
|
MI_DROPMARKED "M Elimina marc. "
|
||||||
|
MI_DROPCURRENT "C Elimina corr. "
|
||||||
|
MI_NODROP "N Nessuna / ESC "
|
||||||
|
WT_CATCHAREAS " Raccogli aree "
|
||||||
|
MI_CATCHALL "A Raccogli tutte "
|
||||||
|
MI_CATCHMARKED "M Raccogli marc. "
|
||||||
|
MI_CATCHCURRENT "C Raccogli corr. "
|
||||||
|
MI_NOCATCH "N Nessuna / ESC "
|
||||||
|
|
||||||
|
----------------------------------------------------------------------
|
||||||
|
|
480
cfgs/config/goldlang.nl
Normal file
480
cfgs/config/goldlang.nl
Normal file
@ -0,0 +1,480 @@
|
|||||||
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// GoldED 3.00 * Dutch Language Definition File
|
||||||
|
//
|
||||||
|
// Translated 29-03-1999 by : Cees Schouten; e-mail : wpp@dds.nl
|
||||||
|
//
|
||||||
|
// Before you start redefining the language, I suggest you print this
|
||||||
|
// file and keep it close for reference. Redefining can be a slow and
|
||||||
|
// difficult process.
|
||||||
|
//
|
||||||
|
// The format of lines in this language file is:
|
||||||
|
//
|
||||||
|
// <stringid> <"string">
|
||||||
|
//
|
||||||
|
// Each stringid is prefixed with a category, to allow easier
|
||||||
|
// identification for your own redefinitions. Not case sensitive.
|
||||||
|
//
|
||||||
|
// ID Categories:
|
||||||
|
// --------------
|
||||||
|
// ST_ Status Line Variable length.
|
||||||
|
// WT_ Window Title Variable length.
|
||||||
|
// MI_ Menu Item Fixed length, first character QuickChar.
|
||||||
|
// IL_ Info Line Variable length.
|
||||||
|
// WL_ Window Line Usually fixed length.
|
||||||
|
// HD_ Header Line Usually fixed length.
|
||||||
|
// MS_ Message Variable length.
|
||||||
|
// ER_ Error Message Variable length.
|
||||||
|
//
|
||||||
|
// "Fixed length" means that all the strings must the same length.
|
||||||
|
// The actual length is normally only limited by the screen size. In
|
||||||
|
// case of menus, the window width is always based on the length of
|
||||||
|
// the *first* item string.
|
||||||
|
//
|
||||||
|
// A "QuickChar" is the highlighted direct-select character in the
|
||||||
|
// menu items. The QuickChar is case sensitive, and must match a
|
||||||
|
// character in the string.
|
||||||
|
//
|
||||||
|
// Strings should always be enclosed in quotes ("" or ''). The
|
||||||
|
// exception is if the string does not need leading/trailing spaces.
|
||||||
|
//
|
||||||
|
// Some strings contains escape sequences or format specifiers as
|
||||||
|
// used in the "C" language. Certain tokens from the templates can
|
||||||
|
// also be used in some special strings.
|
||||||
|
//
|
||||||
|
// Escape sequences: (Case sensitive!)
|
||||||
|
// -----------------------------------
|
||||||
|
// \n - Line Feed (LF) (translates to CR+LF in files).
|
||||||
|
// \r - Carriage Return (CR).
|
||||||
|
//
|
||||||
|
// The escape sequences are normally used in lines for files or
|
||||||
|
// standard (DOS) output messages.
|
||||||
|
//
|
||||||
|
// Format specifiers: (Case sensitive!)
|
||||||
|
// ------------------------------------
|
||||||
|
// %c - Character.
|
||||||
|
// %s - String.
|
||||||
|
// %i - Integer.
|
||||||
|
// %u - Unsigned Integer.
|
||||||
|
// %% - A literal percent (%) character.
|
||||||
|
//
|
||||||
|
// If you change a line with format specifiers, please be careful to
|
||||||
|
// have them in the same quantity and order as in the original
|
||||||
|
// example. Failure to do this can cause unpredictable results..
|
||||||
|
//
|
||||||
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------------------------------------------------
|
||||||
|
-- WEEKDAY AND MONTH NAMES
|
||||||
|
|
||||||
|
// Weekdays, short
|
||||||
|
MS_SWSUN "Zon"
|
||||||
|
MS_SWMON "Maa"
|
||||||
|
MS_SWTUE "Din"
|
||||||
|
MS_SWWED "Woe"
|
||||||
|
MS_SWTHU "Don"
|
||||||
|
MS_SWFRI "Vrij"
|
||||||
|
MS_SWSAT "Zat"
|
||||||
|
|
||||||
|
// Weekdays, long
|
||||||
|
MS_LWSUNDAY "Zondag"
|
||||||
|
MS_LWMONDAY "Maandag"
|
||||||
|
MS_LWTUESDAY "Dinsdag"
|
||||||
|
MS_LWWEDNESDAY "Woensdag"
|
||||||
|
MS_LWTHURSDAY "Donderdag"
|
||||||
|
MS_LWFRIDAY "Vrijdag"
|
||||||
|
MS_LWSATURDAY "Zaterdag"
|
||||||
|
|
||||||
|
// Months, short
|
||||||
|
MS_SMJAN "Jan"
|
||||||
|
MS_SMFEB "Feb"
|
||||||
|
MS_SMMAR "Maa"
|
||||||
|
MS_SMAPR "Apr"
|
||||||
|
MS_SMMAY "Mei"
|
||||||
|
MS_SMJUN "Jun"
|
||||||
|
MS_SMJUL "Jul"
|
||||||
|
MS_SMAUG "Aug"
|
||||||
|
MS_SMSEP "Sep"
|
||||||
|
MS_SMOCT "Okt"
|
||||||
|
MS_SMNOV "Nov"
|
||||||
|
MS_SMDEC "Dec"
|
||||||
|
|
||||||
|
// Months, long
|
||||||
|
MS_LMJANUARY "Januari"
|
||||||
|
MS_LMFEBRUARY "Februari"
|
||||||
|
MS_LMMARCH "Maart"
|
||||||
|
MS_LMAPRIL "April"
|
||||||
|
MS_LMMAY "Mei"
|
||||||
|
MS_LMJUNE "Juni"
|
||||||
|
MS_LMJULY "Juli"
|
||||||
|
MS_LMAUGUST "Augustus"
|
||||||
|
MS_LMSEPTEMBER "September"
|
||||||
|
MS_LMOCTOBER "Oktober"
|
||||||
|
MS_LMNOVEMBER "November"
|
||||||
|
MS_LMDECEMBER "December"
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------------------------------------------------
|
||||||
|
-- MISCELLANEOUS LANGUAGE KEYWORDS
|
||||||
|
|
||||||
|
ST_IMPORTFILE "Importeren bestand"
|
||||||
|
WT_IMPORTWHICHFILE " Importeer welk bestand? "
|
||||||
|
WT_IMPORTPICK " Importeer "
|
||||||
|
WT_IMPORTTXT " Importeer "
|
||||||
|
MI_IMPORTTXTTEXT "T Bestand als Tekst "
|
||||||
|
MI_IMPORTTXTQUOTE "Q Bestand als Quote "
|
||||||
|
MI_IMPORTTXTUUE "U Binair als UUE "
|
||||||
|
MI_IMPORTTXTMIME "M Binair als MIME "
|
||||||
|
MI_IMPORTTXTCLIP "C Van klembord "
|
||||||
|
MI_IMPORTTXTXLAT "s Gebruik karakterset.. "
|
||||||
|
MI_IMPORTTXTQUIT "N Niets / Stoppen "
|
||||||
|
ST_IMPORTSTATUS "Importeren van %s"
|
||||||
|
ST_EXPORTFILE "Exporteer Bestand"
|
||||||
|
WT_EXPORTWHATFILE " Exporteer naar welk bestand? "
|
||||||
|
ST_EXPORTSTATUS "Exporteren naar %s"
|
||||||
|
ST_EDITSTATUS "Edit %i,%i. %s"
|
||||||
|
ST_SELECTFILES "Selecteer Bestanden"
|
||||||
|
WL_SELECTEDFILES "Geselecteerde Bestanden "
|
||||||
|
WL_SELECTEDBYTES " Bytes "
|
||||||
|
WL_TOTALFILES "Totaal Bestanden "
|
||||||
|
WL_TOTALBYTES " Bytes "
|
||||||
|
WL_SCANNINGDIRECTORY " Scannen Directory "
|
||||||
|
WL_NOFILESFOUND " * GEEN BESTANDEN GEVONDEN * "
|
||||||
|
ST_FILESPRESSKEY "Druk op een willekeurige toets om verder te gaan"
|
||||||
|
WT_AREA "Gebied"
|
||||||
|
WT_DESCRIPTION "Omschrijving"
|
||||||
|
WT_MSGS "Berichten"
|
||||||
|
WT_LAST "Laatste"
|
||||||
|
WT_ECHOID "EchoID"
|
||||||
|
ST_UNREAD "ongelezen"
|
||||||
|
WT_SCANAREAS " Scan Gebieden "
|
||||||
|
MI_SCANALL "A Scan Alles "
|
||||||
|
MI_SCANMARKED "M Scan Gemarkeerd "
|
||||||
|
MI_SCANCURRENT "C Scan Huidig "
|
||||||
|
MI_SCANMATCHING "t Scan Overeenkomend "
|
||||||
|
MI_SCANUNSCANNED "U Scan Ongescanned "
|
||||||
|
MI_NOSCAN "N Geen Scan / ESC "
|
||||||
|
WT_HEATAREAS " Heat Gebieden "
|
||||||
|
MI_HEATALL "A Heat Alles "
|
||||||
|
MI_HEATMARKED "M Heat Gemarkeerd "
|
||||||
|
MI_HEATCURRENT "C Heat Huidig "
|
||||||
|
MI_NOHEAT "N Geen Heat / ESC "
|
||||||
|
WT_ZAPAREAS " Zap Gebieden "
|
||||||
|
MI_ZAPALL "A Zap Alles "
|
||||||
|
MI_ZAPMARKED "M Zap Gemarkeerd "
|
||||||
|
MI_ZAPCURRENT "C Zap Huidig "
|
||||||
|
MI_NOZAP "N Geen Zap / ESC "
|
||||||
|
MS_DOS_SHELL "GoldED Shell. Type EXIT om terug te keren."
|
||||||
|
IL_SCANNINGAREA " Scannen van Gebied:"
|
||||||
|
IL_SEARCHINGFOR " Zoeken naar:"
|
||||||
|
ST_READINGMSG "Leest Bericht %u of %u"
|
||||||
|
ER_OUTOFMEM "Out of memory!"
|
||||||
|
MS_HEXDUMPHEAD "Hexdump van bericht-header:"
|
||||||
|
MS_HEXDUMPTEXT "Hexdump van bericht-tekst:"
|
||||||
|
ST_RENUMBERING "Hernummeren"
|
||||||
|
ST_LOCKED " (locked)"
|
||||||
|
ST_RENUMBERED "Berichten hernummerd - Druk Toets"
|
||||||
|
WL_BLANKMSG ""
|
||||||
|
WL_WAIT " wacht "
|
||||||
|
IL_GENHEXDUMP " Genereerd Hexdump - Even Geduld "
|
||||||
|
ST_PROCESSCC "Verwerkt Carbon Copies"
|
||||||
|
ST_STATUSCC "CC: %s of %u:%u/%u.%u"
|
||||||
|
ST_DESTINATIONCC "Selecteer Carbon Copy Bestemming:"
|
||||||
|
MS_LISTCC "%s %u:%u/%u.%u"
|
||||||
|
WT_DELORIG " Delete het Origineel? "
|
||||||
|
MI_DELORIGYES "J Ja, Graag. "
|
||||||
|
MI_DELORIGNO "N Nee! "
|
||||||
|
WT_DROPMSG " Dit bericht laten vervallen? "
|
||||||
|
MI_DROPMSGYES "J Ja, Graag. "
|
||||||
|
MI_DROPMSGNO "N Nee! "
|
||||||
|
WT_ZONEGATE " Verzenden via ZoneGate? "
|
||||||
|
MI_ZONEGATEYES "J Ja, Graag. "
|
||||||
|
MI_ZONEGATENO "N Nee! "
|
||||||
|
ST_QUOTEPCT "Uw Bericht Bevat %i%% Quotes%s"
|
||||||
|
WT_SAVEMSG " Bewaar deze %i regels? "
|
||||||
|
MI_YESGREAT "J Ja, het is fantastisch! "
|
||||||
|
MI_KICKIT "N Nee, laat vervallen / ESC "
|
||||||
|
MI_CONTINUE "D Doorgaan met schrijven "
|
||||||
|
MI_ROT13 "R ROT13 Crypting "
|
||||||
|
MI_ATTRS "A Verander Attributen "
|
||||||
|
MI_ORIGS "O Verander Origin "
|
||||||
|
MI_VIEW "B Bekijk het Bericht "
|
||||||
|
ST_SELECTDESTNODE "Selecteer Node van Bestemming"
|
||||||
|
WT_ATTACHFILES " Bestand Meesturen "
|
||||||
|
WT_UPDREQFILES " Updaten van FileRequests "
|
||||||
|
ST_EDITHEADER "Bewerk Berichten Kop"
|
||||||
|
WT_EDITING " Bewerken "
|
||||||
|
MI_INTERNALED "I Interne Editor "
|
||||||
|
MI_EXTERNALED "E Externe Editor "
|
||||||
|
MI_SAVEMESSAGE "B Bewaar Bericht "
|
||||||
|
MI_ATTRO "A Attributen "
|
||||||
|
MI_TEMPLATE "S Sjablonen "
|
||||||
|
MI_ORIGIN "O Origins "
|
||||||
|
MI_QUITMESSAGE "T sToppen / ESC "
|
||||||
|
ST_TEMPLATES " Sjablonen "
|
||||||
|
WT_CHANGETEMPLATES "Verander Standaard Sjabloon"
|
||||||
|
WT_CARBONCOPY " Carbon Copy "
|
||||||
|
MI_CCPROCESS "V Verwerk CC's "
|
||||||
|
MI_CCIGNORE "N Negeer CC's "
|
||||||
|
MI_CCATTRIBS "V Verander Attrs "
|
||||||
|
MI_CCLISTFMT "L Lijst Formaat "
|
||||||
|
WT_CCLIST " CC Lijst "
|
||||||
|
MI_CCLISTKEEP "B Behoud "
|
||||||
|
MI_CCLISTNAMES "N Alleen Namen "
|
||||||
|
MI_CCLISTVISIBLE "Z Zichtbaar "
|
||||||
|
MI_CCLISTHIDDEN "V Verborgen "
|
||||||
|
MI_CCLISTREMOVE "W Weghalen "
|
||||||
|
WT_ATTRTITLE " Attributen "
|
||||||
|
MI_ATTR01 " Prive <Alt-P> Archiveer na verz. <Alt-B> "
|
||||||
|
MI_ATTR02 " Crash verzenden <Alt-C> Direct <Alt-D> "
|
||||||
|
MI_ATTR03 " Ontvangen <Alt-R> Zonegate <Alt-G> "
|
||||||
|
MI_ATTR04 " Verzonden <Alt-S> Hub/Host-Route <Alt-V> "
|
||||||
|
MI_ATTR05 " Bestand meesturen <Alt-A> Immediate <Alt-I> "
|
||||||
|
MI_ATTR06 " Transit <Alt-J> Xmail <Alt-X> "
|
||||||
|
MI_ATTR07 " Orphan <Alt-O> Erase File/Sent <Alt-E> "
|
||||||
|
MI_ATTR08 " Delete na verzenden <Alt-K> Trunc File/Sent <Alt-T> "
|
||||||
|
MI_ATTR09 " Lokaal <Alt-W> Locked <Alt-L> "
|
||||||
|
MI_ATTR10 " Hold <Alt-H> Bevestig ontvangstbewijs <Alt-Y> "
|
||||||
|
MI_ATTR11 " File Request <Alt-F> FTS1 Reserved <Alt-1> "
|
||||||
|
MI_ATTR12 " Verzoek ontvangsbewijs <Alt-M> QBBS Reserved, Net <Alt-2> "
|
||||||
|
MI_ATTR13 " Ontvangsbevestiging <Alt-N> QBBS Reserved, Echo <Alt-3> "
|
||||||
|
MI_ATTR14 " Verzoek bewerken <Alt-Q> Squish Scanned <Alt-4> "
|
||||||
|
MI_ATTR15 " File Update Request <Alt-U> Zap all attribs <Alt-Z> "
|
||||||
|
HD_FROM " Van : "
|
||||||
|
HD_TO " Aan : "
|
||||||
|
HD_SUBJ " Ondw : "
|
||||||
|
HD_FILE " Bstd : "
|
||||||
|
MS_EMPTYMSG "\r"
|
||||||
|
MS_AUTOATTACHMSG "\r"
|
||||||
|
MS_AUTOREQUESTMSG "\r"
|
||||||
|
MS_AUTOUPDREQMSG "\r"
|
||||||
|
WT_FILEATTACH " Bestand Meesturen "
|
||||||
|
WT_FILEREQUEST " Bestand Opvragen "
|
||||||
|
WT_FILEUPDREQ " Update Verzoek "
|
||||||
|
ST_FILEATTACHING "Bestand Meesturen [%i/%i] to %u:%u/%u.%u"
|
||||||
|
ST_FILEREQUESTING "Bestand Opvragen [%i/%i] from %u:%u/%u.%u"
|
||||||
|
ST_FILEUPDREQING "Updaten Verzoek [%i/%i] from %u:%u/%u.%u"
|
||||||
|
ST_READMARKED "Lees Gemarkeerd - Msg %u of %u (%u left)"
|
||||||
|
ST_READALL "Lees Alles - Msg %u of %u (%u left)"
|
||||||
|
ST_NOQRENUM "Dit Gebied Kan Niet Hernummerd Worden"
|
||||||
|
MS_HIDINGTWIT "Dit is een Twit Bericht - Toets <Home> om te lezen."
|
||||||
|
HD_VIA "via"
|
||||||
|
WT_CHANGEATTRS "Verander Bericht Attributen"
|
||||||
|
WT_HEADERTEXT " Enter Zoekstring (Header+Tekst) "
|
||||||
|
WT_HEADERONLY " Enter Zoekstring (Alleen Header) "
|
||||||
|
WT_NEWAREA ">>Kies Nieuwe Area: "
|
||||||
|
WT_REPLYAREA ">>Antwoord In Area: "
|
||||||
|
WT_COPYAREA ">>Kopieer Naar Area: "
|
||||||
|
WT_MOVEAREA ">>Verplaats Naar Area: "
|
||||||
|
WT_FORWARDAREA ">>Doorsturen Naar Area: "
|
||||||
|
WT_FREQAREA ">>Verzoek Bestand In Area: "
|
||||||
|
WT_FREQMENUTITLE "Opvraagbare Bestanden"
|
||||||
|
ST_FREQSTAT "Kies Bestanden om op te vragen"
|
||||||
|
IL_FREQINFONOFILES " Er zijn geen opvraagbare bestanden gevonden in dit bericht! "
|
||||||
|
WT_COPY " kopieer "
|
||||||
|
WT_MOVE " verplaats "
|
||||||
|
WT_COPYING " kopieren "
|
||||||
|
WT_MOVING " verplaatsen "
|
||||||
|
ST_COPYINGMSG "kopieert Bericht %u van %u naar %s"
|
||||||
|
ST_MOVINGMSG "Verplaatst Bericht %u van %u naar %s"
|
||||||
|
WT_DELETE " Delete "
|
||||||
|
WT_DELETING " Deleten "
|
||||||
|
ST_DELETINGMSG "Delete Bericht %u van %u"
|
||||||
|
WT_WRITE " Schrijven "
|
||||||
|
WT_WRITEMSGS " Schrijft Bericht(en) naar Bestand "
|
||||||
|
WT_WRITING " Schrijven "
|
||||||
|
ST_WRITINGMSG "Schrijft Bericht %u van %u"
|
||||||
|
WT_WRITINGFILE " Schrijft Bericht(en) naar Bestand %s "
|
||||||
|
WT_WRITINGPRN " Schrijft Bericht(en) naar Printer "
|
||||||
|
IL_READONLYWARN " Deze Area is ALLEEN LEZEN! "
|
||||||
|
WT_ISREADONLY " Bericht toch schrijven? "
|
||||||
|
MI_READONLYYES "J Ja, Graag. "
|
||||||
|
MI_READONLYNO "N Nee! "
|
||||||
|
IL_CHANGEWARN " Dit Bericht is NIET van jou! "
|
||||||
|
WT_CHANGE " Verander dit Bericht? "
|
||||||
|
MI_CHANGEYES "J Ja, Graag. "
|
||||||
|
MI_CHANGENO "N Nee! "
|
||||||
|
WT_DELETETHIS " Verwijder dit Bericht? "
|
||||||
|
MI_DELETEYES "J Ja, Graag. "
|
||||||
|
MI_DELETENO "N Nee! "
|
||||||
|
MI_DELETENOASK "V Vraag maar niet... "
|
||||||
|
WT_GOTONEXT " Naar de volgende Area? "
|
||||||
|
MI_GOTONEXTYES "J Ja, Graag. "
|
||||||
|
MI_GOTONEXTNO "N Nee! "
|
||||||
|
MI_GOTONEXTNEW "U Ja, Volgende Ongelezen Area. "
|
||||||
|
WT_FORWARD " Gebruik Doorstuur kludges? "
|
||||||
|
MI_FORWARDYES "J Ja, Graag. "
|
||||||
|
MI_FORWARDNO "N Nee! "
|
||||||
|
WT_MSG "Bericht"
|
||||||
|
WT_MSGREAL "Bericht#"
|
||||||
|
WT_FROML "Van"
|
||||||
|
WT_TOL "Aan"
|
||||||
|
WT_SUBJL "Ondw"
|
||||||
|
ST_MSGLISTER "Lijstweergave - Bericht %u van %u (%u over)"
|
||||||
|
ST_COPYMOVEFORWARD "Kopieer, Verplaats of Doorsturen van dit bericht"
|
||||||
|
WT_SELECTACTION " Aktie "
|
||||||
|
MI_FORWARDMESSAGE "D Doorsturen Bericht "
|
||||||
|
MI_MOVEMESSAGE "V Verplaatsen Bericht "
|
||||||
|
MI_COPYMESSAGE "K Kopieer Bericht "
|
||||||
|
MI_QUITCMF "S Stop / ESC "
|
||||||
|
ST_ARE "berichten zijn"
|
||||||
|
ST_IS "bericht is"
|
||||||
|
ST_MARKED "marked"
|
||||||
|
MI_MARKEDMSG "M geMarkeerde Berichten "
|
||||||
|
MI_CURRENTMSG "H Huidig Bericht "
|
||||||
|
MI_QUITMSGS "S Stop / ESC "
|
||||||
|
ST_WRITEMSGSTO "schrijf Bericht(en) naar Bestand of Printer"
|
||||||
|
WT_WRITETO " Schrijf Aan: "
|
||||||
|
MI_DISKFILE "H Naar Harde schijf "
|
||||||
|
MI_PRINTER "P Print apparaat "
|
||||||
|
MI_QUITWRITE "S Stop / ESC "
|
||||||
|
ST_MARKINGOPTIONS "Berichten Markeren"
|
||||||
|
WT_MARKWHAT " Markeer Wat? "
|
||||||
|
MI_YOURMAIL "P Persoonlijke Berichten "
|
||||||
|
MI_FROMTOSUBJ "B Berichtenkop (van/Aan/Ondw) "
|
||||||
|
MI_TEXTHDR "T Tekst en berichtenkop "
|
||||||
|
MI_THREAD "R Reeks Antwoorden "
|
||||||
|
MI_NEWMSGS "N Nieuwe berichten > huidig "
|
||||||
|
MI_OLDMSGS "O Oude berichten < huidig "
|
||||||
|
MI_ALLMSGS "A Alle berichten "
|
||||||
|
MI_UNMARK "D Demarkeer alle berichten "
|
||||||
|
MI_RANGE "H Huidige bericht = huidig "
|
||||||
|
MI_MARKSTOGGLE "g behandel alle markeringen "
|
||||||
|
MI_QUITMARKS "S Stop / ESC "
|
||||||
|
WT_ENTERMARKSTRING " Geef Markeersleutel Op "
|
||||||
|
ST_SEARCHINGMSG "Zoekt Bericht %u van %u. Gemarkeerd: %u"
|
||||||
|
WT_USERLISTNAME " Gebruikerslijst bestandsnaam? "
|
||||||
|
IL_GENUSERLIST " Genereerd Gebruikerslijst "
|
||||||
|
WT_FILEEXISTS " Bestand bestaat al! "
|
||||||
|
MI_APPEND "A Toevoegen aan einde van bestand"
|
||||||
|
MI_OVERWRITE "O Overschrijf het bestand "
|
||||||
|
MI_QUITEXIST "R Re-enter bestandsnaam / ESC"
|
||||||
|
IL_WARNUNSENT " WAARSCHUWING! Dit bericht is NIET verzonden!"
|
||||||
|
IL_WARNLOCKED " WAARSCHUWING! Dit bericht is GelOcKed! "
|
||||||
|
ST_CHANGEORIGIN "Verander Standaard Origin"
|
||||||
|
WT_ORIGINS " Origins "
|
||||||
|
ST_CHANGEUSERNAME "Verander Standaard Gebruikersnaam"
|
||||||
|
WT_USERNAMES " Gebruikersnamen "
|
||||||
|
ST_CHANGEAKA "Verander Standaard Adres AKA"
|
||||||
|
WT_AKAS " AKA's "
|
||||||
|
WT_LOOKUP " Opzoeken: %s "
|
||||||
|
WL_PHONE "Telefoon"
|
||||||
|
WT_QUITGOLDED " Stoppen met GoldED? "
|
||||||
|
MI_QUITYES "J Ja, Graag. "
|
||||||
|
MI_QUITNO "N Nee! "
|
||||||
|
MS_EDITCMD "Editor: %s"
|
||||||
|
IL_NOORIGDEFINED " Geen origins gedefinieerd. Druk Toets "
|
||||||
|
IL_NOUSERDEFINED " Geen gebruikersnamen gedefinieerd. Druk Toets "
|
||||||
|
IL_NOAKADEFINED " Geen AKA's defined. Press key "
|
||||||
|
IL_NOTPLDEFINED " No templates gedefinieerd. Druk Toets "
|
||||||
|
IL_NOTHREADLIST " Sorry, geen berichtenserie beschikbaar. Druk Toets "
|
||||||
|
MS_SKIPPINGTWIT "Slaat Twit bericht over..."
|
||||||
|
MS_KILLINGTWIT "Delete Twit Bericht..."
|
||||||
|
IL_WRITINGCFG " Schrijft Configuratie weg "
|
||||||
|
IL_COULDNOTOPEN " Kon %s niet openen "
|
||||||
|
MS_PROMPT "Typ \"EXIT\" om naar GoldED terug te keren.\r\n"
|
||||||
|
IL_UNFINISHEDMSG " Niet afgemaakt bericht gevonden! "
|
||||||
|
ST_LOADUNFINISHED "Druk op een willekeurige toets om dit bericht in te laden of <ESC> om het te negeren"
|
||||||
|
IL_READINGECHOLIST "Leest Echolijst Bestanden"
|
||||||
|
IL_READINGADDRMACROS "Leest Adres-macro's"
|
||||||
|
IL_CHECKINGNODELISTS "Controleert de nodelijsten"
|
||||||
|
ST_CROSSPOSTING "Crosspost in %s"
|
||||||
|
IL_TWITBLANKED " Twit Berichten Blanco gemaakt "
|
||||||
|
IL_TWITSKIPPED " Twit Berichten Overgeslagen "
|
||||||
|
IL_TWITIGNORESKIP " Twit Berichten Genegeerd en overgeslagen "
|
||||||
|
IL_TWITDISPLAYED " Twit Berichten Laten zien "
|
||||||
|
IL_TWITKILLED " Twit Berichten Gedelete "
|
||||||
|
IL_STYLECODESNO " Stylecodes uitgeschakeld "
|
||||||
|
IL_STYLECODESYES " Stylecodes ingeschakeld "
|
||||||
|
IL_STYLECODESHIDE " Stylecodes ingeschakeld en gestript "
|
||||||
|
ST_GENCFMRECEIPT "Genereren van ontvangstbevestiging"
|
||||||
|
WT_NEW "Nieuw"
|
||||||
|
ST_LOOKUPINFO "Nodelist Lookup Informatie"
|
||||||
|
MS_DATETIMEFMT "%d %b %y %H:%M:%S"
|
||||||
|
MS_DATEFMT "%d %b %y"
|
||||||
|
MS_TIMEFMT "%H:%M"
|
||||||
|
MS_CROSSPOSTEDIN "* Gecrosspost in %s"
|
||||||
|
ST_STATUSLINEHELP "F1 Help"
|
||||||
|
HD_OF "van"
|
||||||
|
MS_ROBOTMSG "\r--- @longpid @version\r"
|
||||||
|
ST_STATUSLINETIMEFMT "%H:%M:%S"
|
||||||
|
WT_REPLIES " Antwoorden "
|
||||||
|
ST_SELECTREPLY "Selecteer het antwoord dat je wilt zien"
|
||||||
|
IL_WAITOREXIT " Op dit punt moet je of wachten of GoldED helemaal verlaten - Sorry! "
|
||||||
|
WT_REALLYEXIT " Echt Stoppen? "
|
||||||
|
MI_TAGLINES "T Verander Tagline"
|
||||||
|
MI_HEADEREDIT "K Bewerk Kopregel"
|
||||||
|
MI_SCANGROUP "G Scan Groep"
|
||||||
|
WT_QWKPACKET " QWK Pakket "
|
||||||
|
MI_SCANQWK "Q QWK Pakket"
|
||||||
|
WT_SOUPPACKET " SOUP Pakket "
|
||||||
|
MI_SCANSOUP "S SOUP Pakket"
|
||||||
|
MI_SCANIMPORT "I Importeer"
|
||||||
|
MI_SCANEXPORT "E Exporteer"
|
||||||
|
WT_SCANPM " Scan PM "
|
||||||
|
MI_TAGLINE "g Taglines"
|
||||||
|
WT_CONFIRM " Honoreer ontvangstbevestigingen? "
|
||||||
|
MI_CONFIRMYES "J Ja, stuur een ontvangstbevestiging "
|
||||||
|
MI_CONFIRMNO "N Nee, negeer het verzoek "
|
||||||
|
IL_CONFIRMINFO " De afzender van dit bericht verzoekt om een bevestiging van ontvangst (BVO) "
|
||||||
|
ST_MSG "bericht"
|
||||||
|
ST_Msgs "Berichten"
|
||||||
|
ST_PERSONAL "persoonlijk"
|
||||||
|
WT_GRP "Groep"
|
||||||
|
IL_FOUNDPERSONAL " Vond %u persoonlijke berichten%s in %u area%s "
|
||||||
|
IL_NOPERSONAL " Geen persoonlijke berichten gevonden "
|
||||||
|
ST_ESCORCONTINUE "ESC stopt. Andere toetsen: probeert om verder te gaan"
|
||||||
|
MS_SPELLCHECKER "Spellingscontrole: %s"
|
||||||
|
WT_INS " Ins "
|
||||||
|
MI_FILELISTFROM "Bestandenlijst van %s"
|
||||||
|
ST_UNREGWAIT "ongeregistreerd - Druk een toets of wacht %ld seconden"
|
||||||
|
ST_INITIALIZING "Initializeert ..."
|
||||||
|
ST_CHECKING "Controleert"
|
||||||
|
ST_LOCKSHARECAP "%s Lock/Share Mogelijkheid"
|
||||||
|
WT_ATTRTURNOFF " Druk op Alt-F1 om dit scherm af te sluiten "
|
||||||
|
WT_TAGLINES " Taglines "
|
||||||
|
ST_CHANGETAGLINE "Veranderd Standaard Tagline"
|
||||||
|
IL_NOTAGLINE " Geen taglines gedefinieerd. Druk Toets "
|
||||||
|
WT_CHARSETS " Charsets "
|
||||||
|
ST_CHANGEXLATIMP "Change Default Import Charset"
|
||||||
|
IL_NOXLATIMPORT " Geen XLATIMPORT's gedefinieerd. Druk Toets "
|
||||||
|
WT_N_A "n/a"
|
||||||
|
WT_WRITTEN "geschreven"
|
||||||
|
WT_ARRIVED "Gearriveerd"
|
||||||
|
WT_RECEIVED "Ontvangen"
|
||||||
|
IL_NONODELIST " het was niet mogelijk om de nodelijst of het index-bestand te benaderen "
|
||||||
|
IL_NODELISTMISSING "Nodelijst ontbreekt:"
|
||||||
|
IL_NODELISTOUTDATED "Nodelijst verouderd:"
|
||||||
|
MS_REPLYLINKER "Replylinker: %s"
|
||||||
|
WT_ENTERMSGNO " Enter berichtnr "
|
||||||
|
IL_WAITUUDECODING " Wacht - uudecoderen van het huidige bericht "
|
||||||
|
IL_COMPLETEDUUDECODE " Klaar met uudecoderen van %s "
|
||||||
|
IL_NOTUUENCODED " Kon niets vinden om dit bericht mee te uudecoderen "
|
||||||
|
IL_UUEINVALIDPATH " Ongeldig pad voor het uuencoderen - bestand niet weggeschreven "
|
||||||
|
IL_ERRORINSOUP " Error in SOUP bestanden %s "
|
||||||
|
IL_WARNALREADYSENT " WAARSCHUWING: Dit bericht is al verstuurd! "
|
||||||
|
IL_WAITLOCKED " Wacht: %s is gelocked "
|
||||||
|
ST_RETRYORESC "%s poging (%lu). Druk op ESC om GoldED te verlaten."
|
||||||
|
ST_RETRYLOCK "Lock"
|
||||||
|
ST_RETRYOPEN "Open"
|
||||||
|
WT_TOUCHSEMAPHORE " Enter naam van semafoor-bestand om bij te werken " },
|
||||||
|
MI_WRITETOHDRNO "H Gebruik Header: NEE "
|
||||||
|
MI_WRITETOHDRYES "H Gebruik Header: JA "
|
||||||
|
MI_CLIPBOARD "C Clipboard "
|
||||||
|
WT_SELECTMARKS " Selecteer Markering "
|
||||||
|
WT_SELECTMARKSEDIT " Bewerk Markering Omschrijving "
|
||||||
|
IL_DROPMARKSINFO " %s Messages Are Marked " },
|
||||||
|
WT_DROPMARKS " Laat berichten Markeringen vervallen "
|
||||||
|
MI_DROPALL "A Laat Alles vervallen "
|
||||||
|
MI_DROPMARKED "M Laat geMarkeerde vervallen "
|
||||||
|
MI_DROPCURRENT "H Laat Hudige Vervallen "
|
||||||
|
MI_NODROP "N Niets Laten Vervallen / ESC "
|
||||||
|
WT_CATCHAREAS " Werk Areas Bij"
|
||||||
|
MI_CATCHALL "A Alles Bijwerken "
|
||||||
|
MI_CATCHMARKED "M geMarkeerde Bijwerken "
|
||||||
|
MI_CATCHCURRENT "H Hudige Bijwerken "
|
||||||
|
MI_NOCATCH "N Niets Bijwerken / ESC "
|
||||||
|
|
||||||
|
----------------------------------------------------------------------
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user