X-Git-Url: http://git.cinelerra-gg.org/git/?p=goodguy%2Fhistory.git;a=blobdiff_plain;f=cinelerra-5.0%2Fcinelerra%2Ffile.C;h=b7d816d9b79618a848a75f22653728dc45b0ab71;hp=be231980711914260d79003cde01ade0bfd3b39c;hb=94e8dc2b306135e7735b2618a54f0f7de7ac7a0c;hpb=9755040e9ae6889aa0d1627d0e209496d1e000e6 diff --git a/cinelerra-5.0/cinelerra/file.C b/cinelerra-5.0/cinelerra/file.C index be231980..b7d816d9 100644 --- a/cinelerra-5.0/cinelerra/file.C +++ b/cinelerra-5.0/cinelerra/file.C @@ -313,7 +313,7 @@ int File::get_options(FormatTools *format, if(!format_window) { - ErrorBox *errorbox = new ErrorBox(PROGRAM_NAME ": Error", + ErrorBox *errorbox = new ErrorBox(_(PROGRAM_NAME ": Error"), parent_window->get_abs_cursor_x(1), parent_window->get_abs_cursor_y(1)); format_window = errorbox; @@ -2236,7 +2236,7 @@ const char* File::formattostr(ArrayList *plugindb, int format) case FILE_FFMPEG: return _(FFMPEG_NAME); case FILE_DB: return _(DBASE_NAME); } - return "Unknown"; + return _("Unknown"); } int File::strtobits(const char *bits) @@ -2266,7 +2266,7 @@ const char* File::bitstostr(int bits) case BITSFLOAT: return (NAME_FLOAT); case BITSIMA4: return (NAME_IMA4); } - return "Unknown"; + return _("Unknown"); } @@ -2533,7 +2533,7 @@ const char* File::get_prefix(int format) case FILE_GIF_LIST: return "GIF_LIST"; case FILE_DB: return "DB"; } - return "UNKNOWN"; + return _("UNKNOWN"); }