kmail

kmail_options.h
1#ifndef KMAIL_OPTIONS_H
2#define KMAIL_OPTIONS_H
3
4#include <tdecmdlineargs.h>
5#include <tdelocale.h>
6
7TDECmdLineOptions kmail_options[] =
8{
9 { "s", 0 , 0 },
10 { "subject <subject>", I18N_NOOP("Set subject of message"), 0 },
11 { "c", 0 , 0 },
12 { "cc <address>", I18N_NOOP("Send CC: to 'address'"), 0 },
13 { "b", 0 , 0 },
14 { "bcc <address>", I18N_NOOP("Send BCC: to 'address'"), 0 },
15 { "h", 0 , 0 },
16 { "header <header>", I18N_NOOP("Add 'header' to message"), 0 },
17 { "msg <file>", I18N_NOOP("Read message body from 'file'"), 0 },
18 { "body <text>", I18N_NOOP("Set body of message"), 0 },
19 { "attach <url>", I18N_NOOP("Add an attachment to the mail. This can be repeated"), 0 },
20 { "check", I18N_NOOP("Only check for new mail"), 0 },
21 { "composer", I18N_NOOP("Only open composer window"), 0 },
22 { "view <url>", I18N_NOOP("View the given message file" ), 0 },
23 { "+[address|URL]", I18N_NOOP("Send message to 'address' resp. "
24 "attach the file the 'URL' points "
25 "to"), 0 },
26// { "+[file]", I18N_NOOP("Show message from 'file'"), 0 },
27 TDECmdLineLastOption
28};
29
30#endif