diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/CMakeLists.txt | 9 | ||||
-rw-r--r-- | doc/de/CMakeLists.txt | 1 | ||||
-rw-r--r-- | doc/en/CMakeLists.txt | 1 | ||||
-rw-r--r-- | doc/es/CMakeLists.txt | 1 | ||||
-rw-r--r-- | doc/fr/CMakeLists.txt | 1 | ||||
-rw-r--r-- | doc/hu/CMakeLists.txt | 1 | ||||
-rw-r--r-- | doc/it/CMakeLists.txt | 1 | ||||
-rw-r--r-- | doc/man/CMakeLists.txt | 5 | ||||
-rw-r--r-- | doc/man/kshowmail.1 | 62 | ||||
-rw-r--r-- | doc/ru/CMakeLists.txt | 1 | ||||
-rw-r--r-- | doc/sv/CMakeLists.txt | 1 |
11 files changed, 84 insertions, 0 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt new file mode 100644 index 0000000..ca7faeb --- /dev/null +++ b/doc/CMakeLists.txt @@ -0,0 +1,9 @@ +add_subdirectory( en ) +add_subdirectory( de ) +add_subdirectory( es ) +add_subdirectory( sv ) +add_subdirectory( fr ) +add_subdirectory( hu ) +add_subdirectory( it ) +add_subdirectory( ru ) +add_subdirectory( man ) diff --git a/doc/de/CMakeLists.txt b/doc/de/CMakeLists.txt new file mode 100644 index 0000000..eca4bd4 --- /dev/null +++ b/doc/de/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG de ) diff --git a/doc/en/CMakeLists.txt b/doc/en/CMakeLists.txt new file mode 100644 index 0000000..ba3ef3e --- /dev/null +++ b/doc/en/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_handbook( DESTINATION ${PROJECT_NAME} ) diff --git a/doc/es/CMakeLists.txt b/doc/es/CMakeLists.txt new file mode 100644 index 0000000..7995d65 --- /dev/null +++ b/doc/es/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG es ) diff --git a/doc/fr/CMakeLists.txt b/doc/fr/CMakeLists.txt new file mode 100644 index 0000000..495f168 --- /dev/null +++ b/doc/fr/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG fr ) diff --git a/doc/hu/CMakeLists.txt b/doc/hu/CMakeLists.txt new file mode 100644 index 0000000..9847ebe --- /dev/null +++ b/doc/hu/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG hu ) diff --git a/doc/it/CMakeLists.txt b/doc/it/CMakeLists.txt new file mode 100644 index 0000000..e213f2f --- /dev/null +++ b/doc/it/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG it ) diff --git a/doc/man/CMakeLists.txt b/doc/man/CMakeLists.txt new file mode 100644 index 0000000..8512250 --- /dev/null +++ b/doc/man/CMakeLists.txt @@ -0,0 +1,5 @@ +INSTALL( + FILES ${PROJECT_NAME}.1 + DESTINATION ${MAN_INSTALL_DIR}/man1 + COMPONENT doc +) diff --git a/doc/man/kshowmail.1 b/doc/man/kshowmail.1 new file mode 100644 index 0000000..6903cf4 --- /dev/null +++ b/doc/man/kshowmail.1 @@ -0,0 +1,62 @@ +.TH QT: "1" "April 2007" "Qt: 3.3.7" "User Commands" +.SH NAME +kshowmail \- A powerful pop3 mail checker +.SH SYNOPSIS +.B kshowmail +[\fIQt-options\fR] [\fITDE-options\fR] [\fIoptions\fR] [\fIaccount\fR] +.SH DESCRIPTION +KShowmail can be used to show mails on a POP3 server without actually +downloading them. The headers or the complete mails can be viewed, and +unwanted mails can be deleted. An initial and an interval timer can be set to +check the mails periodical. KShowmail supports multiple accounts. +.SS "Generic options:" +.TP +\fB\-\-help\fR +Show help about options +.TP +\fB\-\-help\-qt\fR +Show Qt specific options +.TP +\fB\-\-help\-tde\fR +Show TDE specific options +.TP +\fB\-\-help\-all\fR +Show all options +.TP +\fB\-\-author\fR +Show author information +.TP +\fB\-v\fR, \fB\-\-version\fR +Show version information +.TP +\fB\-\-license\fR +Show license information +.TP +\fB\-\-\fR +End of options +.SH OPTIONS +.TP +\fB\-r\fR, \fB\-\-refresh\fR +Refresh messages now +.TP +\fB\-c\fR, \fB\-\-config\fR +Launch configure dialog +.SS "Arguments:" +.TP +account +Select account +.PP +KDE: 3.5.6 +KShowmail: 3.1.2 +.SH "SEE ALSO" +The full documentation for +.B Qt: +is maintained as a Texinfo manual. If the +.B info +and +.B Qt: +programs are properly installed at your site, the command +.IP +.B info Qt: +.PP +should give you access to the complete manual. diff --git a/doc/ru/CMakeLists.txt b/doc/ru/CMakeLists.txt new file mode 100644 index 0000000..33e9cb6 --- /dev/null +++ b/doc/ru/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG ru ) diff --git a/doc/sv/CMakeLists.txt b/doc/sv/CMakeLists.txt new file mode 100644 index 0000000..bc04ab0 --- /dev/null +++ b/doc/sv/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG sv ) |