Skip to content

Commit

Permalink
Some small text fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jojo-Schmitz committed Dec 31, 2016
1 parent 98e51d9 commit 428e67e
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 18 deletions.
4 changes: 2 additions & 2 deletions mscore/inspector/inspector_ambitus.ui
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@
<item>
<widget class="QLabel" name="label_3">
<property name="text">
<string>Oct.</string>
<string>Oct.:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
Expand Down Expand Up @@ -710,7 +710,7 @@
<item>
<widget class="QLabel" name="label_2">
<property name="text">
<string>Oct.</string>
<string>Oct.:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
Expand Down
3 changes: 0 additions & 3 deletions mscore/inspector/inspector_element.ui
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,6 @@
</item>
<item row="6" column="2">
<widget class="QToolButton" name="vRaster">
<property name="accessibleName">
<string/>
</property>
<property name="text">
<string notr="true"/>
</property>
Expand Down
4 changes: 2 additions & 2 deletions mscore/inspector/inspector_fret.ui
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<x>0</x>
<y>0</y>
<width>142</width>
<height>97</height>
<height>108</height>
</rect>
</property>
<property name="accessibleName">
Expand Down Expand Up @@ -108,7 +108,7 @@
<string>Reset to default</string>
</property>
<property name="accessibleName">
<string>Reset 'Size in staff space units' value</string>
<string>Reset 'Scale' value</string>
</property>
<property name="text">
<string notr="true"/>
Expand Down
10 changes: 5 additions & 5 deletions mscore/newwizard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ TitleWizard::TitleWizard(QWidget* parent)
NewWizardPage1::NewWizardPage1(QWidget* parent)
: QWizardPage(parent)
{
setTitle(tr("Create New Score"));
setTitle(tr("Create New Score..."));
setSubTitle(tr("This wizard creates a new score"));
setAccessibleName(QWizardPage::title());
setAccessibleDescription(QWizardPage::subTitle());
Expand Down Expand Up @@ -189,7 +189,7 @@ NewWizardPage2::NewWizardPage2(QWidget* parent)
: QWizardPage(parent)
{
setFinalPage(true);
setTitle(tr("Create New Score"));
setTitle(tr("Create New Score..."));
setSubTitle(tr("Define a set of instruments. Each instrument"
" is represented by one or more staves"));
setAccessibleName(title());
Expand Down Expand Up @@ -249,7 +249,7 @@ NewWizardPage3::NewWizardPage3(QWidget* parent)
: QWizardPage(parent)
{
setFinalPage(true);
setTitle(tr("Create New Score"));
setTitle(tr("Create New Score..."));
setSubTitle(tr("Create Time Signature"));
setAccessibleName(title());
setAccessibleDescription(subTitle());
Expand All @@ -268,7 +268,7 @@ NewWizardPage4::NewWizardPage4(QWidget* parent)
: QWizardPage(parent)
{
setFinalPage(true);
setTitle(tr("Create New Score"));
setTitle(tr("Create New Score..."));
setSubTitle(tr("Select Template File:"));
setAccessibleName(title());
setAccessibleDescription(subTitle());
Expand Down Expand Up @@ -354,7 +354,7 @@ NewWizardPage5::NewWizardPage5(QWidget* parent)
: QWizardPage(parent)
{
setFinalPage(true);
setTitle(tr("Create New Score"));
setTitle(tr("Create New Score..."));
setSubTitle(tr("Select Key Signature and Tempo:"));
setAccessibleName(title());
setAccessibleDescription(subTitle());
Expand Down
6 changes: 3 additions & 3 deletions mscore/pluginCreator.ui
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
<x>0</x>
<y>0</y>
<width>800</width>
<height>26</height>
<height>21</height>
</rect>
</property>
<widget class="QMenu" name="menuFile">
Expand Down Expand Up @@ -124,15 +124,15 @@
</action>
<action name="actionOpen">
<property name="text">
<string>Open</string>
<string>Open...</string>
</property>
<property name="iconVisibleInMenu">
<bool>false</bool>
</property>
</action>
<action name="actionSave">
<property name="text">
<string>Save</string>
<string>Save As...</string>
</property>
<property name="iconVisibleInMenu">
<bool>false</bool>
Expand Down
2 changes: 1 addition & 1 deletion mscore/scoreBrowser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ ScoreItem* ScoreBrowser::genScoreItem(const QFileInfo& fi, ScoreListWidget* l)
f.setBold(true);
}
else if (fi.completeBaseName() == "Create_New_Score") {
item->setText(tr("Create New Score"));
item->setText(tr("Create New Score..."));
f.setBold(true);
}
else {
Expand Down
2 changes: 1 addition & 1 deletion mscore/webpage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ void MyWebView::stopBusy(bool val)
" <div align=\"center\"><a class=\"close\" href=\"#\" onclick=\"return closePermanently();\">%4</div>"
"</div></div>"
"</body></html>")
.arg(tr("Could not/nconnect"))
.arg(tr("Could not\nconnect"))
.arg(tr("To connect with the community,\nyou need to have internet\nconnection enabled") )
.arg(tr("Retry"))
.arg(tr("Close this permanently")).replace("\n", "<br/>"),
Expand Down
2 changes: 1 addition & 1 deletion zerberus/zerberusgui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ SfzListDialog::SfzListDialog(QWidget* parent)
list->setSelectionMode(QAbstractItemView::ExtendedSelection);
okButton = new QPushButton;
cancelButton = new QPushButton;
okButton->setText(tr("Load"));
okButton->setText(tr("Load..."));
cancelButton->setText(tr("Cancel"));
QVBoxLayout* layout = new QVBoxLayout;
buttonBox = new QDialogButtonBox;
Expand Down

0 comments on commit 428e67e

Please sign in to comment.