Changeset 447 for trunk/Packages/Common/UPrefixMultiplier.pas
- Timestamp:
- May 19, 2022, 10:39:34 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/UPrefixMultiplier.pas
r423 r447 30 30 BasePrefixMultipliers: TPrefixMultiplierDef = 31 31 ( 32 (ShortText: 'y'; FullText: 'yocto'; Value: 1 e-24),33 (ShortText: 'z'; FullText: 'zepto'; Value: 1 e-21),34 (ShortText: 'a'; FullText: 'atto'; Value: 1 e-18),35 (ShortText: 'f'; FullText: 'femto'; Value: 1 e-15),36 (ShortText: 'p'; FullText: 'piko'; Value: 1 e-12),37 (ShortText: 'n'; FullText: 'nano'; Value: 1 e-9),38 (ShortText: 'u'; FullText: 'mikro'; Value: 1 e-6),39 (ShortText: 'm'; FullText: 'mili'; Value: 1 e-3),32 (ShortText: 'y'; FullText: 'yocto'; Value: 1E-24), 33 (ShortText: 'z'; FullText: 'zepto'; Value: 1E-21), 34 (ShortText: 'a'; FullText: 'atto'; Value: 1E-18), 35 (ShortText: 'f'; FullText: 'femto'; Value: 1E-15), 36 (ShortText: 'p'; FullText: 'piko'; Value: 1E-12), 37 (ShortText: 'n'; FullText: 'nano'; Value: 1E-9), 38 (ShortText: 'u'; FullText: 'mikro'; Value: 1E-6), 39 (ShortText: 'm'; FullText: 'mili'; Value: 1E-3), 40 40 (ShortText: ''; FullText: ''; Value: 1e0), 41 41 (ShortText: 'k'; FullText: 'kilo'; Value: 1e3), … … 51 51 TimePrefixMultipliers: TPrefixMultiplierDef = 52 52 ( 53 (ShortText: 'ys'; FullText: 'yocto'; Value: 1 e-24),54 (ShortText: 'zs'; FullText: 'zepto'; Value: 1 e-21),55 (ShortText: 'as'; FullText: 'atto'; Value: 1 e-18),56 (ShortText: 'fs'; FullText: 'femto'; Value: 1 e-15),57 (ShortText: 'ps'; FullText: 'piko'; Value: 1 e-12),58 (ShortText: 'ns'; FullText: 'nano'; Value: 1 e-9),59 (ShortText: 'us'; FullText: 'mikro'; Value: 1 e-6),60 (ShortText: 'ms'; FullText: 'mili'; Value: 1 e-3),53 (ShortText: 'ys'; FullText: 'yocto'; Value: 1E-24), 54 (ShortText: 'zs'; FullText: 'zepto'; Value: 1E-21), 55 (ShortText: 'as'; FullText: 'atto'; Value: 1E-18), 56 (ShortText: 'fs'; FullText: 'femto'; Value: 1E-15), 57 (ShortText: 'ps'; FullText: 'piko'; Value: 1E-12), 58 (ShortText: 'ns'; FullText: 'nano'; Value: 1E-9), 59 (ShortText: 'us'; FullText: 'mikro'; Value: 1E-6), 60 (ShortText: 'ms'; FullText: 'mili'; Value: 1E-3), 61 61 (ShortText: 's'; FullText: 'sekunda'; Value: 1), 62 62 (ShortText: 'min'; FullText: 'minuta'; Value: 60),
Note:
See TracChangeset
for help on using the changeset viewer.