diff options
author | kchapelier <kevin.chapelier@gmail.com> | 2020-01-06 09:27:24 +0100 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-01-06 19:59:32 -0500 |
commit | b8a566a060eb5caa8cc37edba3ca670192f7a35b (patch) | |
tree | 2c38215c3231e05a2d0664dde63ba64c0aeb7ca9 | |
parent | 372eb722334b9d0cc463be6fc418081a65d04717 (diff) | |
download | SMAPI-b8a566a060eb5caa8cc37edba3ca670192f7a35b.tar.gz SMAPI-b8a566a060eb5caa8cc37edba3ca670192f7a35b.tar.bz2 SMAPI-b8a566a060eb5caa8cc37edba3ca670192f7a35b.zip |
Add french translation
-rw-r--r-- | docs/README.md | 2 | ||||
-rw-r--r-- | src/SMAPI/SMAPI.csproj | 3 | ||||
-rw-r--r-- | src/SMAPI/i18n/fr.json | 3 |
3 files changed, 7 insertions, 1 deletions
diff --git a/docs/README.md b/docs/README.md index 3a570f48..50478b52 100644 --- a/docs/README.md +++ b/docs/README.md @@ -64,7 +64,7 @@ locale | status ---------- | :---------------- default | ✓ [fully translated](../src/SMAPI/i18n/default.json) Chinese | ✓ [fully translated](../src/SMAPI/i18n/zh.json) -French | ❑ not translated +French | ✓ [fully translated](../src/SMAPI/i18n/fr.json) German | ✓ [fully translated](../src/SMAPI/i18n/de.json) Hungarian | ❑ not translated Italian | ❑ not translated diff --git a/src/SMAPI/SMAPI.csproj b/src/SMAPI/SMAPI.csproj index 936c420d..3bb73295 100644 --- a/src/SMAPI/SMAPI.csproj +++ b/src/SMAPI/SMAPI.csproj @@ -105,6 +105,9 @@ <None Update="i18n\es.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> + <None Update="i18n\fr.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> <None Update="i18n\ja.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> diff --git a/src/SMAPI/i18n/fr.json b/src/SMAPI/i18n/fr.json new file mode 100644 index 00000000..6d051025 --- /dev/null +++ b/src/SMAPI/i18n/fr.json @@ -0,0 +1,3 @@ +{ + "warn.invalid-content-removed": "Le contenu non valide a été supprimé afin d'éviter un plantage (voir la console de SMAPI pour plus d'informations)." +} |