Commit 6de10d124dcd6291f1f75db2747cef33ce1d3436

Authored by Zambom
1 parent c7a3e05a

Goals adjusts

amadeus/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid ""
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:12-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
categories/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:13-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
chat/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:12-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
file_link/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:13-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
goals/forms.py
... ... @@ -2,8 +2,9 @@
2 2 from django import forms
3 3 from datetime import datetime
4 4 from django.conf import settings
  5 +from django.utils.html import strip_tags
5 6 from django.utils.translation import ugettext_lazy as _
6   -from django.forms.models import inlineformset_factory
  7 +from django.forms.models import inlineformset_factory, BaseInlineFormSet
7 8  
8 9 from subjects.models import Tag
9 10  
... ... @@ -48,6 +49,9 @@ class GoalsForm(forms.ModelForm):
48 49  
49 50 limit_submission_date = cleaned_data.get('limit_submission_date', None)
50 51  
  52 + presentation = cleaned_data.get('presentation', '')
  53 + cleaned_presentation = strip_tags(presentation)
  54 +
51 55 if self.topic:
52 56 if self.instance.id:
53 57 exist = self.topic.resource_topic.filter(goals__isnull = False).exclude(id = self.instance.id).exists()
... ... @@ -57,6 +61,9 @@ class GoalsForm(forms.ModelForm):
57 61 if exist:
58 62 self.add_error('name', _('There already is another resource with the goals specification for the Topic %s')%(str(self.topic)))
59 63  
  64 + if cleaned_presentation == '':
  65 + self.add_error('presentation', _('This field is required.'))
  66 +
60 67 if limit_submission_date:
61 68 if not limit_submission_date == ValueError:
62 69 if not self.instance.id and limit_submission_date.date() < datetime.today().date():
... ... @@ -67,6 +74,8 @@ class GoalsForm(forms.ModelForm):
67 74  
68 75 if limit_submission_date.date() > self.subject.end_date:
69 76 self.add_error('limit_submission_date', _('This input should be filled with a date equal or after the subject end date.'))
  77 + else:
  78 + self.add_error('limit_submission_date', _('This field is required'))
70 79  
71 80 return cleaned_data
72 81  
... ... @@ -116,6 +125,18 @@ class GoalItemForm(forms.ModelForm):
116 125  
117 126 return cleaned_data
118 127  
  128 +class GoalItemFormset(BaseInlineFormSet):
  129 + def __init__(self, *args, **kwargs):
  130 + super(GoalItemFormset, self).__init__(*args, **kwargs)
  131 +
  132 + self.forms[0].empty_permitted = False
  133 +
  134 + def clean(self):
  135 + description = self.forms[0].cleaned_data.get('description', None)
  136 +
  137 + if not description:
  138 + raise forms.ValidationError(_('It\'s necessary to enter at least one goal specification.'))
  139 +
119 140 class MyGoalsForm(forms.ModelForm):
120 141 def __init__(self, *args, **kwargs):
121 142 super(MyGoalsForm, self).__init__(*args, **kwargs)
... ... @@ -127,4 +148,4 @@ class MyGoalsForm(forms.ModelForm):
127 148 fields = ['value', 'item']
128 149  
129 150 InlinePendenciesFormset = inlineformset_factory(Goals, Pendencies, form = PendenciesLimitedForm, extra = 1, max_num = 3, validate_max = True, can_delete = True)
130   -InlineGoalItemFormset = inlineformset_factory(Goals, GoalItem, form = GoalItemForm, extra = 1, can_delete = True)
131 151 \ No newline at end of file
  152 +InlineGoalItemFormset = inlineformset_factory(Goals, GoalItem, form = GoalItemForm, min_num = 1, validate_min = True, extra = 0, can_delete = True, formset = GoalItemFormset)
132 153 \ No newline at end of file
... ...
goals/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:13-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -18,15 +18,15 @@ msgstr &quot;&quot;
18 18 "Content-Transfer-Encoding: 8bit\n"
19 19 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
20 20  
21   -#: goals/forms.py:33
  21 +#: goals/forms.py:34
22 22 msgid "Tags"
23 23 msgstr "Tags"
24 24  
25   -#: goals/forms.py:39
  25 +#: goals/forms.py:40
26 26 msgid "Name"
27 27 msgstr "Nome"
28 28  
29   -#: goals/forms.py:58
  29 +#: goals/forms.py:62
30 30 #, python-format
31 31 msgid ""
32 32 "There already is another resource with the goals specification for the Topic "
... ... @@ -34,12 +34,16 @@ msgid &quot;&quot;
34 34 msgstr ""
35 35 "Já existe um outro recurso com a especificação de metas para o tópico %s"
36 36  
37   -#: goals/forms.py:63
  37 +#: goals/forms.py:65 goals/forms.py:124
  38 +msgid "This field is required."
  39 +msgstr "Esse campo é obrigatório."
  40 +
  41 +#: goals/forms.py:70
