From: divverent Date: Fri, 14 Jan 2011 21:01:28 +0000 (+0000) Subject: use the proper filename.pot instead of filename.dump.po for the empty .po file X-Git-Tag: xonotic-v0.5.0~438^2~140 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=88b6000823920523565bc2bb5c63d4315dead1a9;ds=sidebyside use the proper filename.pot instead of filename.dump.po for the empty .po file git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10701 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/prvm_edict.c b/prvm_edict.c index a5f80d1c..ac443104 100644 --- a/prvm_edict.c +++ b/prvm_edict.c @@ -2350,16 +2350,16 @@ void PRVM_LoadProgs (const char * filename, int numrequiredfunc, const char **re } if(!strcmp(prvm_language.string, "dump")) { - qfile_t *f = FS_OpenRealFile(va("%s.%s.po", filename, prvm_language.string), "w", false); - Con_Printf("Dumping to %s.%s.po\n", filename, prvm_language.string); + qfile_t *f = FS_OpenRealFile(va("%s.pot", filename), "w", false); + Con_Printf("Dumping to %s.pot\n", filename); if(f) { for (i=0 ; iprogs->numglobaldefs ; i++) { const char *name; name = PRVM_GetString(prog->globaldefs[i].s_name); - if((prog->globaldefs[i].type & ~DEF_SAVEGLOBAL) == ev_string) if(deftrans ? (!name || strncmp(name, "notranslate_", 12)) : (name && !strncmp(name, "dotranslate_", 12))) + if((prog->globaldefs[i].type & ~DEF_SAVEGLOBAL) == ev_string) { prvm_eval_t *val = (prvm_eval_t *)(prog->globals.generic + prog->globaldefs[i].ofs); const char *value = PRVM_GetString(val->string);