Changeset 205:f65852271c00 in mediastreamer2


Ignore:
Timestamp:
Dec 17, 2008 10:42:02 PM (5 years ago)
Author:
smorlat <smorlat@…>
Branch:
default
Message:

internationalization of mediastreamer2 (thanks to Petr Pisar)

git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@208 3f6dc0c8-ddfe-455d-9043-3cd528dc4637

Location:
linphone
Files:
37 edited

Legend:

Unmodified
Added
Removed
  • linphone/coreapi/misc.c

    r182 r205  
    161161 
    162162const char *payload_type_get_description(PayloadType *pt){ 
    163         return (const char *)pt->user_data; 
     163        return _((const char *)pt->user_data); 
    164164}        
    165165 
  • linphone/mediastreamer2/include/mediastreamer2/msfilter.h

    r130 r205  
    409409#define MS_FILTER_DESC_EXPORT(desc) 
    410410 
     411/* xgettext markup */ 
     412#define N_(String) String 
    411413 
    412414#endif 
  • linphone/mediastreamer2/src/alaw.c

    r0 r205  
    142142        MS_ALAW_ENC_ID, 
    143143        "MSAlawEnc", 
    144         "ITU-G.711 alaw encoder", 
     144        N_("ITU-G.711 alaw encoder"), 
    145145        MS_FILTER_ENCODER, 
    146146        "pcma", 
     
    160160        .id=MS_ALAW_ENC_ID, 
    161161        .name="MSAlawEnc", 
    162         .text="ITU-G.711 alaw encoder", 
     162        .text=N_("ITU-G.711 alaw encoder"), 
    163163        .category=MS_FILTER_ENCODER, 
    164164        .enc_fmt="pcma", 
     
    192192        MS_ALAW_DEC_ID, 
    193193        "MSAlawDec", 
    194         "ITU-G.711 alaw decoder", 
     194        N_("ITU-G.711 alaw decoder"), 
    195195        MS_FILTER_DECODER, 
    196196        "pcma", 
     
    209209        .id=MS_ALAW_DEC_ID, 
    210210        .name="MSAlawDec", 
    211         .text="ITU-G.711 alaw decoder", 
     211        .text=N_("ITU-G.711 alaw decoder"), 
    212212        .category=MS_FILTER_DECODER, 
    213213        .enc_fmt="pcma", 
  • linphone/mediastreamer2/src/alsa.c

    r193 r205  
    888888        .id=MS_ALSA_READ_ID, 
    889889        .name="MSAlsaRead", 
    890         .text="Alsa sound source", 
     890        .text=N_("Alsa sound source"), 
    891891        .category=MS_FILTER_OTHER, 
    892892        .ninputs=0, 
     
    985985        .id=MS_ALSA_WRITE_ID, 
    986986        .name="MSAlsaWrite", 
    987         .text="Alsa sound output", 
     987        .text=N_("Alsa sound output"), 
    988988        .category=MS_FILTER_OTHER, 
    989989        .ninputs=1, 
  • linphone/mediastreamer2/src/aqsnd.c

    r14 r205  
    601601        .id=MS_AQ_READ_ID, 
    602602        .name="MSAQRead", 
    603         .text="Sound capture filter for MacOS X Audio Queue Service", 
     603        .text=N_("Sound capture filter for MacOS X Audio Queue Service"), 
    604604        .category=MS_FILTER_OTHER, 
    605605        .ninputs=0, 
     
    615615        .id=MS_AQ_WRITE_ID, 
    616616        .name="MSAQWrite", 
    617         .text="Sound playback filter for MacOS X Audio Queue Service", 
     617        .text=N_("Sound playback filter for MacOS X Audio Queue Service"), 
    618618        .category=MS_FILTER_OTHER, 
    619619        .ninputs=1, 
  • linphone/mediastreamer2/src/dtmfgen.c

    r0 r205  
    171171        MS_DTMF_GEN_ID, 
    172172        "MSDtmfGen", 
    173         "DTMF generator", 
     173        N_("DTMF generator"), 
    174174        MS_FILTER_OTHER, 
    175175        NULL, 
     
    189189        .id=MS_DTMF_GEN_ID, 
    190190        .name="MSDtmfGen", 
    191         .text="DTMF generator", 
     191        .text=N_("DTMF generator"), 
    192192        .category=MS_FILTER_OTHER, 
    193193        .ninputs=1, 
  • linphone/mediastreamer2/src/gsm.c

    r0 r205  
    6868        MS_GSM_ENC_ID, 
    6969        "MSGsmEnc", 
    70         "The GSM full-rate codec", 
     70        N_("The GSM full-rate codec"), 
    7171        MS_FILTER_ENCODER, 
    7272        "gsm", 
     
    8686        .id=MS_GSM_ENC_ID, 
    8787        .name="MSGsmEnc", 
    88         .text="The GSM full-rate codec", 
     88        .text=N_("The GSM full-rate codec"), 
    8989        .category=MS_FILTER_ENCODER, 
    9090        .enc_fmt="gsm", 
     
    132132        MS_GSM_DEC_ID, 
    133133        "MSGsmDec", 
    134         "The GSM codec", 
     134        N_("The GSM codec"), 
    135135        MS_FILTER_DECODER, 
    136136        "gsm", 
     
    150150        .id=MS_GSM_DEC_ID, 
    151151        .name="MSGsmDec", 
    152         .text="The GSM codec", 
     152        .text=N_("The GSM codec"), 
    153153        .category=MS_FILTER_DECODER, 
    154154        .enc_fmt="gsm", 
  • linphone/mediastreamer2/src/macsnd.c

    r0 r205  
    660660        .id=MS_CA_READ_ID, 
    661661        .name="MSCARead", 
    662         .text="Sound capture filter for MacOS X Core Audio drivers", 
     662        .text=N_("Sound capture filter for MacOS X Core Audio drivers"), 
    663663        .category=MS_FILTER_OTHER, 
    664664        .ninputs=0, 
     
    674674        .id=MS_CA_WRITE_ID, 
    675675        .name="MSCAWrite", 
    676         .text="Sound playback filter for MacOS X Core Audio drivers", 
     676        .text=N_("Sound playback filter for MacOS X Core Audio drivers"), 
    677677        .category=MS_FILTER_OTHER, 
    678678        .ninputs=1, 
  • linphone/mediastreamer2/src/msconf.c

    r186 r205  
    563563        MS_CONF_ID, 
    564564        "MSConf", 
    565         "A filter to make conferencing", 
     565        N_("A filter to make conferencing"), 
    566566        MS_FILTER_OTHER, 
    567567        NULL, 
     
    581581        .id=MS_CONF_ID, 
    582582        .name="MSConf", 
    583         .text="A filter to make conferencing", 
     583        .text=N_("A filter to make conferencing"), 
    584584        .category=MS_FILTER_OTHER, 
    585585        .ninputs=CONF_MAX_PINS, 
  • linphone/mediastreamer2/src/msfileplayer.c

    r0 r205  
    272272        MS_FILE_PLAYER_ID, 
    273273        "MSFilePlayer", 
    274         "Raw files and wav reader", 
     274        N_("Raw files and wav reader"), 
    275275        MS_FILTER_OTHER, 
    276276        NULL, 
     
    290290        .id=MS_FILE_PLAYER_ID, 
    291291        .name="MSFilePlayer", 
    292         .text="Raw files and wav reader", 
     292        .text=N_("Raw files and wav reader"), 
    293293        .category=MS_FILTER_OTHER, 
    294294        .ninputs=0, 
  • linphone/mediastreamer2/src/msfilerec.c

    r0 r205  
    168168        MS_FILE_REC_ID, 
    169169        "MSFileRec", 
    170         "Wav file recorder", 
     170        N_("Wav file recorder"), 
    171171        MS_FILTER_OTHER, 
    172172        NULL, 
     
    186186        .id=MS_FILE_REC_ID, 
    187187        .name="MSFileRec", 
    188         .text="Wav file recorder", 
     188        .text=N_("Wav file recorder"), 
    189189        .category=MS_FILTER_OTHER, 
    190190        .ninputs=1, 
  • linphone/mediastreamer2/src/msfilerec_win.c

    r0 r205  
    205205        MS_FILE_REC_ID, 
    206206        "MSFileRec", 
    207         "Wav file recorder", 
     207        N_("Wav file recorder"), 
    208208        MS_FILTER_OTHER, 
    209209        NULL, 
     
    223223        .id=MS_FILE_REC_ID, 
    224224        .name="MSFileRec", 
    225         .text="Wav file recorder", 
     225        .text=N_("Wav file recorder"), 
    226226        .category=MS_FILTER_OTHER, 
    227227        .ninputs=1, 
  • linphone/mediastreamer2/src/msjoin.c

    r0 r205  
    4343        MS_JOIN_ID, 
    4444        "MSJoin", 
    45         "A filter that send several inputs to one output.", 
     45        N_("A filter that send several inputs to one output."), 
    4646        MS_FILTER_OTHER, 
    4747        NULL, 
     
    6161        .id=MS_JOIN_ID, 
    6262        .name="MSJoin", 
    63         .text="A filter that send several inputs to one output.", 
     63        .text=N_("A filter that send several inputs to one output."), 
    6464        .category=MS_FILTER_OTHER, 
    6565        .ninputs=2, 
  • linphone/mediastreamer2/src/msresample.c

    r176 r205  
    145145        MS_RESAMPLE_ID, 
    146146        "MSResample", 
    147         "frequency resampler", 
     147        N_("frequency resampler"), 
    148148        MS_FILTER_OTHER, 
    149149        NULL, 
     
    163163        .id=MS_RESAMPLE_ID, 
    164164        .name="MSResample", 
    165         .text="frequency resampler", 
     165        .text=N_("frequency resampler"), 
    166166        .category=MS_FILTER_OTHER, 
    167167        .ninputs=1, 
  • linphone/mediastreamer2/src/msrtp.c

    r147 r205  
    251251        MS_RTP_SEND_ID, 
    252252        "MSRtpSend", 
    253         "RTP output filter", 
     253        N_("RTP output filter"), 
    254254        MS_FILTER_OTHER, 
    255255        NULL, 
     
    269269        .id = MS_RTP_SEND_ID, 
    270270        .name = "MSRtpSend", 
    271         .text = "RTP output filter", 
     271        .text = N_("RTP output filter"), 
    272272        .category = MS_FILTER_OTHER, 
    273273        .ninputs = 1, 
     
    410410        MS_RTP_RECV_ID, 
    411411        "MSRtpRecv", 
    412         "RTP input filter", 
     412        N_("RTP input filter"), 
    413413        MS_FILTER_OTHER, 
    414414        NULL, 
     
    428428        .id = MS_RTP_RECV_ID, 
    429429        .name = "MSRtpRecv", 
    430         .text = "RTP input filter", 
     430        .text = N_("RTP input filter"), 
    431431        .category = MS_FILTER_OTHER, 
    432432        .ninputs = 0, 
  • linphone/mediastreamer2/src/msspeex.c

    r0 r205  
    384384        MS_SPEEX_ENC_ID, 
    385385        "MSSpeexEnc", 
    386         "The free and wonderful speex codec", 
     386        N_("The free and wonderful speex codec"), 
    387387        MS_FILTER_ENCODER, 
    388388        "speex", 
     
    402402        .id=MS_SPEEX_ENC_ID, 
    403403        .name="MSSpeexEnc", 
    404         .text="The free and wonderful speex codec", 
     404        .text=N_("The free and wonderful speex codec"), 
    405405        .category=MS_FILTER_ENCODER, 
    406406        .enc_fmt="speex", 
     
    529529        MS_SPEEX_DEC_ID, 
    530530        "MSSpeexDec", 
    531         "The free and wonderful speex codec", 
     531        N_("The free and wonderful speex codec"), 
    532532        MS_FILTER_DECODER, 
    533533        "speex", 
     
    547547        .id=MS_SPEEX_DEC_ID, 
    548548        .name="MSSpeexDec", 
    549         .text="The free and wonderful speex codec", 
     549        .text=N_("The free and wonderful speex codec"), 
    550550        .category=MS_FILTER_DECODER, 
    551551        .enc_fmt="speex", 
  • linphone/mediastreamer2/src/msv4l.c

    r193 r205  
    10071007        .id=MS_V4L_ID, 
    10081008        .name="MSV4l", 
    1009         .text="A video4linux compatible source filter to stream pictures.", 
     1009        .text=N_("A video4linux compatible source filter to stream pictures."), 
    10101010        .ninputs=0, 
    10111011        .noutputs=1, 
  • linphone/mediastreamer2/src/msv4l2.c

    r177 r205  
    453453        .id=MS_V4L2_CAPTURE_ID, 
    454454        .name="MSV4L2Capture", 
    455         .text="A filter to grab pictures from Video4Linux2-powered cameras", 
     455        .text=N_("A filter to grab pictures from Video4Linux2-powered cameras"), 
    456456        .category=MS_FILTER_OTHER, 
    457457        .ninputs=0, 
  • linphone/mediastreamer2/src/msv4m.c

    r0 r205  
    492492        .id=MS_V4L_ID, 
    493493        .name="MSV4m", 
    494         .text="A video for macosx compatible source filter to stream pictures.", 
     494        .text=N_("A video for macosx compatible source filter to stream pictures."), 
    495495        .ninputs=0, 
    496496        .noutputs=1, 
  • linphone/mediastreamer2/src/msvolume.c

    r0 r205  
    6868MSFilterDesc ms_volume_desc={ 
    6969        .name="MSVolume", 
    70         .text="A filter to make level measurements on 16 bits pcm audio stream", 
     70        .text=N_("A filter to make level measurements on 16 bits pcm audio stream"), 
    7171        .id=MS_VOLUME_ID, 
    7272        .category=MS_FILTER_OTHER, 
     
    8282        MS_VOLUME_ID, 
    8383        "MSVolume", 
    84         "A filter to make level measurements on 16 bits pcm audio stream", 
     84        N_("A filter to make level measurements on 16 bits pcm audio stream"), 
    8585        MS_FILTER_OTHER, 
    8686        NULL, 
  • linphone/mediastreamer2/src/nowebcam.c

    r180 r205  
    224224        MS_STATIC_IMAGE_ID, 
    225225        "MSStaticImage", 
    226         "A filter that outputs a static image.", 
     226        N_("A filter that outputs a static image."), 
    227227        MS_FILTER_OTHER, 
    228228        NULL, 
  • linphone/mediastreamer2/src/oss.c

    r201 r205  
    555555        .id=MS_OSS_READ_ID, 
    556556        .name="MSOssRead", 
    557         .text="Sound capture filter for OSS drivers", 
     557        .text=N_("Sound capture filter for OSS drivers"), 
    558558        .category=MS_FILTER_OTHER, 
    559559        .ninputs=0, 
     
    569569        .id=MS_OSS_WRITE_ID, 
    570570        .name="MSOssWrite", 
    571         .text="Sound playback filter for OSS drivers", 
     571        .text=N_("Sound playback filter for OSS drivers"), 
    572572        .category=MS_FILTER_OTHER, 
    573573        .ninputs=1, 
  • linphone/mediastreamer2/src/pixconv.c

    r105 r205  
    175175        MS_PIX_CONV_ID, 
    176176        "MSPixConv", 
    177         "A pixel format converter", 
     177        N_("A pixel format converter"), 
    178178        MS_FILTER_OTHER, 
    179179        NULL, 
     
    193193        .id=MS_PIX_CONV_ID, 
    194194        .name="MSPixConv", 
    195         .text="A pixel format converter", 
     195        .text=N_("A pixel format converter"), 
    196196        .category=MS_FILTER_OTHER, 
    197197        .ninputs=1, 
  • linphone/mediastreamer2/src/sdlout.c

    r0 r205  
    343343        MS_SDL_OUT_ID, 
    344344        "MSSdlOut", 
    345         "A video display window using SDL", 
     345        N_("A video display window using SDL"), 
    346346        MS_FILTER_OTHER, 
    347347        NULL, 
     
    361361        .id=MS_SDL_OUT_ID, 
    362362        .name="MSSdlOut", 
    363         .text="A video display window using SDL", 
     363        .text=N_("A video display window using SDL"), 
    364364        .category=MS_FILTER_OTHER, 
    365365        .ninputs=2, 
  • linphone/mediastreamer2/src/sizeconv.c

    r183 r205  
    202202        MS_SIZE_CONV_ID, 
    203203        "MSSizeConv", 
    204         "A video size converter", 
     204        N_("A video size converter"), 
    205205        MS_FILTER_OTHER, 
    206206        NULL, 
     
    220220        .id=MS_SIZE_CONV_ID, 
    221221        .name="MSSizeConv", 
    222         .text="a small video size converter", 
     222        .text=N_("a small video size converter"), 
    223223        .ninputs=1, 
    224224        .noutputs=1, 
  • linphone/mediastreamer2/src/speexec.c

    r153 r205  
    288288        MS_SPEEX_EC_ID, 
    289289        "MSSpeexEC", 
    290         "Echo canceler using speex library", 
     290        N_("Echo canceler using speex library"), 
    291291        MS_FILTER_OTHER, 
    292292        NULL, 
     
    306306        .id=MS_SPEEX_EC_ID, 
    307307        .name="MSSpeexEC", 
    308         .text="Echo canceler using speex library", 
     308        .text=N_("Echo canceler using speex library"), 
    309309        .category=MS_FILTER_OTHER, 
    310310        .ninputs=2, 
  • linphone/mediastreamer2/src/tee.c

    r0 r205  
    7878        MS_TEE_ID, 
    7979        "MSTee", 
    80         "A filter that reads from input and copy to its multiple outputs.", 
     80        N_("A filter that reads from input and copy to its multiple outputs."), 
    8181        MS_FILTER_OTHER, 
    8282        NULL, 
     
    9696        .id=MS_TEE_ID, 
    9797        .name="MSTee", 
    98         .text="A filter that reads from input and copy to its multiple outputs.", 
     98        .text=N_("A filter that reads from input and copy to its multiple outputs."), 
    9999        .category=MS_FILTER_OTHER, 
    100100        .ninputs=1, 
  • linphone/mediastreamer2/src/theora.c

    r42 r205  
    370370        MS_THEORA_ENC_ID, 
    371371        "MSTheoraEnc", 
    372         "The theora video encoder from xiph.org", 
     372        N_("The theora video encoder from xiph.org"), 
    373373        MS_FILTER_ENCODER, 
    374374        "theora", 
     
    388388        .id=MS_THEORA_ENC_ID, 
    389389        .name="MSTheoraEnc", 
    390         .text="The open-source and royalty-free 'theora' video codec from xiph.org", 
     390        .text=N_("The open-source and royalty-free 'theora' video codec from xiph.org"), 
    391391        .category=MS_FILTER_ENCODER, 
    392392        .enc_fmt="theora", 
     
    556556        MS_THEORA_DEC_ID, 
    557557        "MSTheoraDec", 
    558         "The theora video decoder from xiph.org", 
     558        N_("The theora video decoder from xiph.org"), 
    559559        MS_FILTER_DECODER, 
    560560        "theora", 
     
    574574        .id=MS_THEORA_DEC_ID, 
    575575        .name="MSTheoraDec", 
    576         .text="The theora video decoder from xiph.org", 
     576        .text=N_("The theora video decoder from xiph.org"), 
    577577        .category=MS_FILTER_DECODER, 
    578578        .enc_fmt="theora", 
  • linphone/mediastreamer2/src/ulaw.c

    r0 r205  
    144144        MS_ULAW_ENC_ID, 
    145145        "MSUlawEnc", 
    146         "ITU-G.711 ulaw encoder", 
     146        N_("ITU-G.711 ulaw encoder"), 
    147147        MS_FILTER_ENCODER, 
    148148        "pcmu", 
     
    162162        .id=MS_ULAW_ENC_ID, 
    163163        .name="MSUlawEnc", 
    164         .text="ITU-G.711 ulaw encoder", 
     164        .text=N_("ITU-G.711 ulaw encoder"), 
    165165        .category=MS_FILTER_ENCODER, 
    166166        .enc_fmt="pcmu", 
     
    194194        MS_ULAW_DEC_ID, 
    195195        "MSUlawDec", 
    196         "ITU-G.711 ulaw decoder", 
     196        N_("ITU-G.711 ulaw decoder"), 
    197197        MS_FILTER_DECODER, 
    198198        "pcmu", 
     
    212212        .id=MS_ULAW_DEC_ID, 
    213213        .name="MSUlawDec", 
    214         .text="ITU-G.711 ulaw decoder", 
     214        .text=N_("ITU-G.711 ulaw decoder"), 
    215215        .category=MS_FILTER_DECODER, 
    216216        .enc_fmt="pcmu", 
  • linphone/mediastreamer2/src/videodec.c

    r0 r205  
    295295        MS_H263_DEC_ID, 
    296296        "MSH263Dec", 
    297         "A H.263 decoder using ffmpeg library", 
     297        N_("A H.263 decoder using ffmpeg library"), 
    298298        MS_FILTER_DECODER, 
    299299        "H263-1998", 
     
    311311        MS_H263_DEC_ID, 
    312312        "MSH263OldDec", 
    313         "A H.263 decoder using ffmpeg library", 
     313        N_("A H.263 decoder using ffmpeg library"), 
    314314        MS_FILTER_DECODER, 
    315315        "H263", 
     
    328328        MS_MPEG4_DEC_ID, 
    329329        "MSMpeg4Dec", 
    330         "A MPEG4 decoder using ffmpeg library", 
     330        N_("A MPEG4 decoder using ffmpeg library"), 
    331331        MS_FILTER_DECODER, 
    332332        "MP4V-ES", 
     
    344344        MS_MJPEG_DEC_ID, 
    345345        "MSMJpegDec", 
    346         "A MJPEG decoder using ffmpeg library", 
     346        N_("A MJPEG decoder using ffmpeg library"), 
    347347        MS_FILTER_DECODER, 
    348348        "MJPEG", 
     
    360360        MS_SNOW_DEC_ID, 
    361361        "MSSnowDec", 
    362         "A snow decoder using ffmpeg library", 
     362        N_("A snow decoder using ffmpeg library"), 
    363363        MS_FILTER_DECODER, 
    364364        "snow", 
     
    378378        .id=MS_H263_DEC_ID, 
    379379        .name="MSH263Dec", 
    380         .text="A H.263 decoder using ffmpeg library", 
     380        .text=N_("A H.263 decoder using ffmpeg library"), 
    381381        .category=MS_FILTER_DECODER, 
    382382        .enc_fmt="H263-1998", 
     
    394394        .id=MS_H263_OLD_DEC_ID, 
    395395        .name="MSH263OldDec", 
    396         .text="A H.263 decoder using ffmpeg library", 
     396        .text=N_("A H.263 decoder using ffmpeg library"), 
    397397        .category=MS_FILTER_DECODER, 
    398398        .enc_fmt="H263", 
  • linphone/mediastreamer2/src/videoenc.c

    r191 r205  
    577577        MS_H263_ENC_ID, 
    578578        "MSH263Enc", 
    579         "A video H.263 encoder using ffmpeg library.", 
     579        N_("A video H.263 encoder using ffmpeg library."), 
    580580        MS_FILTER_ENCODER, 
    581581        "H263-1998", 
     
    593593        MS_H263_OLD_ENC_ID, 
    594594        "MSH263OldEnc", 
    595         "A video H.263 encoder using ffmpeg library. It is compliant with old RFC2190 spec.", 
     595        N_("A video H.263 encoder using ffmpeg library. It is compliant with old RFC2190 spec."), 
    596596        MS_FILTER_ENCODER, 
    597597        "H263", 
     
    609609        MS_MPEG4_ENC_ID, 
    610610        "MSMpeg4Enc", 
    611         "A video MPEG4 encoder using ffmpeg library.", 
     611        N_("A video MPEG4 encoder using ffmpeg library."), 
    612612        MS_FILTER_ENCODER, 
    613613        "MP4V-ES", 
     
    625625        MS_SNOW_ENC_ID, 
    626626        "MSSnowEnc", 
    627         "A video snow encoder using ffmpeg library.", 
     627        N_("A video snow encoder using ffmpeg library."), 
    628628        MS_FILTER_ENCODER, 
    629629        "x-snow", 
     
    643643        .id=MS_H263_ENC_ID, 
    644644        .name="MSH263Enc", 
    645         .text="A video H.263 encoder using ffmpeg library.", 
     645        .text=N_("A video H.263 encoder using ffmpeg library."), 
    646646        .category=MS_FILTER_ENCODER, 
    647647        .enc_fmt="H263-1998", 
     
    659659        .id=MS_H263_OLD_ENC_ID, 
    660660        .name="MSH263Enc", 
    661         .text="A video H.263 encoder using ffmpeg library, compliant with old RFC2190 spec.", 
     661        .text=N_("A video H.263 encoder using ffmpeg library, compliant with old RFC2190 spec."), 
    662662        .category=MS_FILTER_ENCODER, 
    663663        .enc_fmt="H263", 
     
    675675        .id=MS_MPEG4_ENC_ID, 
    676676        .name="MSMpeg4Enc", 
    677         .text="A video MPEG4 encoder using ffmpeg library.", 
     677        .text=N_("A video MPEG4 encoder using ffmpeg library."), 
    678678        .category=MS_FILTER_ENCODER, 
    679679        .enc_fmt="MP4V-ES", 
     
    691691        .id=MS_SNOW_ENC_ID, 
    692692        .name="MSSnowEnc", 
    693         .text="The snow codec is royalty-free and is open-source. \n" 
     693        .text=N_("The snow codec is royalty-free and is open-source. \n" 
    694694                "It uses innovative techniques that makes it one of the best video " 
    695695                "codec. It is implemented within the ffmpeg project.\n" 
    696696                "However it is under development and compatibility with other versions " 
    697                 "cannot be guaranteed.", 
     697                "cannot be guaranteed."), 
    698698        .category=MS_FILTER_ENCODER, 
    699699        .enc_fmt="x-snow", 
  • linphone/mediastreamer2/src/videoout.c

    r200 r205  
    843843        MS_VIDEO_OUT_ID, 
    844844        "MSVideoOut", 
    845         "A generic video display", 
     845        N_("A generic video display"), 
    846846        MS_FILTER_OTHER, 
    847847        NULL, 
     
    861861        .id=MS_VIDEO_OUT_ID, 
    862862        .name="MSVideoOut", 
    863         .text="A generic video display", 
     863        .text=N_("A generic video display"), 
    864864        .category=MS_FILTER_OTHER, 
    865865        .ninputs=2, 
  • linphone/mediastreamer2/src/wincevideods.c

    r0 r205  
    964964        MS_V4L_ID, 
    965965        "MSV4w", 
    966         "A video4windows compatible source filter to stream pictures.", 
     966        N_("A video4windows compatible source filter to stream pictures."), 
    967967        MS_FILTER_OTHER, 
    968968        NULL, 
     
    982982        .id=MS_V4L_ID, 
    983983        .name="MSV4w", 
    984         .text="A video4windows compatible source filter to stream pictures.", 
     984        .text=N_("A video4windows compatible source filter to stream pictures."), 
    985985        .ninputs=0, 
    986986        .noutputs=1, 
  • linphone/mediastreamer2/src/winvideo.c

    r139 r205  
    594594        MS_V4L_ID, 
    595595        "MSV4w", 
    596         "A video4windows compatible source filter to stream pictures.", 
     596        N_("A video4windows compatible source filter to stream pictures."), 
    597597        MS_FILTER_OTHER, 
    598598        NULL, 
     
    612612        .id=MS_V4L_ID, 
    613613        .name="MSV4w", 
    614         .text="A video4windows compatible source filter to stream pictures.", 
     614        .text=N_("A video4windows compatible source filter to stream pictures."), 
    615615        .ninputs=0, 
    616616        .noutputs=1, 
  • linphone/mediastreamer2/src/winvideo2.c

    r162 r205  
    434434        MS_VFW_ID, 
    435435        "MSVfw", 
    436         "A video for windows (vfw.h) based source filter to grab pictures.", 
     436        N_("A video for windows (vfw.h) based source filter to grab pictures."), 
    437437        MS_FILTER_OTHER, 
    438438        NULL, 
     
    452452        .id=MS_VFW_ID, 
    453453        .name="MSVfw", 
    454         .text="A video for windows (vfw.h) based source filter to grab pictures.", 
     454        .text=N_("A video for windows (vfw.h) based source filter to grab pictures."), 
    455455        .ninputs=0, 
    456456        .noutputs=1, 
  • linphone/mediastreamer2/src/winvideods.c

    r192 r205  
    14201420        MS_V4L_ID, 
    14211421        "MSV4w", 
    1422         "A video4windows compatible source filter to stream pictures.", 
     1422        N_("A video4windows compatible source filter to stream pictures."), 
    14231423        MS_FILTER_OTHER, 
    14241424        NULL, 
     
    14381438        .id=MS_V4L_ID, 
    14391439        .name="MSV4w", 
    1440         .text="A video4windows compatible source filter to stream pictures.", 
     1440        .text=N_("A video4windows compatible source filter to stream pictures."), 
    14411441        .ninputs=0, 
    14421442        .noutputs=1, 
  • linphone/po/POTFILES.in

    r62 r205  
    2222coreapi/exevents.c 
    2323coreapi/presence.c 
     24coreapi/friends.c 
    2425 
Note: See TracChangeset for help on using the changeset viewer.