Skip to content

Commit

Permalink
Fix capitalisation of strings
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed May 29, 2014
1 parent ce90341 commit 0e70646
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/app/composer/qgscomposer.cpp
Expand Up @@ -266,19 +266,19 @@ QgsComposer::QgsComposer( QgisApp *qgis, const QString& title )
mActionPreviewModeOff->setCheckable( true );
mActionPreviewModeOff->setChecked( true );
connect( mActionPreviewModeOff, SIGNAL( triggered() ), this, SLOT( disablePreviewMode() ) );
mActionPreviewModeGrayscale = new QAction( tr( "Simulate photocopy (grayscale)" ), this );
mActionPreviewModeGrayscale = new QAction( tr( "Simulate Photocopy (Grayscale)" ), this );
mActionPreviewModeGrayscale->setStatusTip( tr( "Simulate photocopy (grayscale)" ) );
mActionPreviewModeGrayscale->setCheckable( true );
connect( mActionPreviewModeGrayscale, SIGNAL( triggered() ), this, SLOT( activateGrayscalePreview() ) );
mActionPreviewModeMono = new QAction( tr( "Simulate fax (mono)" ), this );
mActionPreviewModeMono = new QAction( tr( "Simulate Fax (Mono)" ), this );
mActionPreviewModeMono->setStatusTip( tr( "Simulate fax (mono)" ) );
mActionPreviewModeMono->setCheckable( true );
connect( mActionPreviewModeMono, SIGNAL( triggered() ), this, SLOT( activateMonoPreview() ) );
mActionPreviewProtanope = new QAction( tr( "Simulate color blindness (Protanope)" ), this );
mActionPreviewProtanope = new QAction( tr( "Simulate Color Blindness (Protanope)" ), this );
mActionPreviewProtanope->setStatusTip( tr( "Simulate color blindness (Protanope)" ) );
mActionPreviewProtanope->setCheckable( true );
connect( mActionPreviewProtanope, SIGNAL( triggered() ), this, SLOT( activateProtanopePreview() ) );
mActionPreviewDeuteranope = new QAction( tr( "Simulate color blindness (Deuteranope)" ), this );
mActionPreviewDeuteranope = new QAction( tr( "Simulate Color Blindness (Deuteranope)" ), this );
mActionPreviewDeuteranope->setStatusTip( tr( "Simulate color blindness (Deuteranope)" ) );
mActionPreviewDeuteranope->setCheckable( true );
connect( mActionPreviewDeuteranope, SIGNAL( triggered() ), this, SLOT( activateDeuteranopePreview() ) );
Expand Down
8 changes: 4 additions & 4 deletions src/ui/qgisapp.ui
Expand Up @@ -2200,7 +2200,7 @@ Acts on currently active editable layer</string>
<bool>true</bool>
</property>
<property name="text">
<string>Simulate photocopy (grayscale)</string>
<string>Simulate Photocopy (Grayscale)</string>
</property>
<property name="toolTip">
<string>Simulate photocopy (grayscale)</string>
Expand All @@ -2211,7 +2211,7 @@ Acts on currently active editable layer</string>
<bool>true</bool>
</property>
<property name="text">
<string>Simulate fax (mono)</string>
<string>Simulate Fax (Mono)</string>
</property>
<property name="toolTip">
<string>Simulate fax (mono)</string>
Expand All @@ -2222,7 +2222,7 @@ Acts on currently active editable layer</string>
<bool>true</bool>
</property>
<property name="text">
<string>Simulate color blindness (protanope)</string>
<string>Simulate Color Blindness (Protanope)</string>
</property>
<property name="toolTip">
<string>Simulate color blindness (protanope)</string>
Expand All @@ -2233,7 +2233,7 @@ Acts on currently active editable layer</string>
<bool>true</bool>
</property>
<property name="text">
<string>Simulate color blindness (deuteranope)</string>
<string>Simulate Color Blindness (Deuteranope)</string>
</property>
<property name="toolTip">
<string>Simulate color blindness (deuteranope)</string>
Expand Down

0 comments on commit 0e70646

Please sign in to comment.