ConfigSnapshotDialog: Fix app name interpolation
This commit is contained in:
parent
7560de0704
commit
023ca6fbe6
2 changed files with 996 additions and 943 deletions
File diff suppressed because it is too large
Load diff
|
@ -67,7 +67,7 @@ static wxString generate_html_row(const Config::Snapshot &snapshot, bool row_eve
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! compatible) {
|
if (! compatible) {
|
||||||
text += "<p align=\"right\">" + _(L("Incompatible with this Slic3r")) + "</p>";
|
text += "<p align=\"right\">" + wxString::Format(_(L("Incompatible with this %s")), SLIC3R_APP_NAME) + "</p>";
|
||||||
}
|
}
|
||||||
else if (! snapshot_active)
|
else if (! snapshot_active)
|
||||||
text += "<p align=\"right\"><a href=\"" + snapshot.id + "\">" + _(L("Activate")) + "</a></p>";
|
text += "<p align=\"right\"><a href=\"" + snapshot.id + "\">" + _(L("Activate")) + "</a></p>";
|
||||||
|
|
Loading…
Reference in a new issue