Skip to content

Commit edda5d1

Browse files
docs(configuration-file): update Multilingual Spreadsheet example (#567)
1 parent f3ea28c commit edda5d1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/docs/developer/dev-tools/configuration-file.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ If a CSV or XLS/XLSX file contains the translations for all target languages, yo
309309
CSV file example:
310310

311311
```csv
312-
identifier,source_phrase,context,Ukrainian,Russian,French
312+
identifier,source_phrase,context,Ukrainian,Spanish (Mexico),French
313313
ident1,Source 1,Context 1,,,
314314
ident2,Source 2,Context 2,,,
315315
ident3,Source 3,Context 3,,,
@@ -323,15 +323,15 @@ Configuration file example:
323323
"source": "multicolumn.csv",
324324
"translation": "multicolumn.csv",
325325
"first_line_contains_header": true,
326-
"scheme": "identifier,source_phrase,context,uk,ru,fr"
326+
"scheme": "identifier,source_phrase,context,uk,es-MX,fr"
327327
}
328328
]
329329
```
330330

331331
If your CSV or XLS/XLSX file contains columns that should be skipped on import, use `none` for such columns in the scheme, for example:
332332

333333
```yml title="crowdin.yml"
334-
"scheme" : "identifier,source_phrase,context,uk,none,ru,none,fr"
334+
"scheme" : "identifier,source_phrase,context,uk,none,es-MX,none,fr"
335335
```
336336

337337
##### Scheme Constants

0 commit comments

Comments
 (0)