Ticket #4423: mythvideo_directory_list.diff

File mythvideo_directory_list.diff, 1018 bytes (added by Roo <roo.watt@…>, 19 years ago)
  • mythplugins/mythvideo/mythvideo/globalsettings.cpp

     
    240240HostLineEdit *VideoStartupDirectory()
    241241{
    242242    HostLineEdit *gc = new HostLineEdit("VideoStartupDir");
    243     gc->setLabel(QObject::tr("Directory that holds videos"));
     243    gc->setLabel(QObject::tr("Directories that hold videos"));
    244244    gc->setValue(DEFAULT_VIDEOSTARTUP_DIR);
    245     gc->setHelpText(QObject::tr("This directory must exist, and the user "
    246                     "running MythVideo only needs to have read permission "
    247                     "to the directory."));
     245    gc->setHelpText(QObject::tr("Multiple directories can be separated by ':'. "
     246                    "The directories must exist, and the user running MythVideo "
     247                    "only needs to have read permission to them."));
    248248    return gc;
    249249}
    250250