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

📄 brewser.brc

📁 在BREW上用的浏览器代码
💻 BRC
字号:
###########################################################################
###########################################################################
### 
### BRC (BREW Resource Compiler) File
### ---------------------------------
### Each line of a BREW Resource Compiler input file has the form:
### 
###    <type> <id> <id_name> {data}
### 
### Where:
###    type    = STRING, IMAGE, and BLOB currently supported
###    id      = an integer id for the resource
###    id_name = a symbolic, legal-C-preprocessor token name for use in
###                the resource header, for "#define XX <id>"
###    {data}  = for STRING: <type> <SP> <quoted-text>
###               where <type> is one of: ISOLATIN1, SJIS,
###                  GB3212 (or EUC_CN), KSC5601 (or EUC_KR), or UTF8
###              for IMAGE and BLOB: <mimetype> <SP> @<filename>
###                              or: <mimetype> <SP> <quoted-text>
### 
### Notes:
###    * IMAGE and BLOB resources must have mutually unique ids.
###    * Only single-byte string formats are supported.
###    * Lines beginning with '#' are treated as comments.
###    * STRING resources may contain escape chars \r, \n, \t and octal 
###       numbers to include a ", use \" (just like C)
### 
### Examples:
### 
### # an ISOLATIN1 string
### IDS_HI          1   STRING    ISOLATIN1 "hi"
### 
### # a bitmap image
### IDB_HI        101   IMAGE     "image/bmp" @"hi.bmp"
### 
### # an html page
### IDX_HI        201   BLOB      "text/html" @"hi.html"
### 
### # an html page inline
### IDX_INLHI     202   BLOB      "text/html" "<html>hi</html>"
##############################################################################
###########################################################################

###########################################################################
# BREWser strings, config values start at 100, rest start at 1
###########################################################################
#
# config defaults 
#
IDS_DEFHOMEPAGE        100 STRING ISOLATIN1 "res:/brewser.bar?2000"
IDS_DEFMAILTO          101 STRING ISOLATIN1 "http://brewser.qualcomm.com/mailto/?to="
IDS_DEFPROXYSETTINGS   102 STRING ISOLATIN1 "ftpon=1&amp;ftphost=brewser.qualcomm.com&amp;ftpport=65456&amp;gophon=1&amp;gophhost=brewser.qualcomm.com&amp;gophport=65456"

#
# tooltips
#
IDS_BACK                1 STRING ISOLATIN1 "Retroceder"
IDS_STOP                2 STRING ISOLATIN1 "Parar"
IDS_REFRESH             3 STRING ISOLATIN1 "Actualizar"
IDS_GOTO                4 STRING ISOLATIN1 "Ir para..."
IDS_INFO                5 STRING ISOLATIN1 "Informa珲es"
IDS_BOOKMARKS           6 STRING ISOLATIN1 "Marcadores"
IDS_HELP                7 STRING ISOLATIN1 "Ajuda"
IDS_OPT                 8 STRING ISOLATIN1 "Op珲es"
#
# status stuff, these show up under the status bar
#
IDS_STATSTART          10 STRING ISOLATIN1 "A iniciar..."
IDS_STATGETHOSTBYNAME  11 STRING ISOLATIN1 "A procurar anfitri鉶..."
IDS_STATCONNECT        12 STRING ISOLATIN1 "A estabelecer liga玢o..."
IDS_STATSEND           13 STRING ISOLATIN1 "A enviar..."
IDS_STATCANCEL         14 STRING ISOLATIN1 "Cancelado..."
IDS_STATRECV           15 STRING ISOLATIN1 "A receber..."
#
# these four used to desribe page info and cookie state,
#   they need to be in the same character set as the 
#   pageinfo.html and cfgcookies.html pages below
#
IDS_UNKNOWN            16 STRING ISOLATIN1 "Desconhecido"
IDS_UNTITLED           17 STRING ISOLATIN1 "Sem t韙ulo"
IDS_ENABLED            18 STRING ISOLATIN1 "Activado"
IDS_DISABLED           19 STRING ISOLATIN1 "Desactivado"

#
# Error descriptions, these get inserted into errpage.html, and
#  so need to be in the same character set as errpage.html
#  These also need to be arranged like their AEEError counterparts, 
#  starting from 8000 hex
#
# catchall
#
IDS_ERRDESC_UNKNOWN              0x8000 STRING ISOLATIN1 "N鉶 h

⌨️ 快捷键说明

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