fix translate

This commit is contained in:
Cayo Puigdefabregas 2023-11-13 10:15:52 +01:00
parent 2d5077129d
commit a6d5fc8c86
19 changed files with 3252 additions and 388 deletions

View File

@ -1,6 +1,5 @@
import csv
import json
import copy
import pandas as pd
from jsonschema import validate
@ -104,14 +103,14 @@ class ImportForm(forms.Form):
user = User.objects.filter(email=row.get('email'))
if not user:
txt = _('The user not exist!')
txt = _('The user does not exist!')
msg = "line {}: {}".format(line+1, txt)
self.exception(msg)
return user.first()
def create_credential(self, user, row):
d = copy.copy(self.json_schema)
d = self.json_schema.copy()
d['instance'] = row
return VerificableCredential(
verified=False,

View File

@ -1,6 +1,5 @@
import os
import json
import copy
import logging
import pandas as pd
from pathlib import Path
@ -54,33 +53,33 @@ class DashboardView(AdminView, TemplateView):
return context
class People(AdminView):
title = _("People Management")
title = _("User Management")
section = "People"
class AccessControl(AdminView, TemplateView):
title = _("Access Control Management")
title = _("Access control management")
section = "AccessControl"
class Credentials(AdminView, TemplateView):
title = _("Credentials Management")
section = "Credentials"
title = _("Credential Management")
section = "Credential"
class SchemasMix(AdminView, TemplateView):
title = _("Templates Management")
section = "Templates"
title = _("Template Management")
section = "Template"
class ImportExport(AdminView):
title = _("Massive Data Management")
title = _("Data file management")
section = "ImportExport"
class PeopleListView(People, TemplateView):
template_name = "idhub/admin/people.html"
subtitle = _('People list')
subtitle = _('View users')
icon = 'bi bi-person'
def get_context_data(self, **kwargs):
@ -93,7 +92,7 @@ class PeopleListView(People, TemplateView):
class PeopleView(People, TemplateView):
template_name = "idhub/admin/user.html"
subtitle = _('User Profile')
subtitle = _('User personal information')
icon = 'bi bi-person'
model = User
@ -177,7 +176,7 @@ class PeopleRegisterView(NotifyActivateUserByEmail, People, CreateView):
def form_valid(self, form):
user = form.save()
messages.success(self.request, _('The account is created successfully'))
messages.success(self.request, _('The account was created successfully'))
Event.set_EV_USR_REGISTERED(user)
Event.set_EV_USR_WELCOME(user)
@ -191,7 +190,7 @@ class PeopleRegisterView(NotifyActivateUserByEmail, People, CreateView):
class PeopleMembershipRegisterView(People, CreateView):
template_name = "idhub/admin/people_membership_register.html"
subtitle = _('People add membership')
subtitle = _('Associate a membership to the user')
icon = 'bi bi-person'
model = Membership
fields = ('type', 'start_date', 'end_date')
@ -266,7 +265,7 @@ class PeopleMembershipDeleteView(PeopleView):
class PeopleRolRegisterView(People, CreateView):
template_name = "idhub/admin/people_rol_register.html"
subtitle = _('Add Rol to User')
subtitle = _('Add a user role to access a service')
icon = 'bi bi-person'
model = UserRol
fields = ('service',)
@ -296,7 +295,7 @@ class PeopleRolRegisterView(People, CreateView):
class PeopleRolEditView(People, CreateView):
template_name = "idhub/admin/people_rol_register.html"
subtitle = _('Edit Rol to User')
subtitle = _('Modify a user role to access a service')
icon = 'bi bi-person'
model = UserRol
fields = ('service',)
@ -331,7 +330,7 @@ class PeopleRolDeleteView(PeopleView):
class RolesView(AccessControl):
template_name = "idhub/admin/roles.html"
subtitle = _('Roles Management')
subtitle = _('Role Management')
icon = ''
def get_context_data(self, **kwargs):
@ -343,7 +342,7 @@ class RolesView(AccessControl):
class RolRegisterView(AccessControl, CreateView):
template_name = "idhub/admin/rol_register.html"
subtitle = _('Add Rol')
subtitle = _('Add Role')
icon = ''
model = Rol
fields = ('name',)
@ -352,14 +351,14 @@ class RolRegisterView(AccessControl, CreateView):
def form_valid(self, form):
form.save()
messages.success(self.request, _('Rol created successfully'))
messages.success(self.request, _('Role created successfully'))
Event.set_EV_ROLE_CREATED_BY_ADMIN()
return super().form_valid(form)
class RolEditView(AccessControl, CreateView):
template_name = "idhub/admin/rol_register.html"
subtitle = _('Edit Rol')
subtitle = _('Edit Role')
icon = ''
model = Rol
fields = ('name',)
@ -374,7 +373,7 @@ class RolEditView(AccessControl, CreateView):
def form_valid(self, form):
form.save()
messages.success(self.request, _('Rol updated successfully'))
messages.success(self.request, _('Role updated successfully'))
Event.set_EV_ROLE_MODIFIED_BY_ADMIN()
return super().form_valid(form)
@ -387,14 +386,14 @@ class RolDeleteView(AccessControl):
self.object = get_object_or_404(self.model, pk=self.pk)
self.object.delete()
messages.success(self.request, _('Rol deleted successfully'))
messages.success(self.request, _('Role deleted successfully'))
Event.set_EV_ROLE_DELETED_BY_ADMIN()
return redirect('idhub:admin_roles')
class ServicesView(AccessControl):
template_name = "idhub/admin/services.html"
subtitle = _('Service Management')
subtitle = _('Service management')
icon = ''
def get_context_data(self, **kwargs):
@ -406,7 +405,7 @@ class ServicesView(AccessControl):
class ServiceRegisterView(AccessControl, CreateView):
template_name = "idhub/admin/service_register.html"
subtitle = _('Add Service')
subtitle = _('Add service')
icon = ''
model = Service
fields = ('domain', 'description', 'rol')
@ -422,7 +421,7 @@ class ServiceRegisterView(AccessControl, CreateView):
class ServiceEditView(AccessControl, CreateView):
template_name = "idhub/admin/service_register.html"
subtitle = _('Edit Service')
subtitle = _('Modify service')
icon = ''
model = Service
fields = ('domain', 'description', 'rol')
@ -457,7 +456,7 @@ class ServiceDeleteView(AccessControl):
class CredentialsView(Credentials):
template_name = "idhub/admin/credentials.html"
subtitle = _('Credentials list')
subtitle = _('Credential list')
icon = ''
def get_context_data(self, **kwargs):
@ -611,21 +610,21 @@ class DidDeleteView(Credentials, DeleteView):
class WalletCredentialsView(Credentials):
template_name = "idhub/admin/wallet_credentials.html"
subtitle = _('Credentials')
subtitle = _('Credential management')
icon = 'bi bi-patch-check-fill'
wallet = True
class WalletConfigIssuesView(Credentials):
template_name = "idhub/admin/wallet_issues.html"
subtitle = _('Configure Issues')
subtitle = _('Configure credential issuance')
icon = 'bi bi-patch-check-fill'
wallet = True
class SchemasView(SchemasMix):
template_name = "idhub/admin/schemas.html"
subtitle = _('Template List')
subtitle = _('View credential templates')
icon = ''
def get_context_data(self, **kwargs):
@ -659,7 +658,7 @@ class SchemasDownloadView(SchemasMix):
class SchemasNewView(SchemasMix):
template_name = "idhub/admin/schemas_new.html"
subtitle = _('Upload Template')
subtitle = _('Upload template')
icon = ''
success_url = reverse_lazy('idhub:admin_schemas')
@ -704,7 +703,7 @@ class SchemasNewView(SchemasMix):
class SchemasImportView(SchemasMix):
template_name = "idhub/admin/schemas_import.html"
subtitle = _('Import Template')
subtitle = _('Import template')
icon = ''
def get_context_data(self, **kwargs):
@ -732,7 +731,7 @@ class SchemasImportAddView(SchemasMix):
schema = self.create_schema(file_name)
if schema:
messages.success(self.request, _("The schema add successfully!"))
messages.success(self.request, _("The schema was added sucessfully"))
return redirect('idhub:admin_schemas_import')
def create_schema(self, file_name):

View File

@ -498,7 +498,7 @@ class Membership(models.Model):
class Types(models.IntegerChoices):
BENEFICIARY = 1, _('Beneficiary')
EMPLOYEE = 2, _('Employee')
PARTNER = 3, _('Partner')
MEMBER = 3, _('Member')
type = models.PositiveSmallIntegerField(_('Type of membership'), choices=Types.choices)
start_date = models.DateField(
@ -509,7 +509,7 @@ class Membership(models.Model):
)
end_date = models.DateField(
_('End date'),
help_text=_('What date did the membership end?'),
help_text=_('What date will the membership end?'),
blank=True,
null=True
)

View File

@ -14,7 +14,7 @@
<tr>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Type' %}</button></th>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Details' %}</button></th>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Issue' %}</button></th>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Issued' %}</button></th>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Status' %}</button></th>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'User' %}</button></th>
<th scope="col"></th>

