| 1427 | |
| 1428 | namespace { |
| 1429 | const TranslatableString StartScrubbingMessage(const Scrubber &/*scrubber*/) |
| 1430 | { |
| 1431 | #if 0 |
| 1432 | if(scrubber.Seeks()) |
| 1433 | /* i18n-hint: These commands assist the user in finding a sound by ear. ... |
| 1434 | "Scrubbing" is variable-speed playback, ... |
| 1435 | "Seeking" is normal speed playback but with skips |
| 1436 | */ |
| 1437 | return XO("Click or drag to begin Seek"); |
| 1438 | else |
| 1439 | /* i18n-hint: These commands assist the user in finding a sound by ear. ... |
| 1440 | "Scrubbing" is variable-speed playback, ... |
| 1441 | "Seeking" is normal speed playback but with skips |
| 1442 | */ |
| 1443 | return XO("Click or drag to begin Scrub"); |
| 1444 | #else |
| 1445 | /* i18n-hint: These commands assist the user in finding a sound by ear. ... |
| 1446 | "Scrubbing" is variable-speed playback, ... |
| 1447 | "Seeking" is normal speed playback but with skips |
| 1448 | */ |
| 1449 | return XO("Click & move to Scrub. Click & drag to Seek."); |
| 1450 | #endif |
| 1451 | } |
| 1452 | |
| 1453 | const TranslatableString ContinueScrubbingMessage( |
| 1454 | const Scrubber &scrubber, bool clicked) |
no test coverage detected