| 1449 | } |
| 1450 | |
| 1451 | String FormatMenuItemStringAll(int nDirs, int count, int total) |
| 1452 | { |
| 1453 | if (nDirs < 3) |
| 1454 | return FormatMenuItemString(_("Both (%1)"), _("Both (%1 of %2)"), count, total); |
| 1455 | else |
| 1456 | return FormatMenuItemString(_("All (%1)"), _("All (%1 of %2)"), count, total); |
| 1457 | } |
| 1458 | |
| 1459 | String FormatMenuItemStringTo(SIDE_TYPE src, int count, int total) |
| 1460 | { |
no test coverage detected