Update translations and new strings in po files

- 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
This commit is contained in:
ericbsd
2025-07-12 21:24:33 -03:00
parent 9db6c513c9
commit 391904b744
58 changed files with 10263 additions and 5540 deletions
+9 -5
View File
@@ -5,12 +5,14 @@ Install Station executable module.
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
from install_station.welcome_live import Welcome
from install_station.language import Language
from install_station.keyboard import Keyboard
from install_station.network_setup import NetworkSetup
from install_station.try_install import TryOrInstall
from install_station.install_type import InstallTypes
from install_station.custom import PartitionManager
from install_station.use_zfs import ZFS
from install_station.boot_manager import BootManager
from install_station.network_setup import NetworkSetup
from install_station.data import logo
from install_station.window import Window
from install_station.interface_controller import Interface, Button
@@ -25,12 +27,14 @@ class MainWindow:
"""
Install Station main window class initiation.
"""
Interface.welcome = Welcome
Interface.welcome = Language
Interface.keyboard = Keyboard
Interface.network_setup = NetworkSetup
Interface.try_isntall = TryOrInstall
Interface.installation_type = InstallTypes
Interface.custom_partition = PartitionManager
Interface.full_zfs = ZFS
Interface.boot_manager = BootManager
Interface.net_setup = NetworkSetup
Window.connect("delete_event", Interface.delete)
Window.set_border_width(0)
Window.set_default_size(800, 500)
@@ -43,7 +47,7 @@ class MainWindow:
Window.add(main_box)
main_box.pack_start(Interface.get_interface(), True, True, 0)
Window.show_all()
Button.hide_all() # Initially hide all buttons
Button.show_initial()
MainWindow()