Browse Source

Remove colon from translatable strings

producao
Marcio Mazza 10 years ago
parent
commit
bbe67540e9
  1. 2
      sigi/apps/casas/forms.py
  2. 34
      sigi/apps/casas/reports.py
  3. 10
      sigi/apps/contatos/models.py
  4. 2
      sigi/apps/convenios/reports.py
  5. 12
      sigi/apps/diagnosticos/templates/diagnosticos/diagnostico_pdf.html
  6. 24
      sigi/apps/parlamentares/reports.py
  7. 2
      sigi/apps/relatorios/reports.py
  8. 2
      sigi/apps/utils/admin_widgets.py
  9. 2
      templates/admin/login.html

2
sigi/apps/casas/forms.py

@ -12,7 +12,7 @@ class CasaLegislativaForm(forms.ModelForm):
# required=False,
# help_text=_(u'Utilize o formato <em>XX.XXX.XXX/XXXX-XX</em> ou insira apenas os dígitos.')
#)
cep = BRZipCodeField(label=_(u'CEP'), help_text=_(u'Formato: <em>XXXXX-XXX</em>.'))
cep = BRZipCodeField(label=_(u'CEP'), help_text=_(u'Formato') + ': <em>XXXXX-XXX</em>.')
class Meta:
model = CasaLegislativa

34
sigi/apps/casas/reports.py

