fix errors found while translating
[kdepim.git] / kmail / kmail_options.h
blob9cc8a210157da2f2343c943c74f695aa12989757
1 /* -*- mode: C++; c-file-style: "gnu" -*- */
2 #ifndef KMAIL_OPTIONS_H
3 #define KMAIL_OPTIONS_H
5 #include <kcmdlineargs.h>
6 #include <klocale.h>
8 static KCmdLineOptions kmail_options ()
10 KCmdLineOptions options;
11 options.add("s");
12 options.add("subject <subject>", ki18n("Set subject of message"));
13 options.add("c");
14 options.add("cc <address>", ki18n("Send CC: to 'address'"));
15 options.add("b");
16 options.add("bcc <address>", ki18n("Send BCC: to 'address'"));
17 options.add("h");
18 options.add("header <header>", ki18n("Add 'header' to message"));
19 options.add("msg <file>", ki18n("Read message body from 'file'"));
20 options.add("body <text>", ki18n("Set body of message"));
21 options.add("attach <url>", ki18n("Add an attachment to the mail. This can be repeated"));
22 options.add("check", ki18n("Only check for new mail"));
23 options.add("composer", ki18n("Only open composer window"));
24 options.add("view <url>", ki18n("View the given message file" ));
25 options.add("+[address|URL]", ki18n("Send message to 'address' resp. "
26 "attach the file the 'URL' points "
27 "to"));
28 //options.add("+[file]", ki18n("Show message from 'file'"));
29 return options;
32 #endif