Changeset 456 for trunk/Packages/Common/PrefixMultiplier.pas
- Timestamp:
- May 30, 2023, 11:31:10 AM (18 months ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/PrefixMultiplier.pas
r455 r456 1 unit UPrefixMultiplier;1 unit PrefixMultiplier; 2 2 3 3 // Date: 2010-06-01 … … 30 30 BasePrefixMultipliers: TPrefixMultiplierDef = 31 31 ( 32 (ShortText: 'y'; FullText: 'yocto'; Value: 1 E-24),33 (ShortText: 'z'; FullText: 'zepto'; Value: 1E-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: 1E-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), … … 124 124 125 125 end. 126
Note:
See TracChangeset
for help on using the changeset viewer.