Skip to content

Commit d183f5f

Browse files
committedJul 16, 2018
Capitalization
1 parent a5c399e commit d183f5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/gui/qgsadvanceddigitizingdockwidget.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ QgsAdvancedDigitizingDockWidget::QgsAdvancedDigitizingDockWidget( QgsMapCanvas *
115115
for ( QList<double>::const_iterator it = anglesDouble.constBegin(); it != anglesDouble.constEnd(); ++it )
116116
{
117117
if ( *it == 0 )
118-
menuText = tr( "Do not snap to common angles" );
118+
menuText = tr( "Do Not Snap to Common Angles" );
119119
else
120-
menuText = QString( tr( "%1, %2, %3, %4° " ) ).arg( *it, 0, 'f', 1 ).arg( *it * 2, 0, 'f', 1 ).arg( *it * 3, 0, 'f', 1 ).arg( *it * 4, 0, 'f', 1 );
120+
menuText = QString( tr( "%1, %2, %3, %4°…" ) ).arg( *it, 0, 'f', 1 ).arg( *it * 2, 0, 'f', 1 ).arg( *it * 3, 0, 'f', 1 ).arg( *it * 4, 0, 'f', 1 );
121121
commonAngles << QPair<double, QString>( *it, menuText );
122122
}
123123
for ( QList< QPair<double, QString > >::const_iterator it = commonAngles.constBegin(); it != commonAngles.constEnd(); ++it )

0 commit comments

Comments
 (0)
Please sign in to comment.