12345678910111213141516171819202122 |
- # this file is part from AIA
- # AIA is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- # AIA is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- # You should have received a copy of the GNU General Public License
- from gi.repository import Gtk
- import gettext
- import signal
- gettext.install("Already_Running_message", "/usr/share/AIA/locale")
- signal.signal(signal.SIGINT, signal.SIG_DFL)
- Gtk.init(None)
- q=Gtk.MessageDialog(None, Gtk.DialogFlags.MODAL, Gtk.MessageType.INFO, Gtk.ButtonsType.OK, _("Screen Reader Already Enabled!"))
- q.format_secondary_text(_("Orca Screen Reader Autostart Running is Already Enabled ."))
- q.run()
|