]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/dialog_settings_user_languagewarning.qc
Sort menu classes
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / dialog_settings_user_languagewarning.qc
1 #ifndef DIALOG_SETTINGS_USER_LANGUAGEWARNING_H
2 #define DIALOG_SETTINGS_USER_LANGUAGEWARNING_H
3 CLASS(XonoticLanguageWarningDialog, XonoticDialog)
4         METHOD(XonoticLanguageWarningDialog, fill, void(entity)) // to be overridden by user to fill the dialog with controls
5         ATTRIB(XonoticLanguageWarningDialog, title, string, _("Warning"))
6         ATTRIB(XonoticLanguageWarningDialog, color, vector, SKINCOLOR_DIALOG_HUDCONFIRM)
7         ATTRIB(XonoticLanguageWarningDialog, intendedWidth, float, 0.6)
8         ATTRIB(XonoticLanguageWarningDialog, rows, float, 5)
9         ATTRIB(XonoticLanguageWarningDialog, columns, float, 4)
10 ENDCLASS(XonoticLanguageWarningDialog)
11 #endif
12
13 #ifdef IMPLEMENTATION
14 void XonoticLanguageWarningDialog_fill(entity me)
15 {
16         entity e;
17         me.TR(me);
18                 me.TD(me, 1, 4, e = makeXonoticTextLabel(0, _("While connected language changes will be applied only to the menu,")));
19         me.TR(me);
20                 me.TD(me, 1, 4, e = makeXonoticTextLabel(0, _("full language changes will take effect starting from the next game")));
21         me.TR(me);
22         me.TR(me);
23                 // reconnect command doesn't work properly, otherwise it would replace disconnect
24                 me.TD(me, 1, 2, e = makeXonoticCommandButton(_("Disconnect now"), '0 0 0', "disconnect", 0));
25                 me.TD(me, 1, 2, e = makeXonoticCommandButton(_("Switch language"), '0 0 0', "prvm_language \"$_menu_prvm_language\"; menu_restart; menu_cmd languageselect", 0));
26 }
27 #endif