mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:59:50 +08:00
UX: Add missing labels to mobile composer buttons
This commit is contained in:
parent
a14c9078d3
commit
13c9d7e704
|
@ -11,6 +11,11 @@ export default Component.extend({
|
|||
: "composer.collapse";
|
||||
},
|
||||
|
||||
@discourseComputed("showToolbar")
|
||||
toggleToolbarTitle(showToolbar) {
|
||||
return showToolbar ? "composer.hide_toolbar" : "composer.show_toolbar";
|
||||
},
|
||||
|
||||
@discourseComputed("composeState")
|
||||
fullscreenTitle(composeState) {
|
||||
return composeState === "draft"
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
{{flat-button
|
||||
class="toggle-toolbar"
|
||||
icon="bars"
|
||||
action=toggleToolbar}}
|
||||
action=toggleToolbar
|
||||
title=toggleToolbarTitle}}
|
||||
{{/if}}
|
||||
|
||||
{{flat-button
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
{{/if}}
|
||||
</div>
|
||||
{{/unless}}
|
||||
{{composer-toggles composeState=model.composeState
|
||||
{{composer-toggles composeState=model.composeState showToolbar=showToolbar
|
||||
toggleComposer=(action "toggle")
|
||||
toggleToolbar=(action "toggleToolbar")
|
||||
toggleFullscreen=(action "fullscreenComposer")}}
|
||||
|
@ -190,12 +190,12 @@
|
|||
|
||||
{{#if site.mobileView}}
|
||||
{{#if allowUpload}}
|
||||
<a class="btn btn-default no-text mobile-file-upload {{if isUploading "hidden"}}">
|
||||
<a class="btn btn-default no-text mobile-file-upload {{if isUploading "hidden"}}" aria-label={{i18n "composer.upload_title"}}>
|
||||
{{d-icon uploadIcon}}
|
||||
</a>
|
||||
{{/if}}
|
||||
|
||||
<a href class="btn btn-default no-text mobile-preview" title={{i18n "composer.show_preview"}} {{action "togglePreview"}}>
|
||||
<a href class="btn btn-default no-text mobile-preview" title={{i18n "composer.show_preview"}} {{action "togglePreview"}} aria-label={{i18n "preview"}}>
|
||||
{{d-icon "desktop"}}
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1758,7 +1758,6 @@ en:
|
|||
lora: "Lora"
|
||||
mukta: "Mukta"
|
||||
|
||||
|
||||
shortcut_modifier_key:
|
||||
shift: "Shift"
|
||||
ctrl: "Ctrl"
|
||||
|
@ -1919,6 +1918,8 @@ en:
|
|||
abandon: "close composer and discard draft"
|
||||
enter_fullscreen: "enter fullscreen composer"
|
||||
exit_fullscreen: "exit fullscreen composer"
|
||||
show_toolbar: "show composer toolbar"
|
||||
hide_toolbar: "hide composer toolbar"
|
||||
modal_ok: "OK"
|
||||
modal_cancel: "Cancel"
|
||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||
|
|
Loading…
Reference in New Issue
Block a user