View File

@ -32,7 +32,7 @@
</tbody>
</table>
<div class="form-actions-no-box">
<a class="btn btn-green-admin" href="{% url 'idhub:admin_dids_new' %}">{% translate "Add Identity" %} <i class="bi bi-plus"></i></a>
<a class="btn btn-green-admin" href="{% url 'idhub:admin_dids_new' %}">{% translate "Add identity" %} <i class="bi bi-plus"></i></a>
</div>
</div>
</div>

View File

@ -14,7 +14,7 @@
<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 '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>
</thead>
<tbody>
@ -28,7 +28,7 @@
</tbody>
</table>
<div class="form-actions-no-box">
<a class="btn btn-green-admin" href="{% url 'idhub:admin_import_add' %}">{% translate "Import Datas" %} <i class="bi bi-plus"></i></a>
<a class="btn btn-green-admin" href="{% url 'idhub:admin_import_add' %}">{% translate "Import data" %} <i class="bi bi-plus"></i></a>
</div>
</div>
</div>

View File

@ -12,7 +12,7 @@
<table class="table table-striped table-sm">
<thead>
<tr>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Rol' %}</button></th>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Role' %}</button></th>
<th scope="col"></th>
<th scope="col"></th>
</tr>
@ -28,7 +28,7 @@
</tbody>
</table>
<div class="form-actions-no-box">
<a class="btn btn-green-admin" href="{% url 'idhub:admin_rol_new' %}">{% translate "Add Rol" %} <i class="bi bi-plus"></i></a>
<a class="btn btn-green-admin" href="{% url 'idhub:admin_rol_new' %}">{% translate "Add Role" %} <i class="bi bi-plus"></i></a>
</div>
</div>
</div>

View File

@ -34,7 +34,7 @@
</tbody>
</table>
<div class="form-actions-no-box">
<a class="btn btn-green-admin" href="{% url 'idhub:admin_schemas_import' %}">{% translate "Add Template" %} <i class="bi bi-plus"></i></a>
<a class="btn btn-green-admin" href="{% url 'idhub:admin_schemas_import' %}">{% translate "Add template" %} <i class="bi bi-plus"></i></a>
</div>
</div>
</div>
@ -45,7 +45,7 @@
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">{% trans 'Delete Template' %} {{ schema.file_schema }}</h5>
<h5 class="modal-title" id="exampleModalLabel">{% trans 'Delete template' %} {{ schema.file_schema }}</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">

View File

@ -12,7 +12,7 @@
<table class="table table-striped table-sm">
<thead>
<tr>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Template available' %}</button></th>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Available templates' %}</button></th>
<th scope="col"></th>
</tr>
</thead>

View File

@ -14,7 +14,7 @@
<tr>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Service' %}</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 'Rol' %}</button></th>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Role' %}</button></th>
<th scope="col"></th>
<th scope="col"></th>
</tr>

View File

@ -84,7 +84,7 @@
<table class="table table-striped table-sm">
<thead>
<tr>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Rol' %}</button></th>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Role' %}</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 'Service' %}</button></th>
</tr>

View File

@ -70,7 +70,7 @@
<table class="table table-striped table-sm">
<thead>
<tr>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Rol' %}</button></th>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Role' %}</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 'Service' %}</button></th>
<th scope="col"></th>
@ -90,7 +90,7 @@
</tbody>
</table>
<div class="form-actions-no-box">
<a class="btn btn-green-admin" href="{% url 'idhub:admin_people_rol_new' object.id %}">{% translate "Add Rol" %} <i class="bi bi-plus"></i></a>
<a class="btn btn-green-admin" href="{% url 'idhub:admin_people_rol_new' object.id %}">{% translate "Add Role" %} <i class="bi bi-plus"></i></a>
</div>
</div>
</div>

View File

@ -14,7 +14,7 @@
<tr>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Type' %}</button></th>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Details' %}</button></th>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Issue' %}</button></th>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Issued' %}</button></th>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Status' %}</button></th>
<th scope="col"></th>
</tr>

View File

@ -12,7 +12,7 @@
<table class="table table-striped table-sm">
<thead>
<tr>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Rol' %}</button></th>
<th scope="col"><button type="button" class="btn btn-grey border border-dark">{% trans 'Role' %}</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 'Service' %}</button></th>
</tr>

View File

