Importer/Invenio: Use new i18n functions

This commit is contained in:
Adrian Moennich 2015-03-11 17:43:16 +01:00
parent ddd0f30465
commit 23eb6c02cc
3 changed files with 24 additions and 1 deletions

View File

@ -0,0 +1 @@
graft indico_importer_invenio/translations

View File

@ -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 <http://www.gnu.org/licenses/>.
from __future__ import unicode_literals
from indico.util.i18n import make_bound_gettext
_ = make_bound_gettext('importer_invenio')

View File

@ -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()])