Navigation Menu

Skip to content

Commit

Permalink
translation string fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Sep 4, 2017
1 parent 238a119 commit 3943e7b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/core/qgsvectorfilewriter.cpp
Expand Up @@ -1856,8 +1856,10 @@ QMap<QString, QgsVectorFileWriter::MetaData> QgsVectorFileWriter::initMetaData()

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

layerOptions.insert( "OGR_ODS_HEADERS", new SetOption(
QObject::tr( "By default, the driver will read the first lines of each sheet to detect "
"if the first line might be the name of columns. If set to FORCE, the "
"driver will consider the first default" ),
"if the first line might be the name of columns. If set to FORCE, the driver "
"will consider the first line will be taken as the header line. If set to "
"DISABLE, it will be considered as the first feature. Otherwise "
"auto-detection will occur." ),
QStringList()
<< "FORCE"
<< "DISABLE"
Expand Down

0 comments on commit 3943e7b

Please sign in to comment.