Browse Source

js i18n: hide-locked-threads.js i18n

pull/40/head
czaks 11 years ago
committed by Michael Foster
parent
commit
bf4eca82b6
  1. 4
      js/toggle-locked-threads.js

4
js/toggle-locked-threads.js

@ -36,7 +36,7 @@ $(document).ready(function(){
$('hr:first').before('<div id="toggle-locked-threads" style="text-align:right"><a class="unimportant" href="javascript:void(0)">-</a></div>');
$('div#toggle-locked-threads a')
.text((hide_locked_threads ? 'Show' : 'Hide') + ' locked threads')
.text(hide_locked_threads ? _('Show locked threads') : _('Hide locked threads'))
.click(function() {
hide_locked_threads = !hide_locked_threads;
if (hide_locked_threads) {
@ -51,7 +51,7 @@ $(document).ready(function(){
delete localStorage.hidelockedthreads;
}
$(this).text((hide_locked_threads ? 'Show' : 'Hide') + ' locked threads')
$(this).text(hide_locked_threads ? _('Show locked threads') : _('Hide locked threads'))
});
if (hide_locked_threads) {

Loading…
Cancel
Save