| 278 | } |
| 279 | |
| 280 | std::wstring FormatUnits(int n, const std::wstring& unit) |
| 281 | { |
| 282 | if (n == 0) |
| 283 | return L""; |
| 284 | if (n == 1) |
| 285 | return wstringbuilder() << n << " " << unit; |
| 286 | return wstringbuilder() << n << " " << unit << "s"; |
| 287 | } |
| 288 | |
| 289 | std::wstring FormatDuration(double seconds) |
| 290 | { |