From 23eb6c02cc3e4efc7f2902fb9d44fc9a19b59d54 Mon Sep 17 00:00:00 2001 From: Adrian Moennich Date: Wed, 11 Mar 2015 17:43:16 +0100 Subject: [PATCH] Importer/Invenio: Use new i18n functions --- importer_invenio/MANIFEST.in | 1 + .../indico_importer_invenio/__init__.py | 21 +++++++++++++++++++ .../indico_importer_invenio/forms.py | 3 ++- 3 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 importer_invenio/MANIFEST.in diff --git a/importer_invenio/MANIFEST.in b/importer_invenio/MANIFEST.in new file mode 100644 index 0000000..02fd4c4 --- /dev/null +++ b/importer_invenio/MANIFEST.in @@ -0,0 +1 @@ +graft indico_importer_invenio/translations diff --git a/importer_invenio/indico_importer_invenio/__init__.py b/importer_invenio/indico_importer_invenio/__init__.py index e69de29..10de68e 100644 --- a/importer_invenio/indico_importer_invenio/__init__.py +++ b/importer_invenio/indico_importer_invenio/__init__.py @@ -0,0 +1,21 @@ +# This file is part of Indico. +# Copyright (C) 2002 - 2015 European Organization for Nuclear Research (CERN). +# +# Indico 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. +# +# Indico 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 Indico; if not, see . + +from __future__ import unicode_literals + +from indico.util.i18n import make_bound_gettext + +_ = make_bound_gettext('importer_invenio') diff --git a/importer_invenio/indico_importer_invenio/forms.py b/importer_invenio/indico_importer_invenio/forms.py index bc99eb4..57f80df 100644 --- a/importer_invenio/indico_importer_invenio/forms.py +++ b/importer_invenio/indico_importer_invenio/forms.py @@ -19,9 +19,10 @@ from __future__ import unicode_literals from wtforms.fields.html5 import URLField from wtforms.validators import URL -from indico.util.i18n import _ from indico.web.forms.base import IndicoForm +from indico_importer_invenio import _ + class SettingsForm(IndicoForm): server_url = URLField(_("Invenio server URL"), validators=[URL()])