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/load_plugins.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/load_plugins.c')
-rw-r--r-- | src/xine-engine/load_plugins.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index 92bbaef66..03cc5bb64 100644 --- a/src/xine-engine/load_plugins.c +++ b/src/xine-engine/load_plugins.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: load_plugins.c,v 1.174 2004/04/11 14:51:20 mroi Exp $ + * $Id: load_plugins.c,v 1.175 2004/04/26 17:50:12 mroi Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -303,6 +303,7 @@ static void _insert_plugin (xine_t *this, uint32_t *types; int priority = 0; char key[80]; + char desc[100]; int i; if (info->API != api_version) { @@ -359,13 +360,14 @@ static void _insert_plugin (xine_t *this, priority = decoder_new->priority = decoder_old->priority; sprintf(key, "decoder.%s_priority", info->id); + sprintf(desc, _("priority for decoder %s"), info->id); this->config->register_num (this->config, key, 0, - "decoder's priority compared to others", - "The priority provides a ranking in case some media " - "can be handled by more than one decoder.\n" - "A priority of 0 enables the decoder's default priority.", 20, + desc, + _("The priority provides a ranking in case some media " + "can be handled by more than one decoder.\n" + "A priority of 0 enables the decoder's default priority."), 20, _decoder_priority_cb, (void *)this); /* reset priority on old config files */ |