diff --git a/js/expand.js b/js/expand.js
index d78cea9a..0e3537a8 100644
--- a/js/expand.js
+++ b/js/expand.js
@@ -1,5 +1,5 @@
/*
- *expand.js
+ * expand.js
* https://github.com/savetheinternet/Tinyboard/blob/master/js/expand.js
*
* Released under the MIT license
@@ -17,7 +17,7 @@ $(document).ready(function(){
$('div.post.op span.omitted').each(function() {
$(this)
- .html($(this).text().replace(/Click reply to view\./, 'Click to expand.'))
+ .html($(this).text().replace(_("Click reply to view."), ''+_("Click to expand")+'.'))
.find('a').click(function() {
var thread = $(this).parent().parent().parent();
var id = thread.attr('id').replace(/^thread_/, '');
@@ -38,7 +38,7 @@ $(document).ready(function(){
$(document).trigger('new_post', this);
}
});
- $('Hide expanded replies.')
+ $('' + _('Hide expanded replies') + '.')
.insertAfter(thread.find('span.omitted').css('display', 'none'))
.click(function() {
thread.find('.expanded').remove();