| | |
| | | } |
| | | |
| | | //极简显示 |
| | | // x天x小时 |
| | | // x小时x分 |
| | | // x天 或者 x天x小时 |
| | | // x小时 或者 x小时x分 |
| | | // x分 |
| | | // x秒 |
| | | public static string SecondsToShortDHMS(int _seconds) |
| | |
| | | int seconds = _seconds % 60; |
| | | if (days > 0) |
| | | { |
| | | if (hours == 0) |
| | | { |
| | | return StringUtility.Contact(days, Language.Get("L1074")); |
| | | } |
| | | return StringUtility.Contact(days, Language.Get("L1074"), hours, Language.Get("L1072")); |
| | | } |
| | | else if (hours > 0) |
| | | { |
| | | if (mins == 0) |
| | | { |
| | | return StringUtility.Contact(hours, Language.Get("L1072")); |
| | | } |
| | | return StringUtility.Contact(hours, Language.Get("L1072"), mins, Language.Get("L1073")); |
| | | } |
| | | else if (mins > 0) |