fix error message

This commit is contained in:
GenevensiS
2025-06-25 23:00:25 +02:00
parent d95e9cb2b4
commit 8acd60d2d6
+1 -1
View File
@@ -125,7 +125,7 @@ static bool cards_from_table(SetP& set, vector<String>& headers, std::vector<std
int count = headers.size();
for (int y = 0; y < table.size(); ++y) {
if (table[y].size() != count) {
queue_message(MESSAGE_ERROR, _ERROR_2_("import file malformed", file_extension, wxString::Format(wxT("%i"), y+1)));
queue_message(MESSAGE_ERROR, _ERROR_1_("add card csv file malformed", wxString::Format(wxT("%i"), y+1)));
return false;
}
}