@ -24,7 +24,7 @@ class MyProfile(UserView):
class MyWallet(UserView):
title = _("My Wallet")
title = _("My wallet")
section = "MyWallet"
@ -38,7 +38,7 @@ class DashboardView(UserView, TemplateView):
class ProfileView(MyProfile, UpdateView):
template_name = "idhub/user/profile.html"
subtitle = _('My personal Data')
subtitle = _('My personal data')
icon = 'bi bi-person'
from_class = ProfileForm
fields = ('first_name', 'last_name', 'email')
@ -72,7 +72,7 @@ class GDPRView(MyProfile, TemplateView):
class CredentialsView(MyWallet, TemplateView):
template_name = "idhub/user/credentials.html"
subtitle = _('Credentials')
subtitle = _('Credential management')
icon = 'bi bi-patch-check-fill'
def get_context_data(self, **kwargs):
@ -121,7 +121,7 @@ class CredentialJsonView(MyWallet, TemplateView):
class CredentialsRequestView(MyWallet, FormView):
template_name = "idhub/user/credentials_request.html"
subtitle = _('Credentials request')
subtitle = _('Credential request')
icon = 'bi bi-patch-check-fill'
form_class = RequestCredentialForm
success_url = reverse_lazy('idhub:user_credentials')
@ -134,17 +134,17 @@ class CredentialsRequestView(MyWallet, FormView):
def form_valid(self, form):
cred = form.save()
if cred:
messages.success(self.request, _("The credential was required successfully!"))
messages.success(self.request, _("The credential was issued successfully!"))
Event.set_EV_CREDENTIAL_ISSUED_FOR_USER(cred)
Event.set_EV_CREDENTIAL_ISSUED(cred)
else:
messages.error(self.request, _("Not exists the credential!"))
messages.error(self.request, _("The credential does not exist!"))
return super().form_valid(form)
class CredentialsPresentationView(MyWallet, FormView):
template_name = "idhub/user/credentials_presentation.html"
subtitle = _('Credentials Presentation')
subtitle = _('Credential presentation')
icon = 'bi bi-patch-check-fill'
form_class = CredentialPresentationForm
success_url = reverse_lazy('idhub:user_credentials')
@ -167,7 +167,7 @@ class CredentialsPresentationView(MyWallet, FormView):
class DidsView(MyWallet, TemplateView):
template_name = "idhub/user/dids.html"
subtitle = _('Identities (DID)')
subtitle = _('Identities (DIDs)')
icon = 'bi bi-patch-check-fill'
def get_context_data(self, **kwargs):
@ -180,7 +180,7 @@ class DidsView(MyWallet, TemplateView):
class DidRegisterView(MyWallet, CreateView):
template_name = "idhub/user/did_register.html"
subtitle = _('Add a new Identities (DID)')
subtitle = _('Add a new Identity (DID)')
icon = 'bi bi-patch-check-fill'
wallet = True
model = DID
@ -201,7 +201,7 @@ class DidRegisterView(MyWallet, CreateView):
class DidEditView(MyWallet, UpdateView):
template_name = "idhub/user/did_register.html"
subtitle = _('Identities (DID)')
subtitle = _('Identities (DIDs)')
icon = 'bi bi-patch-check-fill'
wallet = True
model = DID
@ -220,7 +220,7 @@ class DidEditView(MyWallet, UpdateView):
class DidDeleteView(MyWallet, DeleteView):
subtitle = _('Identities (DID)')
subtitle = _('Identities (DIDs)')
icon = 'bi bi-patch-check-fill'
wallet = True
model = DID

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-11-07 17:57+0100\n"
"POT-Creation-Date: 2023-11-13 10:13+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -1533,233 +1533,390 @@ msgstr ""
msgid "show this help message and exit"
msgstr ""
#: idhub/admin/views.py:39 idhub/user/views.py:33
#: idhub/admin/forms.py:106
msgid "The user does not exist!"
msgstr ""
#: idhub/admin/views.py:43 idhub/user/views.py:33
msgid "Dashboard"
msgstr ""
#: idhub/admin/views.py:40 idhub/user/views.py:34
#: idhub/admin/views.py:44 idhub/templates/idhub/admin/import.html:17
#: idhub/user/views.py:34
msgid "Success"
msgstr ""
#: idhub/admin/views.py:45
msgid "People Management"
#: idhub/admin/views.py:56
msgid "User Management"
msgstr ""
#: idhub/admin/views.py:50
msgid "Access Control Management"
#: idhub/admin/views.py:61
msgid "Access control management"
msgstr ""
#: idhub/admin/views.py:55
msgid "Credentials Management"
msgstr ""
#: idhub/admin/views.py:60
msgid "Templates Management"
msgstr ""
#: idhub/admin/views.py:65
msgid "Massive Data Management"
#: idhub/admin/views.py:66
msgid "Credential Management"
msgstr ""
#: idhub/admin/views.py:71
msgid "People list"
msgid "Template Management"
msgstr ""
#: idhub/admin/views.py:84
msgid "User Profile"
#: idhub/admin/views.py:76
msgid "Data file management"
msgstr ""
#: idhub/admin/views.py:108
#: idhub/admin/views.py:82
msgid "View users"
msgstr ""
#: idhub/admin/views.py:95
msgid "User personal information"
msgstr ""
#: idhub/admin/views.py:119
msgid "Is not possible deactivate your account!"
msgstr ""
#: idhub/admin/views.py:129 idhub/admin/views.py:235
#: idhub/admin/views.py:143 idhub/admin/views.py:261
msgid "Is not possible delete your account!"
msgstr ""
#: idhub/admin/views.py:141
#: idhub/admin/views.py:155
msgid "The account is updated successfully"
msgstr ""
#: idhub/admin/views.py:164
msgid "People Register"
msgstr ""
#: idhub/admin/views.py:156
msgid "The account is created successfully"
#: idhub/admin/views.py:179
msgid "The account was created successfully"
msgstr ""
#: idhub/admin/views.py:167 idhub/admin/views.py:204
#: idhub/admin/views.py:193
msgid "Associate a membership to the user"
msgstr ""
#: idhub/admin/views.py:230
msgid "People add membership"
msgstr ""
#: idhub/admin/views.py:242
msgid "Add Rol to User"
#: idhub/admin/views.py:268
msgid "Add a user role to access a service"
msgstr ""
#: idhub/admin/views.py:272
msgid "Edit Rol to User"
#: idhub/admin/views.py:298
msgid "Modify a user role to access a service"
msgstr ""
#: idhub/admin/views.py:307
msgid "Roles Management"
#: idhub/admin/views.py:333
msgid "Role Management"
msgstr ""
#: idhub/admin/views.py:319 idhub/templates/idhub/admin/roles.html:31
#: idhub/admin/views.py:345 idhub/templates/idhub/admin/roles.html:31
#: idhub/templates/idhub/admin/user_edit.html:93
msgid "Add Rol"
msgid "Add Role"
msgstr ""
#: idhub/admin/views.py:329
msgid "Edit Rol"
#: idhub/admin/views.py:354
msgid "Role created successfully"
msgstr ""
#: idhub/admin/views.py:356
msgid "Service Management"
#: idhub/admin/views.py:361
msgid "Edit Role"
msgstr ""
#: idhub/admin/views.py:368 idhub/templates/idhub/admin/services.html:35
msgid "Add Service"
#: idhub/admin/views.py:376
msgid "Role updated successfully"
msgstr ""
#: idhub/admin/views.py:378
msgid "Edit Service"
#: idhub/admin/views.py:389
msgid "Role deleted successfully"
msgstr ""
#: idhub/admin/views.py:405
msgid "Credentials list"
#: idhub/admin/views.py:396
msgid "Service management"
msgstr ""
#: idhub/admin/views.py:418
#: idhub/admin/views.py:408
msgid "Add service"
msgstr ""
#: idhub/admin/views.py:417
msgid "Service created successfully"
msgstr ""
#: idhub/admin/views.py:424
msgid "Modify service"
msgstr ""
#: idhub/admin/views.py:439
msgid "Service updated successfully"
msgstr ""
#: idhub/admin/views.py:452
msgid "Service deleted successfully"
msgstr ""
#: idhub/admin/views.py:459
msgid "Credential list"
msgstr ""
#: idhub/admin/views.py:472
msgid "Change status of Credential"
msgstr ""
#: idhub/admin/views.py:460
#: idhub/admin/views.py:514
msgid "Credential revoked successfully"
msgstr ""
#: idhub/admin/views.py:480
#: idhub/admin/views.py:536
msgid "Credential deleted successfully"
msgstr ""
#: idhub/admin/views.py:487 idhub/admin/views.py:518 idhub/admin/views.py:537
#: idhub/admin/views.py:545 idhub/admin/views.py:577 idhub/admin/views.py:596
msgid "Organization Identities (DID)"
msgstr ""
#: idhub/admin/views.py:500
#: idhub/admin/views.py:558
msgid "Add a new Organization Identities (DID)"
msgstr ""
#: idhub/admin/views.py:512 idhub/user/views.py:188
#: idhub/admin/views.py:570 idhub/user/views.py:195
msgid "DID created successfully"
msgstr ""
#: idhub/admin/views.py:532 idhub/user/views.py:208
#: idhub/admin/views.py:591 idhub/user/views.py:218
msgid "DID updated successfully"
msgstr ""
#: idhub/admin/views.py:547 idhub/user/views.py:223
#: idhub/admin/views.py:607 idhub/user/views.py:234
msgid "DID delete successfully"
msgstr ""
#: idhub/admin/views.py:554 idhub/templates/idhub/user/profile.html:51
#: idhub/user/views.py:65
msgid "Credentials"
#: idhub/admin/views.py:613 idhub/user/views.py:75
msgid "Credential management"
msgstr ""
#: idhub/admin/views.py:561
msgid "Configure Issues"
#: idhub/admin/views.py:620
msgid "Configure credential issuance"
msgstr ""
#: idhub/admin/views.py:568
msgid "Template List"
#: idhub/admin/views.py:627
msgid "View credential templates"
msgstr ""
#: idhub/admin/views.py:602
msgid "Upload Template"
#: idhub/admin/views.py:661
msgid "Upload template"
msgstr ""
#: idhub/admin/views.py:618 idhub/admin/views.py:744
#: idhub/admin/views.py:677
msgid "There are some errors in the file"
msgstr ""
#: idhub/admin/views.py:632
#: idhub/admin/views.py:691
msgid "This template already exists!"
msgstr ""
#: idhub/admin/views.py:638 idhub/admin/views.py:683
#: idhub/admin/views.py:697 idhub/admin/views.py:742
msgid "This is not a schema valid!"
msgstr ""
#: idhub/admin/views.py:647
msgid "Import Template"
#: idhub/admin/views.py:706
msgid "Import template"
msgstr ""
#: idhub/admin/views.py:675
msgid "The schema add successfully!"
#: idhub/admin/views.py:734
msgid "The schema was added sucessfully"
msgstr ""
#: idhub/admin/views.py:700 idhub/admin/views.py:713 idhub/admin/views.py:726
#: idhub/admin/views.py:759 idhub/admin/views.py:772 idhub/admin/views.py:785
msgid "Import"
msgstr ""
#: idhub/admin/views.py:755
msgid "There aren't file"
#: idhub/admin/views.py:798
msgid "The file import was successfully!"
msgstr ""
#: idhub/admin/views.py:760
msgid "This file already exists!"
msgstr ""
#: idhub/admin/views.py:799
msgid "The user not exist!"
msgstr ""
#: idhub/models.py:57
msgid "Enabled"
#: idhub/admin/views.py:803
msgid "Error importing the file!"
msgstr ""
#: idhub/models.py:58
#, python-brace-format
msgid ""
"The user {username} was registered: name: {first_name}, last name: "
"{last_name}"
msgstr ""
#: idhub/models.py:70
#, python-brace-format
msgid ""
"Welcome. You has been registered: name: {first_name}, last name: {last_name}"
msgstr ""
#: idhub/models.py:83
#, python-brace-format
msgid ""
"The user '{username}' has request the update of the following information: "
msgstr ""
#: idhub/models.py:95
msgid "You have requested the update of the following information: "
msgstr ""
#: idhub/models.py:132
#, python-brace-format
msgid "The admin has deleted the user: username: {username}"
msgstr ""
#: idhub/models.py:142
#, python-brace-format
msgid "New DID with DID-ID: '{did}' created by user '{username}'"
msgstr ""
#: idhub/models.py:153
#, python-brace-format
msgid "New DID with label: '{label}' and DID-ID: '{did}' was created'"
msgstr ""
#: idhub/models.py:165
#, python-brace-format
msgid ""
"The DID with label '{label}' and DID-ID: '{did}' was deleted from your wallet"
msgstr ""
#: idhub/models.py:177
#, python-brace-format
msgid "The credential of type '{type}' and ID: '{id}' was deleted"
msgstr ""
#: idhub/models.py:188
#, python-brace-format
msgid ""
"The credential of type '{type}' and ID: '{id}' was deleted from your wallet"
msgstr ""
#: idhub/models.py:200
#, python-brace-format
msgid ""
"The credential of type '{type}' and ID: '{id}' was issued for user {username}"
msgstr ""
#: idhub/models.py:212
#, python-brace-format
msgid ""
"The credential of type '{type}' and ID: '{id}' was issued and stored in your "
"wallet"
msgstr ""
#: idhub/models.py:254
#, python-brace-format
msgid "The credential of type '{type}' was enabled for user {username}"
msgstr ""
#: idhub/models.py:265
#, python-brace-format
msgid "You can request the '{type}' credential"
msgstr ""
#: idhub/models.py:276
#, python-brace-format
msgid "The credential of type '{type}' and ID: '{id}' was revoked for "
msgstr ""
#: idhub/models.py:287
#, python-brace-format
msgid "The credential of type '{type}' and ID: '{id}' was revoked by admin"
msgstr ""
#: idhub/models.py:299
msgid "A new role was created by admin"
msgstr ""
#: idhub/models.py:307
msgid "The role was modified by admin"
msgstr ""
#: idhub/models.py:315
msgid "The role was removed by admin"
msgstr ""
#: idhub/models.py:323
msgid "A new service was created by admin"
msgstr ""
#: idhub/models.py:331
msgid "The service was modified by admin"
msgstr ""
#: idhub/models.py:339
msgid "The service was removed by admin"
msgstr ""
#: idhub/models.py:347
#, python-brace-format
msgid ""
"New Organisational DID with label: '{label}' and DID-ID: '{did}' was created"
msgstr ""
#: idhub/models.py:358
#, python-brace-format
msgid ""
"Organisational DID with label: '{label}' and DID-ID: '{did}' was removed"
msgstr ""
#: idhub/models.py:438
msgid "Enabled"
msgstr ""
#: idhub/models.py:439 idhub/templates/idhub/admin/credentials.html:17
#: idhub/templates/idhub/user/credentials.html:17
msgid "Issued"
msgstr ""
#: idhub/models.py:59
#: idhub/models.py:440
msgid "Revoked"
msgstr ""
#: idhub/models.py:60
#: idhub/models.py:441
msgid "Expired"
msgstr ""
#: idhub/models.py:118
#: idhub/models.py:499
msgid "Beneficiary"
msgstr ""
#: idhub/models.py:119
#: idhub/models.py:500
msgid "Employee"
msgstr ""
#: idhub/models.py:120
msgid "Partner"
#: idhub/models.py:501
msgid "Member"
msgstr ""
#: idhub/models.py:122
#: idhub/models.py:503
msgid "Type of membership"
msgstr ""
#: idhub/models.py:124
#: idhub/models.py:505
msgid "Start date"
msgstr ""
#: idhub/models.py:125
#: idhub/models.py:506
msgid "What date did the membership start?"
msgstr ""
#: idhub/models.py:130
#: idhub/models.py:511
msgid "End date"
msgstr ""
#: idhub/models.py:131
msgid "What date did the membership end?"
#: idhub/models.py:512
msgid "What date will the membership end?"
msgstr ""
#: idhub/models.py:183
#: idhub/models.py:564
msgid "Url where to send the presentation"
msgstr ""
@ -1889,7 +2046,9 @@ msgid "Password reset on %(site_name)s"
msgstr ""
#: 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/dashboard.html:13
#: idhub/templates/templates/musician/billing.html:21
#: idhub/templates/templates/musician/databases.html:17
#: idhub/templates/templates/musician/domain_detail.html:17
@ -1901,11 +2060,6 @@ msgstr ""
msgid "Details"
msgstr ""
#: idhub/templates/idhub/admin/credentials.html:17
#: idhub/templates/idhub/user/credentials.html:17
msgid "Issue"
msgstr ""
#: idhub/templates/idhub/admin/credentials.html:18
#: idhub/templates/idhub/user/credentials.html:18
msgid "Status"
@ -1921,8 +2075,25 @@ msgstr ""
msgid "View"
msgstr ""
#: idhub/templates/idhub/admin/dashboard.html:14
#: 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/templates/idhub/admin/dashboard.html:15
#: idhub/templates/idhub/admin/dids.html:15
#: idhub/templates/idhub/user/dashboard.html:15
#: idhub/templates/idhub/user/dids.html:15
msgid "Date"
msgstr ""
#: idhub/templates/idhub/admin/did_register.html:29
#: idhub/templates/idhub/admin/import_step3.html:27
#: idhub/templates/idhub/admin/import_add.html:27
#: idhub/templates/idhub/admin/people_membership_register.html:29
#: idhub/templates/idhub/admin/people_register.html:25
#: idhub/templates/idhub/admin/people_rol_register.html:29
@ -1933,7 +2104,6 @@ msgstr ""
#: idhub/templates/idhub/user/credentials_presentation.html:29
#: idhub/templates/idhub/user/credentials_request.html:29
#: idhub/templates/idhub/user/did_register.html:29
#: idhub/templates/idhub/user/profile.html:35
#: idhub/templates/templates/musician/address_check_delete.html:10
#: idhub/templates/templates/musician/address_form.html:11
#: idhub/templates/templates/musician/mailbox_change_password.html:11
@ -1943,7 +2113,7 @@ msgid "Cancel"
msgstr ""
#: idhub/templates/idhub/admin/did_register.html:30
#: idhub/templates/idhub/admin/import_step3.html:28
#: idhub/templates/idhub/admin/import_add.html:28
#: idhub/templates/idhub/admin/people_membership_register.html:30
#: idhub/templates/idhub/admin/people_register.html:26
#: idhub/templates/idhub/admin/people_rol_register.html:30
@ -1952,18 +2122,12 @@ msgstr ""
#: idhub/templates/idhub/admin/service_register.html:30
#: idhub/templates/idhub/admin/user_edit.html:28
#: idhub/templates/idhub/user/did_register.html:30
#: idhub/templates/idhub/user/profile.html:36
#: idhub/templates/templates/musician/address_form.html:12
#: idhub/templates/templates/musician/mailbox_change_password.html:12
#: idhub/templates/templates/musician/mailbox_form.html:21
msgid "Save"
msgstr ""
#: idhub/templates/idhub/admin/dids.html:15
#: idhub/templates/idhub/user/dids.html:15
msgid "Date"
msgstr ""
#: idhub/templates/idhub/admin/dids.html:16
#: idhub/templates/idhub/user/dids.html:16
msgid "Label"
@ -1985,8 +2149,7 @@ msgid "Remove"
msgstr ""
#: idhub/templates/idhub/admin/dids.html:35
#: idhub/templates/idhub/user/dids.html:35
msgid "Add Identity"
msgid "Add identity"
msgstr ""
#: idhub/templates/idhub/admin/dids.html:46
@ -2000,26 +2163,12 @@ msgid "Are you sure that you want delete this DID?"
msgstr ""
#: idhub/templates/idhub/admin/import.html:15
#: idhub/templates/idhub/admin/import_step2.html:15
#: idhub/templates/idhub/admin/schemas.html:15
msgid "Created at"
msgstr ""
#: idhub/templates/idhub/admin/import.html:17
msgid "success"
msgstr ""
#: idhub/templates/idhub/admin/import.html:31
msgid "Import Datas"
msgstr ""
#: idhub/templates/idhub/admin/import_step2.html:16
#: idhub/templates/idhub/admin/schemas.html:16
msgid "Template file"
msgstr ""
#: idhub/templates/idhub/admin/import_step2.html:26
msgid "Import Dates"
msgid "Import data"
msgstr ""
#: idhub/templates/idhub/admin/issue_credentials.html:14
@ -2059,11 +2208,16 @@ msgstr ""
#: idhub/templates/idhub/admin/people.html:16
#: idhub/templates/idhub/admin/user.html:62
#: idhub/templates/idhub/admin/user_edit.html:41
#: idhub/templates/idhub/user/profile.html:48
#: idhub/templates/idhub/user/profile.html:43
msgid "Membership"
msgstr ""
#: idhub/templates/idhub/admin/people.html:17
#: idhub/templates/idhub/admin/roles.html:15
#: idhub/templates/idhub/admin/services.html:17
#: idhub/templates/idhub/admin/user.html:87
#: idhub/templates/idhub/admin/user_edit.html:73
#: idhub/templates/idhub/user/roles.html:15
msgid "Role"
msgstr ""
@ -2105,12 +2259,8 @@ msgstr ""
msgid "User activation on %(site)s"
msgstr ""
#: idhub/templates/idhub/admin/roles.html:15
#: idhub/templates/idhub/admin/services.html:17
#: idhub/templates/idhub/admin/user.html:87
#: idhub/templates/idhub/admin/user_edit.html:73
#: idhub/templates/idhub/user/roles.html:15
msgid "Rol"
#: idhub/templates/idhub/admin/schemas.html:16
msgid "Template file"
msgstr ""
#: idhub/templates/idhub/admin/schemas.html:17
@ -2118,20 +2268,13 @@ msgstr ""
msgid "Name"
msgstr ""
#: 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/roles.html:16
msgid "Description"
msgstr ""
#: idhub/templates/idhub/admin/schemas.html:37
msgid "Add Template"
#: idhub/templates/idhub/admin/schemas_import.html:29
msgid "Add template"
msgstr ""
#: idhub/templates/idhub/admin/schemas.html:48
msgid "Delete Template"
msgid "Delete template"
msgstr ""
#: idhub/templates/idhub/admin/schemas.html:52
@ -2139,17 +2282,13 @@ msgid "Are you sure that you want delete this template?"
msgstr ""
#: idhub/templates/idhub/admin/schemas_import.html:15
msgid "Template available"
msgid "Available templates"
msgstr ""
#: idhub/templates/idhub/admin/schemas_import.html:23
msgid "Add"
msgstr ""
#: idhub/templates/idhub/admin/schemas_import.html:29
msgid "Add template"
msgstr ""
#: idhub/templates/idhub/admin/services.html:15
#: idhub/templates/idhub/admin/user.html:89
#: idhub/templates/idhub/admin/user_edit.html:75
@ -2157,6 +2296,10 @@ msgstr ""
msgid "Service"
msgstr ""
#: idhub/templates/idhub/admin/services.html:35
msgid "Add Service"
msgstr ""
#: idhub/templates/idhub/admin/user.html:13
msgid "Modify"
msgstr ""
@ -2171,13 +2314,13 @@ msgstr ""
#: idhub/templates/idhub/admin/user.html:63
#: idhub/templates/idhub/admin/user_edit.html:42
#: idhub/templates/idhub/user/profile.html:49
#: idhub/templates/idhub/user/profile.html:44
msgid "From"
msgstr ""
#: idhub/templates/idhub/admin/user.html:64
#: idhub/templates/idhub/admin/user_edit.html:43
#: idhub/templates/idhub/user/profile.html:50
#: idhub/templates/idhub/user/profile.html:45
msgid "To"
msgstr ""
@ -2201,6 +2344,10 @@ msgstr ""
msgid "Request"
msgstr ""
#: idhub/templates/idhub/user/dids.html:35
msgid "Add Identity"
msgstr ""
#: idhub/templates/idhub/user/profile.html:13
msgid "ARCO Forms"
msgstr ""
@ -2209,6 +2356,10 @@ msgstr ""
msgid "Notice of Privacy"
msgstr ""
#: idhub/templates/idhub/user/profile.html:46
msgid "Credentials"
msgstr ""
#: idhub/templates/templates/musician/address_check_delete.html:7
#, python-format
msgid "Are you sure that you want remove the address: \"%(address_name)s\"?"
@ -2511,53 +2662,53 @@ msgid "My profile"
msgstr ""
#: idhub/user/views.py:27
msgid "My Wallet"
msgid "My wallet"
msgstr ""
#: idhub/user/views.py:41
msgid "My personal Data"
msgid "My personal data"
msgstr ""
#: idhub/user/views.py:53
#: idhub/user/views.py:63
msgid "My roles"
msgstr ""
#: idhub/user/views.py:59
#: idhub/user/views.py:69
msgid "GDPR info"
msgstr ""
#: idhub/user/views.py:78
#: idhub/user/views.py:88
msgid "Credential"
msgstr ""
#: idhub/user/views.py:114
msgid "Credentials request"
#: idhub/user/views.py:124
msgid "Credential request"
msgstr ""
#: idhub/user/views.py:127
msgid "The credential was required successfully!"
#: idhub/user/views.py:137
msgid "The credential was issued successfully!"
msgstr ""
#: idhub/user/views.py:129
msgid "Not exists the credential!"
#: idhub/user/views.py:141
msgid "The credential does not exist!"
msgstr ""
#: idhub/user/views.py:135
msgid "Credentials Presentation"
#: idhub/user/views.py:147
msgid "Credential presentation"
msgstr ""
#: idhub/user/views.py:148
#: idhub/user/views.py:162
msgid "The credential was presented successfully!"
msgstr ""
#: idhub/user/views.py:150
#: idhub/user/views.py:164
msgid "Error sending credential!"
msgstr ""
#: idhub/user/views.py:156 idhub/user/views.py:194 idhub/user/views.py:213
msgid "Identities (DID)"
#: idhub/user/views.py:170 idhub/user/views.py:204 idhub/user/views.py:223
msgid "Identities (DIDs)"
msgstr ""
#: idhub/user/views.py:169
msgid "Add a new Identities (DID)"
#: idhub/user/views.py:183
msgid "Add a new Identity (DID)"
msgstr ""

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-11-07 17:54+0100\n"
"POT-Creation-Date: 2023-11-10 16:23+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -1533,233 +1533,385 @@ msgstr ""
msgid "show this help message and exit"
msgstr ""
#: idhub/admin/views.py:39 idhub/user/views.py:33
#: idhub/admin/forms.py:107
msgid "The user does not exist!"
msgstr "No existe el usuario!"
#: idhub/admin/views.py:44 idhub/user/views.py:33
msgid "Dashboard"
msgstr ""
msgstr "Panel"
#: idhub/admin/views.py:40 idhub/user/views.py:34
#: idhub/admin/views.py:45 idhub/user/views.py:34
msgid "Success"
msgstr ""
msgstr "Éxito"
#: idhub/admin/views.py:45
msgid "People Management"
msgstr ""
#: idhub/admin/views.py:57
msgid "User Management"
msgstr "Gestión de usuarios"
#: idhub/admin/views.py:50
msgid "Access Control Management"
msgstr ""
#: idhub/admin/views.py:62
msgid "Access control management"
msgstr "Gestión de control de acceso"
#: idhub/admin/views.py:55
msgid "Credentials Management"
msgstr ""
#: idhub/admin/views.py:67
msgid "Credential Management"
msgstr "Gestión de credenciales"
#: idhub/admin/views.py:60
#: idhub/admin/views.py:72
msgid "Templates Management"
msgstr ""
#: idhub/admin/views.py:65
msgid "Massive Data Management"
#: idhub/admin/views.py:77
msgid "Data file management"
msgstr ""
#: idhub/admin/views.py:71
msgid "People list"
#: idhub/admin/views.py:83
msgid "View users"
msgstr ""
#: idhub/admin/views.py:84
msgid "User Profile"
#: idhub/admin/views.py:96
msgid "User personal information"
msgstr ""
#: idhub/admin/views.py:108
msgid "Is not possible deactivate your account!"
#: idhub/admin/views.py:120
msgid "It was not possible deactivate the account!"
msgstr ""
#: idhub/admin/views.py:129 idhub/admin/views.py:235
msgid "Is not possible delete your account!"
msgstr ""
#: idhub/admin/views.py:141
msgid "People Register"
#: idhub/admin/views.py:144 idhub/admin/views.py:262
msgid "It was not possible delete the account!"
msgstr ""
#: idhub/admin/views.py:156
msgid "The account is created successfully"
msgid "The account is updated successfully"
msgstr ""
#: idhub/admin/views.py:167 idhub/admin/views.py:204
msgid "People add membership"
#: idhub/admin/views.py:165
msgid "Add a user"
msgstr ""
#: idhub/admin/views.py:242
msgid "Add Rol to User"
#: idhub/admin/views.py:180
msgid "The account was created successfully"
msgstr ""
#: idhub/admin/views.py:272
msgid "Edit Rol to User"
#: idhub/admin/views.py:194 idhub/admin/views.py:231
msgid "Associate a membership to the user"
msgstr ""
#: idhub/admin/views.py:307
msgid "Roles Management"
#: idhub/admin/views.py:269
msgid "Add a user role to access a service"
msgstr ""
#: idhub/admin/views.py:319 idhub/templates/idhub/admin/roles.html:31
#: idhub/admin/views.py:299
msgid "Modify a user role to access a service"
msgstr ""
#: idhub/admin/views.py:334
msgid "Role Management"
msgstr ""
#: idhub/admin/views.py:346 idhub/templates/idhub/admin/roles.html:31
#: idhub/templates/idhub/admin/user_edit.html:93
msgid "Add Rol"
msgid "Add Role"
msgstr ""
#: idhub/admin/views.py:329
msgid "Edit Rol"
#: idhub/admin/views.py:355
msgid "Role created successfully"
msgstr ""
#: idhub/admin/views.py:356
msgid "Service Management"
#: idhub/admin/views.py:362
msgid "Edit Role"
msgstr ""
#: idhub/admin/views.py:368 idhub/templates/idhub/admin/services.html:35
#: idhub/admin/views.py:377
msgid "Role updated successfully"
msgstr ""
#: idhub/admin/views.py:390
msgid "Role deleted successfully"
msgstr ""
#: idhub/admin/views.py:397
msgid "Service management"
msgstr ""
#: idhub/admin/views.py:409 idhub/templates/idhub/admin/services.html:35
msgid "Add Service"
msgstr ""
#: idhub/admin/views.py:378
msgid "Edit Service"
msgstr ""
#: idhub/admin/views.py:405
msgid "Credentials list"
msgstr ""
#: idhub/admin/views.py:418
msgid "Change status of Credential"
msgid "Service created successfully"
msgstr ""
#: idhub/admin/views.py:425
msgid "Modify Service"
msgstr ""
#: idhub/admin/views.py:440
msgid "Service updated successfully"
msgstr ""
#: idhub/admin/views.py:453
msgid "Service deleted successfully"
msgstr ""
#: idhub/admin/views.py:460
msgid "Credential list"
msgstr ""
#: idhub/admin/views.py:473
msgid "Change status of Credential"
msgstr ""
#: idhub/admin/views.py:515
msgid "Credential revoked successfully"
msgstr ""
#: idhub/admin/views.py:480
#: idhub/admin/views.py:537
msgid "Credential deleted successfully"
msgstr ""
#: idhub/admin/views.py:487 idhub/admin/views.py:518 idhub/admin/views.py:537
#: idhub/admin/views.py:546 idhub/admin/views.py:578 idhub/admin/views.py:597
msgid "Organization Identities (DID)"
msgstr ""
#: idhub/admin/views.py:500
#: idhub/admin/views.py:559
msgid "Add a new Organization Identities (DID)"
msgstr ""
#: idhub/admin/views.py:512 idhub/user/views.py:188
#: idhub/admin/views.py:571 idhub/user/views.py:195
msgid "DID created successfully"
msgstr ""
#: idhub/admin/views.py:532 idhub/user/views.py:208
#: idhub/admin/views.py:592 idhub/user/views.py:218
msgid "DID updated successfully"
msgstr ""
#: idhub/admin/views.py:547 idhub/user/views.py:223
#: idhub/admin/views.py:608 idhub/user/views.py:234
msgid "DID delete successfully"
msgstr ""
#: idhub/admin/views.py:554 idhub/templates/idhub/user/profile.html:51
#: idhub/user/views.py:65
msgid "Credentials"
#: idhub/admin/views.py:614 idhub/templates/idhub/user/profile.html:46
#: idhub/user/views.py:75
msgid "Credential management"
msgstr ""
#: idhub/admin/views.py:561
msgid "Configure Issues"
#: idhub/admin/views.py:621
msgid "Configure credential issuance"
msgstr ""
#: idhub/admin/views.py:568
msgid "Template List"
#: idhub/admin/views.py:628
msgid "View credential templates"
msgstr ""
#: idhub/admin/views.py:602
msgid "Upload Template"
#: idhub/admin/views.py:662
msgid "Upload template"
msgstr ""
#: idhub/admin/views.py:618 idhub/admin/views.py:744
#: idhub/admin/views.py:678
msgid "There are some errors in the file"
msgstr ""
#: idhub/admin/views.py:632
#: idhub/admin/views.py:692
msgid "This template already exists!"
msgstr ""
#: idhub/admin/views.py:638 idhub/admin/views.py:683
#: idhub/admin/views.py:698 idhub/admin/views.py:743
msgid "This is not a schema valid!"
msgstr ""
#: idhub/admin/views.py:647
msgid "Import Template"
#: idhub/admin/views.py:707
msgid "Import template"
msgstr ""
#: idhub/admin/views.py:675
msgid "The schema add successfully!"
#: idhub/admin/views.py:735
msgid "The schema was added sucessfully"
msgstr ""
#: idhub/admin/views.py:700 idhub/admin/views.py:713 idhub/admin/views.py:726
#: idhub/admin/views.py:760 idhub/admin/views.py:773 idhub/admin/views.py:786
msgid "Import"
msgstr ""
#: idhub/admin/views.py:755
msgid "There aren't file"
msgstr ""
#: idhub/admin/views.py:760
msgid "This file already exists!"
msgstr ""
#: idhub/admin/views.py:799
msgid "The user not exist!"
msgid "The file import was successfully!"
msgstr ""
#: idhub/models.py:57
msgid "Enabled"
#: idhub/admin/views.py:804
msgid "Error importing the file!"
msgstr ""
#: idhub/models.py:58
#, python-brace-format
msgid ""
"The user {username} was registered: name: {first_name}, last name: "
"{last_name}"
msgstr ""
#: idhub/models.py:70
#, python-brace-format
msgid ""
"Welcome. You has been registered: name: {first_name}, last name: {last_name}"
msgstr ""
#: idhub/models.py:83
#, python-brace-format
msgid ""
"The user '{username}' has request the update of the following information: "
msgstr ""
#: idhub/models.py:95
msgid "You have requested the update of the following information: "
msgstr ""
#: idhub/models.py:132
#, python-brace-format
msgid "The admin has deleted the user: username: {username}"
msgstr ""
#: idhub/models.py:142
#, python-brace-format
msgid "New DID with DID-ID: '{did}' created by user '{username}'"
msgstr ""
#: idhub/models.py:153
#, python-brace-format
msgid "New DID with label: '{label}' and DID-ID: '{did}' was created'"
msgstr ""
#: idhub/models.py:165
#, python-brace-format
msgid ""
"The DID with label '{label}' and DID-ID: '{did}' was deleted from your wallet"
msgstr ""
#: idhub/models.py:177
#, python-brace-format
msgid "The credential of type '{type}' and ID: '{id}' was deleted"
msgstr ""
#: idhub/models.py:188
#, python-brace-format
msgid ""
"The credential of type '{type}' and ID: '{id}' was deleted from your wallet"
msgstr ""
#: idhub/models.py:200
#, python-brace-format
msgid ""
"The credential of type '{type}' and ID: '{id}' was issued for user {username}"
msgstr ""
#: idhub/models.py:212
#, python-brace-format
msgid ""
"The credential of type '{type}' and ID: '{id}' was issued and stored in your "
"wallet"
msgstr ""
#: idhub/models.py:254
#, python-brace-format
msgid "The credential of type '{type}' was enabled for user {username}"
msgstr ""
#: idhub/models.py:265
#, python-brace-format
msgid "You can request the '{type}' credential"
msgstr ""
#: idhub/models.py:276
#, python-brace-format
msgid "The credential of type '{type}' and ID: '{id}' was revoked for "
msgstr ""
#: idhub/models.py:287
#, python-brace-format
msgid "The credential of type '{type}' and ID: '{id}' was revoked by admin"
msgstr ""
#: idhub/models.py:299
msgid "A new role was created by admin"
msgstr ""
#: idhub/models.py:307
msgid "The role was modified by admin"
msgstr ""
#: idhub/models.py:315
msgid "The role was removed by admin"
msgstr ""
#: idhub/models.py:323
msgid "A new service was created by admin"
msgstr ""
#: idhub/models.py:331
msgid "The service was modified by admin"
msgstr ""
#: idhub/models.py:339
msgid "The service was removed by admin"
msgstr ""
#: idhub/models.py:347
#, python-brace-format
msgid ""
"New Organisational DID with label: '{label}' and DID-ID: '{did}' was created"
msgstr ""
#: idhub/models.py:358
#, python-brace-format
msgid ""
"Organisational DID with label: '{label}' and DID-ID: '{did}' was removed"
msgstr ""
#: idhub/models.py:438
msgid "Enabled"
msgstr ""
#: idhub/models.py:439
msgid "Issued"
msgstr ""
#: idhub/models.py:59
#: idhub/models.py:440
msgid "Revoked"
msgstr ""
#: idhub/models.py:60
#: idhub/models.py:441
msgid "Expired"
msgstr ""
#: idhub/models.py:118
#: idhub/models.py:499
msgid "Beneficiary"
msgstr ""
#: idhub/models.py:119
#: idhub/models.py:500
msgid "Employee"
msgstr ""
#: idhub/models.py:120
msgid "Partner"
#: idhub/models.py:501
msgid "Member"
msgstr ""
#: idhub/models.py:122
#: idhub/models.py:503
msgid "Type of membership"
msgstr ""
#: idhub/models.py:124
#: idhub/models.py:505
msgid "Start date"
msgstr ""
#: idhub/models.py:125
#: idhub/models.py:506
msgid "What date did the membership start?"
msgstr ""
#: idhub/models.py:130
#: idhub/models.py:511
msgid "End date"
msgstr ""
#: idhub/models.py:131
msgid "What date did the membership end?"
#: idhub/models.py:512
msgid " What date will the membership end?"
msgstr ""
#: idhub/models.py:183
#: idhub/models.py:564
msgid "Url where to send the presentation"
msgstr ""
@ -1889,7 +2041,9 @@ msgid "Password reset on %(site_name)s"
msgstr ""
#: 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/dashboard.html:13
#: idhub/templates/templates/musician/billing.html:21
#: idhub/templates/templates/musician/databases.html:17
#: idhub/templates/templates/musician/domain_detail.html:17
@ -1903,7 +2057,7 @@ msgstr ""
#: idhub/templates/idhub/admin/credentials.html:17
#: idhub/templates/idhub/user/credentials.html:17
msgid "Issue"
msgid "Issued"
msgstr ""
#: idhub/templates/idhub/admin/credentials.html:18
@ -1921,8 +2075,25 @@ msgstr ""
msgid "View"
msgstr ""
#: idhub/templates/idhub/admin/dashboard.html:14
#: 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/templates/idhub/admin/dashboard.html:15
#: idhub/templates/idhub/admin/dids.html:15
#: idhub/templates/idhub/user/dashboard.html:15
#: idhub/templates/idhub/user/dids.html:15
msgid "Date"
msgstr ""
#: idhub/templates/idhub/admin/did_register.html:29
#: idhub/templates/idhub/admin/import_step3.html:27
#: idhub/templates/idhub/admin/import_add.html:27
#: idhub/templates/idhub/admin/people_membership_register.html:29
#: idhub/templates/idhub/admin/people_register.html:25
#: idhub/templates/idhub/admin/people_rol_register.html:29
@ -1933,7 +2104,6 @@ msgstr ""
#: idhub/templates/idhub/user/credentials_presentation.html:29
#: idhub/templates/idhub/user/credentials_request.html:29
#: idhub/templates/idhub/user/did_register.html:29
#: idhub/templates/idhub/user/profile.html:35
#: idhub/templates/templates/musician/address_check_delete.html:10
#: idhub/templates/templates/musician/address_form.html:11
#: idhub/templates/templates/musician/mailbox_change_password.html:11
@ -1943,7 +2113,7 @@ msgid "Cancel"
msgstr ""
#: idhub/templates/idhub/admin/did_register.html:30
#: idhub/templates/idhub/admin/import_step3.html:28
#: idhub/templates/idhub/admin/import_add.html:28
#: idhub/templates/idhub/admin/people_membership_register.html:30
#: idhub/templates/idhub/admin/people_register.html:26
#: idhub/templates/idhub/admin/people_rol_register.html:30
@ -1952,18 +2122,12 @@ msgstr ""
#: idhub/templates/idhub/admin/service_register.html:30
#: idhub/templates/idhub/admin/user_edit.html:28
#: idhub/templates/idhub/user/did_register.html:30
#: idhub/templates/idhub/user/profile.html:36
#: idhub/templates/templates/musician/address_form.html:12
#: idhub/templates/templates/musician/mailbox_change_password.html:12
#: idhub/templates/templates/musician/mailbox_form.html:21
msgid "Save"
msgstr ""
#: idhub/templates/idhub/admin/dids.html:15
#: idhub/templates/idhub/user/dids.html:15
msgid "Date"
msgstr ""
#: idhub/templates/idhub/admin/dids.html:16
#: idhub/templates/idhub/user/dids.html:16
msgid "Label"
@ -1986,7 +2150,7 @@ msgstr ""
#: idhub/templates/idhub/admin/dids.html:35
#: idhub/templates/idhub/user/dids.html:35
msgid "Add Identity"
msgid "Add identity"
msgstr ""
#: idhub/templates/idhub/admin/dids.html:46
@ -2000,26 +2164,16 @@ msgid "Are you sure that you want delete this DID?"
msgstr ""
#: idhub/templates/idhub/admin/import.html:15
#: idhub/templates/idhub/admin/import_step2.html:15
#: idhub/templates/idhub/admin/schemas.html:15
msgid "Created at"
msgstr ""
#: idhub/templates/idhub/admin/import.html:17
msgid "success"
msgid "Success"
msgstr ""
#: idhub/templates/idhub/admin/import.html:31
msgid "Import Datas"
msgstr ""
#: idhub/templates/idhub/admin/import_step2.html:16
#: idhub/templates/idhub/admin/schemas.html:16
msgid "Template file"
msgstr ""
#: idhub/templates/idhub/admin/import_step2.html:26
msgid "Import Dates"
msgid "Import data"
msgstr ""
#: idhub/templates/idhub/admin/issue_credentials.html:14
@ -2059,7 +2213,7 @@ msgstr ""
#: idhub/templates/idhub/admin/people.html:16
#: idhub/templates/idhub/admin/user.html:62
#: idhub/templates/idhub/admin/user_edit.html:41
#: idhub/templates/idhub/user/profile.html:48
#: idhub/templates/idhub/user/profile.html:43
msgid "Membership"
msgstr ""
@ -2110,7 +2264,11 @@ msgstr ""
#: idhub/templates/idhub/admin/user.html:87
#: idhub/templates/idhub/admin/user_edit.html:73
#: idhub/templates/idhub/user/roles.html:15
msgid "Rol"
msgid "Role"
msgstr ""
#: idhub/templates/idhub/admin/schemas.html:16
msgid "Template file"
msgstr ""
#: idhub/templates/idhub/admin/schemas.html:17
@ -2118,20 +2276,12 @@ msgstr ""
msgid "Name"
msgstr ""
#: 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/roles.html:16
msgid "Description"
msgstr ""
#: idhub/templates/idhub/admin/schemas.html:37
msgid "Add Template"
msgid "Add template"
msgstr ""
#: idhub/templates/idhub/admin/schemas.html:48
msgid "Delete Template"
msgid "Delete template"
msgstr ""
#: idhub/templates/idhub/admin/schemas.html:52
@ -2139,7 +2289,7 @@ msgid "Are you sure that you want delete this template?"
msgstr ""
#: idhub/templates/idhub/admin/schemas_import.html:15
msgid "Template available"
msgid "Available templates"
msgstr ""
#: idhub/templates/idhub/admin/schemas_import.html:23
@ -2171,13 +2321,13 @@ msgstr ""
#: idhub/templates/idhub/admin/user.html:63
#: idhub/templates/idhub/admin/user_edit.html:42
#: idhub/templates/idhub/user/profile.html:49
#: idhub/templates/idhub/user/profile.html:44
msgid "From"
msgstr ""
#: idhub/templates/idhub/admin/user.html:64
#: idhub/templates/idhub/admin/user_edit.html:43
#: idhub/templates/idhub/user/profile.html:50
#: idhub/templates/idhub/user/profile.html:45
msgid "To"
msgstr ""
@ -2511,53 +2661,53 @@ msgid "My profile"
msgstr ""
#: idhub/user/views.py:27
msgid "My Wallet"
msgid "My wallet"
msgstr ""
#: idhub/user/views.py:41
msgid "My personal Data"
msgid "My personal data"
msgstr ""
#: idhub/user/views.py:53
#: idhub/user/views.py:63
msgid "My roles"
msgstr ""
#: idhub/user/views.py:59
#: idhub/user/views.py:69
msgid "GDPR info"
msgstr ""
#: idhub/user/views.py:78
#: idhub/user/views.py:88
msgid "Credential"
msgstr ""
#: idhub/user/views.py:114
msgid "Credentials request"
#: idhub/user/views.py:124
msgid "Credential request"
msgstr ""
#: idhub/user/views.py:127
msgid "The credential was required successfully!"
#: idhub/user/views.py:137
msgid "The credential was issued successfully!"
msgstr ""
#: idhub/user/views.py:129
msgid "Not exists the credential!"
#: idhub/user/views.py:141
msgid "The credential does not exist!"
msgstr ""
#: idhub/user/views.py:135
msgid "Credentials Presentation"
#: idhub/user/views.py:147
msgid "Credential presentation"
msgstr ""
#: idhub/user/views.py:148
#: idhub/user/views.py:162
msgid "The credential was presented successfully!"
msgstr ""
#: idhub/user/views.py:150
#: idhub/user/views.py:164
msgid "Error sending credential!"
msgstr ""
#: idhub/user/views.py:156 idhub/user/views.py:194 idhub/user/views.py:213
msgid "Identities (DID)"
#: idhub/user/views.py:170 idhub/user/views.py:204 idhub/user/views.py:223
msgid "Identities (DIDs)"
msgstr ""
#: idhub/user/views.py:169
msgid "Add a new Identities (DID)"
msgstr ""
#: idhub/user/views.py:183
msgid "Add a new Identity (DID)"
msgstr "Añadir una nueva Identidad (DID)"