Skip to content

Commit

Permalink
CSV acronym added for consistency other file types
Browse files Browse the repository at this point in the history
  • Loading branch information
serialc committed Jun 23, 2014
1 parent c601e3b commit a47764d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/qgsvectorfilewriter.cpp
Expand Up @@ -625,8 +625,8 @@ QMap<QString, QgsVectorFileWriter::MetaData> QgsVectorFileWriter::initMetaData()

driverMetadata.insert( "CSV",
MetaData(
"Comma Separated Value",
QObject::tr( "Comma Separated Value" ),
"Comma Separated Value [CSV]",
QObject::tr( "Comma Separated Value [CSV]" ),
"*.csv",
"csv",
datasetOptions,
Expand Down Expand Up @@ -2205,8 +2205,8 @@ bool QgsVectorFileWriter::driverMetadata( QString driverName, QString &longName,
}
else if ( driverName.startsWith( "CSV" ) )
{
longName = "Comma Separated Value";
trLongName = QObject::tr( "Comma Separated Value" );
longName = "Comma Separated Value [CSV]";
trLongName = QObject::tr( "Comma Separated Value [CSV]" );
glob = "*.csv";
ext = "csv";
}
Expand Down

0 comments on commit a47764d

Please sign in to comment.