#-*- coding:utf-8 -*- # # Copyright © 2016–2017 ST.Huang # # Support: Report an issue at https://github.com/sth2018/FastWordQuery/issues # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # any later version; http://www.gnu.org/copyleft/gpl.html. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . from .lang import _ VERSION = '1.0.0' class Endpoint: repository = u' https://github.com/sth2018/FastWordQuery' feedback_issue = u'https://github.com/sth2018/FastWordQuery/issues' feedback_mail = u'wenhonghuang@gmail.com' check_version = u'https://raw.githubusercontent.com/sth2018/FastWordQuery/gh-pages/version' new_version = u' https://github.com/sth2018/FastWordQuery' user_guide = u'https://sth2018.github.io/FastWordQuery/' class Template: tmpl_about = u'{t0}
{version}
{t1}
{url}
{t2}
{feedback0}
{feedback1}'.format( t0=_('VERSION'), version=VERSION, t1=_('REPOSITORY'), url=Endpoint.repository, t2=_('FEEDBACK'), feedback0=Endpoint.feedback_issue, feedback1=Endpoint.feedback_mail) new_version = u'{info} V{version}'.format( info=_('NEW_VERSION'), url=Endpoint.new_version, version='{version}') latest_version = _('LATEST_VERSION') abnormal_version = _('ABNORMAL_VERSION') check_failure = u'{msg}' miss_css = u'MDX dictonary {dict} misses css file {css}.
Please choose the file.'