ever-traduora icon indicating copy to clipboard operation
ever-traduora copied to clipboard

CSV import to English is not working

Open loleg opened this issue 1 year ago • 1 comments

When I try to import to EN or EN_US through the user interface, after selecting the file and destination locale nothing happens - but an error is visible in the console. Import to other languages works.

I've replaced my actual URL with <SERVER URL>:

{ message: "Http failure response for <SERVER URL>/api/v1/projects/168efedb-94c2-46b5-81a1-64695ce13703/imports?format=csv&locale=en: 404 Not Found" }

In the server logs it looks like this:

POST /api/v1/projects/168efedb-94c2-46b5-81a1-64695ce13703/imports?format=csv&locale=en_US HTTP/1.0 404

This is a fresh, standard deployment of the latest Docker Compose build. I initially posted the issue in #377

Sample: English.csv

Screenshot:

image

loleg avatar Apr 04 '23 07:04 loleg

I don't know if you ever figured it out, but after fighting for hours, I realized that to get it to work, I had to double quote the strings I was trying to import. So my CSV now looks like :

stringA,"A string I am importing"
anotherterm,"This is quoted"

Wobak avatar Dec 08 '23 23:12 Wobak