TranslationHelper - Add "Move first names to front" setting #10
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
IllusionMods/Aicomi-Translation!10
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "names"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Pull Request Overview
Adds a new configuration option to control the ordering of first and last names in the translation helper plugin. This allows users to choose between automatic language-based ordering, first name first, or last name first.
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
@ -85,7 +110,7 @@ namespace AC_TranslationHelper[HarmonyPatch(typeof(HumanDataParameter), nameof(HumanDataParameter.fullname), MethodType.Getter)][nitpick] Extra blank line should be removed to maintain consistent code formatting.
@ -110,3 +135,3 @@tmp.text = TryTranslateName(data.Parameter.firstname, data.Parameter.lastname, '\n');tmp.text = FirstNameFirst() ? TryTranslateName(data.Parameter.firstname, data.Parameter.lastname, '\n') : TryTranslateName(data.Parameter.lastname, data.Parameter.firstname, '\n');}Missing using directive for StringComparison. Add 'using System;' to the imports.