aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Localization/LocalizationManager.cs
diff options
context:
space:
mode:
authorTheBlueKingLP <12997043+TheBlueKingLP@users.noreply.github.com>2022-11-13 00:53:38 +0900
committerGitHub <noreply@github.com>2022-11-13 00:53:38 +0900
commitcf060ee6643279473af93012e5be056cc852ba9a (patch)
tree37956b25f92be9ba921ea38c585faf566f8bb34d /Emby.Server.Implementations/Localization/LocalizationManager.cs
parentc6e4b0b1bf2e88adaeba5f99bebf2e89581397fe (diff)
Correcting LocalizationOption
Changing from 体(the simplified variant) to 體(the traditional variant) in the LocalizationOption for the "Traditional Chinese" language.
Diffstat (limited to 'Emby.Server.Implementations/Localization/LocalizationManager.cs')
-rw-r--r--Emby.Server.Implementations/Localization/LocalizationManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Localization/LocalizationManager.cs b/Emby.Server.Implementations/Localization/LocalizationManager.cs
index 22b283b8a..4eab040a4 100644
--- a/Emby.Server.Implementations/Localization/LocalizationManager.cs
+++ b/Emby.Server.Implementations/Localization/LocalizationManager.cs
@@ -435,7 +435,7 @@ namespace Emby.Server.Implementations.Localization
yield return new LocalizationOption("اُردُو", "ur_PK");
yield return new LocalizationOption("Tiếng Việt", "vi");
yield return new LocalizationOption("汉语 (简化字)", "zh-CN");
- yield return new LocalizationOption("漢語 (繁体字)", "zh-TW");
+ yield return new LocalizationOption("漢語 (繁體字)", "zh-TW");
yield return new LocalizationOption("廣東話 (香港)", "zh-HK");
}
}