X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.0%2Fcinelerra%2Ffilelist.C;h=6155725425a33ff38b03c72d2c1cffbc6ca86f78;hb=6c0c8bd0e577001d1cc18c6c27d58e62f58a6bff;hp=34da86859ea4362a9702e9b829858abea3f7b51d;hpb=2d99bb8ce591f05a31464b517d85dc2bc35b2abe;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.0/cinelerra/filelist.C b/cinelerra-5.0/cinelerra/filelist.C index 34da8685..61557254 100644 --- a/cinelerra-5.0/cinelerra/filelist.C +++ b/cinelerra-5.0/cinelerra/filelist.C @@ -306,7 +306,7 @@ int FileList::read_frame(VFrame *frame) { if(!(in = fopen(string, "rb"))) { - eprintf("Error while opening \"%s\" for reading. \n%m\n", string); + eprintf(_("Error while opening \"%s\" for reading. \n%m\n"), string); } else { @@ -380,7 +380,7 @@ int FileList::read_frame(VFrame *frame) } else { - eprintf("Error while opening \"%s\" for reading. \n%m\n", asset->path); + eprintf(_("Error while opening \"%s\" for reading. \n%m\n"), asset->path); result = 1; } } @@ -478,7 +478,7 @@ int FileList::write_frames(VFrame ***frames, int len) } else { - eprintf("Error while opening \"%s\" for writing. \n%m\n", asset->path); + eprintf(_("Error while opening \"%s\" for writing. \n%m\n"), asset->path); return_value++; } } @@ -660,7 +660,7 @@ void FrameWriterUnit::process_package(LoadPackage *package) //printf("FrameWriterUnit::process_package 2 %s\n", ptr->path); if(!(file = fopen(ptr->path, "wb"))) { - eprintf("Error while opening \"%s\" for writing. \n%m\n", ptr->path); + eprintf(_("Error while opening \"%s\" for writing. \n%m\n"), ptr->path); return; } //printf("FrameWriterUnit::process_package 3");