Index: mplayer.c =================================================================== RCS file: /cvsroot/mplayer/main/mplayer.c,v retrieving revision 1.792 diff -a -u -r1.792 mplayer.c --- mplayer.c 28 Sep 2004 14:00:48 -0000 1.792 +++ mplayer.c 6 Oct 2004 21:16:14 -0000 @@ -601,7 +601,7 @@ if (!stat (cfg, &st)) { - mp_msg(MSGT_CPLAYER,MSGL_INFO,"Loading config '%s'\n", cfg); + mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingConfig, cfg); m_config_parse_config_file (conf, cfg); return; } @@ -615,7 +615,7 @@ { if (!stat (confpath, &st)) { - mp_msg(MSGT_CPLAYER,MSGL_INFO,"Loading config '%s'\n", confpath); + mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingConfig, confpath); m_config_parse_config_file (conf, confpath); } @@ -722,7 +722,7 @@ if (subd == NULL || set_of_sub_size >= MAX_SUBTITLE_FILES) return; set_of_subtitles[set_of_sub_size] = subd; ++set_of_sub_size; - printf("SUB: added subtitle file (%d): %s\n", set_of_sub_size, filename); + mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_AddedSubtitleFile, set_of_sub_size, filename); } // FIXME: if/when the GUI calls this, global sub numbering gets (potentially) broken. @@ -960,29 +960,29 @@ int i; video_codec=video_codec_list[0]; for(i=0;video_codec_list[i];i++) - printf("vc#%d: '%s'\n",i,video_codec_list[i]); + mp_msg(MSGT_FIXME,MSGL_FIXME,"vc#%d: '%s'\n",i,video_codec_list[i]); } #endif if(audio_codec_list && strcmp(audio_codec_list[0],"help")==0){ mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableAudioCodecs); list_codecs(1); - printf("\n"); + mp_msg(MSGT_FIXME, MSGL_FIXME, "\n"); exit_player_with_rc(NULL, 0); } if(video_codec_list && strcmp(video_codec_list[0],"help")==0){ mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableVideoCodecs); list_codecs(0); - printf("\n"); + mp_msg(MSGT_FIXME, MSGL_FIXME, "\n"); exit_player_with_rc(NULL, 0); } if(video_fm_list && strcmp(video_fm_list[0],"help")==0){ vfm_help(); - printf("\n"); + mp_msg(MSGT_FIXME, MSGL_FIXME, "\n"); exit_player_with_rc(NULL, 0); } if(audio_fm_list && strcmp(audio_fm_list[0],"help")==0){ afm_help(); - printf("\n"); + mp_msg(MSGT_FIXME, MSGL_FIXME, "\n"); exit_player_with_rc(NULL, 0); } if(af_cfg.list && strcmp(af_cfg.list[0],"help")==0){ @@ -993,7 +993,7 @@ #ifdef HAVE_X11 if(vo_fstype_list && strcmp(vo_fstype_list[0],"help")==0){ fstype_help(); - printf("\n"); + mp_msg(MSGT_FIXME, MSGL_FIXME, "\n"); exit_player_with_rc(NULL, 0); } #endif @@ -1050,9 +1050,9 @@ // Many users forget to include command line in bugreports... if(verbose>0){ - mp_msg(MSGT_CPLAYER, MSGL_INFO, "CommandLine:"); - for(i=1;i /proc/sys/dev/rtc/max-user-freq\" to your system startup scripts.\n", irqp); + mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_LinuxRTCInitErrorIrqpSet, irqp, strerror(errno)); + mp_msg(MSGT_CPLAYER, MSGL_HINT, MSGTR_IncreaseRTCMaxUserFreq, irqp); close (rtc_fd); rtc_fd = -1; } else if (ioctl(rtc_fd, RTC_PIE_ON, 0) < 0) { /* variable only by the root */ - mp_msg(MSGT_CPLAYER, MSGL_ERR, "Linux RTC init error in ioctl (rtc_pie_on): %s\n", strerror(errno)); + mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_LinuxRTCInitErrorPieOn, strerror(errno)); close (rtc_fd); rtc_fd = -1; } else @@ -1115,7 +1115,7 @@ #endif if(rtc_fd<0) #endif - mp_msg(MSGT_CPLAYER, MSGL_INFO, "Using %s timing\n", + mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_UsingTimingType, //This will break translations unless the fourth parameter is also translated. FIXME softsleep?"software":timer_name); #ifdef USE_TERMCAP @@ -1154,16 +1154,16 @@ #ifdef HAVE_MENU if(use_menu) { if(menu_cfg && menu_init(menu_cfg)) - mp_msg(MSGT_CPLAYER,MSGL_INFO,"Menu inited: %s\n", menu_cfg); + mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_MenuInitialized, menu_cfg); else { menu_cfg = get_path("menu.conf"); if(menu_init(menu_cfg)) - mp_msg(MSGT_CPLAYER,MSGL_INFO,"Menu inited: %s\n", menu_cfg); + mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_MenuInitialized, menu_cfg); else { if(menu_init(MPLAYER_CONFDIR "/menu.conf")) - mp_msg(MSGT_CPLAYER,MSGL_INFO,"Menu inited: %s\n", MPLAYER_CONFDIR"/menu.conf"); + mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_MenuInitialized, MPLAYER_CONFDIR"/menu.conf"); else { - mp_msg(MSGT_CPLAYER,MSGL_INFO,"Menu init failed\n"); + mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_MenuInitFailed); use_menu = 0; } } @@ -1216,7 +1216,7 @@ // or cache filling if(!noconsolecontrols && !slave_mode){ if(inited_flags&INITED_GETCH2) - mp_msg(MSGT_CPLAYER,MSGL_WARN,"WARNING: getch2_init called twice!\n"); + mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_Getch2InitializedTwice); else getch2_enable(); // prepare stdin for hotkeys... inited_flags|=INITED_GETCH2; @@ -1335,7 +1335,7 @@ FILE *f; current_module="dumpstream"; if(stream->type==STREAMTYPE_STREAM && stream->fd<0){ - mp_msg(MSGT_CPLAYER,MSGL_FATAL,"Cannot dump this stream - no 'fd' available\n"); + mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_DumpstreamFdUnavailable); exit_player(MSGTR_Exit_error); } stream_reset(stream); @@ -1405,7 +1405,7 @@ { char *temp, *bname; - mp_msg(MSGT_CPLAYER,MSGL_V,"Adding file %s to element entry\n",playlist_entry); + mp_msg(MSGT_CPLAYER,MSGL_V,"Adding file %s to element entry.\n",playlist_entry); bname=mp_basename(playlist_entry); if ((strlen(bname)>10) && !strncmp(bname,"qt",2) && !strncmp(bname+3,"gateQT",6)) @@ -1425,7 +1425,7 @@ temp[strlen(filename)-strlen(mp_basename(filename))]='\0'; strcat(temp, playlist_entry); play_tree_add_file(entry,temp); - mp_msg(MSGT_CPLAYER,MSGL_V,"Resolving reference to %s\n",temp); + mp_msg(MSGT_CPLAYER,MSGL_V,"Resolving reference to %s.\n",temp); free(temp); } } @@ -1464,7 +1464,7 @@ // don't try to parse raw media as playlist, it's unlikely goto goto_next_file; } - mp_msg(MSGT_CPLAYER,MSGL_INFO,"Falling back on trying to parse playlist %s...\n",filename); + mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_FallingBackOnPlaylist,filename); stream_reset(stream); stream_seek(stream,stream->start_pos); entry = parse_playtree(stream,0); @@ -1782,7 +1782,7 @@ char* vf_arg[] = { "_oldargs_", menu_root, NULL }; vf_menu = vf_open_plugin(libmenu_vfs,sh_video->vfilter,"menu",vf_arg); if(!vf_menu) { - mp_msg(MSGT_CPLAYER,MSGL_ERR,"Can't open libmenu video filter with root menu %s\n",menu_root); + mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantOpenLibmenuFilterWithThisRootMenu,menu_root); use_menu = 0; } } @@ -1812,7 +1812,7 @@ output_quality=get_video_quality_max(sh_video); if(auto_quality>output_quality) auto_quality=output_quality; else output_quality=auto_quality; - mp_msg(MSGT_CPLAYER,MSGL_V,"AutoQ: setting quality to %d\n",output_quality); + mp_msg(MSGT_CPLAYER,MSGL_V,"AutoQ: setting quality to %d.\n",output_quality); set_video_quality(sh_video,output_quality); } @@ -1895,7 +1895,7 @@ // output: &ao_data.samplerate, &ao_data.channels, &ao_data.format, audio_out_format_bits(ao_data.format)/8)){ - mp_msg(MSGT_CPLAYER,MSGL_ERR,"Error at audio filter chain pre-init!\n"); + mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_AudioFilterChainPreinitError); } else { mp_msg(MSGT_CPLAYER,MSGL_INFO,"AF_pre: %dHz %dch %s\n", ao_data.samplerate, ao_data.channels, @@ -1920,10 +1920,10 @@ ao_data.samplerate, ao_data.channels, audio_out_format_name(ao_data.format), audio_out_format_bits(ao_data.format)/8 ); - mp_msg(MSGT_CPLAYER,MSGL_V,MSGTR_AODescription_AOAuthor, + mp_msg(MSGT_CPLAYER,MSGL_V,"AO: Description: %s\nAO: Author: %s\n", audio_out->info->name, audio_out->info->author); if(strlen(audio_out->info->comment) > 0) - mp_msg(MSGT_CPLAYER,MSGL_V,MSGTR_AOComment, audio_out->info->comment); + mp_msg(MSGT_CPLAYER,MSGL_V,"AO: Comment: %s\n", audio_out->info->comment); // init audio filters: #if 1 current_module="af_init"; @@ -1933,7 +1933,7 @@ ao_data.samplerate, ao_data.channels, ao_data.format, audio_out_format_bits(ao_data.format)/8, /* ao_data.bps, */ ao_data.outburst*4, ao_data.buffersize)){ - mp_msg(MSGT_CPLAYER,MSGL_ERR,"Couldn't find matching filter / ao format!\n"); + mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_NoMatchingFilter); // mp_msg(MSGT_CPLAYER,MSGL_ERR,"Couldn't find matching filter / ao format! -> NOSOUND\n"); // uninit_player(INITED_ACODEC|INITED_AO); // close codec & ao // sh_audio=d_audio->sh=NULL; // -> nosound @@ -1952,14 +1952,14 @@ if(!sh_audio){ mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_NoSound); - mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused audio chunks\n",d_audio->packs); + mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %s unused audio chunks.\n",d_audio->packs); ds_free_packs(d_audio); // free buffered chunks d_audio->id=-2; // do not read audio chunks //uninit_player(INITED_AO); // close device } if(!sh_video){ mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Video_NoVideo); - mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused video chunks\n",d_video->packs); + mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %s unused video chunks.\n",d_video->packs); ds_free_packs(d_video); d_video->id=-2; //if(!fixed_vo) uninit_player(INITED_VO); @@ -2250,7 +2250,7 @@ while (time_frame > 0.000) { unsigned long rtc_ts; if (read (rtc_fd, &rtc_ts, sizeof(rtc_ts)) <= 0) - mp_msg(MSGT_CPLAYER, MSGL_ERR, "Linux RTC read error: %s\n", strerror(errno)); + mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_LinuxRTCReadError, strerror(errno)); time_frame-=GetRelativeTime(); } } else @@ -2268,7 +2268,7 @@ } if(softsleep){ current_module="sleep_soft"; - if(time_frame<0) mp_msg(MSGT_AVSYNC, MSGL_WARN, "Warning! Softsleep underflow!\n"); + if(time_frame<0) mp_msg(MSGT_AVSYNC, MSGL_WARN, MSGTR_SoftsleepUnderflow); while(time_frame>0) time_frame-=GetRelativeTime(); // burn the CPU } } @@ -2357,7 +2357,7 @@ a_pts=d_audio->pts; if(!delay_corrected) if(a_pts) delay_corrected=1; #if 0 - printf("\n#X# pts=%5.3f ds_pts=%5.3f buff=%5.3f total=%5.3f\n", + mp_msg(MSGT_FIXME, MSGL_FIXME, "\n#X# pts=%5.3f ds_pts=%5.3f buff=%5.3f total=%5.3f\n", a_pts, ds_tell_pts(d_audio)/(float)sh_audio->i_bps, -sh_audio->a_in_buffer_len/(float)sh_audio->i_bps, @@ -2524,14 +2524,14 @@ abs_seek_pos = 0; rel_seek_secs = next_edl_record->length_sec; #ifdef DEBUG_EDL - printf( "\nEDL_SKIP: start [%f], stop [%f], length [%f]\n", next_edl_record->start_sec, next_edl_record->stop_sec, next_edl_record->length_sec ); + mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_EDLSKIPStartStopLength, next_edl_record->start_sec, next_edl_record->stop_sec, next_edl_record->length_sec ); #endif edl_decision = 1; } else if( next_edl_record->action == EDL_MUTE ) { mixer_mute(&mixer); edl_mute_count++; // new EDL seek behavior needs this #ifdef DEBUG_EDL - printf( "\nEDL_MUTE: [%f]\n", next_edl_record->start_sec ); + mp_msg(MSGT_FIXME, MSGL_FIXME, "\nEDL_MUTE: [%f]\n", next_edl_record->start_sec ); #endif edl_decision = 1; } @@ -3154,7 +3154,7 @@ { #ifdef USE_SUB if (sh_video) { - mp_msg(MSGT_GLOBAL,MSGL_INFO,"ANS_SUB_VISIBILITY=%ld\n", sub_visibility); + mp_msg(MSGT_GLOBAL,MSGL_INFO,MSGTR_AnsSubVisibility, sub_visibility); } #endif } break; @@ -3265,16 +3265,16 @@ break; case MP_CMD_GET_TIME_LENGTH : { - mp_msg(MSGT_GLOBAL,MSGL_INFO,"ANS_LENGTH=%ld\n", demuxer_get_time_length(demuxer)); + mp_msg(MSGT_GLOBAL,MSGL_INFO,MSGTR_AnsLength, demuxer_get_time_length(demuxer)); } break; case MP_CMD_GET_VO_FULLSCREEN : { if(video_out && vo_config_count) - mp_msg(MSGT_GLOBAL,MSGL_INFO,"ANS_VO_FULLSCREEN=%ld\n", vo_fs); + mp_msg(MSGT_GLOBAL,MSGL_INFO,MSGTR_AnsVoFullscreen, vo_fs); } break; case MP_CMD_GET_PERCENT_POS : { - mp_msg(MSGT_GLOBAL,MSGL_INFO,"ANS_PERCENT_POSITION=%ld\n", demuxer_get_percent_pos(demuxer)); + mp_msg(MSGT_GLOBAL,MSGL_INFO,MSGTR_AnsPercentPos, demuxer_get_percent_pos(demuxer)); } break; #ifdef HAVE_MENU case MP_CMD_CRUN : { @@ -3296,7 +3296,7 @@ if (stream->type != STREAMTYPE_DVDNAV) break; if (!dvdnav_event) { - printf("DVDNAV Event NULL?!\n"); + mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNullEvent); break; } @@ -3310,7 +3310,7 @@ case DVDNAV_HIGHLIGHT: { dvdnav_highlight_event_t *hevent = (dvdnav_highlight_event_t*)(dvdnav_event->details); if (!hevent) { - printf("DVDNAV Event: Highlight event broken\n"); + mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavHighlightEventBroken); break; } @@ -3322,7 +3322,7 @@ hevent->sx,hevent->sy, hevent->ex,hevent->ey, hevent->pts, d_video->pts); - printf("DVDNAV Event: %s\n",dvd_nav_text); + mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavEvent,dvd_nav_text); //osd_show_dvd_nav_delay = 60; osd_show_dvd_nav_highlight=1; @@ -3333,14 +3333,14 @@ } else { osd_show_dvd_nav_highlight=0; - printf("DVDNAV Event: Highlight Hide\n"); + mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavHighlightHide); } break; } case DVDNAV_STILL_FRAME: { dvdnav_still_event_t *still_event = (dvdnav_still_event_t*)(dvdnav_event->details); - printf( "######################################## DVDNAV Event: Still Frame: %d sec(s)\n", still_event->length ); + mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavStillFrame, still_event->length ); while (dvdnav_stream_sleeping(dvdnav_priv)) { usec_sleep(1000); /* 1ms */ } @@ -3348,18 +3348,18 @@ break; } case DVDNAV_STOP: { - printf( "DVDNAV Event: Nav Stop\n" ); + mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNavStop ); break; } case DVDNAV_NOP: { - printf("DVDNAV Event: Nav NOP\n"); + mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNavNOP); break; } case DVDNAV_SPU_STREAM_CHANGE: { #if DVDNAVVERSION > 012 dvdnav_spu_stream_change_event_t *stream_change = (dvdnav_spu_stream_change_event_t*)(dvdnav_event->details); - printf("DVDNAV Event: Nav SPU Stream Change: phys: %d/%d/%d logical: %d\n", + mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNavSpuStreamChangeVerbose, stream_change->physical_wide, stream_change->physical_letterbox, stream_change->physical_pan_scan, @@ -3375,7 +3375,7 @@ #else dvdnav_stream_change_event_t *stream_change = (dvdnav_stream_change_event_t*)(dvdnav_event->details); - printf("DVDNAV Event: Nav SPU Stream Change: phys: %d logical: %d\n", + mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNavSpuStreamChange, stream_change->physical, stream_change->logical); @@ -3397,7 +3397,7 @@ dvdnav_stream_change_event_t *stream_change = (dvdnav_stream_change_event_t*)(dvdnav_event->details); #endif - printf("DVDNAV Event: Nav Audio Stream Change: phys: %d logical: %d\n", + mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNavAudioStreamChange, stream_change->physical, stream_change->logical); @@ -3414,14 +3414,14 @@ break; } case DVDNAV_VTS_CHANGE: { - printf("DVDNAV Event: Nav VTS Change\n"); + mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNavVTSChange); break; } case DVDNAV_CELL_CHANGE: { dvdnav_cell_change_event_t *cell_change = (dvdnav_cell_change_event_t*)(dvdnav_event->details); cell_playback_t * cell_playback = cell_change->new_cell; - printf("DVDNAV Event: Nav Cell Change\n"); + mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNavCellChange); osd_show_dvd_nav_highlight=0; /* screen changed, disable menu */ /* printf("new still time: %d\n",cell_playback->still_time); @@ -3444,14 +3444,14 @@ case DVDNAV_SPU_CLUT_CHANGE: { uint32_t * new_clut = (uint32_t *)(dvdnav_event->details); - printf("DVDNAV Event: Nav SPU CLUT Change\n"); + mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNavSpuClutChange); // send new palette to SPU decoder if (vo_spudec) spudec_update_palette(vo_spudec,new_clut); break; } case DVDNAV_SEEK_DONE: { - printf("DVDNAV Event: Nav Seek Done\n"); + mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNavSeekDone); break; } } @@ -3481,7 +3481,7 @@ dvdnav_right_button_select(dvdnav_priv->dvdnav); break; case MP_CMD_DVDNAV_MENU: - printf("Menu call\n"); + mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_MenuCall); dvdnav_menu_call(dvdnav_priv->dvdnav,DVD_MENU_Root); break; case MP_CMD_DVDNAV_SELECT: Index: mencoder.c =================================================================== RCS file: /cvsroot/mplayer/main/mencoder.c,v retrieving revision 1.254 diff -a -u -r1.254 mencoder.c --- mencoder.c 21 Sep 2004 19:46:52 -0000 1.254 +++ mencoder.c 6 Oct 2004 21:16:14 -0000 @@ -989,7 +989,7 @@ exit(1); } - mp_msg(MSGT_MENCODER, MSGL_V, MSGTR_FramesizeBufsizeTag, lavc_actx->frame_size, lavc_actx->frame_size * 2 * lavc_actx->channels, mux_a->wf->wFormatTag); + mp_msg(MSGT_MENCODER, MSGL_V, "FRAME_SIZE: %d, BUFFER_SIZE: %d, TAG: 0x%x\n", lavc_actx->frame_size, lavc_actx->frame_size * 2 * lavc_actx->channels, mux_a->wf->wFormatTag); break; #endif Index: help/help_mp-bg.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-bg.h,v retrieving revision 1.25 diff -a -u -r1.25 help_mp-bg.h --- help/help_mp-bg.h 2 Oct 2004 14:09:30 -0000 1.25 +++ help/help_mp-bg.h 6 Oct 2004 21:16:14 -0000 @@ -129,8 +129,6 @@ #define MSGTR_ErrorInitializingVODevice " / (-vo)!\n" #define MSGTR_ForcedVideoCodec " : %s\n" #define MSGTR_ForcedAudioCodec " : %s\n" -#define MSGTR_AODescription_AOAuthor "AO: : %s\nAO: : %s\n" -#define MSGTR_AOComment "AO: : %s\n" #define MSGTR_Video_NoVideo ": !!!\n" #define MSGTR_NotInitializeVOPorVO "\n: (-vf) (-vo)!\n" #define MSGTR_Paused "\n ===== =====\r" Index: help/help_mp-cz.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-cz.h,v retrieving revision 1.50 diff -a -u -r1.50 help_mp-cz.h --- help/help_mp-cz.h 2 Oct 2004 14:09:30 -0000 1.50 +++ help/help_mp-cz.h 6 Oct 2004 21:16:15 -0000 @@ -118,8 +118,6 @@ #define MSGTR_ErrorInitializingVODevice "Chyba pi otevrn/inicializaci vybranho video_out (-vo) zazen.\n" #define MSGTR_ForcedVideoCodec "Vynucen video kodek: %s\n" #define MSGTR_ForcedAudioCodec "Vynucen audio kodek: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: Popis: %s\nAO: Autor: %s\n" -#define MSGTR_AOComment "AO: Poznmka: %s\n" #define MSGTR_Video_NoVideo "Video: dn video\n" #define MSGTR_NotInitializeVOPorVO "\nKritick chyba: Nemohu inicializovat video filtry (-vf) nebo video ovlada (-vo)!\n" #define MSGTR_Paused "\n===== POZASTAVENO =====\r" @@ -291,7 +289,6 @@ #define MSGTR_LavcAudioCodecNotFound "Audio LAVC, nemohu najt enkodr pro kodek %s\n" #define MSGTR_CouldntAllocateLavcContext "Audio LAVC, nemohu alokovat kontext!\n" #define MSGTR_CouldntOpenCodec "nemohu otevt kodek %s, br=%d\n" -#define MSGTR_FramesizeBufsizeTag "FRAME_SIZE: %d, BUFFER_SIZE: %d, TAG: 0x%x\n" // cfg-mencoder.h: Index: help/help_mp-de.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-de.h,v retrieving revision 1.94 diff -a -u -r1.94 help_mp-de.h --- help/help_mp-de.h 2 Oct 2004 14:09:30 -0000 1.94 +++ help/help_mp-de.h 6 Oct 2004 21:16:15 -0000 @@ -126,8 +126,6 @@ #define MSGTR_ErrorInitializingVODevice "Fehler beim ffnen/Initialisieren des ausgewhlten Videoausgabetreibers (-vo).\n" #define MSGTR_ForcedVideoCodec "Erzwungener Videocodec: %s\n" #define MSGTR_ForcedAudioCodec "Erzwungener Audiocodec: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: Beschreibung: %s\nAO: Autor: %s\n" -#define MSGTR_AOComment "AO: Kommentar: %s\n" #define MSGTR_Video_NoVideo "Video: kein Video\n" #define MSGTR_NotInitializeVOPorVO "\nFATAL: Konnte Videofilter (-vf) oder -ausgabetreiber (-vo) nicht initialisieren.\n" #define MSGTR_Paused "\n ===== PAUSE =====\r" @@ -319,7 +317,6 @@ #define MSGTR_LavcAudioCodecNotFound "Audio LAVC, konnte Encoder fr Codec %s nicht finden.\n" #define MSGTR_CouldntAllocateLavcContext "Audio LAVC, konnte Kontext nicht zuordnen!\n" #define MSGTR_CouldntOpenCodec "Konnte Codec %s nicht ffnen, br=%d\n" -#define MSGTR_FramesizeBufsizeTag "FRAME_GRSSE: %d, BUFFER_GRSSE: %d, TAG: 0x%x\n" // cfg-mencoder.h: Index: help/help_mp-dk.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-dk.h,v retrieving revision 1.36 diff -a -u -r1.36 help_mp-dk.h --- help/help_mp-dk.h 2 Oct 2004 14:09:30 -0000 1.36 +++ help/help_mp-dk.h 6 Oct 2004 21:16:16 -0000 @@ -120,8 +120,6 @@ #define MSGTR_ErrorInitializingVODevice "Fejl under bning/initialisering af den valgte videodriver (-vo)!\n" #define MSGTR_ForcedVideoCodec "Gennemtvunget video-codec: %s\n" #define MSGTR_ForcedAudioCodec "Gennemtvunget lyd-codec: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: Beskrivelse: %s\nAO: forfatter: %s\n" -#define MSGTR_AOComment "AO: Kommentar: %s\n" #define MSGTR_Video_NoVideo "Video: ingen video\n" #define MSGTR_NotInitializeVOPorVO "\nFATALT: Kunne ikke initialisere videofiltre (-vf) eller videodriver (-vo)!\n" #define MSGTR_Paused "\n ===== PAUSE =====\r" Index: help/help_mp-el.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-el.h,v retrieving revision 1.31 diff -a -u -r1.31 help_mp-el.h --- help/help_mp-el.h 2 Oct 2004 14:09:30 -0000 1.31 +++ help/help_mp-el.h 6 Oct 2004 21:16:16 -0000 @@ -119,8 +119,6 @@ #define MSGTR_ErrorInitializingVODevice " / video_out (-vo) !\n" #define MSGTR_ForcedVideoCodec " codec: %s\n" #define MSGTR_ForcedAudioCodec " codec : %s\n" -#define MSGTR_AODescription_AOAuthor "AO: : %s\n AO: : %s\n" -#define MSGTR_AOComment "AO: : %s\n" #define MSGTR_Video_NoVideo ": !!!\n" #define MSGTR_NotInitializeVOPorVO "\n : (-vf) (-vo)!\n" #define MSGTR_Paused "\n ===== =====\r" Index: help/help_mp-en.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-en.h,v retrieving revision 1.142 diff -a -u -r1.142 help_mp-en.h --- help/help_mp-en.h 4 Oct 2004 15:10:33 -0000 1.142 +++ help/help_mp-en.h 6 Oct 2004 21:16:17 -0000 @@ -125,8 +125,6 @@ #define MSGTR_ErrorInitializingVODevice "Error opening/initializing the selected video_out (-vo) device.\n" #define MSGTR_ForcedVideoCodec "Forced video codec: %s\n" #define MSGTR_ForcedAudioCodec "Forced audio codec: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: Description: %s\nAO: Author: %s\n" -#define MSGTR_AOComment "AO: Comment: %s\n" #define MSGTR_Video_NoVideo "Video: no video\n" #define MSGTR_NotInitializeVOPorVO "\nFATAL: Could not initialize video filters (-vf) or video output (-vo).\n" #define MSGTR_Paused "\n ===== PAUSE =====\r" // no more than 23 characters (status line for audio files) @@ -150,6 +148,44 @@ " gcc version. If you think it's MPlayer's fault, please read\n"\ " DOCS/HTML/en/bugreports.html and follow the instructions there. We can't and\n"\ " won't help unless you provide this information when reporting a possible bug.\n" +#define MSGTR_LoadingConfig "Loading config '%s'\n" +#define MSGTR_AddedSubtitleFile "SUB: added subtitle file (%d): %s\n" +#define MSGTR_ErrorOpeningOutputFile "Error opening file [%s] for writing!\n" +#define MSGTR_CommandLine "CommandLine:" +#define MSGTR_RTCDeviceNotOpenable "Failed to open %s: %s (it should be readable by the user.)\n" +#define MSGTR_LinuxRTCInitErrorIrqpSet "Linux RTC init error in ioctl (rtc_irqp_set %lu): %s\n" +#define MSGTR_IncreaseRTCMaxUserFreq "Try adding \"echo %lu > /proc/sys/dev/rtc/max-user-freq\" to your system startup scripts.\n" +#define MSGTR_LinuxRTCInitErrorPieOn "Linux RTC init error in ioctl (rtc_pie_on): %s\n" +#define MSGTR_UsingTimingType "Using %s timing.\n" +#define MSGTR_MenuInitialized "Menu inited: %s\n" +#define MSGTR_MenuInitFailed "Menu init failed.\n" +#define MSGTR_Getch2InitializedTwice "WARNING: getch2_init called twice!\n" +#define MSGTR_DumpstreamFdUnavailable "Cannot dump this stream - no 'fd' available.\n" +#define MSGTR_FallingBackOnPlaylist "Falling back on trying to parse playlist %s...\n" +#define MSGTR_CantOpenLibmenuFilterWithThisRootMenu "Can't open libmenu video filter with root menu %s.\n" +#define MSGTR_AudioFilterChainPreinitError "Error at audio filter chain pre-init!\n" +#define MSGTR_LinuxRTCReadError "Linux RTC read error: %s\n" +#define MSGTR_SoftsleepUnderflow "Warning! Softsleep underflow!\n" +#define MSGTR_EDLSKIPStartStopLength "\nEDL_SKIP: start [%f], stop [%f], length [%f]\n" +#define MSGTR_AnsSubVisibility "ANS_SUB_VISIBILITY=%ld\n" +#define MSGTR_AnsLength "ANS_LENGTH=%ld\n" +#define MSGTR_AnsVoFullscreen "ANS_VO_FULLSCREEN=%ld\n" +#define MSGTR_AnsPercentPos "ANS_PERCENT_POSITION=%ld\n" +#define MSGTR_DvdnavNullEvent "DVDNAV Event NULL?!\n" +#define MSGTR_DvdnavHighlightEventBroken "DVDNAV Event: Highlight event broken\n" +#define MSGTR_DvdnavEvent "DVDNAV Event: %s\n" +#define MSGTR_DvdnavHighlightHide "DVDNAV Event: Highlight Hide\n" +#define MSGTR_DvdnavStillFrame "######################################## DVDNAV Event: Still Frame: %d sec(s)\n" +#define MSGTR_DvdnavNavStop "DVDNAV Event: Nav Stop\n" +#define MSGTR_DvdnavNavNOP "DVDNAV Event: Nav NOP\n" +#define MSGTR_DvdnavNavSpuStreamChangeVerbose "DVDNAV Event: Nav SPU Stream Change: phys: %d/%d/%d logical: %d\n" +#define MSGTR_DvdnavNavSpuStreamChange "DVDNAV Event: Nav SPU Stream Change: phys: %d logical: %d\n" +#define MSGTR_DvdnavNavAudioStreamChange "DVDNAV Event: Nav Audio Stream Change: phys: %d logical: %d\n" +#define MSGTR_DvdnavNavVTSChange "DVDNAV Event: Nav VTS Change\n" +#define MSGTR_DvdnavNavCellChange "DVDNAV Event: Nav Cell Change\n" +#define MSGTR_DvdnavNavSpuClutChange "DVDNAV Event: Nav SPU CLUT Change\n" +#define MSGTR_DvdnavNavSeekDone "DVDNAV Event: Nav Seek Done\n" +#define MSGTR_MenuCall "Menu call\n" #define MSGTR_EdlCantUseBothModes "Can't use -edl and -edlout at the same time.\n" #define MSGTR_EdlOutOfMem "Can't allocate enough memory to hold EDL data.\n" @@ -313,7 +349,6 @@ #define MSGTR_LavcAudioCodecNotFound "Audio LAVC, couldn't find encoder for codec %s\n" #define MSGTR_CouldntAllocateLavcContext "Audio LAVC, couldn't allocate context!\n" #define MSGTR_CouldntOpenCodec "Couldn't open codec %s, br=%d\n" -#define MSGTR_FramesizeBufsizeTag "FRAME_SIZE: %d, BUFFER_SIZE: %d, TAG: 0x%x\n" // cfg-mencoder.h: Index: help/help_mp-es.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-es.h,v retrieving revision 1.45 diff -a -u -r1.45 help_mp-es.h --- help/help_mp-es.h 2 Oct 2004 14:09:30 -0000 1.45 +++ help/help_mp-es.h 6 Oct 2004 21:16:17 -0000 @@ -127,8 +127,6 @@ #define MSGTR_ErrorInitializingVODevice "Error abriendo/inicializando el dispositivo de la salida de vdeo (-vo)!\n" #define MSGTR_ForcedVideoCodec "Forzado el codec de vdeo: %s.\n" #define MSGTR_ForcedAudioCodec "Forzado el codec de audio: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: Descripcin: %s\nAO: Autor: %s.\n" -#define MSGTR_AOComment "AO: Comentario: %s.\n" #define MSGTR_Video_NoVideo "Vdeo: no hay vdeo!\n" #define MSGTR_NotInitializeVOPorVO "\nFATAL: No se pudieron inicializar los filtros de vdeo (-vf) o de salida de vdeo (-vo)!\n" #define MSGTR_Paused "\n ===== PAUSA =====\r" @@ -323,7 +321,6 @@ #define MSGTR_LavcAudioCodecNotFound "LAVC Audio, no se encuentra el codificador para el codec %s\n" #define MSGTR_CouldntAllocateLavcContext "LAVC Audio, no se puede asignar contexto!\n" #define MSGTR_CouldntOpenCodec "No se puede abrir el codec %s, br=%d\n" -#define MSGTR_FramesizeBufsizeTag "TAMAO_DEL_CUADRO: %d, TAMAO_DEL_BUFFER: %d, ETIQUETA: 0x%x\n" // cfg-mencoder.h Index: help/help_mp-fr.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-fr.h,v retrieving revision 1.58 diff -a -u -r1.58 help_mp-fr.h --- help/help_mp-fr.h 2 Oct 2004 14:09:30 -0000 1.58 +++ help/help_mp-fr.h 6 Oct 2004 21:16:18 -0000 @@ -120,8 +120,6 @@ #define MSGTR_ErrorInitializingVODevice "Erreur l'ouverture/initialisation de la sortie vido choisie (-vo).\n" #define MSGTR_ForcedVideoCodec "Codec vido forc: %s\n" #define MSGTR_ForcedAudioCodec "Codec audio forc: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: Description: %s\nAO: Auteur: %s\n" -#define MSGTR_AOComment "AO: Commentaire: %s\n" #define MSGTR_Video_NoVideo "Vido: pas de vido\n" #define MSGTR_NotInitializeVOPorVO "\nFATAL: impossible d'initialiser les filtres vido (-vf) ou la sortie vido (-vo).\n" #define MSGTR_Paused "\n ===== PAUSE =====\r" // no more than 23 characters (status line for audio files) Index: help/help_mp-hu.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-hu.h,v retrieving revision 1.73 diff -a -u -r1.73 help_mp-hu.h --- help/help_mp-hu.h 2 Oct 2004 14:09:30 -0000 1.73 +++ help/help_mp-hu.h 6 Oct 2004 21:16:18 -0000 @@ -121,8 +121,6 @@ #define MSGTR_ErrorInitializingVODevice "Hiba a kivlasztott video_out (-vo) egysg inicializsakor!\n" #define MSGTR_ForcedVideoCodec "Knyszertett video codec: %s\n" #define MSGTR_ForcedAudioCodec "Knyszertett audio codec: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: Lers: %s\nAO: Kszt: %s\n" -#define MSGTR_AOComment "AO: Komment: %s\n" #define MSGTR_Video_NoVideo "Video: nincs video!!!\n" #define MSGTR_NotInitializeVOPorVO "\nHIBA: Nem sikerlt a video filterek (-vf) vagy a video kimenet (-vo) inicializlsa!\n" #define MSGTR_Paused "\n ===== SZNET =====\r" Index: help/help_mp-it.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-it.h,v retrieving revision 1.45 diff -a -u -r1.45 help_mp-it.h --- help/help_mp-it.h 2 Oct 2004 14:09:30 -0000 1.45 +++ help/help_mp-it.h 6 Oct 2004 21:16:18 -0000 @@ -115,8 +115,6 @@ #define MSGTR_ErrorInitializingVODevice "Errore aprendo/inizializzando il dispositivo di output video (-vo) selezionato!\n" #define MSGTR_ForcedVideoCodec "Codec video forzato: %s\n" #define MSGTR_ForcedAudioCodec "Codec audio forzato: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: Descrizione: %s\nAO: Autore: %s\n" -#define MSGTR_AOComment "AO: Commento: %s\n" #define MSGTR_Video_NoVideo "Video: no video!!!\n" #define MSGTR_NotInitializeVOPorVO "\nFATAL: Impossibile inizializzare i filtri video (-vf) o l'output video (-vo)!\n" #define MSGTR_Paused "\n ===== PAUSA =====\r" Index: help/help_mp-ja.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-ja.h,v retrieving revision 1.8 diff -a -u -r1.8 help_mp-ja.h --- help/help_mp-ja.h 2 Oct 2004 14:09:30 -0000 1.8 +++ help/help_mp-ja.h 6 Oct 2004 21:16:19 -0000 @@ -116,8 +116,6 @@ #define MSGTR_ErrorInitializingVODevice "򤵤줿(-vo)ǥХ򳫤ޤǤ.\n" #define MSGTR_ForcedVideoCodec "ꤵ줿ǥå: %s\n" #define MSGTR_ForcedAudioCodec "ꤵ줿ǥå: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: ܺ: %s\nAO: : %s\n" -#define MSGTR_AOComment "AO: : %s\n" #define MSGTR_Video_NoVideo "Video: ޤ\n" #define MSGTR_NotInitializeVOPorVO "\nFATAL: ե륿(-vf)(-vo)ν˼Ԥޤ.\n" #define MSGTR_Paused "\n ===== =====\r" // no more than 23 characters (status line for audio files) Index: help/help_mp-ko.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-ko.h,v retrieving revision 1.29 diff -a -u -r1.29 help_mp-ko.h --- help/help_mp-ko.h 2 Oct 2004 14:09:30 -0000 1.29 +++ help/help_mp-ko.h 6 Oct 2004 21:16:19 -0000 @@ -118,8 +118,6 @@ #define MSGTR_ErrorInitializingVODevice "선택한 비디오 출력 (-vo) 장치를 열거나 초기화할 수 없습니다.\n" #define MSGTR_ForcedVideoCodec "강제로 사용된 비디오 코덱: %s\n" #define MSGTR_ForcedAudioCodec "강제로 사용된 오디오 코덱: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: 설명: %s\nAO: 만든이: %s\n" -#define MSGTR_AOComment "AO: 덧말: %s\n" #define MSGTR_Video_NoVideo "비디오: 비디오 없음\n" #define MSGTR_NotInitializeVOPorVO "\n치명적 오류: 비디오 필터(-vf) 또는 비디오 출력(-vo)을 초기화할 수 없습니다.\n" #define MSGTR_Paused "\n ===== 잠시멈춤 =====\r" Index: help/help_mp-mk.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-mk.h,v retrieving revision 1.5 diff -a -u -r1.5 help_mp-mk.h --- help/help_mp-mk.h 2 Oct 2004 14:09:30 -0000 1.5 +++ help/help_mp-mk.h 6 Oct 2004 21:16:19 -0000 @@ -119,8 +119,6 @@ #define MSGTR_ErrorInitializingVODevice "Грешка при отварањето/иницијализирањето на избраниот излезен видео (-vo) уред.\n" #define MSGTR_ForcedVideoCodec "Присилен видео кодек: %s\n" #define MSGTR_ForcedAudioCodec "Присилен аудио кодек: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: Опис: %s\nAO: Автор: %s\n" -#define MSGTR_AOComment "AO: Коментар: %s\n" #define MSGTR_Video_NoVideo "Видео: нема слика\n" #define MSGTR_NotInitializeVOPorVO "\nФАТАЛНО: Не може да ги иницијализира видео филтерите (-vf) или видео излезот (-vo).\n" #define MSGTR_Paused "\n ===== ПАУЗА =====\r" // не повеќе од 23 карактери (статус линија за аудио датотеките) Index: help/help_mp-nl.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-nl.h,v retrieving revision 1.41 diff -a -u -r1.41 help_mp-nl.h --- help/help_mp-nl.h 2 Oct 2004 14:09:30 -0000 1.41 +++ help/help_mp-nl.h 6 Oct 2004 21:16:20 -0000 @@ -117,8 +117,6 @@ #define MSGTR_ErrorInitializingVODevice "Fout bij het openen/initialiseren van het gekozen video_out (-vo) apparaat!\n" #define MSGTR_ForcedVideoCodec "Gedwongen video codec: %s\n" #define MSGTR_ForcedAudioCodec "Gedwongen audio codec: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: Beschrijving: %s\nAO: Auteur: %s\n" -#define MSGTR_AOComment "AO: Commentaar: %s\n" #define MSGTR_Video_NoVideo "Video: geen video!!!\n" #define MSGTR_NotInitializeVOPorVO "\nFATAAL: Kon de video filters (-vf) of de video uitvoer (-vo) niet initialiseren!\n" #define MSGTR_Paused "\n------ GEPAUZEERD -------\r" Index: help/help_mp-pl.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-pl.h,v retrieving revision 1.93 diff -a -u -r1.93 help_mp-pl.h --- help/help_mp-pl.h 3 Oct 2004 19:51:33 -0000 1.93 +++ help/help_mp-pl.h 6 Oct 2004 21:16:21 -0000 @@ -119,8 +119,6 @@ #define MSGTR_ErrorInitializingVODevice "Bd przy otwieraniu/inicjalizacji wybranego urzdzenia video (-vo).\n" #define MSGTR_ForcedVideoCodec "Wymuszony kodek video: %s\n" #define MSGTR_ForcedAudioCodec "Wymuszony kodek audio: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: Opis: %s\nAO: Autor: %s\n" -#define MSGTR_AOComment "AO: Komentarz: %s\n" #define MSGTR_Video_NoVideo "Video: brak video\n" #define MSGTR_NotInitializeVOPorVO "\nBD KRYTYCZNY: Nie mog zainicjalizowa filtra video (-vf) lub wyjcia video (-vo).\n" #define MSGTR_Paused "\n ===== PAUZA =====\r" // no more than 23 characters (status line for audio files) @@ -305,7 +303,6 @@ #define MSGTR_LavcAudioCodecNotFound "Audio LAVC - nie mog znale kodeka dla %s\n" #define MSGTR_CouldntAllocateLavcContext "Audio LAVC - nie mog zaalokowa treci!\n" #define MSGTR_CouldntOpenCodec "Nie mog otworzy kodeka %s, br=%d\n" -#define MSGTR_FramesizeBufsizeTag "FRAME_SIZE: %d, BUFFER_SIZE: %d, TAG: 0x%x\n" // cfg-mencoder.h: #define MSGTR_MEncoderMP3LameHelp "\n\n"\ @@ -894,4 +891,4 @@ // ao_plugin.c -#define MSGTR_AO_PLUGIN_InvalidPlugin "[AO PLUGIN] nieprawidowa wtyczka: %s\n" \ No newline at end of file +#define MSGTR_AO_PLUGIN_InvalidPlugin "[AO PLUGIN] nieprawidowa wtyczka: %s\n" Index: help/help_mp-pt_BR.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-pt_BR.h,v retrieving revision 1.25 diff -a -u -r1.25 help_mp-pt_BR.h --- help/help_mp-pt_BR.h 2 Oct 2004 14:09:31 -0000 1.25 +++ help/help_mp-pt_BR.h 6 Oct 2004 21:16:22 -0000 @@ -126,8 +126,6 @@ #define MSGTR_ErrorInitializingVODevice "Erro abrindo/inicializando o dispositivo da sada de vdeo (-vo)!\n" #define MSGTR_ForcedVideoCodec "Codec de vdeo forado: %s\n" #define MSGTR_ForcedAudioCodec "Codec de audio forado: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: Descrio: %s\nAO: Autor: %s\n" -#define MSGTR_AOComment "AO: Comentrio: %s\n" #define MSGTR_Video_NoVideo "Vdeo: sem vdeo\n" #define MSGTR_NotInitializeVOPorVO "\nFATAL: Impossvel inicializar os filtros de vdeo (-vf) ou a sada de vdeo (-vo)!\n" #define MSGTR_Paused "\n================= PAUSADO =================\r" Index: help/help_mp-ro.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-ro.h,v retrieving revision 1.22 diff -a -u -r1.22 help_mp-ro.h --- help/help_mp-ro.h 2 Oct 2004 14:09:31 -0000 1.22 +++ help/help_mp-ro.h 6 Oct 2004 21:16:22 -0000 @@ -123,8 +123,6 @@ #define MSGTR_ErrorInitializingVODevice "Eroare la activarea ieirii video (-vo) aleas.\n" #define MSGTR_ForcedVideoCodec "Codec video forat: %s\n" #define MSGTR_ForcedAudioCodec "Codec audio forat: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: Descriere: %s\nAO: Autor: %s\n" -#define MSGTR_AOComment "AO: Comentariu: %s\n" #define MSGTR_Video_NoVideo "Video: nu exist video\n" #define MSGTR_NotInitializeVOPorVO "\nFATAL: Nu pot iniializa filtrele video (-vf) sau ieirea video (-vo).\n" #define MSGTR_Paused "\n ===== PAUZ =====\r" // no more than 23 characters (status line for audio files) Index: help/help_mp-ru.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-ru.h,v retrieving revision 1.48 diff -a -u -r1.48 help_mp-ru.h --- help/help_mp-ru.h 2 Oct 2004 14:09:31 -0000 1.48 +++ help/help_mp-ru.h 6 Oct 2004 21:16:22 -0000 @@ -117,8 +117,6 @@ #define MSGTR_ErrorInitializingVODevice " / (-vo).\n" #define MSGTR_ForcedVideoCodec " : %s\n" #define MSGTR_ForcedAudioCodec " : %s\n" -#define MSGTR_AODescription_AOAuthor "AO: : %s\nAO: : %s\n" -#define MSGTR_AOComment "AO: : %s\n" #define MSGTR_Video_NoVideo ": \n" #define MSGTR_NotInitializeVOPorVO "\nFATAL: (-vf) (-vo).\n" #define MSGTR_Paused "\n========\r" // no more than 23 characters (status line for audio files) Index: help/help_mp-sk.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-sk.h,v retrieving revision 1.27 diff -a -u -r1.27 help_mp-sk.h --- help/help_mp-sk.h 2 Oct 2004 14:09:31 -0000 1.27 +++ help/help_mp-sk.h 6 Oct 2004 21:16:22 -0000 @@ -112,8 +112,6 @@ #define MSGTR_ErrorInitializingVODevice "Chyba pri otvran/inicializcii vybranch video_out (-vo) zariaden!\n" #define MSGTR_ForcedVideoCodec "Vnten video kodek: %s\n" #define MSGTR_ForcedAudioCodec "Vnten video kodek: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: Popis: %s\nAO: Autor: %s\n" -#define MSGTR_AOComment "AO: Komentr: %s\n" #define MSGTR_Video_NoVideo "Video: iadne video!!!\n" #define MSGTR_NotInitializeVOPorVO "\nFATAL: Nemem inicializova video filtre (-vf) alebo video vstup (-vo)!\n" #define MSGTR_Paused "\n ===== PAUZA =====\r" Index: help/help_mp-tr.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-tr.h,v retrieving revision 1.16 diff -a -u -r1.16 help_mp-tr.h --- help/help_mp-tr.h 2 Oct 2004 14:09:31 -0000 1.16 +++ help/help_mp-tr.h 6 Oct 2004 21:16:22 -0000 @@ -111,8 +111,6 @@ #define MSGTR_ErrorInitializingVODevice "Video k (-vo) srcsn aarken/yklerken hata!\n" #define MSGTR_ForcedVideoCodec "Video codecine zorland: %s\n" #define MSGTR_ForcedAudioCodec "Ses codecine zorland: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: Aklama: %s\nAO: Yapan: %s\n" -#define MSGTR_AOComment "AO: Yorum: %s\n" #define MSGTR_Video_NoVideo "Video: video yok!!!\n" #define MSGTR_NotInitializeVOPorVO "\nLMCL: Video Filtreleri (-vf) veya video k (-vo) yklenemedi!\n" #define MSGTR_Paused "\n------ DURAKLADI -------\r" Index: help/help_mp-uk.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-uk.h,v retrieving revision 1.18 diff -a -u -r1.18 help_mp-uk.h --- help/help_mp-uk.h 2 Oct 2004 14:09:31 -0000 1.18 +++ help/help_mp-uk.h 6 Oct 2004 21:16:23 -0000 @@ -119,8 +119,6 @@ #define MSGTR_ErrorInitializingVODevice " צ/Φæ̦æ video_out (-vo) .\n" #define MSGTR_ForcedVideoCodec " צ : %s\n" #define MSGTR_ForcedAudioCodec " Ħ : %s\n" -#define MSGTR_AODescription_AOAuthor "AO: : %s\nAO: : %s\n" -#define MSGTR_AOComment "AO: Ҧ: %s\n" #define MSGTR_Video_NoVideo ": צ\n" #define MSGTR_NotInitializeVOPorVO "\nFATAL: Φæ̦ צ Ʀ (-vf) צ צ (-vo).\n" #define MSGTR_Paused "\n ===== =====\r" Index: help/help_mp-zh_CN.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-zh_CN.h,v retrieving revision 1.42 diff -a -u -r1.42 help_mp-zh_CN.h --- help/help_mp-zh_CN.h 2 Oct 2004 14:09:31 -0000 1.42 +++ help/help_mp-zh_CN.h 6 Oct 2004 21:16:23 -0000 @@ -118,8 +118,6 @@ #define MSGTR_ErrorInitializingVODevice "/ʼѡƵ(-vo)豸dz!\n" #define MSGTR_ForcedVideoCodec "ָƵ: %s\n" #define MSGTR_ForcedAudioCodec "ָƵ: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: : %s\nAO: : %s\n" -#define MSGTR_AOComment "AO: ע: %s\n" #define MSGTR_Video_NoVideo "Ƶ: no video\n" #define MSGTR_NotInitializeVOPorVO "\n: ޷ʼƵ(-vf)Ƶ(-vo)!\n" #define MSGTR_Paused "\n ===== ͣ =====\r" Index: help/help_mp-zh_TW.h =================================================================== RCS file: /cvsroot/mplayer/main/help/help_mp-zh_TW.h,v retrieving revision 1.16 diff -a -u -r1.16 help_mp-zh_TW.h --- help/help_mp-zh_TW.h 2 Oct 2004 14:09:31 -0000 1.16 +++ help/help_mp-zh_TW.h 6 Oct 2004 21:16:23 -0000 @@ -120,8 +120,6 @@ #define MSGTR_ErrorInitializingVODevice "}/lƩҿܪTX (-vo) ˸mɵoͿ~C\n" #define MSGTR_ForcedVideoCodec "jϥΪT codec: %s\n" #define MSGTR_ForcedAudioCodec "jϥΪ codec: %s\n" -#define MSGTR_AODescription_AOAuthor "AO: yz: %s\nAO: @: %s\n" -#define MSGTR_AOComment "AO: : %s\n" #define MSGTR_Video_NoVideo "T: Sv\n" #define MSGTR_NotInitializeVOPorVO "\nPR~: LklƼvLo (-vf) vX (-vo)C\n" #define MSGTR_Paused "\n ====== Ȱ ======\r"