@ -41,6 +41,10 @@ def string_to_cm(texto):
return tamanho
def label_text(text):
return "%s: " % text
class CasasLegislativasLabels(Report):
"""
@ -95,7 +99,7 @@ class CasasLegislativasLabels(Report):
my_elements = [
Label(
text=_(u'A Sua Excelência o(a) Senhor(a):'),
text=label_text(_(u'A Sua Excelência o(a) Senhor(a)')),
top=calc_top(0), left=calc_left, width=calc_width,
),
ObjectValue(
@ -120,8 +124,7 @@ class CasasLegislativasLabels(Report):
ObjectValue(
attribute_name='cep',
top=calc_top(8), left=calc_left, width=calc_width,
get_value=lambda instance:
_(u"CEP: %s") % instance.cep
get_value=lambda instance: "%s: %s" % (_(u"CEP"), instance.cep)
),
]
self.band_detail = DetailBand(
@ -144,7 +147,7 @@ class CasasLegislativasLabelsSemPresidente(CasasLegislativasLabels):
my_elements = [
Label(
text=_(u'A Sua Excelência o(a) Senhor(a):'),
text=label_text(_(u'A Sua Excelência o(a) Senhor(a)')),
top=calc_top(0), left=calc_left, width=calc_width,
),
ObjectValue(
@ -163,8 +166,7 @@ class CasasLegislativasLabelsSemPresidente(CasasLegislativasLabels):
ObjectValue(
attribute_name='cep',
top=calc_top(8), left=calc_left, width=calc_width,
get_value=lambda instance:
_(u"CEP: %s") % instance.cep
get_value=lambda instance: "%s: %s" % (_(u"CEP"), instance.cep)
),
]
self.band_detail = DetailBand(
@ -341,7 +343,7 @@ class InfoCasaLegislativa(ReportDefault):
elements = [
Label(
text=_(u"Tipo: "),
text=label_text(_(u"Tipo")),
left=posicao_left[0] * cm,
top=posicao_top[0] * cm,
),
@ -352,7 +354,7 @@ class InfoCasaLegislativa(ReportDefault):
width=6 * cm,
),
Label(
text=_(u"Região: "),
text=label_text(_(u"Região")),
left=posicao_left[2] * cm,
top=posicao_top[1] * cm,
),
@ -365,7 +367,7 @@ class InfoCasaLegislativa(ReportDefault):
[instance.municipio.uf.regiao]
),
Label(
text=_(u"U.F.: "),
text=label_text(_(u"UF")),
left=posicao_left[4] * cm,
top=posicao_top[2] * cm,
),
@ -375,7 +377,7 @@ class InfoCasaLegislativa(ReportDefault):
top=posicao_top[2] * cm,
),
Label(
text=_(u"Município: "),
text=label_text(_(u"Município")),
left=posicao_left[6] * cm,
top=posicao_top[3] * cm,
),
@ -387,7 +389,7 @@ class InfoCasaLegislativa(ReportDefault):
),
# Linha 3
Label(
text=_(u"Endereço: "),
text=label_text(_(u"Endereço")),
left=posicao_left[8] * cm,
top=posicao_top[4] * cm,
),
@ -398,7 +400,7 @@ class InfoCasaLegislativa(ReportDefault):
width=20 * cm,
),
Label(
text=_(u"Bairro: "),
text=label_text(_(u"Bairro")),
left=posicao_left[10] * cm,
top=posicao_top[5] * cm,
),
@ -408,7 +410,7 @@ class InfoCasaLegislativa(ReportDefault):
top=posicao_top[5] * cm,
),
Label(
text=_(u"CEP: "),
text=label_text(_(u"CEP")),
left=posicao_left[12] * cm,
top=posicao_top[6] * cm,
),
@ -418,7 +420,7 @@ class InfoCasaLegislativa(ReportDefault):
top=posicao_top[6] * cm,
),
Label(
text=_(u"CNPJ: "),
text=label_text(_(u"CNPJ")),
left=posicao_left[14] * cm,
top=posicao_top[7] * cm,
),
@ -428,7 +430,7 @@ class InfoCasaLegislativa(ReportDefault):
top=posicao_top[7] * cm,
),
Label(
text=_(u"Telefone: "),
text=label_text(_(u"Telefone")),
left=posicao_left[16] * cm,
top=posicao_top[8] * cm,
),
@ -438,7 +440,7 @@ class InfoCasaLegislativa(ReportDefault):
top=posicao_top[8] * cm,
),
Label(
text=_(u"Presidente: "),
text=label_text(_(u"Presidente")),
left=posicao_left[18] * cm,
top=posicao_top[9] * cm,
),

10
sigi/apps/contatos/models.py

@ -31,7 +31,7 @@ class UnidadeFederativa(models.Model):
sigla = models.CharField(
max_length=2,
unique=True,
help_text=_(u"Exemplo: <em>MG</em>."),
help_text=_(u"Exemplo") + ": <em>MG</em>.",
)
regiao = models.CharField(_(u'região'), max_length=2, choices=REGIAO_CHOICES)
populacao = models.PositiveIntegerField(_(u'população'))
@ -92,14 +92,14 @@ class Municipio(models.Model):
decimal_places=8,
null=True,
blank=True,
help_text=_(u'Exemplo: <em>-20,464</em>.')
help_text=_(u'Exemplo') + ': <em>-20,464</em>.'
)
longitude = models.DecimalField(
max_digits=11,
decimal_places=8,
null=True,
blank=True,
help_text=_(u'Exemplo: <em>-45,426</em>.')
help_text=_(u'Exemplo') + ': <em>-45,426</em>.'
)
idh = models.DecimalField(_(u'IDH'), help_text=_(u'Índice de desenvolvimento Humano'), max_digits=4, decimal_places=3,
@ -136,7 +136,7 @@ class Telefone(models.Model):
numero = models.CharField(
_(u'número'),
max_length=64, # TODO: diminuir tamanho de campo após migração de dados
help_text=_(u'Exemplo: <em>(31)8851-9898</em>.'),
help_text=_(u'Exemplo') + ': <em>(31)8851-9898</em>.',
)
tipo = models.CharField(
max_length=1,
@ -260,7 +260,7 @@ class Endereco(models.Model):
max_length=9,
blank=True,
null=True,
help_text=_(u"Formato: <em>XXXXX-XXX</em>.")
help_text=_(u"Formato") + ": <em>XXXXX-XXX</em>."
)
municipio = models.ForeignKey(

2
sigi/apps/convenios/reports.py

@ -140,7 +140,7 @@ class ConvenioReport(ReportDefault):
height=0.7 * cm,
elements=[
ObjectValue(attribute_name='casa_legislativa.municipio.uf',
get_Value=lambda instance: _(u'CasaLegislativa: ') + (instance.casa_legislativa.uf)
get_Value=lambda instance: '%s: %s' % (_(u'Casa Legislativa'), instance.casa_legislativa.uf)
)
],
borders={'top': True},

12
sigi/apps/diagnosticos/templates/diagnosticos/diagnostico_pdf.html

@ -112,24 +112,24 @@
{{ diagnostico.casa_legislativa }} - {{ diagnostico.casa_legislativa.municipio.uf.sigla }}
</h2>
<h3>{% trans 'Data do Questionário:' %}</h3>
<h3>{% trans 'Data do Questionário' %}:</h3>
<p>De {{diagnostico.data_visita_inicio}} à {{diagnostico.data_visita_fim}}</p>
<h3>{% trans 'Chefe da equipe de diagnóstico:' %}</h3>
<h3>{% trans 'Chefe da equipe de diagnóstico' %}:</h3>
<p>{{diagnostico.responsavel}}</p>
<h3>{% trans 'Membros da equipe de diagnóstico:' %}</h3>
<h3>{% trans 'Membros da equipe de diagnóstico' %}:</h3>
{% for membro in diagnostico.equipe_set.all %}
<p>{{membro}}</p>
{% endfor %}
{% for funcionario in funcionarios %}
{% if funcionario.setor == 'contato_interlegis' %}
<h3>{% trans 'Nome do responsável pelas Informações:' %}</h3>
<h3>{% trans 'Nome do responsável pelas Informações' %}:</h3>
<p>{{funcionario.nome|default_if_none:""}}</p>
<h3>{% trans 'Cargo / função do responsável pelas informações:' %}</h3>
<h3>{% trans 'Cargo / função do responsável pelas informações' %}:</h3>
<p>{{funcionario.cargo|default_if_none:""}} / {{funcionario.funcao|default_if_none:""}}</p>
<h3>{% trans 'E-mail do responsável pelas informações:' %}</h3>
<h3>{% trans 'E-mail do responsável pelas informações' %}:</h3>
<p>{{funcionario.email|default_if_none:""}}</p>
{% for telefone in funcionario.telefones.all %}
<h3>{% blocktrans %}Telefone {{telefone.get_tipo_display}} do responsável pelas informações{% endblocktrans %}</h3>

24
sigi/apps/parlamentares/reports.py

@ -265,6 +265,10 @@ class CasasLegislativasReport(ReportDefault):
]
def label_text(text):
return "%s: " % text
class InfoCasaLegislativa(ReportDefault):
title = _(u'Casa Legislativa')
@ -313,7 +317,7 @@ class InfoCasaLegislativa(ReportDefault):
elements = [
Label(
text=_(u"Tipo: "),
text=label_text(_(u"Tipo")),
left=posicao_left[0] * cm,
top=posicao_top[0] * cm,
),
@ -324,7 +328,7 @@ class InfoCasaLegislativa(ReportDefault):
width=6 * cm,
),
Label(
text=_(u"Região: "),
text=label_text(_(u"Região")),
left=posicao_left[2] * cm,
top=posicao_top[1] * cm,
),
@ -337,7 +341,7 @@ class InfoCasaLegislativa(ReportDefault):
[instance.municipio.uf.regiao]
),
Label(
text=_(u"U.F.: "),
text=label_text(_(u"UF")),
left=posicao_left[4] * cm,
top=posicao_top[2] * cm,
),
@ -347,7 +351,7 @@ class InfoCasaLegislativa(ReportDefault):
top=posicao_top[2] * cm,
),
Label(
text=_(u"Município: "),
text=label_text(_(u"Município")),
left=posicao_left[6] * cm,
top=posicao_top[3] * cm,
),
@ -359,7 +363,7 @@ class InfoCasaLegislativa(ReportDefault):
),
# Linha 3
Label(
text=_(u"Endereço: "),
text=label_text(_(u"Endereço")),
left=posicao_left[8] * cm,
top=posicao_top[4] * cm,
),
@ -370,7 +374,7 @@ class InfoCasaLegislativa(ReportDefault):
width=20 * cm,
),
Label(
text=_(u"Bairro: "),
text=label_text(_(u"Bairro")),
left=posicao_left[10] * cm,
top=posicao_top[5] * cm,
),
@ -380,7 +384,7 @@ class InfoCasaLegislativa(ReportDefault):
top=posicao_top[5] * cm,
),
Label(
text=_(u"CEP: "),
text=label_text(_(u"CEP")),
left=posicao_left[12] * cm,
top=posicao_top[6] * cm,
),
@ -390,7 +394,7 @@ class InfoCasaLegislativa(ReportDefault):
top=posicao_top[6] * cm,
),
Label(
text=_(u"CNPJ: "),
text=label_text(_(u"CNPJ")),
left=posicao_left[14] * cm,
top=posicao_top[7] * cm,
),
@ -400,7 +404,7 @@ class InfoCasaLegislativa(ReportDefault):
top=posicao_top[7] * cm,
),
Label(
text=_(u"Telefone: "),
text=label_text(_(u"Telefone")),
left=posicao_left[16] * cm,
top=posicao_top[8] * cm,
),
@ -410,7 +414,7 @@ class InfoCasaLegislativa(ReportDefault):
top=posicao_top[8] * cm,
),
Label(
text=_(u"Presidente: "),
text=label_text(_(u"Presidente")),
left=posicao_left[18] * cm,
top=posicao_top[9] * cm,
),

2
sigi/apps/relatorios/reports.py

@ -67,7 +67,7 @@ class ReportDefault(Report):
class band_summary(ReportBand):
height = 0.8 * cm
elements = [
Label(text=_(u"Total:"), top=0.1 * cm, left=0),
Label(text=_(u"Total") + ":", top=0.1 * cm, left=0),
ObjectValue(attribute_name='id', top=0.1 * cm, left=1 * cm,
action=FIELD_ACTION_COUNT, display_format='%s'),
]

2
sigi/apps/utils/admin_widgets.py

@ -13,6 +13,6 @@ class AdminImageWidget(AdminFileWidget):
output.append(
u''' <a href="%s" target="_blank"><img src="%s" width="100"
height="100" alt="%s"/></a> <br/> %s''' %
(image_url, image_url, file_name, _(u'Change:')))
(image_url, image_url, file_name, _(u'Change') + ':'))
output.append(super(AdminFileWidget, self).render(name, value, attrs))
return mark_safe(u''.join(output))

2
templates/admin/login.html

@ -40,7 +40,7 @@
</div>
<div class="form-row">
{% if not form.this_is_the_login_form.errors %}{{ form.password.errors }}{% endif %}
<label for="id_password" class="required">{% trans 'Password:' %}</label> {{ form.password }}
<label for="id_password" class="required">{% trans 'Password' %}:</label> {{ form.password }}
<input type="hidden" name="this_is_the_login_form" value="1" />
<input type="hidden" name="next" value="{{ next }}" />
</div>

Loading…
Cancel
Save