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, # required=False,
# help_text=_(u'Utilize o formato <em>XX.XXX.XXX/XXXX-XX</em> ou insira apenas os dígitos.') # 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: class Meta:
model = CasaLegislativa model = CasaLegislativa

34
sigi/apps/casas/reports.py

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

10
sigi/apps/contatos/models.py

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

2
sigi/apps/convenios/reports.py

@ -140,7 +140,7 @@ class ConvenioReport(ReportDefault):
height=0.7 * cm, height=0.7 * cm,
elements=[ elements=[
ObjectValue(attribute_name='casa_legislativa.municipio.uf', 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}, 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 }} {{ diagnostico.casa_legislativa }} - {{ diagnostico.casa_legislativa.municipio.uf.sigla }}
</h2> </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> <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> <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 %} {% for membro in diagnostico.equipe_set.all %}
<p>{{membro}}</p> <p>{{membro}}</p>
{% endfor %} {% endfor %}
{% for funcionario in funcionarios %} {% for funcionario in funcionarios %}
{% if funcionario.setor == 'contato_interlegis' %} {% 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> <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> <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> <p>{{funcionario.email|default_if_none:""}}</p>
{% for telefone in funcionario.telefones.all %} {% for telefone in funcionario.telefones.all %}
<h3>{% blocktrans %}Telefone {{telefone.get_tipo_display}} do responsável pelas informações{% endblocktrans %}</h3> <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): class InfoCasaLegislativa(ReportDefault):
title = _(u'Casa Legislativa') title = _(u'Casa Legislativa')
@ -313,7 +317,7 @@ class InfoCasaLegislativa(ReportDefault):
elements = [ elements = [
Label( Label(
text=_(u"Tipo: "), text=label_text(_(u"Tipo")),
left=posicao_left[0] * cm, left=posicao_left[0] * cm,
top=posicao_top[0] * cm, top=posicao_top[0] * cm,
), ),
@ -324,7 +328,7 @@ class InfoCasaLegislativa(ReportDefault):
width=6 * cm, width=6 * cm,
), ),
Label( Label(
text=_(u"Região: "), text=label_text(_(u"Região")),
left=posicao_left[2] * cm, left=posicao_left[2] * cm,
top=posicao_top[1] * cm, top=posicao_top[1] * cm,
), ),
@ -337,7 +341,7 @@ class InfoCasaLegislativa(ReportDefault):
[instance.municipio.uf.regiao] [instance.municipio.uf.regiao]
), ),
Label( Label(
text=_(u"U.F.: "), text=label_text(_(u"UF")),
left=posicao_left[4] * cm, left=posicao_left[4] * cm,
top=posicao_top[2] * cm, top=posicao_top[2] * cm,
), ),
@ -347,7 +351,7 @@ class InfoCasaLegislativa(ReportDefault):
top=posicao_top[2] * cm, top=posicao_top[2] * cm,
), ),
Label( Label(
text=_(u"Município: "), text=label_text(_(u"Município")),
left=posicao_left[6] * cm, left=posicao_left[6] * cm,
top=posicao_top[3] * cm, top=posicao_top[3] * cm,
), ),
@ -359,7 +363,7 @@ class InfoCasaLegislativa(ReportDefault):
), ),
# Linha 3 # Linha 3
Label( Label(
text=_(u"Endereço: "), text=label_text(_(u"Endereço")),
left=posicao_left[8] * cm, left=posicao_left[8] * cm,
top=posicao_top[4] * cm, top=posicao_top[4] * cm,
), ),
@ -370,7 +374,7 @@ class InfoCasaLegislativa(ReportDefault):
width=20 * cm, width=20 * cm,
), ),
Label( Label(
text=_(u"Bairro: "), text=label_text(_(u"Bairro")),
left=posicao_left[10] * cm, left=posicao_left[10] * cm,
top=posicao_top[5] * cm, top=posicao_top[5] * cm,
), ),
@ -380,7 +384,7 @@ class InfoCasaLegislativa(ReportDefault):
top=posicao_top[5] * cm, top=posicao_top[5] * cm,
), ),
Label( Label(
text=_(u"CEP: "), text=label_text(_(u"CEP")),
left=posicao_left[12] * cm, left=posicao_left[12] * cm,
top=posicao_top[6] * cm, top=posicao_top[6] * cm,
), ),
@ -390,7 +394,7 @@ class InfoCasaLegislativa(ReportDefault):
top=posicao_top[6] * cm, top=posicao_top[6] * cm,
), ),
Label( Label(
text=_(u"CNPJ: "), text=label_text(_(u"CNPJ")),
left=posicao_left[14] * cm, left=posicao_left[14] * cm,
top=posicao_top[7] * cm, top=posicao_top[7] * cm,
), ),
@ -400,7 +404,7 @@ class InfoCasaLegislativa(ReportDefault):
top=posicao_top[7] * cm, top=posicao_top[7] * cm,
), ),
Label( Label(
text=_(u"Telefone: "), text=label_text(_(u"Telefone")),
left=posicao_left[16] * cm, left=posicao_left[16] * cm,
top=posicao_top[8] * cm, top=posicao_top[8] * cm,
), ),
@ -410,7 +414,7 @@ class InfoCasaLegislativa(ReportDefault):
top=posicao_top[8] * cm, top=posicao_top[8] * cm,
), ),
Label( Label(
text=_(u"Presidente: "), text=label_text(_(u"Presidente")),
left=posicao_left[18] * cm, left=posicao_left[18] * cm,
top=posicao_top[9] * cm, top=posicao_top[9] * cm,
), ),

2
sigi/apps/relatorios/reports.py

@ -67,7 +67,7 @@ class ReportDefault(Report):
class band_summary(ReportBand): class band_summary(ReportBand):
height = 0.8 * cm height = 0.8 * cm
elements = [ 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, ObjectValue(attribute_name='id', top=0.1 * cm, left=1 * cm,
action=FIELD_ACTION_COUNT, display_format='%s'), action=FIELD_ACTION_COUNT, display_format='%s'),
] ]

2
sigi/apps/utils/admin_widgets.py

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

2
templates/admin/login.html

@ -40,7 +40,7 @@
</div> </div>
<div class="form-row"> <div class="form-row">
{% if not form.this_is_the_login_form.errors %}{{ form.password.errors }}{% endif %} {% 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="this_is_the_login_form" value="1" />
<input type="hidden" name="next" value="{{ next }}" /> <input type="hidden" name="next" value="{{ next }}" />
</div> </div>

Loading…
Cancel
Save