Skip to content

Commit

Permalink
Untraslated strings
Browse files Browse the repository at this point in the history
  • Loading branch information
MaksVasilev authored and amtriathlon committed Aug 24, 2021
1 parent e02e19a commit c973bd7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Gui/AbstractView.cpp
Expand Up @@ -721,8 +721,8 @@ AbstractView::setPerspectives(QComboBox *perspectiveSelector, bool selectChart)
foreach(Perspective *page, perspectives_) {
perspectiveSelector->addItem(page->title_);
}
perspectiveSelector->addItem("Add New Perspective...");
perspectiveSelector->addItem("Manage Perspectives...");
perspectiveSelector->addItem(tr("Add New Perspective..."));
perspectiveSelector->addItem(tr("Manage Perspectives..."));
perspectiveSelector->insertSeparator(perspectives_.count());
perspectiveactive=false;

Expand Down
2 changes: 1 addition & 1 deletion src/Gui/PerspectiveDialog.cpp
Expand Up @@ -31,7 +31,7 @@
PerspectiveDialog::PerspectiveDialog(QWidget *parent, AbstractView *tabView) : QDialog(parent), tabView(tabView), active(false)
{

setWindowTitle("Manage Perspectives");
setWindowTitle(tr("Manage Perspectives"));
setMinimumWidth(450*dpiXFactor);
setMinimumHeight(450*dpiXFactor);

Expand Down

0 comments on commit c973bd7

Please sign in to comment.