File: c.msg

package info (click to toggle)
tcllib 1.8-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 13,628 kB
  • ctags: 4,897
  • sloc: tcl: 88,012; sh: 7,856; ansic: 4,174; xml: 1,765; yacc: 753; perl: 84; f90: 84; makefile: 60; python: 33; ruby: 13; php: 11
file content (52 lines) | stat: -rw-r--r-- 2,931 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# -*- tcl -*-
package require    msgcat
namespace import ::msgcat::*

mcset c end/open/list    "End of manpage reached, \[list_end\] missing"
mcset c end/open/example "End of manpage reached, \[example_end\] missing"
mcset c end/open/mp	  "End of manpage reached, \[manpage_end\] missing"
mcset c mpbegin          "Command must be first of manpage"
mcset c hdrcmd           "Command not allowed outside of the header section"
mcset c bodycmd          "Command not allowed outside of the body of the manpage"
mcset c body             "Plain text not allowed outside of the body of the manpage"
mcset c reqcmd           "Command not allowed outside of header or requirement section"
mcset c invalidlist      "Invalid list type \"@\""
mcset c nolistcmd        "Command not allowed inside of a list"
mcset c nolisthdr        "Command not allowed between beginning of a list and its first item"
mcset c nolisttxt        "Plain text not allowed between beginning of a list and its first item"
mcset c listcmd          "Command not allowed outside of a list"
mcset c deflist          "Command restricted to usage in definition lists"
mcset c bulletlist       "Command restricted to usage in itemized lists"
mcset c enumlist         "Command restricted to usage in enumerated lists"
mcset c examplecmd       "Command allowed only to close example section"
mcset c listcmd          "Command not allowed outside of a list"
mcset c nodonecmd        "Command not allowed after \[manpage_end\]"
mcset c arg_list         "Command restricted to usage in argument lists"
mcset c cmd_list         "Command restricted to usage in command lists"
mcset c opt_list         "Command restricted to usage in option lists"
mcset c tkoption_list    "Command restricted to usage in tkoption lists"
mcset c depr_strong      "Deprecated command \"%s\".\n\tPlease consider appropriate semantic markup or \[emph\] instead."
mcset c sectambig        "(Sub)Section title \"%s\" causes ambiguous section references."

# TOC messages

mcset c end/open/toc  "\[toc_end\] missing."
mcset c toc/plaintext "Plain text beyond whitespace is not allowed."
mcset c toc/begincmd  "Command not allowed here."
mcset c toc/endcmd    "Command not allowed here."
mcset c toc/titlecmd  "Command not allowed here."
mcset c toc/sectcmd   "Command not allowed here."
mcset c toc/sectecmd  "Command not allowed here."
mcset c toc/itemcmd   "Command not allowed here."
mcset c toc/nodonecmd "Command not allowed after \[toc_end\]"

# IDX messages

mcset c end/open/idx   "\[index_end\] missing."
mcset c idx/plaintext  "Plain text beyond whitespace is not allowed."
mcset c idx/begincmd   "Command not allowed here."
mcset c idx/endcmd     "Command not allowed here."
mcset c idx/keycmd     "Command not allowed here."
mcset c idx/manpagecmd "Command not allowed here."
mcset c idx/urlcmd     "Command not allowed here."
mcset c idx/nodonecmd  "Command not allowed after \[index_end\]"