38 42 msgid "This input should be filled with a date equal or after today's date."
39 43 msgstr ""
40 44 "Esse campo deve ser preenchido com uma data igual ou posterior à data atual."
41 45  
42   -#: goals/forms.py:66
  46 +#: goals/forms.py:73
43 47 msgid ""
44 48 "This input should be filled with a date equal or after the subject begin "
45 49 "date."
... ... @@ -47,17 +51,23 @@ msgstr &quot;&quot;
47 51 "Esse campo deve ser preenchido com uma data igual ou posterior à data de "
48 52 "início do assunto."
49 53  
50   -#: goals/forms.py:69
  54 +#: goals/forms.py:76
51 55 msgid ""
52 56 "This input should be filled with a date equal or after the subject end date."
53 57 msgstr ""
54 58 "Esse campo deve ser preenchido com uma data igual ou posterior à data final "
55 59 "do assunto."
56 60  
57   -#: goals/forms.py:115
58   -msgid "This field is required."
  61 +#: goals/forms.py:78
  62 +#, fuzzy
  63 +#| msgid "This field is required."
  64 +msgid "This field is required"
59 65 msgstr "Esse campo é obrigatório."
60 66  
  67 +#: goals/forms.py:138
  68 +msgid "It's necessary to enter at least one goal specification."
  69 +msgstr "Você deve cadastrar ao menos uma especificação de meta."
  70 +
61 71 #: goals/models.py:10
62 72 msgid "Presentation"
63 73 msgstr "Apresentação"
... ... @@ -134,46 +144,46 @@ msgstr &quot;Data de atualização&quot;
134 144 msgid "Goals Specification"
135 145 msgstr "Especificação de Metas"
136 146  
137   -#: goals/templates/goals/_form.html:101
  147 +#: goals/templates/goals/_form.html:109
138 148 #: goals/templates/goals/_form_submit.html:22
139 149 #: goals/templates/goals/view.html:74
140 150 msgid "Minimum percentage desired"
141 151 msgstr "Porcentagem mínima desejada"
142 152  
143   -#: goals/templates/goals/_form.html:156
  153 +#: goals/templates/goals/_form.html:164
144 154 msgid "Common resources settings"
145 155 msgstr "Configurações comuns a todos os recursos"
146 156  
147   -#: goals/templates/goals/_form.html:204
  157 +#: goals/templates/goals/_form.html:212
148 158 msgid "Pendencies Notifications"
149 159 msgstr "Notificações de Pendências"
150 160  
151   -#: goals/templates/goals/_form.html:226
  161 +#: goals/templates/goals/_form.html:240
152 162 msgid "Action not performed by the user"
153 163 msgstr "Ação não realizada pelo usuário"
154 164  
155   -#: goals/templates/goals/_form.html:252
  165 +#: goals/templates/goals/_form.html:266
156 166 msgid "Wished period"
157 167 msgstr "Período desejado"
158 168  
159   -#: goals/templates/goals/_form.html:388
  169 +#: goals/templates/goals/_form.html:402
160 170 #: goals/templates/goals/_form_submit.html:54
161 171 msgid "Save"
162 172 msgstr "Salvar"
163 173  
164   -#: goals/templates/goals/_form.html:399
  174 +#: goals/templates/goals/_form.html:413
165 175 msgid "Add new goal"
166 176 msgstr "Adicionar nova meta"
167 177  
168   -#: goals/templates/goals/_form.html:400
  178 +#: goals/templates/goals/_form.html:414
169 179 msgid "Remove this goal"
170 180 msgstr "Remover essa meta"
171 181  
172   -#: goals/templates/goals/_form.html:420
  182 +#: goals/templates/goals/_form.html:434
173 183 msgid "Add new notification"
174 184 msgstr "Adicionar nova notificação"
175 185  
176   -#: goals/templates/goals/_form.html:421
  186 +#: goals/templates/goals/_form.html:435
177 187 msgid "Remove this"
178 188 msgstr "Remover essa notificação"
179 189  
... ... @@ -344,35 +354,35 @@ msgstr &quot;Suas metas para %s foram salvas com sucesso!&quot;
344 354 msgid "Your goals for %s was update successfully!"
345 355 msgstr "Suas metas para %s foram atualizadas com sucesso!"
346 356  
347   -#: goals/views.py:636 goals/views.py:650 goals/views.py:671 goals/views.py:790
348   -#: goals/views.py:804 goals/views.py:814
  357 +#: goals/views.py:636 goals/views.py:650 goals/views.py:675 goals/views.py:794
  358 +#: goals/views.py:808 goals/views.py:818
