prevent popup deactivation while button_down
[goodguy/history.git] / cinelerra-5.0 / cinelerra / filelist.C
index 34da86859ea4362a9702e9b829858abea3f7b51d..6155725425a33ff38b03c72d2c1cffbc6ca86f78 100644 (file)
@@ -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");