-
Notifications
You must be signed in to change notification settings - Fork 252
Update power presets following transformer tagging extension #447
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,14 +4,13 @@ | |
| "label": "Type", | ||
| "strings": { | ||
| "options": { | ||
| "distribution": "Distribution", | ||
| "generator": "Generator", | ||
| "converter": "Converter", | ||
| "traction": "Traction", | ||
| "auto": "Autotransformer", | ||
| "phase_angle_regulator": "Phase Angle Regulator", | ||
| "auxiliary": "Auxiliary", | ||
| "yes": "Unknown" | ||
| "main": "Forwards power", | ||
| "distribution": "Feeds final consumers, installed outside substations", | ||
| "generator": "Steps-up voltage in power plants", | ||
| "converter": "Feeds power converters", | ||
| "phase_angle_regulator": "Regulates phase angle", | ||
| "auxiliary": "Feeds internal systems in substations", | ||
|
Comment on lines
+7
to
+12
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Were the previous strings incorrect? The new strings can end up being so lengthy in translation that they ideally would be displayed as tooltips, though I’m unsure if schema-builder supports localizable combo option tooltips yet. For now, perhaps each option could start with the short name, like “Distribution: Feeds final consumers, installed outside substations”.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. They were probably not incorrect, but I thought that having an almost 1:1 copy of the raw tag value isn't a big help for mappers (otherwise this field could have been a regular combo field), that's why I asked for more descriptive labels. 👍 for adding the tag values as part of the labels, I've tweaked it in a33d777 – does that look better? |
||
| "yes": "Unknown role" | ||
| } | ||
| }, | ||
| "autoSuggestions": false, | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "key": "windings:auto", | ||
| "type": "check", | ||
| "label": "Autotransformer", | ||
| "strings": { | ||
| "options": { | ||
| "undefined": "Assumed to be No", | ||
| "yes": "Yes", | ||
| "no": "No" | ||
| } | ||
| } | ||
| } |
Uh oh!
There was an error while loading. Please reload this page.