mirror of https://github.com/zlatinb/muwire
translate more strings
parent
81d8af57ed
commit
e0d006ec69
|
@ -20,6 +20,10 @@ public class Util {
|
||||||
// if we had a lot of these we could scan for them in the build and generate
|
// if we had a lot of these we could scan for them in the build and generate
|
||||||
// a file, but it's not worth it for just a handful.
|
// a file, but it's not worth it for just a handful.
|
||||||
private static final String[] jsStrings = {
|
private static final String[] jsStrings = {
|
||||||
|
_x("View Certificates"),
|
||||||
|
_x("Import"),
|
||||||
|
_x("Imported"),
|
||||||
|
_x("Unsubscribe"),
|
||||||
_x("Actions"),
|
_x("Actions"),
|
||||||
_x("Browse"),
|
_x("Browse"),
|
||||||
_x("Browsing"),
|
_x("Browsing"),
|
||||||
|
|
|
@ -228,8 +228,8 @@ function refreshLists() {
|
||||||
html += "<td>" + list.distrusted +"</td>"
|
html += "<td>" + list.distrusted +"</td>"
|
||||||
html += "<td>" + list.status + "</td>"
|
html += "<td>" + list.status + "</td>"
|
||||||
html += "<td>" + list.timestamp + "</td>"
|
html += "<td>" + list.timestamp + "</td>"
|
||||||
html += "<td>" + "<a href='#' onclick='window.unsubscribe(\"" + list.userB64 + "\");return false;'>Unsubscribe</a>" +
|
html += "<td>" + "<a href='#' onclick='window.unsubscribe(\"" + list.userB64 + "\");return false;'>" + _t("Unsubscribe") + "</a>" +
|
||||||
" <a href='#' onclick='window.forceUpdate(\"" + list.userB64 + "\");return false;'>Refresh</a>" +
|
" <a href='#' onclick='window.forceUpdate(\"" + list.userB64 + "\");return false;'>" + _t("Refresh") + "</a>" +
|
||||||
"</td>"
|
"</td>"
|
||||||
html += "</tr>"
|
html += "</tr>"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue