mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-07 09:26:23 +02:00
* Add AMPM to string, patch from closes #39973
This commit is contained in:
parent
f18524f2fe
commit
f9a76aaa56
@ -1243,9 +1243,15 @@ begin
|
|||||||
HF:='h'
|
HF:='h'
|
||||||
else
|
else
|
||||||
HF:='hh';
|
HF:='hh';
|
||||||
// No support for 12 hour stuff at the moment...
|
|
||||||
ShortTimeFormat := HF+':nn';
|
ShortTimeFormat := HF+':nn';
|
||||||
LongTimeFormat := HF + ':nn:ss';
|
LongTimeFormat := HF + ':nn:ss';
|
||||||
|
{ 12-hour system support }
|
||||||
|
if GetLocaleInt(LID, LOCALE_ITIME, 1) = 0 then
|
||||||
|
begin
|
||||||
|
LongTimeFormat := LongTimeFormat + ' AMPM';
|
||||||
|
ShortTimeFormat := ShortTimeFormat + ' AMPM';
|
||||||
|
end;
|
||||||
|
|
||||||
{ Currency stuff }
|
{ Currency stuff }
|
||||||
CurrencyString:=GetLocaleStr(LID, LOCALE_SCURRENCY, '');
|
CurrencyString:=GetLocaleStr(LID, LOCALE_SCURRENCY, '');
|
||||||
CurrencyFormat:=StrToIntDef(GetLocaleStr(LID, LOCALE_ICURRENCY, '0'), 0);
|
CurrencyFormat:=StrToIntDef(GetLocaleStr(LID, LOCALE_ICURRENCY, '0'), 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user