From 4e760704350ef4ef26c6eb7608b600d71348659a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Douglas=20Le=C3=A3o?= <60024671+DeeJayLSP@users.noreply.github.com> Date: Wed, 26 Apr 2023 17:19:29 -0300 Subject: [PATCH] Pull changes to spreadsheets page --- .../{assets_pipeline => i18n}/img/import_csv.webp | Bin tutorials/i18n/localization_using_spreadsheets.rst | 12 ++++++++++++ 2 files changed, 12 insertions(+) rename tutorials/{assets_pipeline => i18n}/img/import_csv.webp (100%) diff --git a/tutorials/assets_pipeline/img/import_csv.webp b/tutorials/i18n/img/import_csv.webp similarity index 100% rename from tutorials/assets_pipeline/img/import_csv.webp rename to tutorials/i18n/img/import_csv.webp diff --git a/tutorials/i18n/localization_using_spreadsheets.rst b/tutorials/i18n/localization_using_spreadsheets.rst index 7530fde5c..a7fe59b1c 100644 --- a/tutorials/i18n/localization_using_spreadsheets.rst +++ b/tutorials/i18n/localization_using_spreadsheets.rst @@ -7,6 +7,18 @@ Spreadsheets are one of the most common formats for localizing games. In Godot, spreadsheets are supported through the CSV format. This guide explains how to work with CSVs. +The CSV files **must** be saved with UTF-8 encoding +without a `byte order mark `__. + +.. warning:: + + By default, Microsoft Excel will always save CSV files with ANSI encoding + rather than UTF-8. There is no built-in way to do this, but there are + workarounds as described + `here `__. + + We recommend using `LibreOffice `__ or Google Sheets instead. + Formatting ----------