Commit 3988beb8 authored by Marc Schumann's avatar Marc Schumann

Comment toggling text is not localizable because it's in a .js file.

parent 20e47ded
...@@ -52,13 +52,11 @@ function toggle_all_comments(action) { ...@@ -52,13 +52,11 @@ function toggle_all_comments(action) {
function collapse_comment(link, comment) { function collapse_comment(link, comment) {
link.innerHTML = "[+]"; link.innerHTML = "[+]";
link.title = "Expand the comment.";
YAHOO.util.Dom.addClass(comment, 'collapsed'); YAHOO.util.Dom.addClass(comment, 'collapsed');
} }
function expand_comment(link, comment) { function expand_comment(link, comment) {
link.innerHTML = "[-]"; link.innerHTML = "[-]";
link.title = "Collapse the comment";
YAHOO.util.Dom.removeClass(comment, 'collapsed'); YAHOO.util.Dom.removeClass(comment, 'collapsed');
} }
...@@ -112,11 +110,11 @@ function wrapReplyText(text) { ...@@ -112,11 +110,11 @@ function wrapReplyText(text) {
/* This way, we are sure that browsers which do not support JS /* This way, we are sure that browsers which do not support JS
* won't display this link */ * won't display this link */
function addCollapseLink(count) { function addCollapseLink(count, title) {
document.write(' <a href="#" class="bz_collapse_comment"' + document.write(' <a href="#" class="bz_collapse_comment"' +
' id="comment_link_' + count + ' id="comment_link_' + count +
'" onclick="toggle_comment_display(this, ' + count + '" onclick="toggle_comment_display(this, ' + count +
'); return false;" title="Collapse the comment.">[-]<\/a> '); '); return false;" title="' + title + '">[-]<\/a> ');
} }
function goto_add_comments( anchor ){ function goto_add_comments( anchor ){
......
...@@ -146,7 +146,7 @@ ...@@ -146,7 +146,7 @@
[% END %] [% END %]
>reply</a>] >reply</a>]
<script type="text/javascript"><!-- <script type="text/javascript"><!--
addCollapseLink([% count %]); // --> addCollapseLink([% count %], 'Toggle comment display'); // -->
</script> </script>
</span> </span>
[% END %] [% END %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment