1# -*- tcl -*-
2package require    msgcat
3namespace import ::msgcat::*
4
5mcset c  docidx/char/syntax             {Bad character in string}
6mcset c  docidx/cmd/illegal		{Illegal command "%1$s", not a docidx command}       ; # Details: cmdname
7mcset c  docidx/cmd/nested		{Illegal use of "%1$s" as argument of other command} ; # Details: cmdname
8mcset c  docidx/cmd/toomanyargs		{Too many args for "%1$s", at most %2$d allowed}     ; # Details: cmdname, max#args
9mcset c  docidx/cmd/wrongargs		{Wrong#args for "%1$s", need at least %2$d}          ; # Details: cmdname, min#args
10mcset c  docidx/eof/syntax              {Bad <eof>}
11mcset c  docidx/include/path/notfound	{Include file "%1$s" not found}                      ; # Details: file name
12mcset c  docidx/include/read-failed	{Unable to read include file "%1$s", %2$s}           ; # Details: file name and error msg
13mcset c  docidx/include/syntax		{Errors in include file "%1$s"}
14mcset c  docidx/plaintext		{Plain text beyond whitespace is not allowed}
15mcset c  docidx/vset/varname/unknown	{Unknown variable "%1$s"}                            ; # Details: variable name
16
17mcset c  docidx/index_begin/missing	{Expected [index_begin], not found}
18mcset c  docidx/index_begin/syntax	{Unexpected [index_begin], not allowed here}
19mcset c  docidx/index_end/missing	{Expected [index_end], not found}
20mcset c  docidx/index_end/syntax	{Unexpected [index_end], not allowed here}
21mcset c  docidx/key/missing		{Expected [key], not found}
22mcset c  docidx/key/syntax		{Unexpected [key], not allowed here}
23
24mcset c  docidx/ref/redef               {Bad redefinition of reference "%1$s", first (%2$s "%3$s"), now (%4$s "%5$s")}
25
26package provide doctools::msgcat::idx::c 0.1
27