-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.py
More file actions
23 lines (20 loc) · 867 Bytes
/
about.py
File metadata and controls
23 lines (20 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'''
Copyright 2026 by Chad Redman <chad at zhtoolkit.com>
License: GNU GPL, version 3 or later; http://www.gnu.org/copyleft/gpl.html
'''
APP_VERSION = "0.9.0"
COPYRIGHT_DATE = "2026"
ABOUT_TITLE = "About Vocabulary Extractor"
ABOUT_TEXT = (
f"Vocabulary Extractor\n"
f"Version: {APP_VERSION}\n"
"Author: Chad Redman\n"
f"Copyright: {COPYRIGHT_DATE}\n\n"
"This is a tool to extract vocabulary from texts in Chinese, Vietnamese, "
"or other languages, summarizing the unique words with word count, "
"English definition, and other useful statistics.\n\n"
"Website: http://www.zhtoolkit.com/apps/VocabularyExtractor\n\n"
"This program is licensed under the terms of the "
"GPL v.3.0; see http://www.gnu.org/licenses/gpl-3.0.html for details."
)
DOCUMENTATION_URL = "http://www.zhtoolkit.com/apps/VocabularyExtractor/help.html"