349 359 msgid "Visualize"
350 360 msgstr "Visualizar"
351 361  
352   -#: goals/views.py:636 goals/views.py:650 goals/views.py:671 goals/views.py:790
353   -#: goals/views.py:804 goals/views.py:814
  362 +#: goals/views.py:636 goals/views.py:650 goals/views.py:675 goals/views.py:794
  363 +#: goals/views.py:808 goals/views.py:818
354 364 msgid "Submit"
355 365 msgstr "Submeter"
356 366  
357   -#: goals/views.py:734
  367 +#: goals/views.py:738
358 368 msgid "Create Topic Goals"
359 369 msgstr "Adicionar Metas do Tópico"
360 370  
361   -#: goals/views.py:745
  371 +#: goals/views.py:749
362 372 #, python-format
363 373 msgid "The Goals specification for the topic %s was realized successfully!"
364 374 msgstr "A Especificação de Metas para o tópico %s foi realizada com sucesso!"
365 375  
366   -#: goals/views.py:869
  376 +#: goals/views.py:873
367 377 msgid "Update Topic Goals"
368 378 msgstr "Atualizar Metas do Tópico"
369 379  
370   -#: goals/views.py:880
  380 +#: goals/views.py:884
371 381 #, python-format
372 382 msgid "The Goals specification for the topic %s was updated successfully!"
373 383 msgstr "A Especificação de Metas para o tópico %s foi atualizada com sucesso!"
374 384  
375   -#: goals/views.py:916
  385 +#: goals/views.py:920
376 386 #, python-format
377 387 msgid "The Goals specification of the topic %s was removed successfully!"
378 388 msgstr "A Especificação de Metas para o tópico %s foi removida com sucesso!"
... ...
goals/templates/goals/_form.html
... ... @@ -61,7 +61,15 @@
61 61 </div>
62 62 <div id="goal_items" class="panel-collapse collapse">
63 63 {{ goalitems_form.management_form }}
64   - {{ goalitems_form.non_form_errors }}
  64 +
  65 + {% if goalitems_form.non_form_errors %}
  66 + <div class="alert alert-danger alert-dismissible" role="alert">
  67 + <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  68 + <span aria-hidden="true">&times;</span>
  69 + </button>
  70 + {{ goalitems_form.non_form_errors }}
  71 + </div>
  72 + {% endif %}
65 73  
66 74 {% for item in goalitems_form %}
67 75 <div class="goalitems">
... ... @@ -209,12 +217,18 @@
209 217 </div>
210 218 <div id="notifications" class="panel-collapse collapse">
211 219 {{ pendencies_form.management_form }}
212   - {{ pendencies_form.non_form_errors }}
  220 + {% if pendencies_form.non_form_errors %}
  221 + <div class="alert alert-danger alert-dismissible" role="alert">
  222 + <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  223 + <span aria-hidden="true">&times;</span>
  224 + </button>
  225 + {{ pendencies_form.non_form_errors }}
  226 + </div>
  227 + {% endif %}
213 228  
214 229 {% for notify in pendencies_form %}
215 230 <div class="notifies">
216 231 <div style="text-align:left">
217   - {{ notify.errors }}
218 232 {% render_field notify.id %}
219 233 {% render_field notify.resource %}
220 234 {% render_field notify.subject class='pend_subj' %}
... ...
goals/views.py
... ... @@ -667,7 +667,11 @@ class CreateView(LoginRequiredMixin, LogMixin, generic.edit.CreateView):
667 667 return initial
668 668  
669 669 def form_invalid(self, form, pendencies_form, goalitems_form):
  670 + slug = self.kwargs.get('slug', '')
  671 + topic = get_object_or_404(Topic, slug = slug)
  672 +
670 673 for p_form in pendencies_form.forms:
  674 + print(p_form.initial['subject'])
671 675 p_form.fields['action'].choices = [("", "-------"),("view", _("Visualize")), ("submit", _("Submit"))]
672 676  
673 677 return self.render_to_response(self.get_context_data(form = form, pendencies_form = pendencies_form, goalitems_form = goalitems_form))
... ...
links/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:13-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
log/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:13-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
mailsender/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:12-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
mural/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:13-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
news/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:13-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
notifications/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:12-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
pdf_file/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:12-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
pendencies/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:13-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
reports/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:13-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
security/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:13-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
students_group/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:13-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
subjects/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:13-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
themes/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:13-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
topics/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:12-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
users/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:13-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
webconference/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:13-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
webpage/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:13-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
youtube_video/locale/pt_BR/LC_MESSAGES/django.po
... ... @@ -8,7 +8,7 @@ msgid &quot;&quot;
8 8 msgstr ""
9 9 "Project-Id-Version: PACKAGE VERSION\n"
10 10 "Report-Msgid-Bugs-To: \n"
11   -"POT-Creation-Date: 2017-04-14 07:26-0300\n"
  11 +"POT-Creation-Date: 2017-04-15 00:13-0300\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...