mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:11:08 -06:00
DEV: Correct i18n helper invocation case (#24806)
This commit is contained in:
parent
4a62676512
commit
cc74bcdc85
@ -13,7 +13,7 @@
|
||||
<div class="control-group form-templates__editor">
|
||||
<div class="form-templates__quick-insert-field-buttons">
|
||||
<span>
|
||||
{{I18n "admin.form_templates.quick_insert_fields.add_new_field"}}
|
||||
{{i18n "admin.form_templates.quick_insert_fields.add_new_field"}}
|
||||
</span>
|
||||
{{#each this.quickInsertFields as |field|}}
|
||||
<DButton
|
||||
|
@ -23,7 +23,7 @@
|
||||
{{#if this.composer.model.viewOpenOrFullscreen}}
|
||||
<div
|
||||
role="form"
|
||||
aria-label={{I18n this.composer.saveLabel}}
|
||||
aria-label={{i18n this.composer.saveLabel}}
|
||||
class="reply-area
|
||||
{{if this.composer.canEditTags 'with-tags' 'without-tags'}}
|
||||
{{if
|
||||
|
@ -3,7 +3,7 @@
|
||||
@id="reply-title"
|
||||
@maxLength={{this.titleMaxLength}}
|
||||
@placeholderKey={{this.composer.titlePlaceholder}}
|
||||
@aria-label={{I18n this.composer.titlePlaceholder}}
|
||||
@aria-label={{i18n this.composer.titlePlaceholder}}
|
||||
@disabled={{this.disabled}}
|
||||
@autocomplete="off"
|
||||
/>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<DTextarea
|
||||
@value={{this.shareUrl}}
|
||||
@class="topic-share-url"
|
||||
@aria-label={{I18n "share.url"}}
|
||||
@aria-label={{i18n "share.url"}}
|
||||
/>
|
||||
|
||||
<div class="sources">
|
||||
|
Loading…
Reference in New Issue
Block a user