Skip to content

Commit 3943e7b

Browse files
committedSep 4, 2017
translation string fix
1 parent 238a119 commit 3943e7b

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed
 

‎src/core/qgsvectorfilewriter.cpp

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1856,8 +1856,10 @@ QMap<QString, QgsVectorFileWriter::MetaData> QgsVectorFileWriter::initMetaData()
18561856

18571857
layerOptions.insert( "OGR_XLSX_HEADERS", new SetOption(
18581858
QObject::tr( "By default, the driver will read the first lines of each sheet to detect "
1859-
"if the first line might be the name of columns. If set to FORCE, the "
1860-
"driver will consider the first default" ),
1859+
"if the first line might be the name of columns. If set to FORCE, the driver "
1860+
"will consider the first line will be taken as the header line. If set to "
1861+
"DISABLE, it will be considered as the first feature. Otherwise "
1862+
"auto-detection will occur." ),
18611863
QStringList()
18621864
<< "FORCE"
18631865
<< "DISABLE"
@@ -1894,8 +1896,10 @@ QMap<QString, QgsVectorFileWriter::MetaData> QgsVectorFileWriter::initMetaData()
18941896

18951897
layerOptions.insert( "OGR_ODS_HEADERS", new SetOption(
18961898
QObject::tr( "By default, the driver will read the first lines of each sheet to detect "
1897-
"if the first line might be the name of columns. If set to FORCE, the "
1898-
"driver will consider the first default" ),
1899+
"if the first line might be the name of columns. If set to FORCE, the driver "
1900+
"will consider the first line will be taken as the header line. If set to "
1901+
"DISABLE, it will be considered as the first feature. Otherwise "
1902+
"auto-detection will occur." ),
18991903
QStringList()
19001904
<< "FORCE"
19011905
<< "DISABLE"

0 commit comments

Comments
 (0)
Please sign in to comment.