mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-03-24 05:42:03 -04:00
Merge pull request #3335 from riking/more-choices
UX: Use ellipsis in topic wrench menu for 'more choices'
This commit is contained in:
commit
0fcb98c80a
2 changed files with 16 additions and 12 deletions
|
@ -2,7 +2,7 @@
|
||||||
{{#if pinned_at}}
|
{{#if pinned_at}}
|
||||||
<div class="feature-section">
|
<div class="feature-section">
|
||||||
<div class="button">
|
<div class="button">
|
||||||
{{d-button action="unpin" icon="thumb-tack" label="topic.actions.unpin" class="btn-primary"}}
|
{{d-button action="unpin" icon="thumb-tack" label="topic.feature.unpin" class="btn-primary"}}
|
||||||
</div>
|
</div>
|
||||||
<div class="desc">
|
<div class="desc">
|
||||||
<p>{{{unPinMessage}}}</p>
|
<p>{{{unPinMessage}}}</p>
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
{{else}}
|
{{else}}
|
||||||
<div class="feature-section">
|
<div class="feature-section">
|
||||||
<div class="button">
|
<div class="button">
|
||||||
{{d-button action="pin" icon="thumb-tack" label="topic.actions.pin" class="btn-primary"}}
|
{{d-button action="pin" icon="thumb-tack" label="topic.feature.pin" class="btn-primary"}}
|
||||||
</div>
|
</div>
|
||||||
<div class="desc">
|
<div class="desc">
|
||||||
<p>{{{pinMessage}}}</p>
|
<p>{{{pinMessage}}}</p>
|
||||||
|
@ -41,7 +41,7 @@
|
||||||
<hr>
|
<hr>
|
||||||
<div class="feature-section">
|
<div class="feature-section">
|
||||||
<div class="button">
|
<div class="button">
|
||||||
{{d-button action="pinGlobally" icon="thumb-tack" label="topic.actions.pin_globally" class="btn-primary"}}
|
{{d-button action="pinGlobally" icon="thumb-tack" label="topic.feature.pin_globally" class="btn-primary"}}
|
||||||
</div>
|
</div>
|
||||||
<div class="desc">
|
<div class="desc">
|
||||||
<p>{{i18n "topic.feature_topic.pin_globally"}}</p>
|
<p>{{i18n "topic.feature_topic.pin_globally"}}</p>
|
||||||
|
@ -58,9 +58,9 @@
|
||||||
<div class="feature-section">
|
<div class="feature-section">
|
||||||
<div class="button">
|
<div class="button">
|
||||||
{{#if isBanner}}
|
{{#if isBanner}}
|
||||||
{{d-button action="removeBanner" icon="thumb-tack" label="topic.actions.remove_banner" class="btn-primary"}}
|
{{d-button action="removeBanner" icon="thumb-tack" label="topic.feature.remove_banner" class="btn-primary"}}
|
||||||
{{else}}
|
{{else}}
|
||||||
{{d-button action="makeBanner" icon="thumb-tack" label="topic.actions.make_banner" class="btn-primary"}}
|
{{d-button action="makeBanner" icon="thumb-tack" label="topic.feature.make_banner" class="btn-primary"}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
<div class="desc">
|
<div class="desc">
|
||||||
|
|
|
@ -1003,18 +1003,22 @@ en:
|
||||||
delete: "Delete Topic"
|
delete: "Delete Topic"
|
||||||
open: "Open Topic"
|
open: "Open Topic"
|
||||||
close: "Close Topic"
|
close: "Close Topic"
|
||||||
auto_close: "Auto Close"
|
multi_select: "Select Posts…"
|
||||||
make_banner: "Banner Topic"
|
auto_close: "Auto Close…"
|
||||||
remove_banner: "Remove Banner Topic"
|
pin: "Pin Topic…"
|
||||||
pin: "Pin Topic"
|
unpin: "Un-Pin Topic…"
|
||||||
unpin: "Un-Pin Topic"
|
|
||||||
pin_globally: "Pin Topic Globally"
|
|
||||||
unarchive: "Unarchive Topic"
|
unarchive: "Unarchive Topic"
|
||||||
archive: "Archive Topic"
|
archive: "Archive Topic"
|
||||||
invisible: "Make Unlisted"
|
invisible: "Make Unlisted"
|
||||||
visible: "Make Listed"
|
visible: "Make Listed"
|
||||||
reset_read: "Reset Read Data"
|
reset_read: "Reset Read Data"
|
||||||
multi_select: "Select Posts"
|
|
||||||
|
feature:
|
||||||
|
pin: "Pin Topic"
|
||||||
|
unpin: "Un-Pin Topic"
|
||||||
|
pin_globally: "Pin Topic Globally"
|
||||||
|
make_banner: "Banner Topic"
|
||||||
|
remove_banner: "Remove Banner Topic"
|
||||||
|
|
||||||
reply:
|
reply:
|
||||||
title: 'Reply'
|
title: 'Reply'
|
||||||
|
|
Loading…
Add table
Reference in a new issue