Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2019-04-26 12:05:00 +0300
committerYuSanka <yusanka@gmail.com>2019-04-26 12:05:00 +0300
commit023ca6fbe6921efcec3573397fad6c129488faeb (patch)
tree3902790a158bebd57ab4494a2efb4a60ec1db88f /src/slic3r/GUI/ConfigSnapshotDialog.cpp
parent7560de07040455ef0f2081d233607df965c9944a (diff)
ConfigSnapshotDialog: Fix app name interpolation
Diffstat (limited to 'src/slic3r/GUI/ConfigSnapshotDialog.cpp')
-rw-r--r--src/slic3r/GUI/ConfigSnapshotDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/ConfigSnapshotDialog.cpp b/src/slic3r/GUI/ConfigSnapshotDialog.cpp
index b8634918b..bdf80c27c 100644
--- a/src/slic3r/GUI/ConfigSnapshotDialog.cpp
+++ b/src/slic3r/GUI/ConfigSnapshotDialog.cpp
@@ -67,7 +67,7 @@ static wxString generate_html_row(const Config::Snapshot &snapshot, bool row_eve
}
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)
text += "<p align=\"right\"><a href=\"" + snapshot.id + "\">" + _(L("Activate")) + "</a></p>";