Skip to content

Commit

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

layerOptions.insert( QStringLiteral( "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()
<< QStringLiteral( "FORCE" )
<< QStringLiteral( "DISABLE" )
Expand Down Expand Up @@ -1819,8 +1821,10 @@ QMap<QString, QgsVectorFileWriter::MetaData> QgsVectorFileWriter::initMetaData()

layerOptions.insert( QStringLiteral( "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()
<< QStringLiteral( "FORCE" )
<< QStringLiteral( "DISABLE" )
Expand Down

0 comments on commit 2920c01

Please sign in to comment.