feat: Support message extraction from custom packages and types #396
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This Pull Request updates the
goi18n extractcommand to be more flexible in identifying the source of messages to be extracted. Instead of hardcoding the check to the library's original package, developers can now configure the tool to scan their own structs or wrapper packages.Key Changes: Added 2 new optional flags to the
extractcommand:-i18nPackage(string): The import path of the package containing the message definitions.Default: github.com/nicksnyder/go-i18n/v2/i18n
-i18nTypes(string): A comma-separated list of struct/type names to scan for message extraction.Default: Message,LocalizeConfig
Purpose:
Messagestruct for their specific needs (e.g., adding validation, extra fields) while still leveraging the existingextractcommand.extractcommand behaves exactly as before, requiring no changes to existing codebases.Example Usage: