Skip to content

Commit c5438fb

Browse files
committedAug 14, 2012
translation string fixes and german translation update
1 parent 0b6da7e commit c5438fb

File tree

6 files changed

+2059
-1240
lines changed

6 files changed

+2059
-1240
lines changed
 

‎doc/TRANSLATORS

Lines changed: 38 additions & 38 deletions
Large diffs are not rendered by default.

‎i18n/qgis_de.ts

Lines changed: 2014 additions & 1195 deletions
Large diffs are not rendered by default.

‎src/gui/symbology-ng/qgsstylev2exportimportdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ void QgsStyleV2ExportImportDialog::moveStyles( QModelIndexList* selection, QgsSt
230230
if ( !ok )
231231
{
232232
QMessageBox::warning( this, tr( "New Group" ),
233-
tr( "New group cannot be without a name. Kindly enter a name." ) );
233+
tr( "New group cannot be created without a name. Kindly enter a name." ) );
234234
continue;
235235
}
236236
// validate name

‎src/gui/symbology-ng/qgsstylev2managerdialog.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ void QgsStyleV2ManagerDialog::addGroup()
771771
{
772772
int err = QMessageBox::critical( this, tr( "Invalid Selection" ),
773773
tr( "The parent group you have selected is not user editable.\n"
774-
"Kindly select a user defined Group." ) );
774+
"Kindly select a user defined group." ) );
775775
if ( err )
776776
return;
777777
}
@@ -780,7 +780,7 @@ void QgsStyleV2ManagerDialog::addGroup()
780780
if ( parentIndex.parent().data( Qt::UserRole + 1 ).toString() == "smartgroups" )
781781
{
782782
int err = QMessageBox::critical( this, tr( "Operation Not Allowed" ),
783-
tr( "Creation of nested Smart Groups are not allowed\n"
783+
tr( "Creation of nested smart groups are not allowed\n"
784784
"Select the 'Smart Group' to create a new group." ) );
785785
if ( err )
786786
return;
@@ -831,7 +831,7 @@ void QgsStyleV2ManagerDialog::removeGroup()
831831
QString data = index.data( Qt::UserRole + 1 ).toString();
832832
if ( data == "all" || data == "groups" || data == "smartgroups" || index.data() == "Ungrouped" )
833833
{
834-
int err = QMessageBox::critical( this, tr( "Invalid slection" ),
834+
int err = QMessageBox::critical( this, tr( "Invalid selection" ),
835835
tr( "Cannot delete system defined categories.\n"
836836
"Kindly select a group or smart group you might want to delete." ) );
837837
if ( err )
@@ -1238,7 +1238,7 @@ void QgsStyleV2ManagerDialog::editSmartgroupAction()
12381238
if ( !id )
12391239
{
12401240
QMessageBox::critical( this, tr( "Database Error!" ),
1241-
tr( "There was some error in editing the smart group." ) );
1241+
tr( "There was some error while editing the smart group." ) );
12421242
return;
12431243
}
12441244
item->setText( dlg.smartgroupName() );

‎src/providers/wcs/qgswcsprovider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -924,7 +924,7 @@ void QgsWcsProvider::cacheReplyFinished()
924924
}
925925
else
926926
{
927-
QgsMessageLog::logMessage( tr( "Map request error (Response: %2; URL:%3)" )
927+
QgsMessageLog::logMessage( tr( "Map request error (Response: %1; URL:%2)" )
928928
.arg( QString::fromUtf8( partBodies.value( 1 ) ) )
929929
.arg( mCacheReply->url().toString() ), tr( "WCS" ) );
930930
}

‎src/ui/symbollayer/widget_layerproperties.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<item>
4949
<widget class="QLabel" name="label_2">
5050
<property name="text">
51-
<string> This layer doesn't have any editbale properties</string>
51+
<string>This layer doesn't have any editable properties</string>
5252
</property>
5353
<property name="alignment">
5454
<set>Qt::AlignCenter</set>

0 commit comments

Comments
 (0)
Please sign in to comment.