Merge pull request #4902 from Geequlim/translatable-dialogs

Make dialogs translatable
This commit is contained in:
Rémi Verschelde 2016-05-30 16:27:31 +02:00
commit 4a4968e5a8

View file

@ -349,7 +349,7 @@ Button* AcceptDialog::add_cancel(const String &p_cancel) {
String c = p_cancel; String c = p_cancel;
if (p_cancel=="") if (p_cancel=="")
c="Cancel"; c=RTR("Cancel");
Button *b = swap_ok_cancel ? add_button(c,true) : add_button(c); Button *b = swap_ok_cancel ? add_button(c,true) : add_button(c);
b->connect("pressed",this,"_closed"); b->connect("pressed",this,"_closed");
return b; return b;
@ -406,7 +406,7 @@ AcceptDialog::AcceptDialog() {
hbc->add_spacer(); hbc->add_spacer();
ok = memnew( Button ); ok = memnew( Button );
ok->set_text("OK"); ok->set_text(RTR("OK"));
hbc->add_child(ok); hbc->add_child(ok);
hbc->add_spacer(); hbc->add_spacer();
//add_child(ok); //add_child(ok);
@ -416,7 +416,7 @@ AcceptDialog::AcceptDialog() {
set_as_toplevel(true); set_as_toplevel(true);
hide_on_ok=true; hide_on_ok=true;
set_title("Alert!"); set_title(RTR("Alert!"));
child=NULL; child=NULL;
} }
@ -439,6 +439,6 @@ Button *ConfirmationDialog::get_cancel() {
ConfirmationDialog::ConfirmationDialog() { ConfirmationDialog::ConfirmationDialog() {
set_title("Please Confirm..."); set_title(RTR("Please Confirm..."));
cancel = add_cancel(); cancel = add_cancel();
} }