11 using ace_common::KString;
12 using ace_common::printReplaceCharTo;
13 using ace_time::internal::findShortName;
18 #if ACE_TIME_USE_PROGMEM
21 const __FlashStringHelper* name = mZoneInfoBroker.name();
22 const ZoneContext* zoneContext = mZoneInfoBroker.zoneContext();
24 kname.printTo(printer);
28 const __FlashStringHelper* name = mZoneInfoBroker.name();
29 const __FlashStringHelper* shortName = findShortName(name);
30 printReplaceCharTo(printer, shortName,
'_',
' ');
36 const char* name = mZoneInfoBroker.name();
37 const ZoneContext* zoneContext = mZoneInfoBroker.zoneContext();
39 kname.printTo(printer);
43 const char* name = mZoneInfoBroker.name();
44 const char* shortName = findShortName(name);
45 printReplaceCharTo(printer, shortName,
'_',
' ');
48 #endif // ACE_TIME_USE_PROGMEM