Ignore:
Timestamp:
02/06/14 21:22:54 (9 years ago)
Author:
obi
Message:

next step translate

File:
1 edited

Legend:

Unmodified
Added
Removed
  • titan/plugins/filemanager/filemanager.h

    r24454 r25932  
    8282{
    8383        struct menulist* mlist = NULL, *mbox = NULL;
    84         char* skintitle = "Menu";
    85 
    86         addmenulist(&mlist, "Rename", NULL, NULL, 0, 0);
    87         addmenulist(&mlist, "Create Folder", NULL, NULL, 0, 0);
     84        char* skintitle = _("Menu");
     85
     86        addmenulist(&mlist, _("Rename"), NULL, NULL, 0, 0);
     87        addmenulist(&mlist, _("Create Folder"), NULL, NULL, 0, 0);
    8888
    8989        mbox = menulistbox(mlist, NULL, skintitle, NULL, NULL, 1, 0);
    9090        if(mbox != NULL)
    9191        {
    92                 if(ostrcmp(mbox->name, "Rename") == 0)
     92                if(ostrcmp(mbox->name, _("Rename")) == 0)
    9393                {
    9494                        if(filemanagerrename(aktfilelist, filelist1, filelistpath1, filelist2, filelistpath1) != 0)
    9595                                textbox(_("Message"), _("Can't rename file !"), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 600, 200, 0, 0);           
    9696                }
    97                 else if(ostrcmp(mbox->name, "Create Folder") == 0)
     97                else if(ostrcmp(mbox->name, _("Create Folder")) == 0)
    9898                {
    9999                        if(filemanagercreatefolder(aktfilelist, filelist1, filelistpath1, filelist2, filelistpath1) != 0)
Note: See TracChangeset for help on using the changeset viewer.