mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-13 07:29:39 +00:00
Importer/Invenio: Use new i18n functions
This commit is contained in:
parent
ddd0f30465
commit
23eb6c02cc
1
importer_invenio/MANIFEST.in
Normal file
1
importer_invenio/MANIFEST.in
Normal file
@ -0,0 +1 @@
|
||||
graft indico_importer_invenio/translations
|
||||
@ -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')
|
||||
@ -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()])
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user