Changeset 38910


Ignore:
Timestamp:
09/19/16 14:15:16 (7 years ago)
Author:
obi
Message:

fix translate

File:
1 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/restoredefault.h

    r38905 r38910  
    88        struct skin* load = getscreen("loading");
    99
    10         ret = textbox(_("Message"), _("Really restore default settings ?"), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 600, 200, 0, 0);
     10        ret = textbox(_("Message"), _("Really restore default ?"), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 600, 200, 0, 0);
    1111
    1212        if(ret == 1)
     
    2121                }
    2222                else
    23                         textbox(_("Message"), _("Can't restore settings"), _("OK"), getrcconfigint("rcok", NULL), NULL, 0, NULL, 0, NULL, 0, 600, 200, 7, 0);
     23                        textbox(_("Message"), _("Can't restore default"), _("OK"), getrcconfigint("rcok", NULL), NULL, 0, NULL, 0, NULL, 0, 600, 200, 7, 0);
    2424        }
    2525        clearscreen(load);
     
    3232        struct skin* load = getscreen("loading");
    3333
    34         ret = textbox(_("Message"), _("Really restore default settings without Channelsettings ?"), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 600, 200, 0, 0);
     34        ret = textbox(_("Message"), _("Really restore default without Channelsettings ?"), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 600, 200, 0, 0);
    3535
    3636        if(ret == 1)
     
    4747                }
    4848                else
    49                         textbox(_("Message"), _("Can't restore settings"), _("OK"), getrcconfigint("rcok", NULL), NULL, 0, NULL, 0, NULL, 0, 600, 200, 7, 0);
     49                        textbox(_("Message"), _("Can't restore default"), _("OK"), getrcconfigint("rcok", NULL), NULL, 0, NULL, 0, NULL, 0, 600, 200, 7, 0);
    5050        }
    5151        clearscreen(load);
     
    8787        struct menulist* mlist = NULL, *mbox = NULL;
    8888
    89         addmenulist(&mlist, "Restore default settings", _("Restore default settings"), NULL, 0, 0);
     89        addmenulist(&mlist, "Restore default", _("Restore default"), NULL, 0, 0);
    9090        addmenulist(&mlist, "Restore default without Channelsettings", _("Restore default without Channelsettings"), NULL, 0, 0);
    9191        addmenulist(&mlist, "Format MNT with Backup/Restore", _("Format MNT with Backup/Restore"), NULL, 0, 0);
     
    9696        if(mbox != NULL)
    9797        {
    98                 if(ostrcmp(mbox->name, "Restore default settings") == 0)
     98                if(ostrcmp(mbox->name, "Restore default") == 0)
    9999                {
    100100                        screenrestoredefault();
Note: See TracChangeset for help on using the changeset viewer.