UX: copy and formating improvements to local-dates form (#7343)

This commit is contained in:
Joffrey JAFFEUX
2019-04-09 10:33:01 +02:00
committed by GitHub
parent 6d0e8821f8
commit ad5edc8bb1
3 changed files with 11 additions and 5 deletions

View File

@ -167,6 +167,14 @@ export default Ember.Component.extend({
return moment.tz.guess();
},
@computed("currentUserTimezone")
formatedCurrentUserTimezone(timezone) {
return timezone
.replace("_", " ")
.replace("Etc/", "")
.split("/");
},
@computed("formats")
previewedFormats(formats) {
return formats.map(format => {

View File

@ -1,5 +1,5 @@
{{#d-modal-body
title="discourse_local_dates.create.modal_title"
title="discourse_local_dates.title"
class="discourse-local-dates-create-modal"
style="overflow: auto"}}
@ -10,8 +10,7 @@
</div>
{{else}}
<div class="preview alert alert-info">
<b>{{currentUserTimezone}}: </b>
{{currentPreview}}
<b>{{formatedCurrentUserTimezone}} </b>{{currentPreview}}
</div>
{{/unless}}