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 adds Dutch ("NL") translations for all existing .resx files in all various projects.
Fixes #94
I was debating how (and if) to include updated test coverage for these changes. All current tests keep passing on my machine. But adding test coverage in a maintainable way presents a few choices about the test setup.
First up, I have confirmed to some degree with tests that this is working, by modifying an existing test into this one:
It hard-coded verifies that the error message picks up the Dutch translation.
Unfortunately there does not seem to be a super-widespread way to make tests run for multiple cultures using xUnit. This requires a custom attribute (with all associated maintenance) it seems.
At first thought, I see these options (that can be mixed and matched) as far as testing goes:
Surely there are more options too?
I stuck with "1" for the moment. Let me know if I can and should support some more in this regard?