-
Marcus_marcusmaceio894Perguntado em 2 de setembro de 2024 às 19:10
O título dos campos do widget "Estados e Cidades" (Country, State e City) aparecem em inglês.
Como faço para que esses títulos sejam exibidos em português do Brasil (País, Estado, Cidade)?
Page URL: https://form.jotform.com/242456936872065 -
Gian Jotform SupportRespondido em 2 de setembro de 2024 às 19:43
Hi Marcus,
Thanks for reaching out to Jotform Support. Unfortunately, our Portuguese Support agents are busy helping other Jotform users at the moment. I'll try to help you in English using Google Translate, but you can reply in whichever language you feel comfortable using. Or, if you'd rather have support in Portuguese, let us know and we can have them do that. But, keep in mind that you'd have to wait until they're available again.
Now, let me help you with your question. The State and Cities widget currently cannot be translated into its settings. However, you can inject the CSS codes below to change the labels:
#statesContainer label::after {
content: 'Estado';
font-size:17px;
}
#citiesContainer label::after {
content: 'Cidades';
font-size:17px;
}
label{
font-size:0px;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
color: white;
}
::-moz-placeholder { /* Firefox 19+ */
color: white;
}
:-ms-input-placeholder { /* IE 10+ */
color: white;
}
:-moz-placeholder { /* Firefox 18- */
color: white;
}
#citiesButton::after {
font-size: 16px;
content: 'mostrar cidades no menu suspenso';
height: 40px;
border-radius: 4px;
background: #18bd5b;
border: 0;
color: #fff;
padding: 0 15px;
cursor: pointer;
display: inline;
}
#citiesButton {
font-size: 0px;
}
Here's how to inject CSS code into the widget:
- Click on the Wand icon next to the widget.
- Go to the Custom CSS tab.
- Paste the CSS code.
- Click on the Update Widget button.
Here's the result:
Give it a try and let us know if you need any help.
-
Marcus_marcusmaceio894Respondido em 3 de setembro de 2024 às 16:50
Ótimo! Ficou faltando apenas o rótulo do campo "Country" que, nessa solução, desapareceu.
Também gostaria de aproveitar para saber se é possível estabelecer o país "Brazil" como resposta-padrão.
-
Gian Jotform SupportRespondido em 3 de setembro de 2024 às 17:21
Hi Marcus,
You can add this CSS code to the widget for the Country's label:
#countriesContainer label::after {
content: 'País';
font-size:17px;
}
As for the request to make Brazil the default country, there's no option to do that but you can set the widget to limit the country and add Brazil only. Here's how:
- Click on the Wand icon next to the widget.
- Add Brazil under "Limitar Países".
- Click on the Update Widget button.
Give it a try and let us know if you need any help.