diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-04-26 17:50:06 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-04-26 17:50:06 +0000 |
commit | e5568601c73d854a62c8de99a9df01f56dcfaf86 (patch) | |
tree | df37c01b56eca1fee6724948b4c1643e15b00a72 /src/xine-engine/video_out.c | |
parent | a8f7b05b5a973374e539b1b263c88b43f270f4fb (diff) | |
download | xine-lib-e5568601c73d854a62c8de99a9df01f56dcfaf86.tar.gz xine-lib-e5568601c73d854a62c8de99a9df01f56dcfaf86.tar.bz2 |
help strings added for all remaining config entries (so I hope)
please everybody watch out for spelling (and other) errors
CVS patchset: 6442
CVS date: 2004/04/26 17:50:06
Diffstat (limited to 'src/xine-engine/video_out.c')
-rw-r--r-- | src/xine-engine/video_out.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c index 65a7f7d56..2f8deadf0 100644 --- a/src/xine-engine/video_out.c +++ b/src/xine-engine/video_out.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out.c,v 1.190 2004/04/22 23:19:04 tmattern Exp $ + * $Id: video_out.c,v 1.191 2004/04/26 17:50:13 mroi Exp $ * * frame allocation / queuing / scheduling / output functions */ @@ -1550,12 +1550,16 @@ xine_video_port_t *_x_vo_new_port (xine_t *xine, vo_driver_t *driver, this->warn_skipped_threshold = xine->config->register_num (xine->config, "video.warn_skipped_threshold", 10, - "send event to front end if percentage of skipped frames exceed this value", - NULL, 20, NULL, NULL); + _("percentage of skipped frames to tolerate"), + _("When more than this percentage of frames are not shown, because they " + "were not decoded in time, xine sends a notification."), + 20, NULL, NULL); this->warn_discarded_threshold = xine->config->register_num (xine->config, "video.warn_discarded_threshold", 10, - "send event to front end if percentage of discarded frames exceed this value", - NULL, 20, NULL, NULL); + _("percentage of discarded frames to tolerate"), + _("When more than this percentage of frames are not shown, because they " + "were not scheduled for display in time, xine sends a notification."), + 20, NULL, NULL); if (grabonly) { |