Skip to content

Commit a47764d

Browse files
committed
CSV acronym added for consistency other file types
1 parent c601e3b commit a47764d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/core/qgsvectorfilewriter.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -625,8 +625,8 @@ QMap<QString, QgsVectorFileWriter::MetaData> QgsVectorFileWriter::initMetaData()
625625

626626
driverMetadata.insert( "CSV",
627627
MetaData(
628-
"Comma Separated Value",
629-
QObject::tr( "Comma Separated Value" ),
628+
"Comma Separated Value [CSV]",
629+
QObject::tr( "Comma Separated Value [CSV]" ),
630630
"*.csv",
631631
"csv",
632632
datasetOptions,
@@ -2205,8 +2205,8 @@ bool QgsVectorFileWriter::driverMetadata( QString driverName, QString &longName,
22052205
}
22062206
else if ( driverName.startsWith( "CSV" ) )
22072207
{
2208-
longName = "Comma Separated Value";
2209-
trLongName = QObject::tr( "Comma Separated Value" );
2208+
longName = "Comma Separated Value [CSV]";
2209+
trLongName = QObject::tr( "Comma Separated Value [CSV]" );
22102210
glob = "*.csv";
22112211
ext = "csv";
22122212
}

0 commit comments

Comments
 (0)