Coverage for modules/org/openteacher/data/metadata/metadata : 100%
Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
|
#! /usr/bin/env python3 # -*- coding: utf-8 -*-
# Copyright 2011-2014, 2017, Marten de Vries # # This file is part of OpenTeacher. # # OpenTeacher 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 # (at your option) any later version. # # OpenTeacher 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 OpenTeacher. If not, see <http://www.gnu.org/licenses/>.
self._mm.mods(type="simpleTranslator"), )
#TRANSLATORS: This is OpenTeacher's version number.
#TRANSLATORS: OpenTeacher is a name, so please only #translate or transliterate it if you've got a good reason #to do so. "name": _("OpenTeacher"), "version": version, "authors": _("OpenTeacher authors"), #TRANSLATORS: This are the copyrightable years for #TRANSLATORS: OpenTeacher. "copyrightYears": _("2008-2014, 2017"), #TRANSLATORS: If you want to change this to another, e.g. #localized website, please contact us #(openteachermaintainers@lists.launchpad.net) first. "website": _("http://openteacher.org/"), "email": "openteachermaintainers@lists.launchpad.net", #TRANSLATORS: If you want to change this to another, e.g. #localized website, please contact us #(openteachermaintainers@lists.launchpad.net) first. "documentationUrl": _("http://openteacher.org/documentation.html"), "newsFeedUrl": "http://feeds.launchpad.net/openteacher/announcements.atom", "iconPath": self._mm.resourcePath("openteacher.png"), "licenseIntro": open(self._mm.resourcePath("license_intro.txt"), encoding='UTF-8').read(), "license": open(self._mm.resourcePath("license.txt"), encoding='UTF-8').read(), "comicPath": self._mm.resourcePath("comic.png"), "mainColorHue": 196, #OpenTeacher blue = 196; green = 120 #Not translated because this is for the packaging only, #packages are normally translated in other ways. "short_description": "Your personal tutor", "description": """OpenTeacher is an open source application that helps you learn a variety of subjects. You just enter the questions and the answers, or download them from the internet, and OpenTeacher tests you.
OpenTeacher {version} has the following features: - Viewing both recent and past results of tests with graphs - Smart question asking and interval training - Reverse rehearsal (the answer is asked, and you need to give the question) - Read support for more than 30 file formats; write support for over 20 file formats - Learn typing with our Typing Tutor which adapts itself to your skills - Print your word lists, media items and topography maps - (Partly) available in Arabic, Brazilian Portuguese, Simplified Chinese, Traditional Chinese, Czech, Dutch, Finnish, French, Frisian, Galician, German, Greek, Hungarian, Italian, Japanese, Polish, Russian, Sinhalese, Spanish and Turkish - and more...
OpenTeacher is available for Linux, Windows and Mac OS X.""".format(version=version) } self.metadata["name"], self.metadata["version"], self.metadata["website"] ) #build doc string "Provides access to all kinds of stuff related to the " + "'OpenTeacher' brand. Available keys in the ``metadata`` " + "property with a small preview of their current values):" + "\n\n" + "\n".join(( "- `%s`: %s" % (k, str(v).split("\n")[0]) for k, v in sorted(self.metadata.items()) )) )
|