mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
341acacba8
Recently we started giving admins a notice in the advice panel when their translations have become outdated due to changes in core. However, we didn't include any additional information. This PR adds more information about the outdated translation inside the site text edit page, together with an option to dismiss the warning.
62 lines
1.5 KiB
Handlebars
62 lines
1.5 KiB
Handlebars
<div class="edit-site-text">
|
|
<div class="title">
|
|
<h3>{{this.siteText.id}}</h3>
|
|
</div>
|
|
|
|
<div class="title">
|
|
<h4>{{i18n "admin.site_text.locale"}} {{this.localeFullName}}</h4>
|
|
</div>
|
|
|
|
{{#if this.isOutdated}}
|
|
<div class="outdated">
|
|
<h4>{{i18n "admin.site_text.outdated.title"}}</h4>
|
|
<p>{{i18n "admin.site_text.outdated.description"}}</p>
|
|
<h5>{{i18n "admin.site_text.outdated.old_default"}}</h5>
|
|
<p>{{this.siteText.old_default}}</p>
|
|
<h5>{{i18n "admin.site_text.outdated.new_default"}}</h5>
|
|
<p>{{this.siteText.new_default}}</p>
|
|
<DButton
|
|
@class="btn-default"
|
|
@action={{action "dismissOutdated"}}
|
|
@label="admin.site_text.outdated.dismiss"
|
|
/>
|
|
</div>
|
|
{{/if}}
|
|
|
|
<ExpandingTextArea
|
|
@value={{this.buffered.value}}
|
|
@rows="1"
|
|
@class="site-text-value"
|
|
/>
|
|
|
|
{{#if this.siteText.has_interpolation_keys}}
|
|
<div class="desc">{{i18n "admin.site_text.interpolation_keys"}}
|
|
{{this.interpolationKeys}}
|
|
</div>
|
|
{{/if}}
|
|
|
|
<SaveControls
|
|
@model={{this.siteText}}
|
|
@action={{action "saveChanges"}}
|
|
@saved={{this.saved}}
|
|
@saveDisabled={{this.saveDisabled}}
|
|
>
|
|
{{#if this.siteText.can_revert}}
|
|
<DButton
|
|
@action={{action "revertChanges"}}
|
|
@label="admin.site_text.revert"
|
|
@class="revert-site-text"
|
|
/>
|
|
{{/if}}
|
|
</SaveControls>
|
|
|
|
<LinkTo
|
|
@route="adminSiteText.index"
|
|
@query={{hash locale=this.locale}}
|
|
class="go-back"
|
|
>
|
|
{{d-icon "arrow-left"}}
|
|
{{i18n "admin.site_text.go_back"}}
|
|
</LinkTo>
|
|
|
|
</div> |