| 693 | } |
| 694 | |
| 695 | void MainWindow::translateExtras(int init) { |
| 696 | QAction *action; |
| 697 | |
| 698 | TITLE_DOCKS = tr("Docks"); |
| 699 | TITLE_DEBUG = tr("Debug"); |
| 700 | MSG_INFORMATION = tr("Information"); |
| 701 | MSG_WARNING = tr("Warning"); |
| 702 | MSG_ERROR = tr("Error"); |
| 703 | MSG_ADD_MEMORY = tr("Add memory view"); |
| 704 | MSG_ADD_VISUALIZER = tr("Add memory visualizer"); |
| 705 | MSG_EDIT_UI = tr("Enable UI edit mode"); |
| 706 | ACTION_TOGGLE_BREAK = tr("Toggle Breakpoint"); |
| 707 | ACTION_TOGGLE_READ = tr("Toggle Read Watchpoint"); |
| 708 | ACTION_TOGGLE_WRITE = tr("Toggle Write Watchpoint"); |
| 709 | ACTION_TOGGLE_RW = tr("Toggle Read/Write Watchpoint"); |
| 710 | ACTION_GOTO_MEMORY_VIEW = tr("Goto Memory View"); |
| 711 | ACTION_GOTO_VAT_MEMORY_VIEW = tr("Goto VAT Memory View"); |
| 712 | ACTION_GOTO_DISASM_VIEW = tr("Goto Disasm View"); |
| 713 | ACTION_COPY_ADDR = tr("Copy Address"); |
| 714 | ACTION_COPY_DATA = tr("Copy Data"); |
| 715 | ACTION_RUN_UNTIL = tr("Run Until"); |
| 716 | |
| 717 | QString __TXT_MEM_DOCK = tr("Memory View"); |
| 718 | QString __TXT_VISUALIZER_DOCK = tr("Memory Visualizer"); |
| 719 | QString __TXT_KEYHISTORY_DOCK = tr("Keypress History"); |
| 720 | |
| 721 | QString __TXT_CLEAR_HISTORY = tr("Clear History"); |
| 722 | QString __TXT_SIZE = tr("Size"); |
| 723 | |
| 724 | QString __TXT_GOTO = tr("Goto"); |
| 725 | QString __TXT_SEARCH = tr("Search"); |
| 726 | QString __TXT_SYNC = tr("Sync Changes"); |
| 727 | QString __TXT_ASCII = tr("Show ASCII"); |
| 728 | |
| 729 | QString __TXT_CONSOLE = tr("Console"); |
| 730 | QString __TXT_SETTINGS = tr("Settings"); |
| 731 | QString __TXT_VARIABLES = tr("Variables"); |
| 732 | QString __TXT_CAPTURE = tr("Capture"); |
| 733 | QString __TXT_STATE = tr("State"); |
| 734 | QString __TXT_KEYPAD = tr("Keypad"); |
| 735 | |
| 736 | QString __TXT_TI_BASIC_DEBUG = tr("TI-Basic Debug"); |
| 737 | QString __TXT_DEBUG_CONTROL = tr("Debug Control"); |
| 738 | QString __TXT_CPU_STATUS = tr("CPU Status"); |
| 739 | QString __TXT_DISASSEMBLY = tr("Disassembly"); |
| 740 | QString __TXT_MEMORY = tr("Memory"); |
| 741 | QString __TXT_TIMERS = tr("Timers"); |
| 742 | QString __TXT_BREAKPOINTS = tr("Breakpoints"); |
| 743 | QString __TXT_WATCHPOINTS = tr("Watchpoints"); |
| 744 | QString __TXT_PORTMON = tr("Port Monitor"); |
| 745 | QString __TXT_OS_VIEW = tr("OS Variables"); |
| 746 | QString __TXT_OS_STACKS = tr("OS Stacks"); |
| 747 | QString __TXT_MISC = tr("Miscellaneous"); |
| 748 | QString __TXT_AUTOTESTER = tr("AutoTester"); |
| 749 | |
| 750 | setWindowTitle(QStringLiteral("CEmu | ") + opts.idString); |
| 751 | |
| 752 | if (init == TRANSLATE_UPDATE) { |
nothing calls this directly
no test coverage detected