Changes between Initial Version and Version 1 of Ticket #22588, comment 15
- Timestamp:
- 2023-01-30T14:47:37+01:00 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #22588, comment 15
initial v1 5 5 6 6 A patch for that is relatively trivial, but I don't know what the fallout would be (are there some values that depend upon the context not being set?). 7 {{{#! diff7 {{{#!comment 8 8 Index: src/org/openstreetmap/josm/gui/tagging/presets/items/PresetListEntry.java 9 9 =================================================================== … … 31 31 32 32 This is probably why they all have translations -- the `gettext` code doesn't need the context for them, since they have been translated ''without'' context. 33 34 EDIT: The ticket for changing `tr(display_value)` to `trc(cms == null ? null : cms.values_context, display_value)` is #22693.