Skip to content

Commit

Permalink
Add more book title capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
DelazJ authored and nyalldawson committed Jan 20, 2018
1 parent 39c6aac commit 776fa23
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/qgssvgannotationdialog.cpp
Expand Up @@ -35,7 +35,7 @@ QgsSvgAnnotationDialog::QgsSvgAnnotationDialog( QgsMapCanvasAnnotationItem *item
setupUi( this );
connect( mBrowseToolButton, &QToolButton::clicked, this, &QgsSvgAnnotationDialog::mBrowseToolButton_clicked );
connect( mButtonBox, &QDialogButtonBox::clicked, this, &QgsSvgAnnotationDialog::mButtonBox_clicked );
setWindowTitle( tr( "SVG annotation" ) );
setWindowTitle( tr( "SVG Annotation" ) );
mEmbeddedWidget = new QgsAnnotationWidget( mItem );
mStackedWidget->addWidget( mEmbeddedWidget );
mStackedWidget->setCurrentWidget( mEmbeddedWidget );
Expand Down
2 changes: 1 addition & 1 deletion src/gui/attributetable/qgsfieldconditionalformatwidget.cpp
Expand Up @@ -57,7 +57,7 @@ void QgsFieldConditionalFormatWidget::setExpression()
context.setHighlightedVariables( QStringList() << QStringLiteral( "value" ) );

QgsExpressionBuilderDialog dlg( mLayer, mRuleEdit->text(), this, QStringLiteral( "generic" ), context );
dlg.setWindowTitle( tr( "Conditional style rule expression" ) );
dlg.setWindowTitle( tr( "Conditional Style Rule Expression" ) );

if ( dlg.exec() )
{
Expand Down
2 changes: 1 addition & 1 deletion src/gui/symbology/qgscptcitycolorrampdialog.cpp
Expand Up @@ -464,7 +464,7 @@ void QgsCptCityColorRampDialog::showHelp()
"(you must enable Experimental plugins in the plugin manager).\n\n"
);
QMessageBox *msg = new QMessageBox( this );
msg->setWindowTitle( tr( "Download more cpt-city Gradients" ) );
msg->setWindowTitle( tr( "Download More Cpt-city Gradients" ) );
msg->setText( helpText );
msg->exec();
}
Expand Down

0 comments on commit 776fa23

Please sign in to comment.