1# -*- tcl -*-
2package require    msgcat
3namespace import ::msgcat::*
4
5# The texts are in english because I have do not have enough knowledge
6# of french to make the translation.
7
8mcset fr doctoc/char/syntax             {Bad character in string}
9mcset fr doctoc/cmd/illegal		{Illegal command "%1$s", not a doctoc command}       ; # Details: cmdname
10mcset fr doctoc/cmd/nested		{Illegal use of "%1$s" as argument of other command} ; # Details: cmdname
11mcset fr doctoc/cmd/toomanyargs		{Too many args for "%1$s", at most %2$d allowed}     ; # Details: cmdname, max#args
12mcset fr doctoc/cmd/wrongargs		{Wrong#args for "%1$s", need at least %2$d}          ; # Details: cmdname, min#args
13mcset fr doctoc/eof/syntax              {Bad <eof>}
14mcset fr doctoc/include/path/notfound	{Include file "%1$s" not found}                      ; # Details: file name
15mcset fr doctoc/include/read-failed	{Unable to read include file "%1$s", %2$s}           ; # Details: file name and error msg
16mcset fr doctoc/include/syntax		{Errors in include file "%1$s"}
17mcset fr doctoc/plaintext		{Plain text beyond whitespace is not allowed}
18mcset fr doctoc/vset/varname/unknown	{Unknown variable "%1$s"}                            ; # Details: variable name
19
20mcset fr doctoc/division_end/missing	{Expected [division_end], not found}
21mcset fr doctoc/division_end/syntax	{Unexpected [division_end], not allowed here}
22mcset fr doctoc/division_start/syntax	{Expected [division_start], not found}
23mcset fr doctoc/item/syntax		{Unexpected [item], not allowed here}
24mcset fr doctoc/toc_begin/missing	{Expected [toc_begin], not found}
25mcset fr doctoc/toc_begin/syntax	{Unexpected [toc_begin], not allowed here}
26mcset fr doctoc/toc_end/missing		{Expected [toc_end], not found}
27mcset fr doctoc/toc_end/syntax		{Unexpected [toc_end], not allowed here}
28
29mcset fr doctoc/redef                   {Bad reuse of label "%1$s"}
30
31package provide doctools::msgcat::toc::fr 0.1
32