Skip to content

Commit

Permalink
Make "Show Hidden Files" translatable.
Browse files Browse the repository at this point in the history
  • Loading branch information
kbal authored and icefox committed Jan 31, 2010
1 parent 64de0ea commit a0ed17a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/htmls/dirlist.html
Expand Up @@ -85,7 +85,7 @@
<div id="box">
<h1>%2</h1>
<div class='showHide'>
<input type="checkbox" onchange="showHide()" name="Show Hidden Files"/> Show Hidden Files
<input type="checkbox" onchange="showHide()" name="Show Hidden Files"/> %5
</div>
<table>
%4
Expand Down
2 changes: 1 addition & 1 deletion src/network/fileaccesshandler.cpp
Expand Up @@ -185,7 +185,7 @@ void FileAccessReply::listDirectory()
dirlist += row.arg(classes).arg(link.arg(className).arg(addr).arg(list[i].fileName())).arg(size).arg(modified);
}

html = html.arg(classes).arg(dirlist);
html = html.arg(classes).arg(dirlist).arg(tr("Show Hidden Files"));

// Save result to buffer
QTextStream stream(&buffer);
Expand Down

0 comments on commit a0ed17a

Please sign in to comment.