i18n("Saturation toolbar has a saturation slider that shows the current video saturation and allows you to change it. This is the same slider you get from the saturation pop-up slider button on the main toolbar, but it will not disappear when you click elsewhere. You can show or hide the toolbar using the Show Saturation Toolbar option on the Settings menu. Clicking the Saturation button on this toolbar will also hide it.")
action->setStatusText(i18n("Shows/hides the progress toolbar"));
action->setWhatsThis(i18n("Show Progress Toolbar command shows or hides the progress toolbar. This command is available when the time length of the current file is known."));
action->setStatusText(i18n("Opens the KPlayer key bindings dialog"));
action->setWhatsThis(i18n("Configure Shortcuts command opens a dialog that lets you see and change KPlayer's shortcut key bindings, or associations between actions and the corresponding keys or combinations of keys that activate them. If you change the bindings, make sure not to duplicate an existing shortcut and also not to use the Shift key for your new shortcuts, because the Shift key has a special function in KPlayer."));
action->setStatusText(i18n("Opens the KPlayer toolbar configuration dialog"));
action->setWhatsThis(i18n("Configure Toolbars command opens a dialog that lets you see and change KPlayer's toolbars and controls assigned to them."));
action->setStatusText(i18n("Opens the KPlayer configuration dialog"));
action->setWhatsThis(i18n("Configure KPlayer command opens a dialog that lets you configure the program, modifying various aspects of its functionality, user interface and interaction with MPlayer. For more information see the Configuration dialog chapter and the Advanced configuration micro-HOWTO in the user manual."));
action->setStatusText(i18n("Opens the manual section on bug reporting"));
action->setWhatsThis(i18n("Report Bug command opens the section of KPlayer user manual that explains how to report a bug in KPlayer, including all the information that may be helpful in finding and fixing the bug."));
connect(workspace(), SIGNAL (resized()),this, SLOT (workspaceResized()));
connect(workspace(), SIGNAL (userResize()),this, SLOT (workspaceUserResize()));
connect(process(), SIGNAL (stateChanged(KPlayerProcess::State,KPlayerProcess::State)),this, SLOT (playerStateChanged(KPlayerProcess::State,KPlayerProcess::State)));
connect(process(), SIGNAL (progressChanged(float,KPlayerProcess::ProgressType)),this, SLOT (playerProgressChanged(float,KPlayerProcess::ProgressType)));
connect(process(), SIGNAL (infoAvailable()),this, SLOT (playerInfoAvailable()));
connect(process(), SIGNAL (sizeAvailable()),this, SLOT (playerSizeAvailable()));
connect(configuration(), SIGNAL (updated()),this, SLOT (refreshSettings()));
action->setStatusText(i18n("Opens the File Properties dialog"));
action->setWhatsThis(i18n("Properties command opens the File Properties dialog that lets you choose many options specific to the currently loaded file. See the File properties micro-HOWTO for details."));
action->setStatusText(i18n("Plays the currently loaded file"));
action->setWhatsThis(i18n("Play command starts playback of the current file. If the player has been paused, this command resumes playback. This command is available when a file is loaded."));
action->setWhatsThis(i18n("Forward command moves playback forward by one percent of the time length of the current file. This command is available when playing a file."));
action->setWhatsThis(i18n("Fast Forward command moves playback forward by ten percent of the time length of the current file. This command is available when playing a file."));
action->setWhatsThis(i18n("Backward command moves playback backward by one percent of the time length of the current file. This command is available when playing a file."));
action->setWhatsThis(i18n("Fast Backward command moves playback backward by ten percent of the time length of the current file. This command is available when playing a file."));
action->setStatusText(i18n("Moves playback to the beginning"));
action->setWhatsThis(i18n("Back to Start command moves playback to the beginning of the current file. This command is available when playing a file."));
action->setStatusText(i18n("Opens a subtitle file"));
action->setWhatsThis(i18n("Load Subtitles command displays the standard Open File dialog and lets you choose a subtitle file to use with the current file or URL. If you load subtitles when video is playing, KPlayer will display the subtitles immediately. By default it will also remember the subtitles you choose in the current file properties. This command is available for video files."));
action->setStatusText(i18n("Opens a subtitle URL"));
action->setWhatsThis(i18n("Load Subtitle URL command displays the standard Open URL dialog and lets you type or paste in a subtitle URL to use with the current file or URL. If you load subtitles when video is playing, KPlayer will display the subtitles immediately. By default it will also remember the subtitles you choose in the current file properties. This command is available for video files."));
action->setWhatsThis(i18n("Unload Subtitles command unloads the currently loaded subtitles, and if video is playing, hides the subtitles. This command is available when subtitles are loaded."));*/
toggle->setWhatsThis(i18n("Soft Frame Dropping command toggles the soft frame dropping option. If your system is too slow to play a file, MPlayer can drop some frames so playback does not slow down. The soft option drops frames less aggressively than the hard one, and should not cause playback problems. The Frame drop option can also be set on the Advanced page either globally in KPlayer Settings or for a particular file in the File Properties."));
toggle->setStatusText(i18n("Turns hard frame dropping on/off"));
toggle->setWhatsThis(i18n("Hard Frame Dropping command toggles the hard frame dropping option. If your system is too slow to play a file, MPlayer can drop some frames so playback does not slow down. The hard option drops frames more aggressively than the soft one, and may sometimes break decoding. The Frame drop option can also be set on the Advanced page either globally in KPlayer Settings or for a particular file in the File Properties."));
action->setStatusText(i18n("Stops playback and starts KPlayer with the current URL"));
action->setWhatsThis(i18n("Start KPlayer command stops playback, opens the full KPlayer, puts the multimedia file or URL on the playlist and starts playing it. It is always recommended that you choose this command, since it will give you better interface and more options when playing the multimedia."));
action->setStatusText(i18n("Plays an existing file"));
action->setWhatsThis(i18n("Play command displays the standard Open File dialog and lets you choose a file or several files to put on the playlist and start playing."));
action->setWhatsThis(i18n("Play URL command displays the standard URL dialog and lets you type or paste in a URL to put on the playlist and start playing. The URL can be a remote network location, a local file path, or a TDE I/O Slave URL."));
m_playlists=newKPlayerContainerActionList("%1",i18n("Plays the %1 list"),
i18n("Play List %1 starts playing the list."),this,"play_list");
connect(playlistActionList(), SIGNAL (activated(KPlayerNode*)), SLOT (play(KPlayerNode*)));
@ -72,36 +72,36 @@ KPlayerPlaylist::KPlayerPlaylist (TDEActionCollection* ac, TQObject* parent, con
widget->setShortcutConfigurable(false);
widget->setStatusText(i18n("Shows playlist items and allows you to select an item to play"));
widget->setWhatsThis(i18n("Playlist combo box in the closed state displays the current playlist item. You can drop down the combo box to see the entire list and select a different item to load and play."));
connect(playlist(), SIGNAL (activated(int)), SLOT (play(int)));
toggle->setStatusText(i18n("Turns the option to loop through the list on/off"));
toggle->setWhatsThis(i18n("Loop command toggles the option to start playing items from the beginning of the playlist after playing the last item on the playlist."));
action->setStatusText(i18n("Adds files to the playlist"));
action->setWhatsThis(i18n("Add files command displays the standard Open File dialog and lets you choose a file or several files to add to the playlist."));
action->setStatusText(i18n("Saves the playlist in the collection"));
action->setWhatsThis(i18n("Add to collection command prompts for a new folder name and saves the playlist under the new name in the multimedia collection."));
connect(process(), SIGNAL (stateChanged(KPlayerProcess::State,KPlayerProcess::State)),
connect(kPlayerProcess(), SIGNAL (stateChanged(KPlayerProcess::State,KPlayerProcess::State)), SLOT (playerStateChanged(KPlayerProcess::State,KPlayerProcess::State)));
TQWhatsThis::add(this,i18n("Video area is the central part of KPlayer. When playing a file that has video, it will display the video and optionally subtitles. Normally it will be hidden when playing an audio only file."));
connect(&m_timer, SIGNAL (timeout()), SLOT (cursorTimeout()));
connect(kPlayerProcess(), SIGNAL (stateChanged(KPlayerProcess::State,KPlayerProcess::State)), SLOT (playerStateChanged(KPlayerProcess::State,KPlayerProcess::State)));
connect(kPlayerProcess(), SIGNAL (sizeAvailable()), SLOT (setMouseCursorTracking()));
TQWhatsThis::add(this,i18n("Video area is the central part of KPlayer. When playing a file that has video, it will display the video and optionally subtitles. Normally it will be hidden when playing an audio only file."));