-
-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include input & option descriptions as data in registry #533
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
b9cbbc6
Actually include input & option descriptions as data in registry, not…
eemeli 92c29b2
Use CLDR as currency code reference
eemeli 682a290
Add xml:lang attributes to <registry>, <input> and <option>
eemeli 0024507
Wrap all descriptions in <description> elements
eemeli 2679b6d
Merge branch 'main' into option-descriptions
eemeli File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added
xml:lang
as an optional attribute on the top-level<registry>
, as well as directly on<input>
and<option>
, to indicate the language of the included descriptions.Should this be required, though? Or are there use cases where a
<registry>
could be e.g. embedded in another XML document, where the locale is defined somewhere further up the tree?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should do this differently. Literally in the next tab of the browser I have a PR open on string-meta with best practices. See also this article.
I think we'd be best off here by putting the natural language string descriptions into sub-elements
description
which are allowed to vary byxml:lang
. Settingxml:lang="en"
at theregistry
element level would allow us to have<description>
withoutxml:lang
attributes throughout.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. Many
<desciption>
now.