fixing translate
This commit is contained in:
parent
ed1f36c1a1
commit
bb657f3488
|
@ -46,7 +46,7 @@ from idhub.models import (
|
||||||
class DashboardView(AdminView, TemplateView):
|
class DashboardView(AdminView, TemplateView):
|
||||||
template_name = "idhub/admin/dashboard.html"
|
template_name = "idhub/admin/dashboard.html"
|
||||||
title = _('Dashboard')
|
title = _('Dashboard')
|
||||||
subtitle = _('Success')
|
subtitle = _('Events')
|
||||||
icon = 'bi bi-bell'
|
icon = 'bi bi-bell'
|
||||||
section = "Home"
|
section = "Home"
|
||||||
|
|
||||||
|
@ -58,7 +58,7 @@ class DashboardView(AdminView, TemplateView):
|
||||||
return context
|
return context
|
||||||
|
|
||||||
class People(AdminView):
|
class People(AdminView):
|
||||||
title = _("User Management")
|
title = _("User management")
|
||||||
section = "People"
|
section = "People"
|
||||||
|
|
||||||
|
|
||||||
|
@ -68,12 +68,12 @@ class AccessControl(AdminView, TemplateView):
|
||||||
|
|
||||||
|
|
||||||
class Credentials(AdminView, TemplateView):
|
class Credentials(AdminView, TemplateView):
|
||||||
title = _("Credential Management")
|
title = _("Credential management")
|
||||||
section = "Credential"
|
section = "Credential"
|
||||||
|
|
||||||
|
|
||||||
class SchemasMix(AdminView, TemplateView):
|
class SchemasMix(AdminView, TemplateView):
|
||||||
title = _("Template Management")
|
title = _("Template management")
|
||||||
section = "Template"
|
section = "Template"
|
||||||
|
|
||||||
|
|
||||||
|
@ -121,7 +121,7 @@ class PeopleActivateView(PeopleView):
|
||||||
self.object = get_object_or_404(self.model, pk=self.pk)
|
self.object = get_object_or_404(self.model, pk=self.pk)
|
||||||
|
|
||||||
if self.object == self.request.user:
|
if self.object == self.request.user:
|
||||||
messages.error(self.request, _('Is not possible deactivate your account!'))
|
messages.error(self.request, _('It is not possible deactivate your account!'))
|
||||||
return redirect('idhub:admin_people', self.object.id)
|
return redirect('idhub:admin_people', self.object.id)
|
||||||
|
|
||||||
if self.object.is_active:
|
if self.object.is_active:
|
||||||
|
@ -145,7 +145,7 @@ class PeopleDeleteView(PeopleView):
|
||||||
Event.set_EV_USR_DELETED_BY_ADMIN(self.object)
|
Event.set_EV_USR_DELETED_BY_ADMIN(self.object)
|
||||||
self.object.delete()
|
self.object.delete()
|
||||||
else:
|
else:
|
||||||
messages.error(self.request, _('Is not possible delete your account!'))
|
messages.error(self.request, _('It is not possible delete your account!'))
|
||||||
|
|
||||||
return redirect('idhub:admin_people_list')
|
return redirect('idhub:admin_people_list')
|
||||||
|
|
||||||
|
@ -181,7 +181,7 @@ class PeopleEditView(People, FormView):
|
||||||
|
|
||||||
def form_valid(self, form):
|
def form_valid(self, form):
|
||||||
user = form.save()
|
user = form.save()
|
||||||
messages.success(self.request, _('The account is updated successfully'))
|
messages.success(self.request, _('The account was updated successfully'))
|
||||||
Event.set_EV_USR_UPDATED_BY_ADMIN(user)
|
Event.set_EV_USR_UPDATED_BY_ADMIN(user)
|
||||||
Event.set_EV_USR_UPDATED(user)
|
Event.set_EV_USR_UPDATED(user)
|
||||||
|
|
||||||
|
@ -412,7 +412,7 @@ class RolesView(AccessControl):
|
||||||
|
|
||||||
class RolRegisterView(AccessControl, CreateView):
|
class RolRegisterView(AccessControl, CreateView):
|
||||||
template_name = "idhub/admin/rol_register.html"
|
template_name = "idhub/admin/rol_register.html"
|
||||||
subtitle = _('Add Role')
|
subtitle = _('Add role')
|
||||||
icon = ''
|
icon = ''
|
||||||
model = Rol
|
model = Rol
|
||||||
fields = ('name', "description")
|
fields = ('name', "description")
|
||||||
|
@ -428,7 +428,7 @@ class RolRegisterView(AccessControl, CreateView):
|
||||||
|
|
||||||
class RolEditView(AccessControl, UpdateView):
|
class RolEditView(AccessControl, UpdateView):
|
||||||
template_name = "idhub/admin/rol_register.html"
|
template_name = "idhub/admin/rol_register.html"
|
||||||
subtitle = _('Edit Role')
|
subtitle = _('Edit role')
|
||||||
icon = ''
|
icon = ''
|
||||||
model = Rol
|
model = Rol
|
||||||
fields = ('name', "description")
|
fields = ('name', "description")
|
||||||
|
@ -549,7 +549,7 @@ class CredentialsView(Credentials):
|
||||||
|
|
||||||
class CredentialView(Credentials):
|
class CredentialView(Credentials):
|
||||||
template_name = "idhub/admin/issue_credentials.html"
|
template_name = "idhub/admin/issue_credentials.html"
|
||||||
subtitle = _('Change status of Credential')
|
subtitle = _('Change credential status')
|
||||||
icon = ''
|
icon = ''
|
||||||
model = VerificableCredential
|
model = VerificableCredential
|
||||||
|
|
||||||
|
@ -622,7 +622,7 @@ class DeleteCredentialsView(Credentials):
|
||||||
|
|
||||||
class DidsView(Credentials):
|
class DidsView(Credentials):
|
||||||
template_name = "idhub/admin/dids.html"
|
template_name = "idhub/admin/dids.html"
|
||||||
subtitle = _('Manage Identities (DID)')
|
subtitle = _('Manage identities (DID)')
|
||||||
icon = 'bi bi-patch-check-fill'
|
icon = 'bi bi-patch-check-fill'
|
||||||
wallet = True
|
wallet = True
|
||||||
|
|
||||||
|
@ -635,7 +635,7 @@ class DidsView(Credentials):
|
||||||
|
|
||||||
class DidRegisterView(Credentials, CreateView):
|
class DidRegisterView(Credentials, CreateView):
|
||||||
template_name = "idhub/admin/did_register.html"
|
template_name = "idhub/admin/did_register.html"
|
||||||
subtitle = _('Add a new Organization Identities (DID)')
|
subtitle = _('Add a new organizational identity (DID)')
|
||||||
icon = 'bi bi-patch-check-fill'
|
icon = 'bi bi-patch-check-fill'
|
||||||
wallet = True
|
wallet = True
|
||||||
model = DID
|
model = DID
|
||||||
|
@ -774,7 +774,7 @@ class SchemasNewView(SchemasMix):
|
||||||
data = f.read().decode('utf-8')
|
data = f.read().decode('utf-8')
|
||||||
assert credtools.validate_schema(json.loads(data))
|
assert credtools.validate_schema(json.loads(data))
|
||||||
except Exception:
|
except Exception:
|
||||||
messages.error(self.request, _('This is not a schema valid!'))
|
messages.error(self.request, _('This is not a valid schema!'))
|
||||||
return
|
return
|
||||||
schema = Schemas.objects.create(file_schema=file_name, data=data)
|
schema = Schemas.objects.create(file_schema=file_name, data=data)
|
||||||
schema.save()
|
schema.save()
|
||||||
|
@ -819,7 +819,7 @@ class SchemasImportAddView(SchemasMix):
|
||||||
try:
|
try:
|
||||||
json.loads(data)
|
json.loads(data)
|
||||||
except Exception:
|
except Exception:
|
||||||
messages.error(self.request, _('This is not a schema valid!'))
|
messages.error(self.request, _('This is not a valid schema!'))
|
||||||
return
|
return
|
||||||
schema = Schemas.objects.create(file_schema=file_name, data=data)
|
schema = Schemas.objects.create(file_schema=file_name, data=data)
|
||||||
schema.save()
|
schema.save()
|
||||||
|
@ -836,7 +836,7 @@ class SchemasImportAddView(SchemasMix):
|
||||||
|
|
||||||
class ImportView(ImportExport, TemplateView):
|
class ImportView(ImportExport, TemplateView):
|
||||||
template_name = "idhub/admin/import.html"
|
template_name = "idhub/admin/import.html"
|
||||||
subtitle = _('Import data')
|
subtitle = _('Data')
|
||||||
icon = ''
|
icon = ''
|
||||||
|
|
||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
|
@ -875,7 +875,7 @@ class ImportAddView(ImportExport, FormView):
|
||||||
def form_valid(self, form):
|
def form_valid(self, form):
|
||||||
creds = form.save()
|
creds = form.save()
|
||||||
if creds:
|
if creds:
|
||||||
messages.success(self.request, _("The file import was successfully!"))
|
messages.success(self.request, _("The file was imported successfully!"))
|
||||||
for cred in creds:
|
for cred in creds:
|
||||||
Event.set_EV_CREDENTIAL_ENABLED(cred)
|
Event.set_EV_CREDENTIAL_ENABLED(cred)
|
||||||
Event.set_EV_CREDENTIAL_CAN_BE_REQUESTED(cred)
|
Event.set_EV_CREDENTIAL_CAN_BE_REQUESTED(cred)
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
<table class="table table-striped table-sm">
|
<table class="table table-striped table-sm">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Created at' %}</button></th>
|
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Created' %}</button></th>
|
||||||
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'File' %}</button></th>
|
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'File' %}</button></th>
|
||||||
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Success' %}</button></th>
|
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Success' %}</button></th>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
<table class="table table-striped table-sm">
|
<table class="table table-striped table-sm">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Created at' %}</button></th>
|
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Created' %}</button></th>
|
||||||
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Template file' %}</button></th>
|
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Template file' %}</button></th>
|
||||||
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Name' %}</button></th>
|
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Name' %}</button></th>
|
||||||
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Description' %}</button></th>
|
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Description' %}</button></th>
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<div class="form-actions-no-box">
|
<div class="form-actions-no-box">
|
||||||
<a class="btn btn-green-admin" href="{% url 'idhub:admin_service_new' %}">{% translate "Add Service" %} <i class="bi bi-plus"></i></a>
|
<a class="btn btn-green-admin" href="{% url 'idhub:admin_service_new' %}">{% translate "Add service" %} <i class="bi bi-plus"></i></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -73,7 +73,7 @@
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="admin {% if section == 'People' %}active {% endif %}nav-link fw-bold" data-bs-toggle="collapse" data-bs-target="#people" aria-expanded="false" aria-controls="people" href="javascript:void()">
|
<a class="admin {% if section == 'People' %}active {% endif %}nav-link fw-bold" data-bs-toggle="collapse" data-bs-target="#people" aria-expanded="false" aria-controls="people" href="javascript:void()">
|
||||||
<i class="bi bi-people icon_sidebar"></i>
|
<i class="bi bi-people icon_sidebar"></i>
|
||||||
{% trans 'User managament' %}
|
{% trans 'Users' %}
|
||||||
</a>
|
</a>
|
||||||
<ul class="flex-column mb-2 ul_sidebar accordion-collapse {% if section == 'People' %}expanded{% else %}collapse{% endif %}" id="people" data-bs-parent="#sidebarMenu">
|
<ul class="flex-column mb-2 ul_sidebar accordion-collapse {% if section == 'People' %}expanded{% else %}collapse{% endif %}" id="people" data-bs-parent="#sidebarMenu">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
|
@ -91,7 +91,7 @@
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="admin nav-link {% if section == 'AccessControl' %}active {% endif %}fw-bold" data-bs-toggle="collapse" data-bs-target="#control-access" aria-expanded="false" aria-controls="control-access" href="javascript:void()">
|
<a class="admin nav-link {% if section == 'AccessControl' %}active {% endif %}fw-bold" data-bs-toggle="collapse" data-bs-target="#control-access" aria-expanded="false" aria-controls="control-access" href="javascript:void()">
|
||||||
<i class="fa-solid fa-arrow-right-from-bracket icon_sidebar"></i>
|
<i class="fa-solid fa-arrow-right-from-bracket icon_sidebar"></i>
|
||||||
{% trans 'Access control managament' %}
|
{% trans 'Roles' %}
|
||||||
</a>
|
</a>
|
||||||
<ul class="flex-column mb-2 ul_sidebar accordion-collapse {% if section == 'AccessControl' %}expanded{% else %}collapse{% endif %}" id="control-access" data-bs-parent="#sidebarMenu">
|
<ul class="flex-column mb-2 ul_sidebar accordion-collapse {% if section == 'AccessControl' %}expanded{% else %}collapse{% endif %}" id="control-access" data-bs-parent="#sidebarMenu">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
|
@ -109,7 +109,7 @@
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="admin nav-link {% if section == 'Credential' %}active {% endif %}fw-bold" data-bs-toggle="collapse" data-bs-target="#credential" aria-expanded="false" aria-controls="credential" href="javascript:void()">
|
<a class="admin nav-link {% if section == 'Credential' %}active {% endif %}fw-bold" data-bs-toggle="collapse" data-bs-target="#credential" aria-expanded="false" aria-controls="credential" href="javascript:void()">
|
||||||
<i class="bi bi-patch-check icon_sidebar"></i>
|
<i class="bi bi-patch-check icon_sidebar"></i>
|
||||||
{% trans 'Credential management' %}
|
{% trans 'Credentials' %}
|
||||||
</a>
|
</a>
|
||||||
<ul class="flex-column mb-2 ul_sidebar accordion-collapse {% if section == 'Credential' %}expanded{% else %}collapse{% endif %}" id="credential" data-bs-parent="#sidebarMenu">
|
<ul class="flex-column mb-2 ul_sidebar accordion-collapse {% if section == 'Credential' %}expanded{% else %}collapse{% endif %}" id="credential" data-bs-parent="#sidebarMenu">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
|
|
|
@ -30,7 +30,7 @@ class MyWallet(UserView):
|
||||||
class DashboardView(UserView, TemplateView):
|
class DashboardView(UserView, TemplateView):
|
||||||
template_name = "idhub/user/dashboard.html"
|
template_name = "idhub/user/dashboard.html"
|
||||||
title = _('Dashboard')
|
title = _('Dashboard')
|
||||||
subtitle = _('Success')
|
subtitle = _('Events')
|
||||||
icon = 'bi bi-bell'
|
icon = 'bi bi-bell'
|
||||||
section = "Home"
|
section = "Home"
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-11-13 11:11+0100\n"
|
"POT-Creation-Date: 2023-11-21 12:37+0100\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -886,7 +886,7 @@ msgstr ""
|
||||||
#: idhub/templates/idhub/admin/issue_credentials.html:15
|
#: idhub/templates/idhub/admin/issue_credentials.html:15
|
||||||
#: idhub/templates/idhub/admin/issue_credentials.html:18
|
#: idhub/templates/idhub/admin/issue_credentials.html:18
|
||||||
#: idhub/templates/idhub/admin/issue_credentials.html:90
|
#: idhub/templates/idhub/admin/issue_credentials.html:90
|
||||||
#: idhub/templates/idhub/admin/roles.html:25
|
#: idhub/templates/idhub/admin/roles.html:27
|
||||||
#: idhub/templates/idhub/admin/schemas.html:56
|
#: idhub/templates/idhub/admin/schemas.html:56
|
||||||
#: idhub/templates/idhub/admin/services.html:29
|
#: idhub/templates/idhub/admin/services.html:29
|
||||||
#: idhub/templates/idhub/admin/user.html:15
|
#: idhub/templates/idhub/admin/user.html:15
|
||||||
|
@ -1533,400 +1533,445 @@ msgstr ""
|
||||||
msgid "show this help message and exit"
|
msgid "show this help message and exit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/forms.py:106
|
#: idhub/admin/forms.py:112
|
||||||
msgid "The user does not exist!"
|
msgid "The user does not exist!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:43 idhub/templates/idhub/base.html:69
|
#: idhub/admin/forms.py:154 idhub/admin/forms.py:168 idhub/admin/forms.py:177
|
||||||
#: idhub/templates/idhub/base_admin.html:69 idhub/user/views.py:33
|
msgid "This membership already exists!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/forms.py:159
|
||||||
|
msgid "The end date is less than the start date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/forms.py:206
|
||||||
|
msgid "Is not possible to have a duplicate role"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:48 idhub/templates/idhub/base.html:69
|
||||||
|
#: idhub/templates/idhub/base_admin.html:69 idhub/user/views.py:32
|
||||||
msgid "Dashboard"
|
msgid "Dashboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:44 idhub/templates/idhub/admin/import.html:17
|
#: idhub/admin/views.py:49 idhub/user/views.py:33
|
||||||
#: idhub/user/views.py:34
|
msgid "Events"
|
||||||
msgid "Success"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/admin/views.py:56
|
|
||||||
msgid "User Management"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:61
|
#: idhub/admin/views.py:61
|
||||||
msgid "Access control management"
|
msgid "User management"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:66
|
#: idhub/admin/views.py:66
|
||||||
msgid "Credential Management"
|
msgid "Access control management"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:71
|
#: idhub/admin/views.py:71 idhub/user/views.py:74
|
||||||
msgid "Template Management"
|
msgid "Credential management"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:76
|
#: idhub/admin/views.py:76
|
||||||
|
msgid "Template management"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:81
|
||||||
msgid "Data file management"
|
msgid "Data file management"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:82 idhub/templates/idhub/base_admin.html:81
|
#: idhub/admin/views.py:87 idhub/templates/idhub/base_admin.html:81
|
||||||
msgid "View users"
|
msgid "View users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:95
|
#: idhub/admin/views.py:100
|
||||||
msgid "User personal information"
|
msgid "User personal information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:119
|
#: idhub/admin/views.py:124
|
||||||
msgid "Is not possible deactivate your account!"
|
msgid "It is not possible deactivate your account!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:143 idhub/admin/views.py:261
|
#: idhub/admin/views.py:148
|
||||||
msgid "Is not possible delete your account!"
|
msgid "It is not possible delete your account!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:155
|
#: idhub/admin/views.py:155
|
||||||
msgid "The account is updated successfully"
|
msgid "Update user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:164 idhub/templates/idhub/base_admin.html:86
|
#: idhub/admin/views.py:184
|
||||||
|
msgid "The account was updated successfully"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:193 idhub/templates/idhub/base_admin.html:86
|
||||||
msgid "Add user"
|
msgid "Add user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:179
|
#: idhub/admin/views.py:207
|
||||||
msgid "The account was created successfully"
|
msgid "The account was created successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:193
|
#: idhub/admin/views.py:221 idhub/admin/views.py:265
|
||||||
msgid "Associate a membership to the user"
|
msgid "Associate a membership to the user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:230
|
#: idhub/admin/views.py:252 idhub/admin/views.py:342
|
||||||
msgid "People add membership"
|
msgid "Membership created successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:268
|
#: idhub/admin/views.py:297 idhub/admin/views.py:377
|
||||||
|
msgid "Membership updated successfully"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:312
|
||||||
|
msgid "Is not possible delete your account!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:319
|
||||||
msgid "Add a user role to access a service"
|
msgid "Add a user role to access a service"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:298
|
#: idhub/admin/views.py:355
|
||||||
msgid "Modify a user role to access a service"
|
msgid "Modify a user role to access a service"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:333 idhub/templates/idhub/base_admin.html:99
|
#: idhub/admin/views.py:403 idhub/templates/idhub/base_admin.html:99
|
||||||
msgid "Manage roles"
|
msgid "Manage roles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:345 idhub/templates/idhub/admin/roles.html:31
|
#: idhub/admin/views.py:415
|
||||||
#: idhub/templates/idhub/admin/user_edit.html:93
|
msgid "Add role"
|
||||||
msgid "Add Role"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/admin/views.py:354
|
|
||||||
msgid "Role created successfully"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/admin/views.py:361
|
|
||||||
msgid "Edit Role"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/admin/views.py:376
|
|
||||||
msgid "Role updated successfully"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/admin/views.py:389
|
|
||||||
msgid "Role deleted successfully"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/admin/views.py:396 idhub/templates/idhub/base_admin.html:104
|
|
||||||
msgid "Manage services"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/admin/views.py:408
|
|
||||||
msgid "Add service"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/admin/views.py:417
|
|
||||||
msgid "Service created successfully"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:424
|
#: idhub/admin/views.py:424
|
||||||
|
msgid "Role created successfully"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:431
|
||||||
|
msgid "Edit role"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:446
|
||||||
|
msgid "Role updated successfully"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:459
|
||||||
|
msgid "Role deleted successfully"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:466 idhub/templates/idhub/base_admin.html:104
|
||||||
|
msgid "Manage services"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:478 idhub/templates/idhub/admin/services.html:35
|
||||||
|
msgid "Add service"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:492
|
||||||
|
msgid "Service created successfully"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:499
|
||||||
msgid "Modify service"
|
msgid "Modify service"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:439
|
#: idhub/admin/views.py:519
|
||||||
msgid "Service updated successfully"
|
msgid "Service updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:452
|
#: idhub/admin/views.py:532
|
||||||
msgid "Service deleted successfully"
|
msgid "Service deleted successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:459 idhub/templates/idhub/base_admin.html:117
|
#: idhub/admin/views.py:539 idhub/templates/idhub/base_admin.html:117
|
||||||
msgid "View credentials"
|
msgid "View credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:472
|
#: idhub/admin/views.py:552
|
||||||
msgid "Change status of Credential"
|
msgid "Change credential status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:514
|
#: idhub/admin/views.py:594
|
||||||
msgid "Credential revoked successfully"
|
msgid "Credential revoked successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:536
|
#: idhub/admin/views.py:616
|
||||||
msgid "Credential deleted successfully"
|
msgid "Credential deleted successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:545
|
#: idhub/admin/views.py:625
|
||||||
msgid "Manage Identities (DID)"
|
msgid "Manage identities (DID)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:558
|
#: idhub/admin/views.py:638
|
||||||
msgid "Add a new Organization Identities (DID)"
|
msgid "Add a new organizational identity (DID)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:570 idhub/user/views.py:195
|
#: idhub/admin/views.py:650 idhub/user/views.py:194
|
||||||
msgid "DID created successfully"
|
msgid "DID created successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:577 idhub/admin/views.py:596
|
#: idhub/admin/views.py:657 idhub/admin/views.py:676
|
||||||
msgid "Organization Identities (DID)"
|
msgid "Organization Identities (DID)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:591 idhub/user/views.py:218
|
#: idhub/admin/views.py:671 idhub/user/views.py:217
|
||||||
msgid "DID updated successfully"
|
msgid "DID updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:607 idhub/user/views.py:234
|
#: idhub/admin/views.py:687 idhub/user/views.py:233
|
||||||
msgid "DID delete successfully"
|
msgid "DID delete successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:613 idhub/templates/idhub/base_admin.html:132
|
#: idhub/admin/views.py:693 idhub/templates/idhub/base_admin.html:132
|
||||||
msgid "View org. credentials"
|
msgid "View org. credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:620 idhub/templates/idhub/base_admin.html:137
|
#: idhub/admin/views.py:700 idhub/templates/idhub/base_admin.html:137
|
||||||
msgid "Configure credential issuance"
|
msgid "Configure credential issuance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:627
|
#: idhub/admin/views.py:707
|
||||||
msgid "View credential templates"
|
msgid "View credential templates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:661
|
#: idhub/admin/views.py:741
|
||||||
msgid "Upload template"
|
msgid "Upload template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:677
|
#: idhub/admin/views.py:757
|
||||||
msgid "There are some errors in the file"
|
msgid "There are some errors in the file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:691
|
#: idhub/admin/views.py:771
|
||||||
msgid "This template already exists!"
|
msgid "This template already exists!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:697 idhub/admin/views.py:742
|
#: idhub/admin/views.py:777 idhub/admin/views.py:822
|
||||||
msgid "This is not a schema valid!"
|
msgid "This is not a valid schema!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:706
|
#: idhub/admin/views.py:786
|
||||||
msgid "Import template"
|
msgid "Import template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:734
|
#: idhub/admin/views.py:814
|
||||||
msgid "The schema was added sucessfully"
|
msgid "The schema was added sucessfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:759 idhub/templates/idhub/admin/import.html:31
|
#: idhub/admin/views.py:839
|
||||||
#: idhub/templates/idhub/base_admin.html:153
|
msgid "Data"
|
||||||
msgid "Import data"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:772 idhub/admin/views.py:785
|
#: idhub/admin/views.py:852 idhub/admin/views.py:865
|
||||||
msgid "Import"
|
msgid "Import"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:798
|
#: idhub/admin/views.py:878
|
||||||
msgid "The file import was successfully!"
|
msgid "The file was imported successfully!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:803
|
#: idhub/admin/views.py:883
|
||||||
msgid "Error importing the file!"
|
msgid "Error importing the file!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:58
|
#: idhub/models.py:67
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The user {username} was registered: name: {first_name}, last name: "
|
"The user {username} was registered: name: {first_name}, last name: "
|
||||||
"{last_name}"
|
"{last_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:70
|
#: idhub/models.py:79
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Welcome. You has been registered: name: {first_name}, last name: {last_name}"
|
"Welcome. You has been registered: name: {first_name}, last name: {last_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:83
|
#: idhub/models.py:92
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The user '{username}' has request the update of the following information: "
|
"The user '{username}' has request the update of the following information: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:95
|
#: idhub/models.py:104
|
||||||
msgid "You have requested the update of the following information: "
|
msgid "You have requested the update of the following information: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:132
|
#: idhub/models.py:141
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "The admin has deleted the user: username: {username}"
|
msgid "The admin has deleted the user: username: {username}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:142
|
#: idhub/models.py:151
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "New DID with DID-ID: '{did}' created by user '{username}'"
|
msgid "New DID with DID-ID: '{did}' created by user '{username}'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:153
|
#: idhub/models.py:162
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "New DID with label: '{label}' and DID-ID: '{did}' was created'"
|
msgid "New DID with label: '{label}' and DID-ID: '{did}' was created'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:165
|
#: idhub/models.py:174
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The DID with label '{label}' and DID-ID: '{did}' was deleted from your wallet"
|
"The DID with label '{label}' and DID-ID: '{did}' was deleted from your wallet"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:177
|
#: idhub/models.py:186
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "The credential of type '{type}' and ID: '{id}' was deleted"
|
msgid "The credential of type '{type}' and ID: '{id}' was deleted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:188
|
#: idhub/models.py:197
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credential of type '{type}' and ID: '{id}' was deleted from your wallet"
|
"The credential of type '{type}' and ID: '{id}' was deleted from your wallet"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:200
|
#: idhub/models.py:209
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credential of type '{type}' and ID: '{id}' was issued for user {username}"
|
"The credential of type '{type}' and ID: '{id}' was issued for user {username}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:212
|
#: idhub/models.py:221
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credential of type '{type}' and ID: '{id}' was issued and stored in your "
|
"The credential of type '{type}' and ID: '{id}' was issued and stored in your "
|
||||||
"wallet"
|
"wallet"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:254
|
#: idhub/models.py:263
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "The credential of type '{type}' was enabled for user {username}"
|
msgid "The credential of type '{type}' was enabled for user {username}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:265
|
#: idhub/models.py:274
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "You can request the '{type}' credential"
|
msgid "You can request the '{type}' credential"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:276
|
#: idhub/models.py:285
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "The credential of type '{type}' and ID: '{id}' was revoked for "
|
msgid "The credential of type '{type}' and ID: '{id}' was revoked for "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:287
|
#: idhub/models.py:296
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "The credential of type '{type}' and ID: '{id}' was revoked by admin"
|
msgid "The credential of type '{type}' and ID: '{id}' was revoked by admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:299
|
#: idhub/models.py:308
|
||||||
msgid "A new role was created by admin"
|
msgid "A new role was created by admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:307
|
#: idhub/models.py:316
|
||||||
msgid "The role was modified by admin"
|
msgid "The role was modified by admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:315
|
#: idhub/models.py:324
|
||||||
msgid "The role was removed by admin"
|
msgid "The role was removed by admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:323
|
#: idhub/models.py:332
|
||||||
msgid "A new service was created by admin"
|
msgid "A new service was created by admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:331
|
#: idhub/models.py:340
|
||||||
msgid "The service was modified by admin"
|
msgid "The service was modified by admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:339
|
#: idhub/models.py:348
|
||||||
msgid "The service was removed by admin"
|
msgid "The service was removed by admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:347
|
#: idhub/models.py:356
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"New Organisational DID with label: '{label}' and DID-ID: '{did}' was created"
|
"New Organisational DID with label: '{label}' and DID-ID: '{did}' was created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:358
|
#: idhub/models.py:367
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Organisational DID with label: '{label}' and DID-ID: '{did}' was removed"
|
"Organisational DID with label: '{label}' and DID-ID: '{did}' was removed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:438
|
#: idhub/models.py:457
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:439 idhub/templates/idhub/admin/credentials.html:17
|
#: idhub/models.py:458 idhub/templates/idhub/admin/credentials.html:17
|
||||||
#: idhub/templates/idhub/user/credentials.html:17
|
#: idhub/templates/idhub/user/credentials.html:17
|
||||||
msgid "Issued"
|
msgid "Issued"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:440
|
#: idhub/models.py:459
|
||||||
msgid "Revoked"
|
msgid "Revoked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:441
|
#: idhub/models.py:460
|
||||||
msgid "Expired"
|
msgid "Expired"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:499
|
#: idhub/models.py:576
|
||||||
msgid "Beneficiary"
|
msgid "Beneficiary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:500
|
#: idhub/models.py:577
|
||||||
msgid "Employee"
|
msgid "Employee"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:501
|
#: idhub/models.py:578
|
||||||
msgid "Member"
|
msgid "Member"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:503
|
#: idhub/models.py:580
|
||||||
msgid "Type of membership"
|
msgid "Type of membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:505
|
#: idhub/models.py:582
|
||||||
msgid "Start date"
|
msgid "Start date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:506
|
#: idhub/models.py:583
|
||||||
msgid "What date did the membership start?"
|
msgid "What date did the membership start?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:511
|
#: idhub/models.py:588
|
||||||
msgid "End date"
|
msgid "End date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:512
|
#: idhub/models.py:589
|
||||||
msgid "What date will the membership end?"
|
msgid "What date will the membership end?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:564
|
#: idhub/models.py:605
|
||||||
|
msgid "name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/models.py:606 idhub/models.py:614
|
||||||
|
#: idhub/templates/idhub/admin/dashboard.html:14
|
||||||
|
#: idhub/templates/idhub/admin/roles.html:16
|
||||||
|
#: idhub/templates/idhub/admin/schemas.html:18
|
||||||
|
#: idhub/templates/idhub/admin/services.html:16
|
||||||
|
#: idhub/templates/idhub/admin/user.html:88
|
||||||
|
#: idhub/templates/idhub/admin/user_edit.html:74
|
||||||
|
#: idhub/templates/idhub/user/dashboard.html:14
|
||||||
|
#: idhub/templates/idhub/user/roles.html:16
|
||||||
|
msgid "Description"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/models.py:613 idhub/templates/templates/musician/addresses.html:16
|
||||||
|
msgid "Domain"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/models.py:622
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/models.py:647
|
||||||
msgid "Url where to send the presentation"
|
msgid "Url where to send the presentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2056,7 +2101,6 @@ msgid "Password reset on %(site_name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/credentials.html:15
|
#: idhub/templates/idhub/admin/credentials.html:15
|
||||||
#: idhub/templates/idhub/admin/dashboard.html:13
|
|
||||||
#: idhub/templates/idhub/user/credentials.html:15
|
#: idhub/templates/idhub/user/credentials.html:15
|
||||||
#: idhub/templates/idhub/user/dashboard.html:13
|
#: idhub/templates/idhub/user/dashboard.html:13
|
||||||
#: idhub/templates/templates/musician/billing.html:21
|
#: idhub/templates/templates/musician/billing.html:21
|
||||||
|
@ -2080,19 +2124,13 @@ msgid "User"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/credentials.html:31
|
#: idhub/templates/idhub/admin/credentials.html:31
|
||||||
#: idhub/templates/idhub/admin/people.html:37
|
#: idhub/templates/idhub/admin/people.html:33
|
||||||
#: idhub/templates/idhub/admin/schemas.html:30
|
#: idhub/templates/idhub/admin/schemas.html:30
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/dashboard.html:14
|
#: idhub/templates/idhub/admin/dashboard.html:13
|
||||||
#: idhub/templates/idhub/admin/schemas.html:18
|
msgid "Event"
|
||||||
#: idhub/templates/idhub/admin/services.html:16
|
|
||||||
#: idhub/templates/idhub/admin/user.html:88
|
|
||||||
#: idhub/templates/idhub/admin/user_edit.html:74
|
|
||||||
#: idhub/templates/idhub/user/dashboard.html:14
|
|
||||||
#: idhub/templates/idhub/user/roles.html:16
|
|
||||||
msgid "Description"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/dashboard.html:15
|
#: idhub/templates/idhub/admin/dashboard.html:15
|
||||||
|
@ -2144,7 +2182,7 @@ msgid "Label"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/dids.html:28
|
#: idhub/templates/idhub/admin/dids.html:28
|
||||||
#: idhub/templates/idhub/admin/roles.html:24
|
#: idhub/templates/idhub/admin/roles.html:26
|
||||||
#: idhub/templates/idhub/admin/services.html:28
|
#: idhub/templates/idhub/admin/services.html:28
|
||||||
#: idhub/templates/idhub/admin/user_edit.html:54
|
#: idhub/templates/idhub/admin/user_edit.html:54
|
||||||
#: idhub/templates/idhub/admin/user_edit.html:86
|
#: idhub/templates/idhub/admin/user_edit.html:86
|
||||||
|
@ -2174,7 +2212,16 @@ msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/import.html:15
|
#: idhub/templates/idhub/admin/import.html:15
|
||||||
#: idhub/templates/idhub/admin/schemas.html:15
|
#: idhub/templates/idhub/admin/schemas.html:15
|
||||||
msgid "Created at"
|
msgid "Created"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/templates/idhub/admin/import.html:17
|
||||||
|
msgid "Success"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/templates/idhub/admin/import.html:31
|
||||||
|
#: idhub/templates/idhub/base_admin.html:153
|
||||||
|
msgid "Import data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/issue_credentials.html:14
|
#: idhub/templates/idhub/admin/issue_credentials.html:14
|
||||||
|
@ -2265,6 +2312,11 @@ msgstr ""
|
||||||
msgid "User activation on %(site)s"
|
msgid "User activation on %(site)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/templates/idhub/admin/roles.html:33
|
||||||
|
#: idhub/templates/idhub/admin/user_edit.html:93
|
||||||
|
msgid "Add Role"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/schemas.html:16
|
#: idhub/templates/idhub/admin/schemas.html:16
|
||||||
msgid "Template file"
|
msgid "Template file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2302,10 +2354,6 @@ msgstr ""
|
||||||
msgid "Service"
|
msgid "Service"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/services.html:35
|
|
||||||
msgid "Add Service"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/user.html:13
|
#: idhub/templates/idhub/admin/user.html:13
|
||||||
msgid "Modify"
|
msgid "Modify"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2350,20 +2398,20 @@ msgstr ""
|
||||||
msgid "My personal information"
|
msgid "My personal information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/base.html:86 idhub/user/views.py:63
|
#: idhub/templates/idhub/base.html:86 idhub/user/views.py:62
|
||||||
msgid "My roles"
|
msgid "My roles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/base.html:91 idhub/user/views.py:69
|
#: idhub/templates/idhub/base.html:91 idhub/user/views.py:68
|
||||||
msgid "GDPR info"
|
msgid "GDPR info"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/base.html:99 idhub/user/views.py:27
|
#: idhub/templates/idhub/base.html:99 idhub/user/views.py:26
|
||||||
msgid "My wallet"
|
msgid "My wallet"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/base.html:104 idhub/user/views.py:170
|
#: idhub/templates/idhub/base.html:104 idhub/user/views.py:169
|
||||||
#: idhub/user/views.py:204 idhub/user/views.py:223
|
#: idhub/user/views.py:203 idhub/user/views.py:222
|
||||||
msgid "Identities (DIDs)"
|
msgid "Identities (DIDs)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2380,15 +2428,16 @@ msgid "Present a credential"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/base_admin.html:76
|
#: idhub/templates/idhub/base_admin.html:76
|
||||||
msgid "User managament"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/base_admin.html:94
|
#: idhub/templates/idhub/base_admin.html:94
|
||||||
msgid "Access control managament"
|
msgid "Roles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/base_admin.html:112 idhub/user/views.py:75
|
#: idhub/templates/idhub/base_admin.html:112
|
||||||
msgid "Credential management"
|
#: idhub/templates/idhub/user/profile.html:46
|
||||||
|
msgid "Credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/base_admin.html:122
|
#: idhub/templates/idhub/base_admin.html:122
|
||||||
|
@ -2423,10 +2472,6 @@ msgstr ""
|
||||||
msgid "Notice of Privacy"
|
msgid "Notice of Privacy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/user/profile.html:46
|
|
||||||
msgid "Credentials"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/templates/templates/musician/address_check_delete.html:7
|
#: idhub/templates/templates/musician/address_check_delete.html:7
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Are you sure that you want remove the address: \"%(address_name)s\"?"
|
msgid "Are you sure that you want remove the address: \"%(address_name)s\"?"
|
||||||
|
@ -2441,10 +2486,6 @@ msgstr ""
|
||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/templates/musician/addresses.html:16
|
|
||||||
msgid "Domain"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/templates/templates/musician/addresses.html:17
|
#: idhub/templates/templates/musician/addresses.html:17
|
||||||
#: idhub/templates/templates/musician/mail_base.html:22
|
#: idhub/templates/templates/musician/mail_base.html:22
|
||||||
msgid "Mailboxes"
|
msgid "Mailboxes"
|
||||||
|
@ -2724,42 +2765,46 @@ msgstr ""
|
||||||
msgid "Open service admin panel"
|
msgid "Open service admin panel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:22
|
#: idhub/user/views.py:21
|
||||||
msgid "My profile"
|
msgid "My profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:41
|
#: idhub/user/views.py:40
|
||||||
msgid "My personal data"
|
msgid "My personal data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:88
|
#: idhub/user/views.py:87
|
||||||
msgid "Credential"
|
msgid "Credential"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:124
|
#: idhub/user/views.py:123
|
||||||
msgid "Credential request"
|
msgid "Credential request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:137
|
#: idhub/user/views.py:136
|
||||||
msgid "The credential was issued successfully!"
|
msgid "The credential was issued successfully!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:141
|
#: idhub/user/views.py:140
|
||||||
msgid "The credential does not exist!"
|
msgid "The credential does not exist!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:147
|
#: idhub/user/views.py:146
|
||||||
msgid "Credential presentation"
|
msgid "Credential presentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:162
|
#: idhub/user/views.py:161
|
||||||
msgid "The credential was presented successfully!"
|
msgid "The credential was presented successfully!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:164
|
#: idhub/user/views.py:163
|
||||||
msgid "Error sending credential!"
|
msgid "Error sending credential!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:183
|
#: idhub/user/views.py:182
|
||||||
msgid "Add a new Identity (DID)"
|
msgid "Add a new Identity (DID)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub_auth/forms.py:19 idhub_auth/forms.py:27
|
||||||
|
msgid "The string must contain only characters and spaces"
|
||||||
|
msgstr ""
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-11-13 11:12+0100\n"
|
"POT-Creation-Date: 2023-11-21 12:37+0100\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -886,7 +886,7 @@ msgstr ""
|
||||||
#: idhub/templates/idhub/admin/issue_credentials.html:15
|
#: idhub/templates/idhub/admin/issue_credentials.html:15
|
||||||
#: idhub/templates/idhub/admin/issue_credentials.html:18
|
#: idhub/templates/idhub/admin/issue_credentials.html:18
|
||||||
#: idhub/templates/idhub/admin/issue_credentials.html:90
|
#: idhub/templates/idhub/admin/issue_credentials.html:90
|
||||||
#: idhub/templates/idhub/admin/roles.html:25
|
#: idhub/templates/idhub/admin/roles.html:27
|
||||||
#: idhub/templates/idhub/admin/schemas.html:56
|
#: idhub/templates/idhub/admin/schemas.html:56
|
||||||
#: idhub/templates/idhub/admin/services.html:29
|
#: idhub/templates/idhub/admin/services.html:29
|
||||||
#: idhub/templates/idhub/admin/user.html:15
|
#: idhub/templates/idhub/admin/user.html:15
|
||||||
|
@ -1533,400 +1533,445 @@ msgstr ""
|
||||||
msgid "show this help message and exit"
|
msgid "show this help message and exit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/forms.py:106
|
#: idhub/admin/forms.py:112
|
||||||
msgid "The user does not exist!"
|
msgid "The user does not exist!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:43 idhub/templates/idhub/base.html:69
|
#: idhub/admin/forms.py:154 idhub/admin/forms.py:168 idhub/admin/forms.py:177
|
||||||
#: idhub/templates/idhub/base_admin.html:69 idhub/user/views.py:33
|
msgid "This membership already exists!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/forms.py:159
|
||||||
|
msgid "The end date is less than the start date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/forms.py:206
|
||||||
|
msgid "Is not possible to have a duplicate role"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:48 idhub/templates/idhub/base.html:69
|
||||||
|
#: idhub/templates/idhub/base_admin.html:69 idhub/user/views.py:32
|
||||||
msgid "Dashboard"
|
msgid "Dashboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:44 idhub/templates/idhub/admin/import.html:17
|
#: idhub/admin/views.py:49 idhub/user/views.py:33
|
||||||
#: idhub/user/views.py:34
|
msgid "Events"
|
||||||
msgid "Success"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/admin/views.py:56
|
|
||||||
msgid "User Management"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:61
|
#: idhub/admin/views.py:61
|
||||||
msgid "Access control management"
|
msgid "User management"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:66
|
#: idhub/admin/views.py:66
|
||||||
msgid "Credential Management"
|
msgid "Access control management"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:71
|
#: idhub/admin/views.py:71 idhub/user/views.py:74
|
||||||
msgid "Template Management"
|
msgid "Credential management"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:76
|
#: idhub/admin/views.py:76
|
||||||
|
msgid "Template management"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:81
|
||||||
msgid "Data file management"
|
msgid "Data file management"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:82 idhub/templates/idhub/base_admin.html:81
|
#: idhub/admin/views.py:87 idhub/templates/idhub/base_admin.html:81
|
||||||
msgid "View users"
|
msgid "View users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:95
|
#: idhub/admin/views.py:100
|
||||||
msgid "User personal information"
|
msgid "User personal information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:119
|
#: idhub/admin/views.py:124
|
||||||
msgid "Is not possible deactivate your account!"
|
msgid "It is not possible deactivate your account!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:143 idhub/admin/views.py:261
|
#: idhub/admin/views.py:148
|
||||||
msgid "Is not possible delete your account!"
|
msgid "It is not possible delete your account!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:155
|
#: idhub/admin/views.py:155
|
||||||
msgid "The account is updated successfully"
|
msgid "Update user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:164 idhub/templates/idhub/base_admin.html:86
|
#: idhub/admin/views.py:184
|
||||||
|
msgid "The account was updated successfully"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:193 idhub/templates/idhub/base_admin.html:86
|
||||||
msgid "Add user"
|
msgid "Add user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:179
|
#: idhub/admin/views.py:207
|
||||||
msgid "The account was created successfully"
|
msgid "The account was created successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:193
|
#: idhub/admin/views.py:221 idhub/admin/views.py:265
|
||||||
msgid "Associate a membership to the user"
|
msgid "Associate a membership to the user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:230
|
#: idhub/admin/views.py:252 idhub/admin/views.py:342
|
||||||
msgid "People add membership"
|
msgid "Membership created successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:268
|
#: idhub/admin/views.py:297 idhub/admin/views.py:377
|
||||||
|
msgid "Membership updated successfully"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:312
|
||||||
|
msgid "Is not possible delete your account!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:319
|
||||||
msgid "Add a user role to access a service"
|
msgid "Add a user role to access a service"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:298
|
#: idhub/admin/views.py:355
|
||||||
msgid "Modify a user role to access a service"
|
msgid "Modify a user role to access a service"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:333 idhub/templates/idhub/base_admin.html:99
|
#: idhub/admin/views.py:403 idhub/templates/idhub/base_admin.html:99
|
||||||
msgid "Manage roles"
|
msgid "Manage roles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:345 idhub/templates/idhub/admin/roles.html:31
|
#: idhub/admin/views.py:415
|
||||||
#: idhub/templates/idhub/admin/user_edit.html:93
|
msgid "Add role"
|
||||||
msgid "Add Role"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/admin/views.py:354
|
|
||||||
msgid "Role created successfully"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/admin/views.py:361
|
|
||||||
msgid "Edit Role"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/admin/views.py:376
|
|
||||||
msgid "Role updated successfully"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/admin/views.py:389
|
|
||||||
msgid "Role deleted successfully"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/admin/views.py:396 idhub/templates/idhub/base_admin.html:104
|
|
||||||
msgid "Manage services"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/admin/views.py:408
|
|
||||||
msgid "Add service"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/admin/views.py:417
|
|
||||||
msgid "Service created successfully"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:424
|
#: idhub/admin/views.py:424
|
||||||
|
msgid "Role created successfully"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:431
|
||||||
|
msgid "Edit role"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:446
|
||||||
|
msgid "Role updated successfully"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:459
|
||||||
|
msgid "Role deleted successfully"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:466 idhub/templates/idhub/base_admin.html:104
|
||||||
|
msgid "Manage services"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:478 idhub/templates/idhub/admin/services.html:35
|
||||||
|
msgid "Add service"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:492
|
||||||
|
msgid "Service created successfully"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/admin/views.py:499
|
||||||
msgid "Modify service"
|
msgid "Modify service"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:439
|
#: idhub/admin/views.py:519
|
||||||
msgid "Service updated successfully"
|
msgid "Service updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:452
|
#: idhub/admin/views.py:532
|
||||||
msgid "Service deleted successfully"
|
msgid "Service deleted successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:459 idhub/templates/idhub/base_admin.html:117
|
#: idhub/admin/views.py:539 idhub/templates/idhub/base_admin.html:117
|
||||||
msgid "View credentials"
|
msgid "View credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:472
|
#: idhub/admin/views.py:552
|
||||||
msgid "Change status of Credential"
|
msgid "Change credential status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:514
|
#: idhub/admin/views.py:594
|
||||||
msgid "Credential revoked successfully"
|
msgid "Credential revoked successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:536
|
#: idhub/admin/views.py:616
|
||||||
msgid "Credential deleted successfully"
|
msgid "Credential deleted successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:545
|
#: idhub/admin/views.py:625
|
||||||
msgid "Manage Identities (DID)"
|
msgid "Manage identities (DID)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:558
|
#: idhub/admin/views.py:638
|
||||||
msgid "Add a new Organization Identities (DID)"
|
msgid "Add a new organizational identity (DID)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:570 idhub/user/views.py:195
|
#: idhub/admin/views.py:650 idhub/user/views.py:194
|
||||||
msgid "DID created successfully"
|
msgid "DID created successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:577 idhub/admin/views.py:596
|
#: idhub/admin/views.py:657 idhub/admin/views.py:676
|
||||||
msgid "Organization Identities (DID)"
|
msgid "Organization Identities (DID)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:591 idhub/user/views.py:218
|
#: idhub/admin/views.py:671 idhub/user/views.py:217
|
||||||
msgid "DID updated successfully"
|
msgid "DID updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:607 idhub/user/views.py:234
|
#: idhub/admin/views.py:687 idhub/user/views.py:233
|
||||||
msgid "DID delete successfully"
|
msgid "DID delete successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:613 idhub/templates/idhub/base_admin.html:132
|
#: idhub/admin/views.py:693 idhub/templates/idhub/base_admin.html:132
|
||||||
msgid "View org. credentials"
|
msgid "View org. credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:620 idhub/templates/idhub/base_admin.html:137
|
#: idhub/admin/views.py:700 idhub/templates/idhub/base_admin.html:137
|
||||||
msgid "Configure credential issuance"
|
msgid "Configure credential issuance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:627
|
#: idhub/admin/views.py:707
|
||||||
msgid "View credential templates"
|
msgid "View credential templates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:661
|
#: idhub/admin/views.py:741
|
||||||
msgid "Upload template"
|
msgid "Upload template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:677
|
#: idhub/admin/views.py:757
|
||||||
msgid "There are some errors in the file"
|
msgid "There are some errors in the file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:691
|
#: idhub/admin/views.py:771
|
||||||
msgid "This template already exists!"
|
msgid "This template already exists!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:697 idhub/admin/views.py:742
|
#: idhub/admin/views.py:777 idhub/admin/views.py:822
|
||||||
msgid "This is not a schema valid!"
|
msgid "This is not a valid schema!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:706
|
#: idhub/admin/views.py:786
|
||||||
msgid "Import template"
|
msgid "Import template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:734
|
#: idhub/admin/views.py:814
|
||||||
msgid "The schema was added sucessfully"
|
msgid "The schema was added sucessfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:759 idhub/templates/idhub/admin/import.html:31
|
#: idhub/admin/views.py:839
|
||||||
#: idhub/templates/idhub/base_admin.html:153
|
msgid "Data"
|
||||||
msgid "Import data"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:772 idhub/admin/views.py:785
|
#: idhub/admin/views.py:852 idhub/admin/views.py:865
|
||||||
msgid "Import"
|
msgid "Import"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:798
|
#: idhub/admin/views.py:878
|
||||||
msgid "The file import was successfully!"
|
msgid "The file was imported successfully!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/admin/views.py:803
|
#: idhub/admin/views.py:883
|
||||||
msgid "Error importing the file!"
|
msgid "Error importing the file!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:58
|
#: idhub/models.py:67
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The user {username} was registered: name: {first_name}, last name: "
|
"The user {username} was registered: name: {first_name}, last name: "
|
||||||
"{last_name}"
|
"{last_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:70
|
#: idhub/models.py:79
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Welcome. You has been registered: name: {first_name}, last name: {last_name}"
|
"Welcome. You has been registered: name: {first_name}, last name: {last_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:83
|
#: idhub/models.py:92
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The user '{username}' has request the update of the following information: "
|
"The user '{username}' has request the update of the following information: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:95
|
#: idhub/models.py:104
|
||||||
msgid "You have requested the update of the following information: "
|
msgid "You have requested the update of the following information: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:132
|
#: idhub/models.py:141
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "The admin has deleted the user: username: {username}"
|
msgid "The admin has deleted the user: username: {username}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:142
|
#: idhub/models.py:151
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "New DID with DID-ID: '{did}' created by user '{username}'"
|
msgid "New DID with DID-ID: '{did}' created by user '{username}'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:153
|
#: idhub/models.py:162
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "New DID with label: '{label}' and DID-ID: '{did}' was created'"
|
msgid "New DID with label: '{label}' and DID-ID: '{did}' was created'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:165
|
#: idhub/models.py:174
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The DID with label '{label}' and DID-ID: '{did}' was deleted from your wallet"
|
"The DID with label '{label}' and DID-ID: '{did}' was deleted from your wallet"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:177
|
#: idhub/models.py:186
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "The credential of type '{type}' and ID: '{id}' was deleted"
|
msgid "The credential of type '{type}' and ID: '{id}' was deleted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:188
|
#: idhub/models.py:197
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credential of type '{type}' and ID: '{id}' was deleted from your wallet"
|
"The credential of type '{type}' and ID: '{id}' was deleted from your wallet"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:200
|
#: idhub/models.py:209
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credential of type '{type}' and ID: '{id}' was issued for user {username}"
|
"The credential of type '{type}' and ID: '{id}' was issued for user {username}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:212
|
#: idhub/models.py:221
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credential of type '{type}' and ID: '{id}' was issued and stored in your "
|
"The credential of type '{type}' and ID: '{id}' was issued and stored in your "
|
||||||
"wallet"
|
"wallet"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:254
|
#: idhub/models.py:263
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "The credential of type '{type}' was enabled for user {username}"
|
msgid "The credential of type '{type}' was enabled for user {username}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:265
|
#: idhub/models.py:274
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "You can request the '{type}' credential"
|
msgid "You can request the '{type}' credential"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:276
|
#: idhub/models.py:285
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "The credential of type '{type}' and ID: '{id}' was revoked for "
|
msgid "The credential of type '{type}' and ID: '{id}' was revoked for "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:287
|
#: idhub/models.py:296
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "The credential of type '{type}' and ID: '{id}' was revoked by admin"
|
msgid "The credential of type '{type}' and ID: '{id}' was revoked by admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:299
|
#: idhub/models.py:308
|
||||||
msgid "A new role was created by admin"
|
msgid "A new role was created by admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:307
|
#: idhub/models.py:316
|
||||||
msgid "The role was modified by admin"
|
msgid "The role was modified by admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:315
|
#: idhub/models.py:324
|
||||||
msgid "The role was removed by admin"
|
msgid "The role was removed by admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:323
|
#: idhub/models.py:332
|
||||||
msgid "A new service was created by admin"
|
msgid "A new service was created by admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:331
|
#: idhub/models.py:340
|
||||||
msgid "The service was modified by admin"
|
msgid "The service was modified by admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:339
|
#: idhub/models.py:348
|
||||||
msgid "The service was removed by admin"
|
msgid "The service was removed by admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:347
|
#: idhub/models.py:356
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"New Organisational DID with label: '{label}' and DID-ID: '{did}' was created"
|
"New Organisational DID with label: '{label}' and DID-ID: '{did}' was created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:358
|
#: idhub/models.py:367
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Organisational DID with label: '{label}' and DID-ID: '{did}' was removed"
|
"Organisational DID with label: '{label}' and DID-ID: '{did}' was removed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:438
|
#: idhub/models.py:457
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:439 idhub/templates/idhub/admin/credentials.html:17
|
#: idhub/models.py:458 idhub/templates/idhub/admin/credentials.html:17
|
||||||
#: idhub/templates/idhub/user/credentials.html:17
|
#: idhub/templates/idhub/user/credentials.html:17
|
||||||
msgid "Issued"
|
msgid "Issued"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:440
|
#: idhub/models.py:459
|
||||||
msgid "Revoked"
|
msgid "Revoked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:441
|
#: idhub/models.py:460
|
||||||
msgid "Expired"
|
msgid "Expired"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:499
|
#: idhub/models.py:576
|
||||||
msgid "Beneficiary"
|
msgid "Beneficiary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:500
|
#: idhub/models.py:577
|
||||||
msgid "Employee"
|
msgid "Employee"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:501
|
#: idhub/models.py:578
|
||||||
msgid "Member"
|
msgid "Member"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:503
|
#: idhub/models.py:580
|
||||||
msgid "Type of membership"
|
msgid "Type of membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:505
|
#: idhub/models.py:582
|
||||||
msgid "Start date"
|
msgid "Start date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:506
|
#: idhub/models.py:583
|
||||||
msgid "What date did the membership start?"
|
msgid "What date did the membership start?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:511
|
#: idhub/models.py:588
|
||||||
msgid "End date"
|
msgid "End date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:512
|
#: idhub/models.py:589
|
||||||
msgid "What date will the membership end?"
|
msgid "What date will the membership end?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/models.py:564
|
#: idhub/models.py:605
|
||||||
|
msgid "name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/models.py:606 idhub/models.py:614
|
||||||
|
#: idhub/templates/idhub/admin/dashboard.html:14
|
||||||
|
#: idhub/templates/idhub/admin/roles.html:16
|
||||||
|
#: idhub/templates/idhub/admin/schemas.html:18
|
||||||
|
#: idhub/templates/idhub/admin/services.html:16
|
||||||
|
#: idhub/templates/idhub/admin/user.html:88
|
||||||
|
#: idhub/templates/idhub/admin/user_edit.html:74
|
||||||
|
#: idhub/templates/idhub/user/dashboard.html:14
|
||||||
|
#: idhub/templates/idhub/user/roles.html:16
|
||||||
|
msgid "Description"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/models.py:613 idhub/templates/templates/musician/addresses.html:16
|
||||||
|
msgid "Domain"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/models.py:622
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/models.py:647
|
||||||
msgid "Url where to send the presentation"
|
msgid "Url where to send the presentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2056,7 +2101,6 @@ msgid "Password reset on %(site_name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/credentials.html:15
|
#: idhub/templates/idhub/admin/credentials.html:15
|
||||||
#: idhub/templates/idhub/admin/dashboard.html:13
|
|
||||||
#: idhub/templates/idhub/user/credentials.html:15
|
#: idhub/templates/idhub/user/credentials.html:15
|
||||||
#: idhub/templates/idhub/user/dashboard.html:13
|
#: idhub/templates/idhub/user/dashboard.html:13
|
||||||
#: idhub/templates/templates/musician/billing.html:21
|
#: idhub/templates/templates/musician/billing.html:21
|
||||||
|
@ -2080,19 +2124,13 @@ msgid "User"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/credentials.html:31
|
#: idhub/templates/idhub/admin/credentials.html:31
|
||||||
#: idhub/templates/idhub/admin/people.html:37
|
#: idhub/templates/idhub/admin/people.html:33
|
||||||
#: idhub/templates/idhub/admin/schemas.html:30
|
#: idhub/templates/idhub/admin/schemas.html:30
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/dashboard.html:14
|
#: idhub/templates/idhub/admin/dashboard.html:13
|
||||||
#: idhub/templates/idhub/admin/schemas.html:18
|
msgid "Event"
|
||||||
#: idhub/templates/idhub/admin/services.html:16
|
|
||||||
#: idhub/templates/idhub/admin/user.html:88
|
|
||||||
#: idhub/templates/idhub/admin/user_edit.html:74
|
|
||||||
#: idhub/templates/idhub/user/dashboard.html:14
|
|
||||||
#: idhub/templates/idhub/user/roles.html:16
|
|
||||||
msgid "Description"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/dashboard.html:15
|
#: idhub/templates/idhub/admin/dashboard.html:15
|
||||||
|
@ -2144,7 +2182,7 @@ msgid "Label"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/dids.html:28
|
#: idhub/templates/idhub/admin/dids.html:28
|
||||||
#: idhub/templates/idhub/admin/roles.html:24
|
#: idhub/templates/idhub/admin/roles.html:26
|
||||||
#: idhub/templates/idhub/admin/services.html:28
|
#: idhub/templates/idhub/admin/services.html:28
|
||||||
#: idhub/templates/idhub/admin/user_edit.html:54
|
#: idhub/templates/idhub/admin/user_edit.html:54
|
||||||
#: idhub/templates/idhub/admin/user_edit.html:86
|
#: idhub/templates/idhub/admin/user_edit.html:86
|
||||||
|
@ -2174,7 +2212,16 @@ msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/import.html:15
|
#: idhub/templates/idhub/admin/import.html:15
|
||||||
#: idhub/templates/idhub/admin/schemas.html:15
|
#: idhub/templates/idhub/admin/schemas.html:15
|
||||||
msgid "Created at"
|
msgid "Created"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/templates/idhub/admin/import.html:17
|
||||||
|
msgid "Success"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/templates/idhub/admin/import.html:31
|
||||||
|
#: idhub/templates/idhub/base_admin.html:153
|
||||||
|
msgid "Import data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/issue_credentials.html:14
|
#: idhub/templates/idhub/admin/issue_credentials.html:14
|
||||||
|
@ -2265,6 +2312,11 @@ msgstr ""
|
||||||
msgid "User activation on %(site)s"
|
msgid "User activation on %(site)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub/templates/idhub/admin/roles.html:33
|
||||||
|
#: idhub/templates/idhub/admin/user_edit.html:93
|
||||||
|
msgid "Add Role"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/schemas.html:16
|
#: idhub/templates/idhub/admin/schemas.html:16
|
||||||
msgid "Template file"
|
msgid "Template file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2302,10 +2354,6 @@ msgstr ""
|
||||||
msgid "Service"
|
msgid "Service"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/services.html:35
|
|
||||||
msgid "Add Service"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/templates/idhub/admin/user.html:13
|
#: idhub/templates/idhub/admin/user.html:13
|
||||||
msgid "Modify"
|
msgid "Modify"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2350,20 +2398,20 @@ msgstr ""
|
||||||
msgid "My personal information"
|
msgid "My personal information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/base.html:86 idhub/user/views.py:63
|
#: idhub/templates/idhub/base.html:86 idhub/user/views.py:62
|
||||||
msgid "My roles"
|
msgid "My roles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/base.html:91 idhub/user/views.py:69
|
#: idhub/templates/idhub/base.html:91 idhub/user/views.py:68
|
||||||
msgid "GDPR info"
|
msgid "GDPR info"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/base.html:99 idhub/user/views.py:27
|
#: idhub/templates/idhub/base.html:99 idhub/user/views.py:26
|
||||||
msgid "My wallet"
|
msgid "My wallet"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/base.html:104 idhub/user/views.py:170
|
#: idhub/templates/idhub/base.html:104 idhub/user/views.py:169
|
||||||
#: idhub/user/views.py:204 idhub/user/views.py:223
|
#: idhub/user/views.py:203 idhub/user/views.py:222
|
||||||
msgid "Identities (DIDs)"
|
msgid "Identities (DIDs)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2380,15 +2428,16 @@ msgid "Present a credential"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/base_admin.html:76
|
#: idhub/templates/idhub/base_admin.html:76
|
||||||
msgid "User managament"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/base_admin.html:94
|
#: idhub/templates/idhub/base_admin.html:94
|
||||||
msgid "Access control managament"
|
msgid "Roles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/base_admin.html:112 idhub/user/views.py:75
|
#: idhub/templates/idhub/base_admin.html:112
|
||||||
msgid "Credential management"
|
#: idhub/templates/idhub/user/profile.html:46
|
||||||
|
msgid "Credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/base_admin.html:122
|
#: idhub/templates/idhub/base_admin.html:122
|
||||||
|
@ -2423,10 +2472,6 @@ msgstr ""
|
||||||
msgid "Notice of Privacy"
|
msgid "Notice of Privacy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/idhub/user/profile.html:46
|
|
||||||
msgid "Credentials"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/templates/templates/musician/address_check_delete.html:7
|
#: idhub/templates/templates/musician/address_check_delete.html:7
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Are you sure that you want remove the address: \"%(address_name)s\"?"
|
msgid "Are you sure that you want remove the address: \"%(address_name)s\"?"
|
||||||
|
@ -2441,10 +2486,6 @@ msgstr ""
|
||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/templates/templates/musician/addresses.html:16
|
|
||||||
msgid "Domain"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: idhub/templates/templates/musician/addresses.html:17
|
#: idhub/templates/templates/musician/addresses.html:17
|
||||||
#: idhub/templates/templates/musician/mail_base.html:22
|
#: idhub/templates/templates/musician/mail_base.html:22
|
||||||
msgid "Mailboxes"
|
msgid "Mailboxes"
|
||||||
|
@ -2724,42 +2765,46 @@ msgstr ""
|
||||||
msgid "Open service admin panel"
|
msgid "Open service admin panel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:22
|
#: idhub/user/views.py:21
|
||||||
msgid "My profile"
|
msgid "My profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:41
|
#: idhub/user/views.py:40
|
||||||
msgid "My personal data"
|
msgid "My personal data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:88
|
#: idhub/user/views.py:87
|
||||||
msgid "Credential"
|
msgid "Credential"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:124
|
#: idhub/user/views.py:123
|
||||||
msgid "Credential request"
|
msgid "Credential request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:137
|
#: idhub/user/views.py:136
|
||||||
msgid "The credential was issued successfully!"
|
msgid "The credential was issued successfully!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:141
|
#: idhub/user/views.py:140
|
||||||
msgid "The credential does not exist!"
|
msgid "The credential does not exist!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:147
|
#: idhub/user/views.py:146
|
||||||
msgid "Credential presentation"
|
msgid "Credential presentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:162
|
#: idhub/user/views.py:161
|
||||||
msgid "The credential was presented successfully!"
|
msgid "The credential was presented successfully!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:164
|
#: idhub/user/views.py:163
|
||||||
msgid "Error sending credential!"
|
msgid "Error sending credential!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: idhub/user/views.py:183
|
#: idhub/user/views.py:182
|
||||||
msgid "Add a new Identity (DID)"
|
msgid "Add a new Identity (DID)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: idhub_auth/forms.py:19 idhub_auth/forms.py:27
|
||||||
|
msgid "The string must contain only characters and spaces"
|
||||||
|
msgstr ""
|
||||||
|
|
Loading…
Reference in New Issue