Ticket #8524: 8524-source-translation-strings-updates.diff
| File 8524-source-translation-strings-updates.diff, 75.5 KB (added by , 16 years ago) |
|---|
-
usr/src/mythtv-trunk/mythtv/themes/themestrings.h
178 178 ThemeUI::tr("Welcome to MythTV"); 179 179 ThemeUI::tr("MythTV is idle and will shut down shortly."); 180 180 ThemeUI::tr("Current Recording(s):"); 181 ThemeUI::tr("Retrieving Recording Status ...");181 ThemeUI::tr("Retrieving Recording Status..."); 182 182 ThemeUI::tr("Next Scheduled Recording(s):"); 183 ThemeUI::tr("Retrieving Scheduled Recordings ...");183 ThemeUI::tr("Retrieving Scheduled Recordings..."); 184 184 ThemeUI::tr("WARNING: There are conflicting scheduled recordings!"); 185 185 ThemeUI::tr("Move the selected arrow to the corner of the TV screen. Press SELECT to edit the other arrow. Press MENU for options and ESC to quit."); 186 186 ThemeUI::tr("1280 x 720"); 187 187 ThemeUI::tr("0 x 0"); 188 188 ThemeUI::tr("Filename"); 189 ThemeUI::tr("Please Wait... .");189 ThemeUI::tr("Please Wait..."); 190 190 ThemeUI::tr("Select an Icon"); 191 191 ThemeUI::tr("Icon Download Status..."); 192 192 ThemeUI::tr("Search terms:"); … … 274 274 ThemeUI::tr("title goes here"); 275 275 ThemeUI::tr("sep 13, 2004 11:00 pm (1h 15m)"); 276 276 ThemeUI::tr("description goes here."); 277 ThemeUI::tr("x.xx G b");278 ThemeUI::tr("xxxxx mb");279 ThemeUI::tr("0 mb");277 ThemeUI::tr("x.xx GB"); 278 ThemeUI::tr("xxxxx MB"); 279 ThemeUI::tr("0 MB"); 280 280 ThemeUI::tr("File Finder To Import"); 281 281 ThemeUI::tr("Watch Recordings"); 282 282 ThemeUI::tr("%|\"SUBTITLE|\"% %STARS% %DESCRIPTION%"); … … 309 309 ThemeUI::tr("Post Processing Editor"); 310 310 ThemeUI::tr("Run User job #2"); 311 311 ThemeUI::tr("Details"); 312 ThemeUI::tr("Mythbuntu is based o ff of ProjectGrayhem,a dark, shiny theme originally inspired by XBMC's ProjectMayhem skin");312 ThemeUI::tr("Mythbuntu is based on ProjectGrayhem - a dark, shiny theme originally inspired by XBMC's ProjectMayhem skin"); 313 313 ThemeUI::tr("MythTV is idle and will shutdown shortly."); 314 314 ThemeUI::tr("Current Recording(s)"); 315 315 ThemeUI::tr("Next Scheduled Recording(s)"); … … 560 560 ThemeUI::tr("Sample Clauses:"); 561 561 ThemeUI::tr(" This was adapted from the Jeroen Brosens' MythCenter theme. The fonts have been changed to freely redistributable ones and layout changes have been made to make this theme look good on 1280x720 and 1920x1080 screens with a 1:1 pixel aspect ratio. "); 562 562 ThemeUI::tr("Heading"); 563 ThemeUI::tr("Playback starting âŠ");563 ThemeUI::tr("Playback starting..."); 564 564 ThemeUI::tr("Bookmark Manager"); 565 565 ThemeUI::tr("Web Page"); 566 566 ThemeUI::tr("Icon Importer"); -
usr/src/mythtv-trunk/mythtv/libs/libmythtv/playgroup.cpp
80 80 "(" + QObject::tr("default") + ")"), 81 81 PlayGroupDBStorage(this, _parent, "jump") 82 82 { 83 setLabel(QObject::tr("Jump amount ( inminutes)"));83 setLabel(QObject::tr("Jump amount (minutes)")); 84 84 setHelpText(QObject::tr("How many minutes to jump forward or backward " 85 85 "when the jump keys are pressed.")); 86 86 }; -
usr/src/mythtv-trunk/mythtv/libs/libmythtv/mpeg/dvbdescriptors.cpp
297 297 298 298 categoryDesc[0x40] = QObject::tr("Sports"); 299 299 categoryDesc[0x41] = 300 QObject::tr("Special Events (World Cup, World Series ..)");300 QObject::tr("Special Events (World Cup, World Series, etc)"); 301 301 categoryDesc[0x42] = QObject::tr("Sports Magazines"); 302 302 categoryDesc[0x43] = QObject::tr("Football (Soccer)"); 303 303 categoryDesc[0x44] = QObject::tr("Tennis/Squash"); -
usr/src/mythtv-trunk/mythtv/libs/libmythtv/tv_play.cpp
294 294 { 295 295 p = *it; 296 296 if (p->recstatus == rsRecorded && p->recgroup == "LiveTV") 297 buttonTitle = tr("Live TV, chan %1: %2");297 buttonTitle = tr("Live TV, chan %1: %2"); 298 298 else 299 299 buttonTitle = tr("Chan %1: %2"); 300 300 buttonTitle = buttonTitle.arg(p->chanstr).arg(p->title); … … 11171 11171 "inputs for the channel you selected. " 11172 11172 "If you want to watch an in-progress recording, " 11173 11173 "select one from the playback menu. If you " 11174 "want to watch live TV, cancel one of the "11174 "want to watch Live TV, cancel one of the " 11175 11175 "in-progress recordings from the delete " 11176 11176 "menu."); 11177 11177 break; -
usr/src/mythtv-trunk/mythtv/libs/libmythtv/videosource.cpp
299 299 { 300 300 setLabel(QObject::tr("Perform EIT Scan")); 301 301 setHelpText(QObject::tr( 302 "If this is enabled the data in this source will be"303 " updated with listing data provided by the channels"304 " themselves 'over-the-air'."));302 "If enabled, program guide data for channels on this " 303 "source will be updated with data provided by the " 304 "channels themselves 'Over-the-Air'.")); 305 305 } 306 306 }; 307 307 … … 437 437 438 438 TransButtonSetting *config = new TransButtonSetting(); 439 439 config->setLabel(tr("Configure")); 440 config->setHelpText(tr("Run xmltvconfigure command."));440 config->setHelpText(tr("Run XMLTV configure command.")); 441 441 442 442 addChild(config); 443 443 … … 992 992 SpinBoxSetting(this, min_val, 60000, 250), 993 993 CaptureCardDBStorage(this, parent, "signal_timeout") 994 994 { 995 setLabel(QObject::tr("Signal Timeout (ms ec)"));995 setLabel(QObject::tr("Signal Timeout (ms)")); 996 996 setValue(value); 997 997 setHelpText(QObject::tr( 998 998 "Maximum time MythTV waits for any signal when " … … 1007 1007 SpinBoxSetting(this, min_val, 65000, 250), 1008 1008 CaptureCardDBStorage(this, parent, "channel_timeout") 1009 1009 { 1010 setLabel(QObject::tr("Tuning Timeout (ms ec)"));1010 setLabel(QObject::tr("Tuning Timeout (ms)")); 1011 1011 setValue(value); 1012 1012 setHelpText(QObject::tr( 1013 1013 "Maximum time MythTV waits for a channel lock " 1014 "when scanning for channels . Or,for issuing "1015 "a warning in Live TV mode."));1014 "when scanning for channels, or for issuing " 1015 "a warning in Live TV mode.")); 1016 1016 }; 1017 1017 }; 1018 1018 … … 1025 1025 { 1026 1026 setLabel(QObject::tr("Audio sampling rate limit")); 1027 1027 setHelpText( 1028 QObject::tr("If other than None, override the audio sampling "1028 QObject::tr("If non-zero, override the audio sampling " 1029 1029 "rate in the recording profile when this card is " 1030 1030 "used. Use this if your capture card does not " 1031 1031 "support all of the standard rates.")); … … 1169 1169 setLabel(QObject::tr("Wait for SEQ start header.")); 1170 1170 setValue(true); 1171 1171 setHelpText( 1172 QObject::tr(" Make the dvb-recording drop packets from"1173 " the carduntil a sequence start header is seen."));1172 QObject::tr("If enabled, drop packets from the start of a DVB " 1173 "recording until a sequence start header is seen.")); 1174 1174 }; 1175 1175 }; 1176 1176 … … 1184 1184 setLabel(QObject::tr("Open DVB card on demand")); 1185 1185 setValue(true); 1186 1186 setHelpText( 1187 QObject::tr("This option makes the backend dvb-recorder " 1188 "only open the card when it is actually in-use, leaving " 1189 "it free for other programs at other times.")); 1187 QObject::tr("If enabled, only open the DVB card when required, " 1188 "leaving it free for other programs at other times.")); 1190 1189 }; 1191 1190 }; 1192 1191 … … 1200 1199 setLabel(QObject::tr("Use DVB Card for active EIT scan")); 1201 1200 setValue(true); 1202 1201 setHelpText( 1203 QObject::tr(" This option activates the active scanfor "1204 "program data (EIT). W ith this optionenabled "1202 QObject::tr("If enabled, activate active scanning for " 1203 "program data (EIT). When this option is enabled " 1205 1204 "the DVB card is constantly in-use.")); 1206 1205 }; 1207 1206 }; … … 1213 1212 SpinBoxSetting(this, 0, 2000, 25), 1214 1213 CaptureCardDBStorage(this, parent, "dvb_tuning_delay") 1215 1214 { 1216 setLabel(QObject::tr("DVB Tuning Delay (ms ec)"));1215 setLabel(QObject::tr("DVB Tuning Delay (ms)")); 1217 1216 setHelpText( 1218 1217 QObject::tr("Some Linux DVB drivers, in particular for the " 1219 1218 "Hauppauge Nova-T, require that we slow down " … … 1445 1444 _overridedeviceid(QString::null) 1446 1445 { 1447 1446 setLabel(tr("Device ID")); 1448 setHelpText(tr("Device dID of HDHomeRun device"));1447 setHelpText(tr("Device ID of HDHomeRun device")); 1449 1448 } 1450 1449 1451 1450 void HDHomeRunDeviceID::SetIP(const QString &ip) … … 1495 1494 setLabel(QObject::tr("Available Devices")); 1496 1495 setHelpText( 1497 1496 QObject::tr( 1498 "Device dID and Tuner Number of available HDHomeRun devices."));1497 "Device ID and Tuner Number of available HDHomeRun devices.")); 1499 1498 1500 1499 connect(this, SIGNAL(valueChanged( const QString&)), 1501 1500 this, SLOT( UpdateDevices(const QString&))); … … 2253 2252 { 2254 2253 setLabel(QObject::tr("Display Name (optional)")); 2255 2254 setHelpText(QObject::tr( 2256 "This name is displayed on screen when live TV begins "2255 "This name is displayed on screen when Live TV begins " 2257 2256 "and when changing the selected input or card. If you " 2258 2257 "use this, make sure the information is unique for " 2259 2258 "each input.")); … … 2424 2423 addSelection(QObject::tr("Live TV only"), "1", false); 2425 2424 addSelection(QObject::tr("Always"), "2", false); 2426 2425 setHelpText(QObject::tr( 2427 "If enabled MythTV will tune using only the "2426 "If enabled, MythTV will tune using only the " 2428 2427 "MPEG program number. The program numbers " 2429 2428 "change more often than DVB or ATSC tuning " 2430 2429 "parameters, so this is slightly less reliable. " … … 2605 2604 ingrpbtn->setLabel(QObject::tr("Create a New Input Group")); 2606 2605 ingrpbtn->setHelpText( 2607 2606 QObject::tr("Input groups are only needed when two or more cards " 2608 "share the same resource such as a firewire card and "2607 "share the same resource such as a FireWire card and " 2609 2608 "an analog card input controlling the same set top box.")); 2610 2609 interact->addChild(ingrpbtn); 2611 2610 interact->addChild(inputgrp0); … … 2936 2935 gContext->GetMainWindow(), 2937 2936 "", 2938 2937 tr("Capture Card Menu"), 2939 tr("Edit.. "),2940 tr("Delete.. "),2938 tr("Edit..."), 2939 tr("Delete..."), 2941 2940 kDialogCodeButton0); 2942 2941 2943 2942 if (kDialogCodeButton0 == val) … … 3069 3068 gContext->GetMainWindow(), 3070 3069 "", 3071 3070 tr("Video Source Menu"), 3072 tr("Edit.. "),3073 tr("Delete.. "),3071 tr("Edit..."), 3072 tr("Delete..."), 3074 3073 kDialogCodeButton0); 3075 3074 3076 3075 if (kDialogCodeButton0 == val) -
usr/src/mythtv-trunk/mythtv/libs/libmythtv/channelsettings.cpp
273 273 { 274 274 setValue(true); 275 275 setLabel(QObject::tr("Visible")); 276 setHelpText(QObject::tr("If set, the channel will be visible in the "276 setHelpText(QObject::tr("If enabled, the channel will be visible in the " 277 277 "EPG.")); 278 278 } 279 279 }; … … 285 285 CheckBoxSetting(this), ChannelDBStorage(this, id, "useonairguide") 286 286 { 287 287 setLabel(QObject::tr("Use on air guide")); 288 setHelpText(QObject::tr("If set the guide information will be taken " 289 "from the On Air Channel guide.")); 288 setHelpText(QObject::tr("If enabled, guide information for this " 289 "channel will be updated using 'Over-the-Air' " 290 "program listings.")); 290 291 } 291 292 }; 292 293 … … 303 304 setLabel(QObject::tr("Frequency")+" "+QObject::tr("or")+" "+ 304 305 QObject::tr("Channel")); 305 306 setHelpText(QObject::tr( 306 "Specify either the exact frequency in kHzor "307 "Specify either the exact frequency (in kHz) or " 307 308 "a valid channel for your 'TV Format'.")); 308 309 } 309 310 }; … … 317 318 { 318 319 setLabel(QObject::tr("Finetune")+" (kHz)"); 319 320 setHelpText(QObject::tr("Value to be added to your desired frequency " 320 " in kHz,for 'fine tuning'."));321 "(in kHz) for 'fine tuning'.")); 321 322 } 322 323 }; 323 324 … … 479 480 ChannelOptionsV4L::ChannelOptionsV4L(const ChannelID& id) : 480 481 VerticalConfigurationGroup(false, true, false, false) 481 482 { 482 setLabel(QObject::tr("Channel Options - Video 4Linux"));483 setLabel(QObject::tr("Channel Options - Video4Linux")); 483 484 setUseLabel(false); 484 485 485 486 addChild(new Freqid(id)); -
usr/src/mythtv-trunk/mythtv/libs/libmythtv/recordingprofile.cpp
521 521 SliderSetting(this, 100, 8000, 100), 522 522 CodecParamStorage(this, parent, "mpeg4bitrate") 523 523 { 524 setLabel(QObject::tr("Bitrate "));524 setLabel(QObject::tr("Bitrate (kb/s)")); 525 525 setValue(2200); 526 setHelpText(QObject::tr("Bitrate in kilobits/second. 2200 Kbps is "527 "approximately 1 G igabyte perhour."));526 setHelpText(QObject::tr("Bitrate in kilobits/second. 2200 kb/s is " 527 "approximately 1 GB/hour.")); 528 528 }; 529 529 }; 530 530 … … 685 685 setValue(default_br); 686 686 setHelpText(QObject::tr( 687 687 "Average bit rate in kilobits/second. " 688 "2200 Kbps is approximately 1 Gigabyte perhour."));688 "2200 kb/s is approximately 1 GB/hour.")); 689 689 }; 690 690 }; 691 691 … … 705 705 setLabel(label); 706 706 setValue(default_br); 707 707 setHelpText(QObject::tr("Maximum bit rate in kilobits/second. " 708 "2200 Kbps is approximately 1 Gigabyte perhour."));708 "2200 kb/s is approximately 1 GB/hour.")); 709 709 }; 710 710 }; 711 711 -
usr/src/mythtv-trunk/mythtv/libs/libmythtv/transporteditor.cpp
350 350 gContext->GetMainWindow(), 351 351 "", 352 352 tr("Transport Menu"), 353 tr("Edit.. "),354 tr("Delete.. "), kDialogCodeButton0);353 tr("Edit..."), 354 tr("Delete..."), kDialogCodeButton0); 355 355 356 356 if (kDialogCodeButton0 == val) 357 357 emit Edit(); … … 460 460 setLabel(QObject::tr("Symbol Rate")); 461 461 setHelpText( 462 462 QObject::tr( 463 "Symbol Rate (symbols/sec ond).\n"464 "Most dvb-stransponders transmit at 27.5 "463 "Symbol Rate (symbols/sec).\n" 464 "Most DVB-S transponders transmit at 27.5 " 465 465 "million symbols per second.")); 466 466 addSelection("3333000"); 467 467 addSelection("22000000"); -
usr/src/mythtv-trunk/mythtv/libs/libmythtv/videodisplayprofile.cpp
731 731 else if ("opengldoubleratelinearblend" == short_name) 732 732 return QObject::tr("Linear blend (2x, HW)"); 733 733 else if ("opengldoubleratefieldorder" == short_name) 734 return QObject::tr("Interlaced (2x, H w)");734 return QObject::tr("Interlaced (2x, HW)"); 735 735 else if ("opengldoublerateyadif" == short_name) 736 return QObject::tr("Yadif (2x, H w)");736 return QObject::tr("Yadif (2x, HW)"); 737 737 else if ("openglyadif" == short_name) 738 return QObject::tr("Yadif (H w)");738 return QObject::tr("Yadif (HW)"); 739 739 else if ("vdpauonefield" == short_name) 740 return QObject::tr("One Field (1x, H w)");740 return QObject::tr("One Field (1x, HW)"); 741 741 else if ("vdpaubobdeint" == short_name) 742 return QObject::tr("Bob (2x, H w)");742 return QObject::tr("Bob (2x, HW)"); 743 743 else if ("vdpaubasic" == short_name) 744 return QObject::tr("Temporal (1x, H w)");744 return QObject::tr("Temporal (1x, HW)"); 745 745 else if ("vdpaubasicdoublerate" == short_name) 746 return QObject::tr("Temporal (2x, H w)");746 return QObject::tr("Temporal (2x, HW)"); 747 747 else if ("vdpauadvanced" == short_name) 748 return QObject::tr("Advanced (1x, H w)");748 return QObject::tr("Advanced (1x, HW)"); 749 749 else if ("vdpauadvanceddoublerate" == short_name) 750 return QObject::tr("Advanced (2x, H w)");750 return QObject::tr("Advanced (2x, HW)"); 751 751 752 752 return ""; 753 753 } -
usr/src/mythtv-trunk/mythtv/libs/libmythui/myththemedmenu.cpp
627 627 "menu file %1").arg(menuname)); 628 628 629 629 if (menuname != "mainmenu.xml") 630 ShowOkPopup(QObject::tr("Myth could not locate the menu file %1")630 ShowOkPopup(QObject::tr("MythTV could not locate the menu file %1") 631 631 .arg(menuname)); 632 632 return false; 633 633 } -
usr/src/mythtv-trunk/mythtv/libs/libmythui/mythprogressdialog.cpp
12 12 if (!message.isEmpty()) 13 13 m_message = message; 14 14 else 15 m_message = tr("Please Wait ...");15 m_message = tr("Please Wait..."); 16 16 m_messageText = NULL; 17 17 } 18 18 -
usr/src/mythtv-trunk/mythtv/libs/libmyth/programinfo.cpp
3862 3862 QObject::tr("Live TV", "Recording Profile Live TV") + 3863 3863 QObject::tr("Low Quality", "Recording Profile Low Quality") + 3864 3864 QObject::tr("Medium Quality", "Recording Profile Medium Quality") + 3865 QObject::tr("MPEG 2", "Recording Profile MPEG2") +3866 QObject::tr("RTjpeg/MPEG 4", "Recording Profile RTjpeg/MPEG4");3865 QObject::tr("MPEG-2", "Recording Profile MPEG-2") + 3866 QObject::tr("RTjpeg/MPEG-4", "Recording Profile RTjpeg/MPEG-4"); 3867 3867 3868 3868 3869 3869 QString rec_profile_groups = … … 3885 3885 "Recording Profile Group Name") + 3886 3886 QObject::tr("MPEG-2 Encoders (PVR-x50, PVR-500)", 3887 3887 "Recording Profile Group Name") + 3888 QObject::tr("Software Encoders ( v4lbased)",3888 QObject::tr("Software Encoders (V4L based)", 3889 3889 "Recording Profile Group Name") + 3890 3890 QObject::tr("Transcoders", 3891 3891 "Recording Profile Group Name") + 3892 QObject::tr("USB M peg-4 Encoder (Plextor ConvertX, etc)",3892 QObject::tr("USB MPEG-4 Encoder (Plextor ConvertX, etc)", 3893 3893 "Recording Profile Group Name"); 3894 3894 3895 3895 QString display_rec_groups = 3896 3896 QObject::tr("All Programs", "Recording Group All Programs") + 3897 3897 QObject::tr("All", "Recording Group All Programs -- short form") + 3898 QObject::tr("Live TV", "Recording Group LiveTV") +3898 QObject::tr("Live TV", "Recording Group Live TV") + 3899 3899 QObject::tr("Default", "Recording Group Default") + 3900 3900 QObject::tr("Deleted", "Recording Group Deleted"); 3901 3901 3902 3902 QString storage_groups = 3903 3903 QObject::tr("Default", "Storage Group Name") + 3904 QObject::tr("Live TV","Storage Group Name") +3904 QObject::tr("Live TV", "Storage Group Name") + 3905 3905 QObject::tr("Thumbnails", "Storage Group Name") + 3906 3906 QObject::tr("DB Backups", "Storage Group Name"); 3907 3907 -
usr/src/mythtv-trunk/mythtv/libs/libmyth/dbsettings.cpp
89 89 info->setValue(QObject::tr("All database settings take effect when " 90 90 "you restart this program.")); 91 91 else 92 info->setValue(QObject::tr("Myth could not connect to the database. "92 info->setValue(QObject::tr("MythTV could not connect to the database. " 93 93 "Please verify your database settings " 94 94 "below.")); 95 95 addChild(info); … … 194 194 195 195 wolEnabled = new TransCheckBoxSetting(); 196 196 wolEnabled->setLabel(QObject::tr("Enable Database Server Wakeup")); 197 wolEnabled->setHelpText(QObject::tr("If checked, the frontend will use "197 wolEnabled->setHelpText(QObject::tr("If enabled, the frontend will use " 198 198 "database wakeup parameters to " 199 199 "reconnect to the database server.")); 200 200 -
usr/src/mythtv-trunk/mythtv/libs/libmyth/mythcontext.cpp
1298 1298 QString message = (persistent) ? 1299 1299 QObject::tr( 1300 1300 "The connection to the master backend " 1301 "server has gone away for some reason. ."1301 "server has gone away for some reason. " 1302 1302 "Is it running?") : 1303 1303 QObject::tr( 1304 "Could not connect to the master backend server -- is "1305 "it running? Is the IP address set for it in the"1306 " setup programcorrect?");1304 "Could not connect to the master backend server. Is " 1305 "it running? Is the IP address set for it in " 1306 "mythtv-setup correct?"); 1307 1307 1308 1308 if (mainWindow && m_ui && m_ui->IsScreenSetup()) 1309 1309 { -
usr/src/mythtv-trunk/mythtv/libs/libmyth/backendselect.cpp
194 194 #endif 195 195 196 196 197 label = new QLabel(tr("Please select default Myth Backend Server"), this);197 label = new QLabel(tr("Please select default MythTV Backend Server"), this); 198 198 199 199 m_backends = new QListWidget(this); 200 200 OK = new MythPushButton(tr("OK"), this); -
usr/src/mythtv-trunk/mythtv/programs/mythfrontend/playbackbox.cpp
1500 1500 (p->recgroup == "LiveTV") && 1501 1501 (m_viewMask & VIEW_LIVETVGRP)) 1502 1502 { 1503 QString tmpTitle = tr("Live TV");1503 QString tmpTitle = tr("Live TV"); 1504 1504 sortedList[tmpTitle.toLower()] = tmpTitle; 1505 1505 m_progLists[tmpTitle.toLower()].push_front(p); 1506 1506 m_progLists[tmpTitle.toLower()].setAutoDelete(false); … … 1830 1830 if (m_progLists[m_watchGroupLabel].size() > 0) 1831 1831 m_titleList << m_watchGroupName; 1832 1832 if ((m_progLists["livetv"].size() > 0) && 1833 (!sortedList.values().contains(tr("Live TV"))))1834 m_titleList << tr("Live TV");1833 (!sortedList.values().contains(tr("Live TV")))) 1834 m_titleList << tr("Live TV"); 1835 1835 m_titleList << sortedList.values(); 1836 1836 1837 1837 // Populate list of recording groups … … 3319 3319 { 3320 3320 // LiveTV ProgramInfo's are not in the aggregated list 3321 3321 ProgramList::iterator _it[2] = { 3322 m_progLists[tr("Live TV").toLower()].begin(), m_progLists[""].begin() };3322 m_progLists[tr("Live TV").toLower()].begin(), m_progLists[""].begin() }; 3323 3323 ProgramList::iterator _end[2] = { 3324 m_progLists[tr("Live TV").toLower()].end(), m_progLists[""].end() };3324 m_progLists[tr("Live TV").toLower()].end(), m_progLists[""].end() }; 3325 3325 3326 3326 if (recgroup != "LiveTV") 3327 3327 { … … 4211 4211 4212 4212 dispGroup = (dispGroup == "Default") ? tr("Default") : dispGroup; 4213 4213 dispGroup = (dispGroup == "Deleted") ? tr("Deleted") : dispGroup; 4214 dispGroup = (dispGroup == "LiveTV") ? tr("Live TV") : dispGroup;4214 dispGroup = (dispGroup == "LiveTV") ? tr("Live TV") : dispGroup; 4215 4215 4216 4216 displayNames.append(tr("%1 [%n item(s)]", 0, items).arg(dispGroup)); 4217 4217 … … 4399 4399 if (dispGroup == "Default") 4400 4400 dispGroup = tr("Default"); 4401 4401 else if (dispGroup == "LiveTV") 4402 dispGroup = tr("Live TV");4402 dispGroup = tr("Live TV"); 4403 4403 else if (dispGroup == "Deleted") 4404 4404 dispGroup = tr("Deleted"); 4405 4405 -
usr/src/mythtv-trunk/mythtv/programs/mythfrontend/scheduleeditor.cpp
813 813 if (*it == "Default") 814 814 dispValue = tr("Default"); 815 815 else if (*it == "LiveTV") 816 dispValue = tr("Live TV");816 dispValue = tr("Live TV"); 817 817 else 818 818 dispValue = *it; 819 819 -
usr/src/mythtv-trunk/mythtv/programs/mythfrontend/globalsettings.cpp
120 120 HostCheckBox *gc = new HostCheckBox("AudioDefaultUpmix"); 121 121 gc->setLabel(QObject::tr("Upconvert stereo to 5.1 surround")); 122 122 gc->setValue(true); 123 gc->setHelpText(QObject::tr(" MythTV can upconvert stereo to 5.1 audio."124 " Set this option to enable it by default."125 " You can enable or disable the upconversionduring playback at anytime."));123 gc->setHelpText(QObject::tr("If enabled, MythTV will upconvert stereo to 5.1 audio " 124 "by default. You can enable or disable the upconversion " 125 "during playback at anytime.")); 126 126 return gc; 127 127 } 128 128 … … 154 154 HostCheckBox *gc = new HostCheckBox("SRCQualityOverride"); 155 155 gc->setLabel(QObject::tr("Override SRC quality")); 156 156 gc->setValue(false); 157 gc->setHelpText(QObject::tr(" Override audio sample rate conversion quality"));157 gc->setHelpText(QObject::tr("Enable to override audio sample rate conversion quality")); 158 158 return gc; 159 159 } 160 160 … … 201 201 HostCheckBox *gc = new HostCheckBox("MythControlsVolume"); 202 202 gc->setLabel(QObject::tr("Use internal volume controls")); 203 203 gc->setValue(true); 204 gc->setHelpText(QObject::tr(" MythTV cancontrol the PCM and master "204 gc->setHelpText(QObject::tr("If enabled, MythTV will control the PCM and master " 205 205 "mixer volume. If you prefer to control the volume externally " 206 206 "(like your amplifier) or use an external mixer " 207 207 "program, disable this option.")); … … 402 402 HostCheckBox *gc = new HostCheckBox("QueryInitialFilter"); 403 403 gc->setLabel(QObject::tr("Always prompt for initial group filter")); 404 404 gc->setValue(false); 405 gc->setHelpText(QObject::tr(" Always prompt the user for the initial filter"406 "to apply when entering the Watch Recordings screen."));407 405 gc->setHelpText(QObject::tr("If enabled, always prompt the user for the " 406 "initial filter to apply when entering the " 407 "Watch Recordings screen.")); 408 408 return gc; 409 409 } 410 410 … … 413 413 HostCheckBox *gc = new HostCheckBox("RememberRecGroup"); 414 414 gc->setLabel(QObject::tr("Save current group filter when changed")); 415 415 gc->setValue(true); 416 gc->setHelpText(QObject::tr(" Remember the last selected filter "416 gc->setHelpText(QObject::tr("If enabled, remember the last selected filter " 417 417 "instead of displaying the default filter " 418 418 "whenever you enter the playback screen.")); 419 420 419 return gc; 421 420 } 422 421 … … 425 424 HostCheckBox *gc = new HostCheckBox("DispRecGroupAsAllProg"); 426 425 gc->setLabel(QObject::tr("Show filter name instead of \"All Programs\"")); 427 426 gc->setValue(false); 428 gc->setHelpText(QObject::tr(" Use the name of the display filter currently "429 " applied in place of the term \"All Programs\" in the"430 " playback screen."));427 gc->setHelpText(QObject::tr("If enabled, use the name of the display " 428 "filter currently applied in place of the term \"All " 429 "Programs\" in the playback screen.")); 431 430 return gc; 432 431 } 433 432 … … 569 568 bc->setLabel(QObject::tr("Skip blank frames after commercials")); 570 569 bc->setValue(true); 571 570 bc->setHelpText(QObject::tr("When using Blank Frame Detection and " 572 "Auto-Flagging, include blank frames following commercial"573 " breaks as part of the commercial break."));571 "Auto-Flagging, enable to include blank frames following " 572 "commercial breaks as part of the commercial break.")); 574 573 return bc; 575 574 } 576 575 577 576 static HostSpinBox *CommRewindAmount() 578 577 { 579 578 HostSpinBox *gs = new HostSpinBox("CommRewindAmount", 0, 10, 1); 580 gs->setLabel(QObject::tr("Commercial Skip Auto-Rewind Amount "));581 gs->setHelpText(QObject::tr(" If set,MythTV will automatically rewind "579 gs->setLabel(QObject::tr("Commercial Skip Auto-Rewind Amount (seconds)")); 580 gs->setHelpText(QObject::tr("MythTV will automatically rewind " 582 581 "this many seconds after performing a commercial skip.")); 583 582 gs->setValue(0); 584 583 return gs; … … 587 586 static HostSpinBox *CommNotifyAmount() 588 587 { 589 588 HostSpinBox *gs = new HostSpinBox("CommNotifyAmount", 0, 10, 1); 590 gs->setLabel(QObject::tr("Commercial Skip Notify Amount "));591 gs->setHelpText(QObject::tr(" If set,MythTV will act like a commercial "589 gs->setLabel(QObject::tr("Commercial Skip Notify Amount (seconds)")); 590 gs->setHelpText(QObject::tr("MythTV will act like a commercial " 592 591 "begins this many seconds early. This can be useful " 593 592 "when commercial notification is used in place of " 594 593 "automatic skipping.")); … … 599 598 static GlobalSpinBox *MaximumCommercialSkip() 600 599 { 601 600 GlobalSpinBox *bs = new GlobalSpinBox("MaximumCommercialSkip", 0, 3600, 10); 602 bs->setLabel(QObject::tr("Maximum commercial skip ( inseconds)"));601 bs->setLabel(QObject::tr("Maximum commercial skip (seconds)")); 603 602 bs->setHelpText(QObject::tr("MythTV will discourage long manual commercial " 604 603 "skips. Skips which are longer than this will require the " 605 604 "user to hit the SKIP key twice. Automatic commercial " … … 611 610 static GlobalSpinBox *MergeShortCommBreaks() 612 611 { 613 612 GlobalSpinBox *bs = new GlobalSpinBox("MergeShortCommBreaks", 0, 3600, 5); 614 bs->setLabel(QObject::tr("Merge short commercial breaks ( inseconds)"));613 bs->setLabel(QObject::tr("Merge short commercial breaks (seconds)")); 615 614 bs->setHelpText(QObject::tr("Treat consecutive commercial breaks shorter " 616 615 "than this as one break when skipping forward. Useful if " 617 616 "you have to skip a few times during breaks. Applies to " … … 623 622 static GlobalSpinBox *AutoExpireExtraSpace() 624 623 { 625 624 GlobalSpinBox *bs = new GlobalSpinBox("AutoExpireExtraSpace", 0, 200, 1); 626 bs->setLabel(QObject::tr("Extra Disk Space "));627 bs->setHelpText(QObject::tr("Extra disk space (in G igabytes) that you want "625 bs->setLabel(QObject::tr("Extra Disk Space (GB)")); 626 bs->setHelpText(QObject::tr("Extra disk space (in GB) that you want " 628 627 "to keep free on the recording file systems beyond what " 629 628 "MythTV requires.")); 630 629 bs->setValue(1); … … 636 635 GlobalCheckBox *cb = new GlobalCheckBox("AutoExpireInsteadOfDelete"); 637 636 cb->setLabel(QObject::tr("Auto Expire Instead of Delete Recording")); 638 637 cb->setValue(false); 639 cb->setHelpText(QObject::tr("I nstead of deleting a recording,"640 "move recording to the 'Deleted' recgroup and turn on"641 "autoexpire."));638 cb->setHelpText(QObject::tr("If enabled, move deleted recordings to the " 639 "'Deleted' recgroup and turn on autoexpire " 640 "instead of deleting immediately.")); 642 641 return cb; 643 642 } 644 643 645 644 static GlobalSpinBox *DeletedMaxAge() 646 645 { 647 646 GlobalSpinBox *bs = new GlobalSpinBox("DeletedMaxAge", 0, 365, 1); 648 bs->setLabel(QObject::tr("Deleted Max Age "));647 bs->setLabel(QObject::tr("Deleted Max Age (days)")); 649 648 bs->setHelpText(QObject::tr("When set to a number greater than zero, " 650 649 "AutoExpire will force expiration of Deleted recordings " 651 650 "when they are this many days old.")); … … 659 658 cb->setLabel(QObject::tr("Expire in deleted order")); 660 659 cb->setValue(false); 661 660 cb->setHelpText(QObject::tr( 662 " Expire Deletedrecordings in the order which they were "661 "If enabled, delete recordings in the order which they were " 663 662 "originally deleted.")); 664 663 return cb; 665 664 }; … … 705 704 GlobalCheckBox *bc = new GlobalCheckBox("AutoExpireWatchedPriority"); 706 705 bc->setLabel(QObject::tr("Watched before UNwatched")); 707 706 bc->setValue(false); 708 bc->setHelpText(QObject::tr("If set, programs that have been marked as "707 bc->setHelpText(QObject::tr("If enabled, programs that have been marked as " 709 708 "watched will be expired before programs that have not " 710 709 "been watched.")); 711 710 return bc; … … 727 726 GlobalCheckBox *bc = new GlobalCheckBox("AutoExpireDefault"); 728 727 bc->setLabel(QObject::tr("Auto Expire Default")); 729 728 bc->setValue(true); 730 bc->setHelpText(QObject::tr(" Whenenabled, any new recording schedules "729 bc->setHelpText(QObject::tr("If enabled, any new recording schedules " 731 730 "will be marked as eligible for Auto-Expiration. " 732 731 "Existing schedules will keep their current value.")); 733 732 return bc; … … 736 735 static GlobalSpinBox *AutoExpireLiveTVMaxAge() 737 736 { 738 737 GlobalSpinBox *bs = new GlobalSpinBox("AutoExpireLiveTVMaxAge", 1, 365, 1); 739 bs->setLabel(QObject::tr("LiveTV Max Age "));738 bs->setLabel(QObject::tr("LiveTV Max Age (days)")); 740 739 bs->setHelpText(QObject::tr("AutoExpire will force expiration of LiveTV " 741 740 "recordings when they are this many days old. LiveTV " 742 741 "recordings may also be expired early if necessary to " … … 751 750 GlobalSpinBox *bs = new GlobalSpinBox("MinRecordDiskThreshold", 752 751 0, 1000000, 100); 753 752 bs->setLabel(QObject::tr("New Recording Free Disk Space Threshold " 754 "( in Megabytes)"));753 "(MB)")); 755 754 bs->setHelpText(QObject::tr("MythTV will stop scheduling new recordings on " 756 "a backend when its free disk space falls below this "755 "a backend when its free disk space (in MB) falls below this " 757 756 "value.")); 758 757 bs->setValue(300); 759 758 return bs; … … 765 764 GlobalCheckBox *bc = new GlobalCheckBox("RerecordWatched"); 766 765 bc->setLabel(QObject::tr("Re-record Watched")); 767 766 bc->setValue(true); 768 bc->setHelpText(QObject::tr("If set, programs that have been marked as "767 bc->setHelpText(QObject::tr("If enabled, programs that have been marked as " 769 768 "watched and are auto-expired will be re-recorded if " 770 769 "they are shown again.")); 771 770 return bc; … … 775 774 { 776 775 GlobalSpinBox *bs = new GlobalSpinBox("RecordPreRoll", 0, 600, 60, true); 777 776 bs->setLabel(QObject::tr("Time to record before start of show " 778 "( inseconds)"));777 "(seconds)")); 779 778 bs->setHelpText(QObject::tr("This global setting allows the recorder " 780 779 "to start before the scheduled start time. It does " 781 780 "not affect the scheduler. It is ignored when two shows " … … 787 786 static GlobalSpinBox *RecordOverTime() 788 787 { 789 788 GlobalSpinBox *bs = new GlobalSpinBox("RecordOverTime", 0, 1800, 60, true); 790 bs->setLabel(QObject::tr("Time to record past end of show ( inseconds)"));789 bs->setLabel(QObject::tr("Time to record past end of show (seconds)")); 791 790 bs->setValue(0); 792 791 bs->setHelpText(QObject::tr("This global setting allows the recorder " 793 792 "to record beyond the scheduled end time. It does " … … 825 824 { 826 825 GlobalSpinBox *bs = new GlobalSpinBox("CategoryOverTime", 827 826 0, 180, 60, true); 828 bs->setLabel(QObject::tr("Record past end of show ( inminutes)"));827 bs->setLabel(QObject::tr("Record past end of show (minutes)")); 829 828 bs->setValue(30); 830 829 bs->setHelpText(QObject::tr("For the specified category, an attempt " 831 830 "will be made to extend the recording by the specified " 832 " time. It is ignored when two shows have been scheduled"833 " without enough time in between."));831 "number of minutes. It is ignored when two shows have " 832 "been scheduled without enough time in between.")); 834 833 return bs; 835 834 } 836 835 … … 936 935 skiploop->setHelpText( 937 936 tr("When unchecked the deblocking loopfilter will be disabled ") + "\n" + 938 937 tr("Disabling will significantly reduce the load on the CPU " 939 "when watching HD h264 but may significantly reduce video quality."));938 "when watching HD H.264 but may significantly reduce video quality.")); 940 939 941 940 osdfade->setHelpText( 942 941 tr("When unchecked the OSD will not fade away but instead " … … 1600 1599 static HostSpinBox *OSDGeneralTimeout() 1601 1600 { 1602 1601 HostSpinBox *gs = new HostSpinBox("OSDGeneralTimeout", 1, 30, 1); 1603 gs->setLabel(QObject::tr("General OSD time-out (sec )"));1602 gs->setLabel(QObject::tr("General OSD time-out (seconds)")); 1604 1603 gs->setValue(2); 1605 gs->setHelpText(QObject::tr(" Length of time anon-screen display "1604 gs->setHelpText(QObject::tr("How many seconds the on-screen display " 1606 1605 "window will be visible.")); 1607 1606 return gs; 1608 1607 } … … 1610 1609 static HostSpinBox *OSDProgramInfoTimeout() 1611 1610 { 1612 1611 HostSpinBox *gs = new HostSpinBox("OSDProgramInfoTimeout", 1, 30, 1); 1613 gs->setLabel(QObject::tr("Program Info OSD time-out "));1612 gs->setLabel(QObject::tr("Program Info OSD time-out (seconds)")); 1614 1613 gs->setValue(3); 1615 gs->setHelpText(QObject::tr(" Length of timethe on-screen display "1614 gs->setHelpText(QObject::tr("How many seconds the on-screen display " 1616 1615 "will display program information.")); 1617 1616 return gs; 1618 1617 } … … 1620 1619 static HostSpinBox *OSDNotifyTimeout() 1621 1620 { 1622 1621 HostSpinBox *gs = new HostSpinBox("OSDNotifyTimeout", 1, 30, 1); 1623 gs->setLabel(QObject::tr("UDP Notify OSD time-out "));1622 gs->setLabel(QObject::tr("UDP Notify OSD time-out (seconds)")); 1624 1623 gs->setValue(5); 1625 gs->setHelpText(QObject::tr("How many seconds anon-screen display "1624 gs->setHelpText(QObject::tr("How many seconds the on-screen display " 1626 1625 "will be active for UDP Notify events.")); 1627 1626 return gs; 1628 1627 } … … 1704 1703 gc->addSelection(QObject::tr("PAL Teletext"), "pal_txt", 1 == sel); 1705 1704 gc->addSelection(QObject::tr("NTSC Closed Caption"), "ntsc_cc", 2 == sel); 1706 1705 gc->setHelpText( 1707 QObject::tr("If set, this overrides the mythtv-setup setting "1706 QObject::tr("If enabled, this overrides the mythtv-setup setting " 1708 1707 "used during recording when decoding captions.")); 1709 1708 1710 1709 return gc; … … 1935 1934 gc->setLabel(QObject::tr("Always stream recordings from the backend")); 1936 1935 gc->setValue(false); 1937 1936 gc->setHelpText(QObject::tr( 1938 "Enable this setting if you want MythTV to " 1939 "always stream files from a remote backend " 1940 "instead of directly reading a recording " 1941 "file if it is accessible locally.")); 1937 "If enabled, MythTV will always stream files from a " 1938 "remote backend instead of directly reading a " 1939 "recording file if it is accessible locally.")); 1942 1940 return gc; 1943 1941 } 1944 1942 … … 1962 1960 gc->setHelpText(QObject::tr( 1963 1961 "If enabled, captions will be displayed " 1964 1962 "when playing back recordings or watching " 1965 " live TV. Closed Captioning can be turned on or off "1963 "Live TV. Closed Captioning can be turned on or off " 1966 1964 "by pressing \"T\" during playback.")); 1967 1965 return gc; 1968 1966 } … … 1974 1972 gc->setValue(true); 1975 1973 gc->setHelpText( 1976 1974 QObject::tr( 1977 " When enabled the newEIA-708 captions will be preferred over "1978 "the old EIA-608 captions in ATSC streams."));1975 "If enabled, the newer EIA-708 captions will be preferred over " 1976 "the older EIA-608 captions in ATSC streams.")); 1979 1977 1980 1978 return gc; 1981 1979 } … … 2022 2020 HostCheckBox *gc = new HostCheckBox("ClearSavedPosition"); 2023 2021 gc->setLabel(QObject::tr("Clear bookmark on playback")); 2024 2022 gc->setValue(true); 2025 gc->setHelpText(QObject::tr(" Automatically clear the bookmark on a"2026 " recording when the recording is played back. If "2023 gc->setHelpText(QObject::tr("If enabled, automatically clear the bookmark " 2024 "on a recording when the recording is played back. If " 2027 2025 "disabled, you can mark the beginning with rewind " 2028 2026 "then save position.")); 2029 2027 return gc; … … 2089 2087 HostCheckBox *gc = new HostCheckBox("EndOfRecordingExitPrompt"); 2090 2088 gc->setLabel(QObject::tr("Prompt at end of recording")); 2091 2089 gc->setValue(false); 2092 gc->setHelpText(QObject::tr("If set, a menu will be displayed allowing "2090 gc->setHelpText(QObject::tr("If enabled, a menu will be displayed allowing " 2093 2091 "you to delete the recording when it has finished " 2094 2092 "playing.")); 2095 2093 return gc; … … 2104 2102 "Set the choice between viewing the current " 2105 2103 "recording group in the OSD, or showing the " 2106 2104 "'Watch Recording' screen when 'Jump to Program' " 2107 "is activated. If set, the recordings are shown "2105 "is activated. If enabled, the recordings are shown " 2108 2106 "in the OSD")); 2109 2107 return gc; 2110 2108 } … … 2115 2113 gc->setLabel(QObject::tr("Continue Playback When Embedded")); 2116 2114 gc->setValue(false); 2117 2115 gc->setHelpText(QObject::tr( 2118 " This option continues TV playbackwhen the TV window "2116 "If enabled, TV playback continues when the TV window " 2119 2117 "is embedded in the upcoming program list or recorded " 2120 2118 "list. The default is to pause the recorded show when " 2121 2119 "embedded.")); … … 2127 2125 HostCheckBox *gc = new HostCheckBox("AutomaticSetWatched"); 2128 2126 gc->setLabel(QObject::tr("Automatically mark a recording as watched")); 2129 2127 gc->setValue(false); 2130 gc->setHelpText(QObject::tr("If set, when you exit near the end of a "2128 gc->setHelpText(QObject::tr("If enabled, when you exit near the end of a " 2131 2129 "recording it will be marked as watched. The automatic " 2132 2130 "detection is not foolproof, so do not enable this " 2133 2131 "setting if you don't want an unwatched recording marked " … … 2138 2136 static HostSpinBox *LiveTVIdleTimeout() 2139 2137 { 2140 2138 HostSpinBox *gs = new HostSpinBox("LiveTVIdleTimeout", 0, 3600, 1); 2141 gs->setLabel(QObject::tr("Live TV idle timeout "));2139 gs->setLabel(QObject::tr("Live TV idle timeout (minutes)")); 2142 2140 gs->setValue(0); 2143 2141 gs->setHelpText(QObject::tr( 2144 "Exit Live TV automatically if left idle for the "2142 "Exit Live TV automatically if left idle for the " 2145 2143 "specified number of minutes. " 2146 2144 "0 disables the timeout.")); 2147 2145 return gs; … … 2152 2150 HostCheckBox *gc = new HostCheckBox("PlaybackPreview"); 2153 2151 gc->setLabel(QObject::tr("Display live preview of recordings")); 2154 2152 gc->setValue(true); 2155 gc->setHelpText(QObject::tr(" Whenenabled, a preview of the recording "2153 gc->setHelpText(QObject::tr("If enabled, a preview of the recording " 2156 2154 "will play in a small window on the \"Watch a " 2157 2155 "Recording\" menu.")); 2158 2156 return gc; … … 2165 2163 gc->setValue(false); 2166 2164 gc->setHelpText( 2167 2165 QObject::tr( 2168 "Use HW acceleration for the live recording preview. " 2169 "Video renderer used is determined by the CPU profiles. " 2170 "Disable if playback is sluggish or causes high CPU")); 2166 "If enabled, live recording preview will use hardware " 2167 "acceleration. The video renderer used is determined by the " 2168 "selected CPU profile. Disable if playback is sluggish or " 2169 "causes high CPU load")); 2171 2170 return gc; 2172 2171 } 2173 2172 … … 2178 2177 gc->setValue(false); 2179 2178 gc->setHelpText( 2180 2179 QObject::tr( 2181 "If you have a very slow frontend you can enable this to"2182 " always have a backend server generate preview images."));2180 "If enabled, a backend server will generate preview images. " 2181 "Recommended for very slow frontends.")); 2183 2182 return gc; 2184 2183 } 2185 2184 … … 2214 2213 HostCheckBox *gc = new HostCheckBox("UseVirtualKeyboard"); 2215 2214 gc->setLabel(QObject::tr("Use line edit virtual keyboards")); 2216 2215 gc->setValue(true); 2217 gc->setHelpText(QObject::tr(" Allows you touse a virtual keyboard "2218 "in Myth line edit boxes. To use, hit OK/Select "2216 gc->setHelpText(QObject::tr("If enabled, you can use a virtual keyboard " 2217 "in MythTV's line edit boxes. To use, hit OK/Select " 2219 2218 "while a line edit is in focus.")); 2220 2219 return gc; 2221 2220 } … … 2258 2257 HostCheckBox *gc = new HostCheckBox("NoPromptOnExit"); 2259 2258 gc->setLabel(QObject::tr("Confirm Exit")); 2260 2259 gc->setValue(true); 2261 gc->setHelpText(QObject::tr(" Whenenabled, MythTV will prompt "2260 gc->setHelpText(QObject::tr("If enabled, MythTV will prompt " 2262 2261 "for confirmation when you press the System Exit " 2263 2262 "key.")); 2264 2263 return gc; … … 2351 2350 HostCheckBox *gc = new HostCheckBox("SetupPinCodeRequired"); 2352 2351 gc->setLabel(QObject::tr("Require Setup PIN") + " "); 2353 2352 gc->setValue(false); 2354 gc->setHelpText(QObject::tr("If set, you will not be able to return "2353 gc->setHelpText(QObject::tr("If enabled, you will not be able to return " 2355 2354 "to this screen and reset the Setup PIN without first " 2356 2355 "entering the current PIN.")); 2357 2356 return gc; … … 2434 2433 static HostSpinBox *GuiWidth() 2435 2434 { 2436 2435 HostSpinBox *gs = new HostSpinBox("GuiWidth", 0, 1920, 8, true); 2437 gs->setLabel(QObject::tr("GUI width (p x)"));2436 gs->setLabel(QObject::tr("GUI width (pixels)")); 2438 2437 gs->setValue(0); 2439 2438 gs->setHelpText(QObject::tr("The width of the GUI. Do not make the GUI " 2440 2439 "wider than your actual screen resolution. Set to 0 to " … … 2445 2444 static HostSpinBox *GuiHeight() 2446 2445 { 2447 2446 HostSpinBox *gs = new HostSpinBox("GuiHeight", 0, 1600, 8, true); 2448 gs->setLabel(QObject::tr("GUI height (p x)"));2447 gs->setLabel(QObject::tr("GUI height (pixels)")); 2449 2448 gs->setValue(0); 2450 2449 gs->setHelpText(QObject::tr("The height of the GUI. Do not make the GUI " 2451 2450 "taller than your actual screen resolution. Set to 0 to " … … 2728 2727 gc->setLabel(QObject::tr("Use fixed window size")); 2729 2728 gc->setValue(true); 2730 2729 gc->setHelpText(QObject::tr( 2731 " When disabledthe video playback "2730 "If disabled, the video playback " 2732 2731 "window can be resized")); 2733 2732 return gc; 2734 2733 } … … 3042 3041 HostCheckBox *gc = new HostCheckBox("EPGShowCategoryColors"); 3043 3042 gc->setLabel(QObject::tr("Display Genre Colors")); 3044 3043 gc->setHelpText(QObject::tr("Colorize program guide using " 3045 "genre colors . (Not available for all grabbers.)"));3044 "genre colors (not available for all grabbers).")); 3046 3045 gc->setValue(true); 3047 3046 return gc; 3048 3047 } … … 3155 3154 GlobalCheckBox *bc = new GlobalCheckBox("SchedOpenEnd"); 3156 3155 bc->setLabel(QObject::tr("Avoid back to back recordings from different " 3157 3156 "channels")); 3158 bc->setHelpText(QObject::tr("If set, the scheduler will avoid assigning "3157 bc->setHelpText(QObject::tr("If enabled, the scheduler will avoid assigning " 3159 3158 "shows from different channels to the same card if their " 3160 3159 "end time and start time match. This will be allowed " 3161 3160 "when necessary in order to resolve conflicts.")); … … 3377 3376 ge->setLabel(QObject::tr("Guide starts at channel")); 3378 3377 ge->setValue("3"); 3379 3378 ge->setHelpText(QObject::tr("The program guide starts on this channel if " 3380 "it is run from outside of Live TV mode."));3379 "it is run from outside of Live TV mode.")); 3381 3380 return ge; 3382 3381 } 3383 3382 … … 3707 3706 HostCheckBox *gc = new HostCheckBox("PlaybackWLStart"); 3708 3707 gc->setLabel(QObject::tr("Start from the Watch List view")); 3709 3708 gc->setValue(false); 3710 gc->setHelpText(QObject::tr("If set, the 'Watch List' will be the "3709 gc->setHelpText(QObject::tr("If enabled, the 'Watch List' will be the " 3711 3710 "initial view each time you enter the " 3712 3711 "Watch Recordings screen")); 3713 3712 return gc; … … 3779 3778 gc->setLabel(QObject::tr("Enable OpenGL vertical sync for timing")); 3780 3779 gc->setValue(false); 3781 3780 gc->setHelpText(QObject::tr( 3782 "If it issupported by your hardware/drivers, "3781 "If supported by your hardware/drivers, " 3783 3782 "MythTV will use OpenGL vertical syncing for " 3784 3783 "video timing, reducing frame jitter.")); 3785 3784 return gc; … … 3818 3817 { 3819 3818 HostSpinBox *gs = new HostSpinBox("LCDPopupTime", 1, 300, 1, true); 3820 3819 gs->setLabel(QObject::tr("Menu Pop-up Time")); 3821 gs->setHelpText(QObject::tr(" The time (in seconds) thatthe menu will "3820 gs->setHelpText(QObject::tr("How many seconds the menu will " 3822 3821 "remain visible after navigation.")); 3823 3822 gs->setValue(5); 3824 3823 return gs; … … 3976 3975 HostCheckBox *gc = new HostCheckBox("MacGammaCorrect"); 3977 3976 gc->setLabel(QObject::tr("Enable gamma correction for video")); 3978 3977 gc->setValue(false); 3979 gc->setHelpText(QObject::tr("If checked, QuickTime will correct the gamma "3978 gc->setHelpText(QObject::tr("If enabled, QuickTime will correct the gamma " 3980 3979 "of the video to match your monitor. Turning this off can " 3981 3980 "save some CPU cycles.")); 3982 3981 return gc; … … 3987 3986 HostCheckBox *gc = new HostCheckBox("MacScaleUp"); 3988 3987 gc->setLabel(QObject::tr("Scale video as necessary")); 3989 3988 gc->setValue(true); 3990 gc->setHelpText(QObject::tr("If checked, video will be scaled to fit your "3989 gc->setHelpText(QObject::tr("If enabled, video will be scaled to fit your " 3991 3990 "window or screen. If unchecked, video will never be made " 3992 3991 "larger than its actual pixel size.")); 3993 3992 return gc; … … 4011 4010 HostCheckBox *gc = new HostCheckBox("MacMainEnabled"); 4012 4011 gc->setLabel(QObject::tr("Video in main window")); 4013 4012 gc->setValue(true); 4014 gc->setHelpText(QObject::tr("If checked, video will be displayed in the "4013 gc->setHelpText(QObject::tr("If enabled, video will be displayed in the " 4015 4014 "main GUI window. Disable this when you only want video " 4016 4015 "on the desktop or in a floating window. Only valid when " 4017 4016 "\"Use GUI size for TV playback\" and \"Run the " … … 4067 4066 HostCheckBox *gc = new HostCheckBox("MacFloatEnabled"); 4068 4067 gc->setLabel(QObject::tr("Video in floating window")); 4069 4068 gc->setValue(false); 4070 gc->setHelpText(QObject::tr("If checked, video will be displayed in a "4069 gc->setHelpText(QObject::tr("If enabled, video will be displayed in a " 4071 4070 "floating window. Only valid when \"Use GUI size for TV " 4072 4071 "playback\" and \"Run the frontend in a window\" are " 4073 4072 "checked.")); … … 4122 4121 HostCheckBox *gc = new HostCheckBox("MacDockEnabled"); 4123 4122 gc->setLabel(QObject::tr("Video in the dock")); 4124 4123 gc->setValue(true); 4125 gc->setHelpText(QObject::tr("If checked, video will be displayed in the "4124 gc->setHelpText(QObject::tr("If enabled, video will be displayed in the " 4126 4125 "application's dock icon. Only valid when \"Use GUI size " 4127 4126 "for TV playback\" and \"Run the frontend in a window\" " 4128 4127 "are checked.")); … … 4162 4161 HostCheckBox *gc = new HostCheckBox("MacDesktopEnabled"); 4163 4162 gc->setLabel(QObject::tr("Video on the desktop")); 4164 4163 gc->setValue(false); 4165 gc->setHelpText(QObject::tr("If checked, video will be displayed on the "4164 gc->setHelpText(QObject::tr("If enabled, video will be displayed on the " 4166 4165 "desktop, behind the Finder icons. Only valid when \"Use " 4167 4166 "GUI size for TV playback\" and \"Run the frontend in a " 4168 4167 "window\" are checked.")); -
usr/src/mythtv-trunk/mythtv/programs/mythfrontend/statusbox.cpp
764 764 fontstate = "warning"; 765 765 } 766 766 else if (state == kState_WatchingLiveTV) 767 status = tr("is watching live TV");767 status = tr("is watching Live TV"); 768 768 else if (state == kState_RecordingOnly || 769 769 state == kState_WatchingRecording) 770 770 status = tr("is recording"); … … 975 975 long long used, long long free, 976 976 const recprof2bps_t& prof2bps) 977 977 { 978 const QString tail = QObject::tr(", using your %1 rate of %2 Kb/sec");978 const QString tail = QObject::tr(", using your %1 rate of %2 kb/s"); 979 979 980 980 out<<usage_str_kb(total, used, free); 981 981 if (free<0) -
usr/src/mythtv-trunk/mythtv/programs/mythtv-setup/backendsettings.cpp
96 96 gc->addSelection("None"); 97 97 gc->addSelection("PAL Teletext"); 98 98 gc->addSelection("NTSC Closed Caption"); 99 gc->setHelpText(QObject::tr(" VBI stands for Vertical Blanking Interrupt."100 "VBI is used to carry Teletext andClosed Captioning "101 "data."));99 gc->setHelpText(QObject::tr("The VBI (Vertical Blanking Interval) is " 100 "used to carry Teletext or Closed Captioning " 101 "data.")); 102 102 return gc; 103 103 }; 104 104 … … 121 121 GlobalCheckBox *gc = new GlobalCheckBox("SaveTranscoding"); 122 122 gc->setLabel(QObject::tr("Save original files after transcoding (globally)")); 123 123 gc->setValue(false); 124 gc->setHelpText(QObject::tr(" When setand the transcoder is active, the "124 gc->setHelpText(QObject::tr("If enabled and the transcoder is active, the " 125 125 "original files will be renamed to .old once the " 126 126 "transcoding is complete.")); 127 127 return gc; … … 133 133 hc->setLabel(QObject::tr("Delete files slowly")); 134 134 hc->setValue(false); 135 135 hc->setHelpText(QObject::tr("Some filesystems use a lot of resources when " 136 "deleting large recording files. This option makes Myth"137 " delete the file slowly on this backend to lessen the"138 " impact."));136 "deleting large files. If enabled, this option makes " 137 "MythTV delete files slowly on this backend to " 138 "lessen the impact.")); 139 139 return hc; 140 140 }; 141 141 … … 144 144 GlobalCheckBox *gc = new GlobalCheckBox("DeletesFollowLinks"); 145 145 gc->setLabel(QObject::tr("Follow symbolic links when deleting files")); 146 146 gc->setValue(false); 147 gc->setHelpText(QObject::tr(" This will cause Myth tofollow symlinks "147 gc->setHelpText(QObject::tr("If enabled, MythTV will follow symlinks " 148 148 "when recordings and related files are deleted, instead " 149 149 "of deleting the symlink and leaving the actual file.")); 150 150 return gc; … … 154 154 { 155 155 GlobalSpinBox *bs = new GlobalSpinBox( 156 156 "HDRingbufferSize", 25*188, 512*188, 25*188); 157 bs->setLabel(QObject::tr("HD Ringbuffer size (KB)"));157 bs->setLabel(QObject::tr("HD ringbuffer size (KB)")); 158 158 bs->setHelpText(QObject::tr("The HD device ringbuffer allows the " 159 159 "backend to weather moments of stress. " 160 "The larger the ringbuffer , the longer "160 "The larger the ringbuffer (in KB), the longer " 161 161 "the moments of stress can be. However, " 162 162 "setting the size too large can cause " 163 163 "swapping, which is detrimental.")); … … 185 185 GlobalCheckBox *gc = new GlobalCheckBox("DisableAutomaticBackup"); 186 186 gc->setLabel(QObject::tr("Disable Automatic Database Backup")); 187 187 gc->setValue(false); 188 gc->setHelpText(QObject::tr(" This will prevent Myth from backingup the "189 "database before upgrades. If disabled,"190 " you should have your own backup strategy"191 " in place."));188 gc->setHelpText(QObject::tr("If enabled, MythTV will not backup the " 189 "database before upgrades. You should " 190 "therefore have your own database backup " 191 "strategy in place.")); 192 192 return gc; 193 193 }; 194 194 195 195 static HostCheckBox *DisableFirewireReset() 196 196 { 197 197 HostCheckBox *hc = new HostCheckBox("DisableFirewireReset"); 198 hc->setLabel(QObject::tr("Disable Fire wire Reset"));198 hc->setLabel(QObject::tr("Disable FireWire Reset")); 199 199 hc->setHelpText( 200 200 QObject::tr( 201 "By default MythTV will reset the firewire bus when a " 202 "firewire recorder stops responding to commands. But " 203 "if this causes problems you can disable this here for " 204 "Linux firewire recorders.")); 201 "By default, MythTV resets the FireWire bus when a " 202 "FireWire recorder stops responding to commands. If " 203 "this causes problems, you can disable this behaviour here.")); 205 204 hc->setValue(false); 206 205 return hc; 207 206 } … … 305 304 static GlobalSpinBox *EITTransportTimeout() 306 305 { 307 306 GlobalSpinBox *gc = new GlobalSpinBox("EITTransportTimeout", 1, 15, 1); 308 gc->setLabel(QObject::tr("EIT Transport Timeout (min s)"));307 gc->setLabel(QObject::tr("EIT Transport Timeout (minutes)")); 309 308 gc->setValue(5); 310 309 QString helpText = QObject::tr( 311 "Maximum time to spend waiting for listings data on one DTV channel " 312 "before checking for new listings data on the next channel."); 310 "Maximum time to spend waiting (in minutes) for listings data " 311 "on one digital TV channel before checking for new listings data " 312 "on the next channel."); 313 313 gc->setHelpText(helpText); 314 314 return gc; 315 315 } … … 355 355 static GlobalSpinBox *WOLbackendReconnectWaitTime() 356 356 { 357 357 GlobalSpinBox *gc = new GlobalSpinBox("WOLbackendReconnectWaitTime", 0, 1200, 5); 358 gc->setLabel(QObject::tr("Delay between wake attempts (sec s)"));358 gc->setLabel(QObject::tr("Delay between wake attempts (seconds)")); 359 359 gc->setValue(0); 360 360 gc->setHelpText(QObject::tr("Length of time the frontend waits between " 361 361 "tries to wake up the master backend. This should be the " … … 380 380 gc->setLabel(QObject::tr("Wake Command")); 381 381 gc->setValue(""); 382 382 gc->setHelpText(QObject::tr("The command used to wake up your master " 383 "backend server\n(e g. sudo /etc/init.d/mythtv-backend restart)."));383 "backend server\n(e.g. sudo /etc/init.d/mythtv-backend restart).")); 384 384 return gc; 385 385 }; 386 386 … … 431 431 static GlobalSpinBox *idleTimeoutSecs() 432 432 { 433 433 GlobalSpinBox *gc = new GlobalSpinBox("idleTimeoutSecs", 0, 1200, 5); 434 gc->setLabel(QObject::tr("Idle shutdown timeout (sec s)"));434 gc->setLabel(QObject::tr("Idle shutdown timeout (seconds)")); 435 435 gc->setValue(0); 436 gc->setHelpText(QObject::tr("The amount of timethe master backend idles "436 gc->setHelpText(QObject::tr("The number of seconds the master backend idles " 437 437 "before it shuts down all backends. Set to 0 to disable " 438 438 "auto shutdown.")); 439 439 return gc; … … 442 442 static GlobalSpinBox *idleWaitForRecordingTime() 443 443 { 444 444 GlobalSpinBox *gc = new GlobalSpinBox("idleWaitForRecordingTime", 0, 120, 1); 445 gc->setLabel(QObject::tr("Max. wait for recording (min )"));445 gc->setLabel(QObject::tr("Max. wait for recording (minutes)")); 446 446 gc->setValue(15); 447 gc->setHelpText(QObject::tr("The amount of timethe master backend waits "447 gc->setHelpText(QObject::tr("The number of minutes the master backend waits " 448 448 "for a recording. If it's idle but a recording starts " 449 449 "within this time period, the backends won't shut down.")); 450 450 return gc; … … 453 453 static GlobalSpinBox *StartupSecsBeforeRecording() 454 454 { 455 455 GlobalSpinBox *gc = new GlobalSpinBox("StartupSecsBeforeRecording", 0, 1200, 5); 456 gc->setLabel(QObject::tr("Startup before rec. (sec s)"));456 gc->setLabel(QObject::tr("Startup before rec. (seconds)")); 457 457 gc->setValue(120); 458 gc->setHelpText(QObject::tr("The amount of timethe master backend will be "458 gc->setHelpText(QObject::tr("The number of seconds the master backend will be " 459 459 "woken up before a recording starts.")); 460 460 return gc; 461 461 }; … … 509 509 GlobalCheckBox *gc = new GlobalCheckBox("blockSDWUwithoutClient"); 510 510 gc->setLabel(QObject::tr("Block shutdown before client connected")); 511 511 gc->setValue(true); 512 gc->setHelpText(QObject::tr("If set, the automatic shutdown routine will "512 gc->setHelpText(QObject::tr("If enabled, the automatic shutdown routine will " 513 513 "be disabled until a client connects.")); 514 514 return gc; 515 515 }; … … 539 539 static HostSpinBox *JobQueueCheckFrequency() 540 540 { 541 541 HostSpinBox *gc = new HostSpinBox("JobQueueCheckFrequency", 5, 300, 5); 542 gc->setLabel(QObject::tr("Job Queue Check frequency ( inseconds)"));542 gc->setLabel(QObject::tr("Job Queue Check frequency (seconds)")); 543 543 gc->setHelpText(QObject::tr("When looking for new jobs to process, the " 544 "Job Queue will wait this longbetween checks."));544 "Job Queue will wait this many seconds between checks.")); 545 545 gc->setValue(60); 546 546 return gc; 547 547 }; … … 585 585 GlobalCheckBox *gc = new GlobalCheckBox("JobsRunOnRecordHost"); 586 586 gc->setLabel(QObject::tr("Run Jobs only on original recording backend")); 587 587 gc->setValue(false); 588 gc->setHelpText(QObject::tr("If set, jobs in the queue will be required "588 gc->setHelpText(QObject::tr("If enabled, jobs in the queue will be required " 589 589 "to run on the backend that made the " 590 590 "original recording.")); 591 591 return gc; … … 596 596 GlobalCheckBox *gc = new GlobalCheckBox("AutoTranscodeBeforeAutoCommflag"); 597 597 gc->setLabel(QObject::tr("Run Transcode Jobs before Auto-Commercial Flagging")); 598 598 gc->setValue(false); 599 gc->setHelpText(QObject::tr("If set,if both auto-transcode and "599 gc->setHelpText(QObject::tr("If enabled, and if both auto-transcode and " 600 600 "auto commercial flagging are turned ON for a " 601 "recording, transcoding will run first ,"601 "recording, transcoding will run first; " 602 602 "otherwise, commercial flagging runs first.")); 603 603 return gc; 604 604 }; … … 609 609 gc->setLabel(QObject::tr("Start Auto-Commercial Flagging jobs when the " 610 610 "recording starts")); 611 611 gc->setValue(false); 612 gc->setHelpText(QObject::tr("If setand Auto Commercial Flagging is ON for "612 gc->setHelpText(QObject::tr("If enabled, and Auto Commercial Flagging is ON for " 613 613 "a recording, the flagging job will be started " 614 614 "as soon as the recording starts. NOT " 615 615 "recommended on underpowered systems.")); … … 641 641 HostCheckBox *gc = new HostCheckBox("JobAllowCommFlag"); 642 642 gc->setLabel(QObject::tr("Allow Commercial Detection jobs")); 643 643 gc->setValue(true); 644 gc->setHelpText(QObject::tr(" Allow jobs of this type to run on this"645 " backend."));644 gc->setHelpText(QObject::tr("If enabled, allow jobs of this type to " 645 "run on this backend.")); 646 646 return gc; 647 647 }; 648 648 … … 651 651 HostCheckBox *gc = new HostCheckBox("JobAllowTranscode"); 652 652 gc->setLabel(QObject::tr("Allow Transcoding jobs")); 653 653 gc->setValue(true); 654 gc->setHelpText(QObject::tr(" Allow jobs of this type to run on this"655 " backend."));654 gc->setHelpText(QObject::tr("If enabled, allow jobs of this type to " 655 "run on this backend.")); 656 656 return gc; 657 657 }; 658 658 … … 693 693 // if (QString(gContext->GetSetting(QString("UserJob%1").arg(job_num))) 694 694 // .length() == 0) 695 695 // bc->setEnabled(false); 696 bc->setHelpText(QObject::tr(" Allow jobs of this type to run on this"697 " backend."));696 bc->setHelpText(QObject::tr("If enabled, allow jobs of this type to " 697 "run on this backend.")); 698 698 return bc; 699 699 } 700 700 … … 715 715 static HostSpinBox *UPNPRebuildDelay() 716 716 { 717 717 HostSpinBox *gc = new HostSpinBox("UPnP/RebuildDelay", 0, 1440, 1); 718 gc->setLabel(QObject::tr("U pnpMedia Update Time"));718 gc->setLabel(QObject::tr("UPnP Media Update Time")); 719 719 gc->setHelpText(QObject::tr("The number of minutes between mythbackend " 720 "checking for new videos to serve via upnp. "720 "checking for new videos to serve via UPnP. " 721 721 "0 = Off. ")); 722 722 gc->setValue(30); 723 723 return gc; … … 764 764 HostCheckBox *gc = new HostCheckBox("LogCleanEnabled"); 765 765 gc->setLabel(QObject::tr("Automatic Log Cleaning Enabled")); 766 766 gc->setValue(false); 767 gc->setHelpText(QObject::tr(" This enables theperiodic cleanup of the "768 "events stored in the Myth database (see \"Log MythTV"769 " events to database\")."));767 gc->setHelpText(QObject::tr("If enabled, a periodic cleanup of the " 768 "events stored in the MythTV database occurs (see \"Log " 769 "MythTV events to database\").")); 770 770 return gc; 771 771 } 772 772 773 773 static HostSpinBox *LogCleanPeriod() 774 774 { 775 775 HostSpinBox *gs = new HostSpinBox("LogCleanPeriod", 0, 60, 1); 776 gs->setLabel(QObject::tr("Log Cleanup Frequency ( Days)"));776 gs->setLabel(QObject::tr("Log Cleanup Frequency (days)")); 777 777 gs->setValue(14); 778 778 gs->setHelpText(QObject::tr("The number of days between log cleanup runs.")); 779 779 return gs; … … 827 827 GlobalCheckBox *bc = new GlobalCheckBox("MythFillEnabled"); 828 828 bc->setLabel(QObject::tr("Automatically run mythfilldatabase")); 829 829 bc->setValue(true); 830 bc->setHelpText(QObject::tr(" This enables the automaticexecution of "831 "mythfilldatabase ."));830 bc->setHelpText(QObject::tr("If enabled, execution of " 831 "mythfilldatabase occurs automatically.")); 832 832 return bc; 833 833 } 834 834 835 835 static GlobalSpinBox *MythFillPeriod() 836 836 { 837 837 GlobalSpinBox *bs = new GlobalSpinBox("MythFillPeriod", 1, 30, 1); 838 bs->setLabel(QObject::tr("mythfilldatabase Run Frequency ( Days)"));838 bs->setLabel(QObject::tr("mythfilldatabase Run Frequency (days)")); 839 839 bs->setValue(1); 840 840 bs->setHelpText(QObject::tr("The number of days between mythfilldatabase " 841 841 "runs.")); … … 874 874 bc->setLabel(QObject::tr("Run mythfilldatabase at time suggested by the " 875 875 "grabber.")); 876 876 bc->setValue(true); 877 bc->setHelpText(QObject::tr(" This setting allowsa DataDirect guide data "877 bc->setHelpText(QObject::tr("If enabled, allow a DataDirect guide data " 878 878 "provider to specify the next download time in order to " 879 "distribute load on their servers. If this setting is " 880 "enabled, mythfilldatabase Execution Start/End times are " 881 "ignored.")); 879 "distribute load on their servers. mythfilldatabase " 880 "Execution Start/End times are also ignored.")); 882 881 return bc; 883 882 } 884 883 … … 920 919 public: 921 920 MythLogSettings() : TriggeredConfigurationGroup(false, true, false, false) 922 921 { 923 setLabel(QObject::tr("Myth Database Logging"));922 setLabel(QObject::tr("MythTV Database Logging")); 924 923 // setUseLabel(false); 925 924 926 925 Setting* logEnabled = LogEnabled(); … … 1118 1117 addChild(group7); 1119 1118 1120 1119 VerticalConfigurationGroup* group8 = new VerticalConfigurationGroup(false); 1121 group8->setLabel(QObject::tr("UP NP Server Settings"));1120 group8->setLabel(QObject::tr("UPnP Server Settings")); 1122 1121 //group8->addChild(UPNPShowRecordingUnderVideos()); 1123 1122 group8->addChild(UPNPWmpSource()); 1124 1123 group8->addChild(UPNPRebuildDelay()); -
usr/src/mythtv-trunk/mythtv/programs/mythtv-setup/channeleditor.cpp
599 599 { 600 600 menu->SetReturnEvent(this, "iconimportopt"); 601 601 602 menu->AddButton(tr("Download all icons.. "));603 menu->AddButton(tr("Rescan for missing icons.. "));602 menu->AddButton(tr("Download all icons...")); 603 menu->AddButton(tr("Rescan for missing icons...")); 604 604 if (!channelname.isEmpty()) 605 605 menu->AddButton(tr("Download icon for %1").arg(channelname), 606 606 channelname); -
usr/src/mythtv-trunk/mythtv/programs/mythwelcome/welcomedialog.cpp
410 410 411 411 // update status message 412 412 if (m_statusList.empty()) 413 status = tr("Please Wait ...");413 status = tr("Please Wait..."); 414 414 else 415 415 { 416 416 if ((int)m_statusListNo >= m_statusList.count()) -
usr/src/mythtv-trunk/mythtv/programs/mythwelcome/welcomesettings.cpp
56 56 static HostCheckBox *AutoStartFrontend() 57 57 { 58 58 HostCheckBox *gc = new HostCheckBox("AutoStartFrontend"); 59 gc->setLabel(QObject::tr("Automatically Start Myth Frontend"));59 gc->setLabel(QObject::tr("Automatically Start mythfrontend")); 60 60 gc->setValue(true); 61 gc->setHelpText(QObject::tr("Mythwelcome will automatically start the"61 gc->setHelpText(QObject::tr("Mythwelcome will automatically start " 62 62 "mythfrontend if it is determined that it was not started to " 63 63 "record a program.")); 64 64 return gc;
