Changeset 1045


Ignore:
Timestamp:
01/15/11 22:42:14 (2 years ago)
Author:
reyalP
Message:
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/CHDK/LANG/english.lng

    r1035 r1045  
    564564424 "DNG format" 
    565565425 "RAW buffer cached" 
    566 426 "Cannot load CHDK/badpixel.bin\nUse Create badpixel.bin in raw menu" 
     566426 "Cannot load CHDK/badpixel.bin\nUse 'Create badpixel.bin' first" 
    567567427 "Show raw saving time" 
    568568428 "Connect 4" 
     
    597597459 "Create badpixel.bin" 
    598598460 "You need to be in REC-mode\nfor this operation." 
     599461 "%s disabled in build" 
  • trunk/CHDK/LANG/german.lng

    r1035 r1045  
    541541424 "DNG-Format" 
    542542425 "RAW-Puffer nutzen" 
    543 426 "Datei badpixel.bin fehlt!\nBitte starte \nCHDK/SCRIPTS/TEST/badpixel.lua" 
     543426 "Datei badpixel.bin fehlt!\nFühre 'badpixel.bin erstellen' aus" 
    544544427 "Zeige RAW Speicherzeit" 
    545545 
  • trunk/CHDK/LANG/hungarian.lng

    r1035 r1045  
    552552424 "DNG formátum" 
    553553425 "RAW cache memória használata" 
    554 426 "CHDK/badpixel.bin fájlt nem lehet betölteni\nFuttasd a következöt:\nCHDK/SCRIPTS/TEST/badpixel.lua" 
     554426 "CHDK/badpixel.bin fájlt nem lehet betölteni\nFuttasd a következöt:'badpixel.bin mentése'" 
    555555427 "RAW mentés idejének megjelenítése" 
    556556428 "Connect 4" 
  • trunk/core/gui_lang.c

    r1035 r1045  
    545545"424 \"DNG format\"\n" 
    546546"425 \"RAW buffer cached\"\n" 
    547 "426 \"Cannot load CHDK/badpixel.bin\\nPlease run \\nCHDK/SCRIPTS/TEST/badpixel.lua\"\n" 
     547"426 \"Cannot load CHDK/badpixel.bin\\nUse 'Create badpixel.bin' first\"\n" 
    548548"427 \"Show saving time\"\n" 
    549549 
     
    582582"459 \"Create badpixel.bin\"\n" 
    583583"460 \"You need to be in REC-mode\\nfor this operation.\"\n" 
     584"461 \"%s disabled in build\"\n" 
    584585; 
    585586 
  • trunk/core/gui_lang.h

    r1035 r1045  
    571571#define LANG_MENU_BADPIXEL_CREATE  459 
    572572#define LANG_MSG_RECMODE_REQUIRED  460 
     573#define LANG_CONSOLE_SCRIPT_DISABLED_IN_BUILD  461 
    573574//------------------------------------------------------------------- 
    574575 
    575 #define GUI_LANG_ITEMS                  460 
     576#define GUI_LANG_ITEMS                  461 
    576577 
    577578//------------------------------------------------------------------- 
  • trunk/core/script.c

    r1044 r1045  
    645645        state_lua_kbd_first_call_to_resume = 1; 
    646646#else 
    647         console_add_line("Cannot run script."); 
    648         console_add_line("There is no Lua"); 
    649         console_add_line("support in this build."); 
     647        char msg[64]; 
     648        sprintf(msg,lang_str(LANG_CONSOLE_SCRIPT_DISABLED_IN_BUILD),"Lua"); 
     649        console_add_line(msg); 
    650650        return -1; 
    651651#endif 
     
    659659        } 
    660660#else 
    661         console_add_line("Cannot run script."); 
    662         console_add_line("There is no UBasic"); 
    663         console_add_line("support in this build."); 
     661        char msg[64]; 
     662        sprintf(msg,lang_str(LANG_CONSOLE_SCRIPT_DISABLED_IN_BUILD),"UBASIC"); 
     663        console_add_line(msg); 
    664664        return -1; 
    665665#endif 
Note: See TracChangeset for help on using the changeset viewer.