| 1478 | } |
| 1479 | |
| 1480 | String FormatMenuItemStringAllTo(int nDirs, int count, int total) |
| 1481 | { |
| 1482 | if (nDirs < 3) |
| 1483 | return FormatMenuItemString(_("Both to... (%1)"), _("Both to... (%1 of %2)"), count, total); |
| 1484 | else |
| 1485 | return FormatMenuItemString(_("All to... (%1)"), _("All to... (%1 of %2)"), count, total); |
| 1486 | } |
| 1487 | |
| 1488 | String FormatMenuItemStringDifferencesTo(int count, int total) |
| 1489 | { |
no test coverage detected