Shorten some more menu item names.

This commit is contained in:
ccd0 2015-11-22 18:09:27 -08:00
parent e103f0bcfb
commit d53a1905b4
3 changed files with 5 additions and 5 deletions

View File

@ -32,7 +32,7 @@ PostHiding =
# Hide
div = $.el 'div',
className: 'hide-reply-link'
textContent: 'Hide reply'
textContent: 'Hide'
apply = $.el 'a',
textContent: 'Apply'
@ -64,7 +64,7 @@ PostHiding =
# Show
div = $.el 'div',
className: 'show-reply-link'
textContent: 'Show reply'
textContent: 'Show'
apply = $.el 'a',
textContent: 'Apply'

View File

@ -61,7 +61,7 @@ ThreadHiding =
div = $.el 'div',
className: 'hide-thread-link'
textContent: 'Hide thread'
textContent: 'Hide'
apply = $.el 'a',
textContent: 'Apply'
@ -82,7 +82,7 @@ ThreadHiding =
div = $.el 'a',
className: 'show-thread-link'
textContent: 'Show thread'
textContent: 'Show'
href: 'javascript:;'
$.on div, 'click', ThreadHiding.menu.show

View File

@ -12,7 +12,7 @@ ReportLink =
order: 10
open: (post) ->
unless post.isDead or (post.thread.isDead and not post.thread.isArchived)
a.textContent = 'Report this post'
a.textContent = 'Report'
ReportLink.url = "//sys.4chan.org/#{post.board}/imgboard.php?mode=report&no=#{post}"
ReportLink.height = 180
else if Conf['Archive Report']