Skip to content

Commit 53b04e7

Browse files
author
homann
committed
Applied patch #603. Thanks!
git-svn-id: http://svn.osgeo.org/qgis/branches/Release-0_8_0@6617 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 75ddee5 commit 53b04e7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/gui/qgsattributeactiondialog.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ QgsAttributeActionDialog::QgsAttributeActionDialog(QgsAttributeAction* actions,
5454
void QgsAttributeActionDialog::init()
5555
{
5656
Q3Header* header = attributeActionTable->horizontalHeader();
57-
header->setLabel(0, "Name");
58-
header->setLabel(1, "Action");
59-
header->setLabel(2, "Capture");
57+
header->setLabel(0, tr("Name") );
58+
header->setLabel(1, tr("Action") );
59+
header->setLabel(2, tr("Capture") );
6060

6161
attributeActionTable->setColumnStretchable(0, true);
6262
attributeActionTable->setColumnStretchable(1, true);
@@ -139,7 +139,7 @@ void QgsAttributeActionDialog::browse()
139139
// widget
140140

141141
QString action = QFileDialog::getOpenFileName(
142-
this, "Select an action");
142+
this, tr("Select an action","File dialog window title") );
143143

144144
if (!action.isNull())
145145
actionAction->insert(action);

0 commit comments

Comments
 (0)