| 1457 | } |
| 1458 | |
| 1459 | String FormatMenuItemStringTo(SIDE_TYPE src, int count, int total) |
| 1460 | { |
| 1461 | String fmt1, fmt2; |
| 1462 | if (src == SIDE_LEFT) |
| 1463 | { |
| 1464 | fmt1 = _("Left to... (%1)"); |
| 1465 | fmt2 = _("Left to... (%1 of %2)"); |
| 1466 | } |
| 1467 | else if (src == SIDE_MIDDLE) |
| 1468 | { |
| 1469 | fmt1 = _("Middle to... (%1)"); |
| 1470 | fmt2 = _("Middle to... (%1 of %2)"); |
| 1471 | } |
| 1472 | else if (src == SIDE_RIGHT) |
| 1473 | { |
| 1474 | fmt1 = _("Right to... (%1)"); |
| 1475 | fmt2 = _("Right to... (%1 of %2)"); |
| 1476 | } |
| 1477 | return FormatMenuItemString(fmt1, fmt2, count, total); |
| 1478 | } |
| 1479 | |
| 1480 | String FormatMenuItemStringAllTo(int nDirs, int count, int total) |
| 1481 | { |
no test coverage detected