[IMP] improve the knowledge wizard

bzr revid: rma@tinyerp.com-20120731120628-rkfegevch10o1quk
This commit is contained in:
Randhir Mayatra (OpenERP) 2012-07-31 17:36:28 +05:30
parent 083b001671
commit f9a936f92d
1 changed files with 5 additions and 5 deletions

View File

@ -25,18 +25,18 @@ class knowledge_config_settings(osv.osv_memory):
_name = 'knowledge.config.settings'
_inherit = 'res.config.settings'
_columns = {
'module_wiki_faq': fields.boolean('Internal FAQ as a Wiki',
'module_wiki_faq': fields.boolean('manage internal FAQ as a wiki',
help="""This installs the module wiki_faq."""),
'module_wiki_quality_manual': fields.boolean('Quality Manual as a Wiki',
'module_wiki_quality_manual': fields.boolean('use quality manual as a wiki',
help="""This installs the module wiki_quality_manual."""),
'module_document': fields.boolean('Document Management',
'module_document': fields.boolean('manage documents',
help="""This is a complete document management system, with: user authentication,
full document search (but pptx and docx are not supported), and a document dashboard.
This installs the module document."""),
'module_document_ftp': fields.boolean('Share Repositories (FTP)',
'module_document_ftp': fields.boolean('share repositories(FTP)',
help="""Access your documents in OpenERP through an FTP interface.
This installs the module document_ftp."""),
'module_document_webdav': fields.boolean('Share Repositories (WebDAV)',
'module_document_webdav': fields.boolean('share repositories(WebDAV)',
help="""Access your documents in OpenERP through WebDAV.
This installs the module document_webdav."""),
}