Skip to content

Commit f748c12

Browse files
committedSep 20, 2015
enforces consistency
1 parent c381a88 commit f748c12

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed
 

‎resources/customization.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1569,10 +1569,10 @@
15691569
<widget objectName="leUncheckedState" class="QLineEdit" label=""/>
15701570
</widget>
15711571
<widget objectName="hiddenPage" class="QWidget" label="">
1572-
<widget objectName="hiddenLabel" class="QLabel" label="A hidden attribute will be invisible - the user is not able to see it's contents."/>
1572+
<widget objectName="hiddenLabel" class="QLabel" label="A hidden field will be invisible - the user is not able to see its contents."/>
15731573
</widget>
15741574
<widget objectName="immutablePage" class="QWidget" label="">
1575-
<widget objectName="immutableLabel" class="QLabel" label="An immutable attribute is read-only - the user is not able to modify the contents."/>
1575+
<widget objectName="immutableLabel" class="QLabel" label="An immutable field is read-only - the user is not able to modify the contents."/>
15761576
</widget>
15771577
<widget objectName="enumerationPage" class="QWidget" label="">
15781578
<widget objectName="enumerationLabel" class="QLabel" label="Combo box with values that can be used within the column's type. Must be supported by the provider."/>
@@ -1588,7 +1588,7 @@
15881588
<widget objectName="fileNameLabel" class="QLabel" label="Simplifies file selection by adding a file chooser dialog."/>
15891589
</widget>
15901590
<widget objectName="uniqueValuesPage" class="QWidget" label="">
1591-
<widget objectName="label" class="QLabel" label="The user can select one of the values already used in the attribute. If editable, a line edit is shown with autocompletion support, otherwise a combo box is used."/>
1591+
<widget objectName="label" class="QLabel" label="The user can select one of the values already used in the field. If editable, a line edit is shown with autocompletion support, otherwise a combo box is used."/>
15921592
<widget objectName="editableUniqueValues" class="QCheckBox" label="Editable"/>
15931593
</widget>
15941594
<widget objectName="rangePage" class="QWidget" label="">
@@ -1617,7 +1617,7 @@
16171617
<widget objectName="classificationLabel" class="QLabel" label="Displays combo box containing values of attribute used for classification."/>
16181618
</widget>
16191619
<widget objectName="lineEditPage" class="QWidget" label="">
1620-
<widget objectName="lineEditLabel" class="QLabel" label="Simple edit box. This is the default editation widget."/>
1620+
<widget objectName="lineEditLabel" class="QLabel" label="Simple edit box. This is the default edition widget."/>
16211621
</widget>
16221622
<widget objectName="calendarPage" class="QWidget" label="">
16231623
<widget objectName="label_10" class="QLabel" label="Date format"/>

‎src/gui/editorwidgets/qgshiddenwidgetfactory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ QgsEditorWidgetWrapper* QgsHiddenWidgetFactory::create( QgsVectorLayer* vl, int
3030

3131
QgsEditorConfigWidget* QgsHiddenWidgetFactory::configWidget( QgsVectorLayer* vl, int fieldIdx, QWidget* parent ) const
3232
{
33-
return new QgsDummyConfigDlg( vl, fieldIdx, parent, QObject::tr( "A hidden attribute will be invisible - the user is not able to see it's contents." ) );
33+
return new QgsDummyConfigDlg( vl, fieldIdx, parent, QObject::tr( "A hidden field will be invisible - the user is not able to see its contents." ) );
3434
}

‎src/ui/editorwidgets/qgsuniquevaluesconfigdlgbase.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<item row="0" column="0" colspan="2">
2121
<widget class="QLabel" name="label">
2222
<property name="text">
23-
<string>The user can select one of the values already used in the attribute. If editable, a line edit is shown with autocompletion support, otherwise a combo box is used.</string>
23+
<string>The user can select one of the values already used in the field. If editable, a line edit is shown with autocompletion support, otherwise a combo box is used.</string>
2424
</property>
2525
<property name="wordWrap">
2626
<bool>true</bool>

‎src/ui/qgsaddattrdialogbase.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<rect>
77
<x>0</x>
88
<y>0</y>
9-
<width>243</width>
9+
<width>245</width>
1010
<height>201</height>
1111
</rect>
1212
</property>

‎src/ui/qgsdelattrdialogbase.ui

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</rect>
1212
</property>
1313
<property name="windowTitle">
14-
<string>Delete Attributes</string>
14+
<string>Delete fields</string>
1515
</property>
1616
<layout class="QGridLayout">
1717
<property name="leftMargin">
@@ -53,7 +53,7 @@
5353
<item row="2" column="0">
5454
<widget class="QLabel" name="mCanDeleteAttributesInfo">
5555
<property name="text">
56-
<string>Provider does not support deleting attributes.</string>
56+
<string>Provider does not support deleting fields.</string>
5757
</property>
5858
</widget>
5959
</item>

0 commit comments

Comments
 (0)
Please sign in to comment.