diff --git a/4chan_x.user.js b/4chan_x.user.js
index ed0fcbb07..9cace7321 100644
--- a/4chan_x.user.js
+++ b/4chan_x.user.js
@@ -1394,7 +1394,7 @@
var link;
if (Conf['Hide Original Post Form']) {
link = $.el('h1', {
- innerHTML: "" + (g.REPLY ? 'Quick Reply' : 'New Thread') + ""
+ innerHTML: "" + (g.REPLY ? 'Reply to Thread' : 'Start a Thread') + ""
});
$.on(link.firstChild, 'click', function() {
QR.open();
diff --git a/script.coffee b/script.coffee
index 388f6c4cc..372f9f1a0 100644
--- a/script.coffee
+++ b/script.coffee
@@ -1025,7 +1025,7 @@ QR =
asyncInit: ->
if Conf['Hide Original Post Form']
- link = $.el 'h1', innerHTML: "#{if g.REPLY then 'Quick Reply' else 'New Thread'}"
+ link = $.el 'h1', innerHTML: "#{if g.REPLY then 'Reply to Thread' else 'Start a Thread'}"
$.on link.firstChild, 'click', ->
QR.open()
$('select', QR.el).value = 'new' unless g.REPLY