Skip to content

Commit

Permalink
Ts corrigir mensagens (#360)
Browse files Browse the repository at this point in the history
* Updating closed-participant-owner email text

* Updating feedback_authorization email text

* Updating owner invitation email

* Updating participation info modal message

* fix django.po messages

* add text in feedback modals

Co-authored-by: João Paulo Nunes Soares <[email protected]>
  • Loading branch information
erivanio and joaopaulonsoares authored Aug 31, 2021
1 parent 7d1defd commit b0c430b
Show file tree
Hide file tree
Showing 11 changed files with 149 additions and 83 deletions.
2 changes: 1 addition & 1 deletion src/apps/participations/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ def set_final_version(request, group_id):
return JsonResponse({'message': _('Request sent!')})
else:
return JsonResponse(
{'error': _('Version and Video link are required!')},
{'error': _('Version is required!')},
status=400
)

Expand Down
1 change: 1 addition & 0 deletions src/apps/reports/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
default_app_config = 'apps.reports.apps.ReportsConfig'
4 changes: 3 additions & 1 deletion src/apps/reports/apps.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _


class ReportsConfig(AppConfig):
name = 'reports'
name = 'apps.reports'
verbose_name = _('Reports')
Loading

0 comments on commit b0c430b

Please sign in to comment.