⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 itl.h

📁 Dos6.0
💻 H
字号:
/*
	COW : Character Oriented Windows

	itl.h   : Internationalization header

	This contains strings for use in QBASIC dialog boxes.

	You have a string in quotes, followed by its length +
	the total number of spaces to have on each side of
	the string.

	eg. "OK" is 2 long, the 4 means put 4/2=2 spaces on
	    each side of the word when it is being displayed.
	    make sure you leave the brackets around the numbers
	    ie, 2+4 is incorrect, (2+4) is correct.

	Some also have their hotkey following the key and the
	size, make sure that you leave the single qutoes (')
	around these characters.

	You may have to make some adjustments to the .des files
	when you have changed this file.

	eg, say you translate "OK" to "Okay", then the size
	might go to (4+4), or whatever you want.
	Then you would go to the .des files.
	lines with the following would have to be modified:

	OK_BUTTON AT (col, row, 6, 1) ACT...........
				^

	to

	OK_BUTTON AT (col, row, 8, 1) ACT...........
				^

*/

#define	szOk		"OK"
#define cchOk		(2+0)
/* chAccelOk no accelerator */

#define	szYes		"Ja"
#define cchYes		(2+0)
#define	chAccelYes	'J'

#define	szNo		"Nej"
#define cchNo		(3+0)
#define	chAccelNo	'N'

#define szCancel	"Avbryt"
#define cchCancel	6
/* chAccelCancel no accelerator */

#define	szRetry		"Nytt f攔s攌"
#define	cchRetry	11
#define	chAccelRetry	'N'

#define	szAbort		"Avbryt"
#define cchAbort	6
#define	chAccelAbort	'A'

#ifdef HELP_BUTTON
#define szHelp		"Hj刲p"
#define cchHelp 	(5+0)
#define chAccelHelp	'H'
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -