Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename 'GPS' to 'GNAT Studio' in dialog box that appears when changing status of scripts #109

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions kernel/src/gps-kernel-custom-gui.adb
Original file line number Diff line number Diff line change
Expand Up @@ -707,20 +707,20 @@ package body GPS.Kernel.Custom.GUI is
Response : Gtk_Response_Type;
begin
Gtk_New (Dialog,
Title => -"Restart GPS ?",
Title => -"Restart GNAT Studio ?",
Parent => Get_Main_Window (Kernel),
Flags => Modal);
Gtk_New
(Label,
-("You have changed the status of some scripts. You will"
& ASCII.LF
& "need to restart GPS to take this change into account."
& "need to restart GNAT Studio to take this change into account."
& ASCII.LF & ASCII.LF
& "Do you want to exit GPS now ?"));
& "Do you want to exit GNAT Studio now ?"));
Pack_Start
(Get_Content_Area (Dialog),
Label, Expand => True, Fill => True);
Button := Add_Button (Dialog, -"Exit GPS", Gtk_Response_OK);
Button := Add_Button (Dialog, -"Exit GNAT Studio", Gtk_Response_OK);
Button := Add_Button
(Dialog, -"Will restart later", Gtk_Response_Cancel);
Grab_Default (Button);
Expand Down