Skip to content

Commit

Permalink
fix: 24h datetime format
Browse files Browse the repository at this point in the history
  • Loading branch information
rogeriolino committed Nov 25, 2024
1 parent 3b3bb33 commit 1c8bc28
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/Resources/translations/NovosgaTriageBundle.en.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
</trans-unit>
<trans-unit id="44">
<source>MM/DD/YYYY HH:mm:ss</source>
<target>MM/DD/YYYY hh:mm:ss</target>
<target>MM/DD/YYYY HH:mm:ss</target>

</trans-unit>
<trans-unit id="45">
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/translations/NovosgaTriageBundle.en_US.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
</trans-unit>
<trans-unit id="44">
<source>MM/DD/YYYY HH:mm:ss</source>
<target>MM/DD/YYYY hh:mm:ss</target>
<target>MM/DD/YYYY HH:mm:ss</target>

</trans-unit>
<trans-unit id="45">
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/translations/NovosgaTriageBundle.es.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
</trans-unit>
<trans-unit id="44">
<source>MM/DD/YYYY HH:mm:ss</source>
<target>DD/MM/YYYY hh:mm:ss</target>
<target>DD/MM/YYYY HH:mm:ss</target>

</trans-unit>
<trans-unit id="45">
Expand Down
4 changes: 2 additions & 2 deletions src/Resources/translations/NovosgaTriageBundle.es_AR.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
</trans-unit>
<trans-unit id="44">
<source>MM/DD/YYYY HH:mm:ss</source>
<target>DD/MM/YYYY hh:mm:ss</target>
<target>DD/MM/YYYY HH:mm:ss</target>

</trans-unit>
<trans-unit id="45">
Expand Down Expand Up @@ -253,4 +253,4 @@
</trans-unit>
</body>
</file>
</xliff>
</xliff>
2 changes: 1 addition & 1 deletion src/Resources/translations/NovosgaTriageBundle.pt_BR.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
</trans-unit>
<trans-unit id="44">
<source>MM/DD/YYYY HH:mm:ss</source>
<target>DD/MM/YYYY hh:mm:ss</target>
<target>DD/MM/YYYY HH:mm:ss</target>
</trans-unit>
<trans-unit id="45">
<source>MM/DD/YYYY</source>
Expand Down
6 changes: 3 additions & 3 deletions src/Resources/views/default/index.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -352,17 +352,17 @@
</td>
<td>
<span v-if="atendimento.dataChegada">
{{moment(atendimento.dataChegada, 'YYYY-MM-DD hh:mm:ss').format(dateTimeFormat)}}
{{moment(atendimento.dataChegada, 'YYYY-MM-DD HH:mm:ss').format(dateTimeFormat)}}
</span>
</td>
<td>
<span v-if="atendimento.dataInicio">
{{moment(atendimento.dataInicio, 'YYYY-MM-DD hh:mm:ss').format(dateTimeFormat)}}
{{moment(atendimento.dataInicio, 'YYYY-MM-DD HH:mm:ss').format(dateTimeFormat)}}
</span>
</td>
<td>
<span v-if="atendimento.dataFim">
{{moment(atendimento.dataFim, 'YYYY-MM-DD hh:mm:ss').format(dateTimeFormat)}}
{{moment(atendimento.dataFim, 'YYYY-MM-DD HH:mm:ss').format(dateTimeFormat)}}
</span>
</td>
<td>
Expand Down

0 comments on commit 1c8bc28

Please sign in to comment.