391904b744
- Adjust line mappings in .po files for translation strings - Add new translations for custom partitioning, password strength, keyboard setup, installer steps, and network setup strings - Update POT-Creation-Date in Romanian and Slovak .po files - Include various new UI strings for installation and try-live options
50 lines
1.9 KiB
Python
50 lines
1.9 KiB
Python
import gi
|
|
gi.require_version('Gtk', '3.0')
|
|
from gi.repository import Gtk
|
|
from install_station.data import get_text
|
|
|
|
|
|
class ErrorWindow:
|
|
|
|
@classmethod
|
|
def on_close(cls, _widget):
|
|
Gtk.main_quit()
|
|
|
|
def __init__(self):
|
|
window = Gtk.Window()
|
|
window.set_border_width(8)
|
|
window.connect("destroy", Gtk.main_quit)
|
|
window.set_title(get_text("Installation Error"))
|
|
# window.set_icon_from_file("/usr/local/lib/install-station/image/logo.png")
|
|
box1 = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, homogeneous=False, spacing=0)
|
|
window.add(box1)
|
|
box1.show()
|
|
box2 = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, homogeneous=False, spacing=10)
|
|
box2.set_border_width(10)
|
|
box1.pack_start(box2, True, True, 0)
|
|
box2.show()
|
|
title = Gtk.Label()
|
|
title.set_use_markup(True)
|
|
title_text = get_text("Installation has failed!")
|
|
title.set_markup(f'<b><span size="larger">{title_text}</span></b>')
|
|
label = Gtk.Label()
|
|
label.set_use_markup(True)
|
|
url = 'https://github.com/ghostbsd/ghostbsd-src/issues/new/choose'
|
|
anchor = f"<a href='{url}'>{get_text('GhostBSD issue system')}</a>"
|
|
message = get_text(
|
|
"Please report the issue to {anchor}, and \nbe sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
|
).format(anchor=anchor)
|
|
label.set_markup(message)
|
|
box2.pack_start(title, True, True, 0)
|
|
box2.pack_start(label, True, True, 0)
|
|
box2 = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, homogeneous=False, spacing=10)
|
|
box2.set_border_width(5)
|
|
box1.pack_start(box2, False, True, 0)
|
|
box2.show()
|
|
table = Gtk.Table(n_rows=1, n_columns=2, homogeneous=True)
|
|
ok = Gtk.Button(label=get_text("Ok"))
|
|
ok.connect("clicked", self.on_close)
|
|
table.attach(ok, 0, 2, 0, 1)
|
|
box2.pack_start(table, True, True, 0)
|
|
window.show_all()
|