From 3072114650aca656eadfaf8ebf5960192bb9b6d7 Mon Sep 17 00:00:00 2001 From: Jacob Date: Sat, 25 Nov 2023 11:50:20 +0800 Subject: [PATCH 1/2] pugwash: port_info scene can now cycle between ports, added #config section to scenes in themes. --- PortMaster/pugwash | 5 + PortMaster/pylibs/harbourmaster/harbour.py | 8 +- PortMaster/pylibs/pugscene.py | 165 +++++++++++++++++---- PortMaster/pylibs/pugtheme.py | 4 + PortMaster/pylibs/pySDL2gui.py | 19 +-- 5 files changed, 156 insertions(+), 45 deletions(-) diff --git a/PortMaster/pugwash b/PortMaster/pugwash index 0a06365..4ee724a 100755 --- a/PortMaster/pugwash +++ b/PortMaster/pugwash @@ -833,6 +833,7 @@ class PortMasterGUI(pySDL2gui.GUI, harbourmaster.Callback): def set_port_info(self, port_name, port_info, want_install_size=False): ## TODO: make this better :D if port_name is None: + self.set_data("port_info.name", "NOTHING") self.set_data("port_info.image", "NO_IMAGE") self.set_data("port_info.title", _("** NO PORT **")) self.set_data("port_info.description", "") @@ -846,6 +847,7 @@ class PortMasterGUI(pySDL2gui.GUI, harbourmaster.Callback): # self.set_data("port_info.image", "no-image") return + self.set_data("port_info.name", port_name) self.set_data("port_info.image", str(self.get_port_image(port_name))) self.set_data("port_info.title", port_info['attr']['title']) self.set_data("port_info.description", port_info['attr']['desc']) @@ -976,6 +978,9 @@ class PortMasterGUI(pySDL2gui.GUI, harbourmaster.Callback): self.changed_keys.add(key) # logger.debug(f"{key}: {value}") + def get_data(self, key): + return self.text_data.get(key, None) + def format_data(self, input_string, used_keys=None): return self.formatter.format_string(input_string, used_keys) diff --git a/PortMaster/pylibs/harbourmaster/harbour.py b/PortMaster/pylibs/harbourmaster/harbour.py index a932b11..c48bbed 100644 --- a/PortMaster/pylibs/harbourmaster/harbour.py +++ b/PortMaster/pylibs/harbourmaster/harbour.py @@ -638,10 +638,10 @@ def load_ports(self): unknown_files.append(file_name) - from pprint import pprint - pprint(all_items) - pprint(file_renames) - pprint(unknown_files) + # from pprint import pprint + # pprint(all_items) + # pprint(file_renames) + # pprint(unknown_files) ## Create new ports. new_ports = [] diff --git a/PortMaster/pylibs/pugscene.py b/PortMaster/pylibs/pugscene.py index 81ccab6..7bb63ba 100644 --- a/PortMaster/pylibs/pugscene.py +++ b/PortMaster/pylibs/pugscene.py @@ -134,6 +134,7 @@ class BaseScene: def __init__(self, gui): self.gui = gui self.tags = {} + self.config = {} self.regions = [] self.text_regions = {} self.bar_regions = {} @@ -164,6 +165,10 @@ def load_regions(self, section, required_tags): temp_required_tags = list(required_tags) for number, (region_name, region_data) in enumerate(self.gui.theme_data[section].items()): + if region_name == "#config": + self.config = region_data + continue + if "music" in region_data: self.music = region_data["music"] self.music_volume = region_data.get("music-volume", 128) @@ -307,18 +312,24 @@ def set_buttons(self, key_map): def button_activate(self): if 'button_bar' not in self.tags: return - + self.gui.sounds.play(self.tags['button_bar'].button_sound, volume=self.tags['button_bar'].button_sound_volume) def button_back(self): if 'button_bar' not in self.tags: return - + if self.tags['button_bar'].button_sound_alt is None: self.button_activate() - else: + + else: self.gui.sounds.play(self.tags['button_bar'].button_sound_alt, volume=self.tags['button_bar'].button_sound_alt_volume) + def config_buttons(self, events): + for button, action in self.config.get("buttons", {}).items(): + if events.was_pressed(button): + yield action + class BlankScene(BaseScene): def __init__(self, gui): @@ -1227,6 +1238,7 @@ def update_ports(self): if self.tags['ports_list'].selected >= len(self.port_list): if len(self.port_list) == 0: self.tags['ports_list'].selected = 0 + else: self.tags['ports_list'].selected = len(self.port_list) - 1 @@ -1257,6 +1269,32 @@ def selected_port(self): self.last_port = self.tags['ports_list'].selected return self.port_list[self.last_port] + def select_next_port(self): + if len(self.port_list) == 0: + return + + self.last_port = self.tags['ports_list'].selected = (self.last_port + 1) % len(self.port_list) + + port_name = self.port_list[self.last_port] + port_info = self.all_ports[port_name] + + self.gui.set_port_info(port_name, port_info, self.options['mode'] != 'install') + + return port_name + + def select_prev_port(self): + if len(self.port_list) == 0: + return + + self.last_port = self.tags['ports_list'].selected = (self.last_port - 1) % len(self.port_list) + + port_name = self.port_list[self.last_port] + port_info = self.all_ports[port_name] + + self.gui.set_port_info(port_name, port_info, self.options['mode'] != 'install') + + return port_name + def do_update(self, events): super().do_update(events) if not self.ready: @@ -1297,15 +1335,15 @@ def do_update(self, events): logger.debug(f"{self.options['mode']}: {port_name}") if self.options['mode'] == 'featured-ports': # self.ready = False - self.gui.push_scene('port_info', PortInfoScene(self.gui, port_name, 'install')) + self.gui.push_scene('port_info', PortInfoScene(self.gui, port_name, 'install', self)) elif self.options['mode'] == 'install': self.ready = False - self.gui.push_scene('port_info', PortInfoScene(self.gui, port_name, 'install')) + self.gui.push_scene('port_info', PortInfoScene(self.gui, port_name, 'install', self)) elif self.options['mode'] == 'uninstall': self.ready = False - self.gui.push_scene('port_info', PortInfoScene(self.gui, port_name, 'uninstall')) + self.gui.push_scene('port_info', PortInfoScene(self.gui, port_name, 'uninstall', self)) return True @@ -1380,48 +1418,61 @@ def __init__(self, gui, parent): self.scene_title = _("Port Info Popup") self.parent_info_scene = parent self.load_regions("port_info_popup", []) + self.update_selection() + + def update_selection(self): + buttons = {} + + if 'buttons' in self.config: + for button, action in self.config['buttons'].items(): + if action == 'pop_scene': + buttons[button] = _('Hide Info') + + else: + buttons['DOWN'] = _('Hide Info') + + self.config['buttons'] = { + 'DOWN': 'pop_scene', + } if 'installed' in self.parent_info_scene.port_attrs: - self.set_buttons({'DOWN': _('Hide Information'), 'A': _('Reinstall'), 'Y': _('Uninstall'), 'B': _('Back')}) + buttons.update({'A': _('Reinstall'), 'Y': _('Uninstall'), 'B': _('Back')}) + else: - self.set_buttons({'DOWN': _('Hide Information'), 'A': _('Install'), 'B': _('Back')}) + buttons.update({'A': _('Install'), 'B': _('Back')}) + self.port_name = self.gui.get_data("port_info.name") + self.set_buttons(buttons) def do_update(self, events): super().do_update(events) - if events.was_pressed('DOWN'): - self.button_back() - self.gui.pop_scene() - return True + if self.port_name != self.gui.get_data("port_info.name"): + self.update_selection() - if events.was_pressed('UP'): - return True + for action in self.config_buttons(events): + if action == "pop_scene": + self.parent_info_scene.popup_shown = False + self.button_back() + self.gui.pop_scene() + return True return False + class PortInfoScene(BaseScene): - def __init__(self, gui, port_name, action): + def __init__(self, gui, port_name, action, port_list_scene): super().__init__(gui) self.scene_title = _("Port Info") self.load_regions("port_info", []) self.port_name = port_name + self.port_list_scene = port_list_scene + self.popup_shown = False self.action = action self.ready = False self.update_port() - buttons = {} - - if 'port_info_popup' in self.gui.theme_data: - buttons['UP'] = _('Show Information') - - if 'installed' in self.port_attrs: - buttons.update({'A': _('Reinstall'), 'Y': _('Uninstall'), 'B': _('Back')}) - else: - buttons.update({'A': _('Install'), 'B': _('Back')}) - - self.set_buttons(buttons) def update_port(self): if self.gui.hm is None: @@ -1438,6 +1489,37 @@ def update_port(self): self.gui.set_port_info(self.port_name, self.port_info) + buttons = {} + + if 'buttons' in self.config: + for button, action in self.config['buttons'].items(): + if action == 'port_info_popup' and 'port_info_popup' in self.gui.theme_data: + buttons[button] = _('Show Info') + + else: + + if 'port_info_popup' in self.gui.theme_data: + buttons['UP'] = _('Show Info') + + self.config['buttons'] = { + 'UP': 'port_info_popup', + 'LEFT': 'prev_port', + 'RIGHT': 'next_port', + } + + else: + self.config['buttons'] = { + 'UP': 'prev_port', + 'DOWN': 'next_port', + } + + if 'installed' in self.port_attrs: + buttons.update({'A': _('Reinstall'), 'Y': _('Uninstall'), 'B': _('Back')}) + else: + buttons.update({'A': _('Install'), 'B': _('Back')}) + + self.set_buttons(buttons) + self.ready = True def do_update(self, events): @@ -1465,13 +1547,32 @@ def do_update(self, events): self.gui.pop_scene() return True - if events.was_pressed('UP'): - if 'port_info_popup' in self.gui.theme_data: - scene = PortInfoPopup(self.gui, self) - scene.button_activate() - self.gui.push_scene('port_info', scene) + for action in self.config_buttons(events): + if action == "port_info_popup": + if 'port_info_popup' in self.gui.theme_data: + if self.popup_shown: + return True - return True + scene = PortInfoPopup(self.gui, self) + scene.button_activate() + self.popup_shown = True + self.gui.push_scene('port_info', scene) + return True + + if action == "prev_port": + self.port_name = self.port_list_scene.select_prev_port() + self.update_port() + self.button_activate() + return True + + if action == "next_port": + self.port_name = self.port_list_scene.select_next_port() + self.update_port() + self.button_activate() + return True + + else: + logger.debug(f"Unknown #config.button action: {action}") return False diff --git a/PortMaster/pylibs/pugtheme.py b/PortMaster/pylibs/pugtheme.py index 4704afe..1c07ae1 100644 --- a/PortMaster/pylibs/pugtheme.py +++ b/PortMaster/pylibs/pugtheme.py @@ -86,6 +86,10 @@ def theme_apply(gui, section_data, base_data, elements): base_data = theme_merge(base_data, region_data) continue + elif region_name == "#config": + new_data[region_name] = theme_merge({}, region_data) + continue + elif region_name.startswith("#element:"): element_name = region_name.split(':', 1)[1] if ':' in element_name: diff --git a/PortMaster/pylibs/pySDL2gui.py b/PortMaster/pylibs/pySDL2gui.py index e8b8505..936a4c7 100644 --- a/PortMaster/pylibs/pySDL2gui.py +++ b/PortMaster/pylibs/pySDL2gui.py @@ -1597,12 +1597,13 @@ def init(self): # return total_audio_devices = sdl2.SDL_GetNumAudioDevices(0) - print(f"Audio Devices: {total_audio_devices}") + # print(f"Audio Devices: {total_audio_devices}") for i in range(total_audio_devices): - print(f"- {i}: {sdl2.SDL_GetAudioDeviceName(i, 0)}") + # print(f"- {i}: {sdl2.SDL_GetAudioDeviceName(i, 0)}") + pass if sdl2.sdlmixer.Mix_OpenAudio(44100, sdl2.sdlmixer.MIX_DEFAULT_FORMAT, 2, 1024): - print(f'Cannot open mixed audio: {sdl2.sdlmixer.Mix_GetError()}') + # print(f'Cannot open mixed audio: {sdl2.sdlmixer.Mix_GetError()}') self.init_failed = True return @@ -1624,7 +1625,7 @@ def load(self, filename, name=None, volume=128): res_filename = self.gui.resources.find(filename) if res_filename is None: - print(f"SOUND: unable to find {filename}") + # print(f"SOUND: unable to find {filename}") return None sample = sdl2.sdlmixer.Mix_LoadWAV( @@ -1672,7 +1673,7 @@ def music(self, filename, loops=-1, volume=128): res_filename = self.gui.resources.find(filename) if res_filename is None: - print(f"MUSIC: unable to find {filename}") + # print(f"MUSIC: unable to find {filename}") return None sdl2.sdlmixer.Mix_VolumeMusic(int(max(0, min(volume, 128)))) @@ -1745,7 +1746,7 @@ def play(self, name, volume=128): sample = self.sounds.get(name) if not sample: - print(f"PLAY: unable to find {name}") + # print(f"PLAY: unable to find {name}") return channel = sdl2.sdlmixer.Mix_PlayChannel(-1, sample, 0) @@ -1759,16 +1760,16 @@ def __del__(self): return for i, s in enumerate(self.sounds.values()): - print(f"self.sounds[{i}]: {s}") + # print(f"self.sounds[{i}]: {s}") sdl2.sdlmixer.Mix_FreeChunk(s) if self.song: - print(f"self.song: {self.song}") + # print(f"self.song: {self.song}") sdl2.sdlmixer.Mix_FreeMusic(self.song) sdl2.sdlmixer.Mix_CloseAudio() # sdl2.sdlmixer.Mix_Quit() - print('SoundManager closed') + # print('SoundManager closed') ''' From 318565907013f779da6c1a274b69b2be6940109e Mon Sep 17 00:00:00 2001 From: Jacob Date: Sat, 25 Nov 2023 13:05:51 +0800 Subject: [PATCH 2/2] Updated translations, small fixes for pugscene. --- PortMaster/pugwash | 2 +- .../locales/de_DE/LC_MESSAGES/messages.po | 335 ++++++++-------- .../locales/es_ES/LC_MESSAGES/messages.po | 335 ++++++++-------- .../locales/fr_FR/LC_MESSAGES/messages.po | 335 ++++++++-------- .../locales/it_IT/LC_MESSAGES/messages.po | 335 ++++++++-------- .../locales/pl_PL/LC_MESSAGES/messages.po | 356 +++++++++--------- .../locales/pl_PL/LC_MESSAGES/themes.po | 2 +- .../locales/pt_BR/LC_MESSAGES/messages.po | 335 ++++++++-------- PortMaster/pylibs/pugscene.py | 16 + 9 files changed, 1025 insertions(+), 1026 deletions(-) diff --git a/PortMaster/pugwash b/PortMaster/pugwash index 4ee724a..71a7166 100755 --- a/PortMaster/pugwash +++ b/PortMaster/pugwash @@ -1,7 +1,7 @@ #!/usr/bin/env python3 ## -- BEGIN PORTMASTER INFO -- -PORTMASTER_VERSION = '8.5.8' +PORTMASTER_VERSION = '8.5.9' PORTMASTER_RELEASE_CHANNEL = 'beta' ## -- END PORTMASTER INFO -- diff --git a/PortMaster/pylibs/locales/de_DE/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/de_DE/LC_MESSAGES/messages.po index 3ff3efd..b79dd74 100644 --- a/PortMaster/pylibs/locales/de_DE/LC_MESSAGES/messages.po +++ b/PortMaster/pylibs/locales/de_DE/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-23 18:47+0800\n" -"PO-Revision-Date: 2023-11-23 10:48\n" +"POT-Creation-Date: 2023-11-25 13:04+0800\n" +"PO-Revision-Date: 2023-11-25 05:04\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -73,94 +73,94 @@ msgstr "Chinesisch (vereinfacht)" msgid "Unknown IP" msgstr "Unbekannte IP" -#: PortMaster/pugwash:729 PortMaster/pugwash:868 +#: PortMaster/pugwash:729 PortMaster/pugwash:870 msgid "N/A" msgstr "N/V" -#: PortMaster/pugwash:837 +#: PortMaster/pugwash:838 msgid "** NO PORT **" msgstr "** KEIN PORT **" -#: PortMaster/pugwash:855 PortMaster/pylibs/pugscene.py:1533 +#: PortMaster/pugwash:857 PortMaster/pylibs/pugscene.py:1650 msgid "Ready to Run" msgstr "Ready to Run" -#: PortMaster/pugwash:855 +#: PortMaster/pugwash:857 msgid "Requires Files" msgstr "Benötigt Dateien" -#: PortMaster/pugwash:862 PortMaster/pugwash:889 -#: PortMaster/pylibs/pugscene.py:757 +#: PortMaster/pugwash:864 PortMaster/pugwash:891 +#: PortMaster/pylibs/pugscene.py:784 msgid "Installed" msgstr "Installiert" -#: PortMaster/pugwash:864 +#: PortMaster/pugwash:866 msgid "Missing" msgstr "Fehlt" -#: PortMaster/pugwash:890 PortMaster/pylibs/harbourmaster/harbour.py:1377 -#: PortMaster/pylibs/pugscene.py:1535 +#: PortMaster/pugwash:892 PortMaster/pylibs/harbourmaster/harbour.py:1377 +#: PortMaster/pylibs/pugscene.py:1652 msgid "Update Available" msgstr "Update verfügbar" -#: PortMaster/pugwash:891 PortMaster/pylibs/harbourmaster/harbour.py:1376 -#: PortMaster/pylibs/pugscene.py:757 PortMaster/pylibs/pugscene.py:1534 +#: PortMaster/pugwash:893 PortMaster/pylibs/harbourmaster/harbour.py:1376 +#: PortMaster/pylibs/pugscene.py:784 PortMaster/pylibs/pugscene.py:1651 msgid "Not Installed" msgstr "Nicht installiert" -#: PortMaster/pugwash:1064 PortMaster/pugwash:1384 -#: PortMaster/pylibs/pugscene.py:1832 PortMaster/pylibs/pugscene.py:1880 -#: PortMaster/pylibs/pugscene.py:1882 +#: PortMaster/pugwash:1069 PortMaster/pugwash:1389 +#: PortMaster/pylibs/pugscene.py:1949 PortMaster/pylibs/pugscene.py:1997 +#: PortMaster/pylibs/pugscene.py:1999 msgid "Okay" msgstr "Okay" -#: PortMaster/pugwash:1067 PortMaster/pugwash:1385 -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 -#: PortMaster/pylibs/pugscene.py:1801 PortMaster/pylibs/pugscene.py:1835 -#: PortMaster/pylibs/pugscene.py:1880 +#: PortMaster/pugwash:1072 PortMaster/pugwash:1390 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 +#: PortMaster/pylibs/pugscene.py:1918 PortMaster/pylibs/pugscene.py:1952 +#: PortMaster/pylibs/pugscene.py:1997 msgid "Cancel" msgstr "Abbrechen" -#: PortMaster/pugwash:1290 +#: PortMaster/pugwash:1295 #, python-brace-format msgid "Installing {port_name}" msgstr "Installation von {port_name}" -#: PortMaster/pugwash:1299 +#: PortMaster/pugwash:1304 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "Deinstallation von {port_name}" -#: PortMaster/pugwash:1310 +#: PortMaster/pugwash:1315 msgid "Updating all port sources:" msgstr "Aktualisieren aller Port-Quellen:" -#: PortMaster/pugwash:1320 +#: PortMaster/pugwash:1325 #, python-brace-format msgid "Checking {runtime_name}" msgstr "Prüfe {runtime_name}" -#: PortMaster/pugwash:1724 +#: PortMaster/pugwash:1729 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to downgrade?" msgstr "" -#: PortMaster/pugwash:1730 +#: PortMaster/pugwash:1735 #, python-brace-format msgid "There is a new version of PortMaster ({portmaster_version})\n\n" "Do you want to upgrade?" msgstr "Es gibt eine neue Version von PortMaster ({portmaster_version})\n\n" "Soll das Upgrade durchgeführt werden?" -#: PortMaster/pugwash:1735 +#: PortMaster/pugwash:1740 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." msgstr "PortMaster neu installieren?\n\n" "Dies wird vom {release_channel} Kanal zur Version {portmaster_version} installiert." -#: PortMaster/pugwash:1762 +#: PortMaster/pugwash:1767 msgid "No network connection available." msgstr "Keine Netzwerkverbindung verfügbar." @@ -385,7 +385,7 @@ msgstr "Erfolgreich!" #: PortMaster/pylibs/harbourmaster/source.py:284 #: PortMaster/pylibs/harbourmaster/source.py:448 -#: PortMaster/pylibs/pugtheme.py:360 +#: PortMaster/pylibs/pugtheme.py:364 msgid "Fetching info" msgstr "Lade Informationen" @@ -438,513 +438,510 @@ msgstr "Dateiüberprüfung erfolgreich" msgid "Unable to validate download." msgstr "Download konnte nicht überprüft werden." -#: PortMaster/pylibs/pugscene.py:336 +#: PortMaster/pylibs/pugscene.py:363 msgid "Main Menu" msgstr "Hauptmenü" -#: PortMaster/pylibs/pugscene.py:343 PortMaster/pylibs/pugscene.py:1137 +#: PortMaster/pylibs/pugscene.py:370 PortMaster/pylibs/pugscene.py:1164 msgid "Featured Ports" msgstr "Empfohlene Ports" -#: PortMaster/pylibs/pugscene.py:344 +#: PortMaster/pylibs/pugscene.py:371 msgid "Hand curated lists of ports" msgstr "Von Hand ausgewählte Ports" -#: PortMaster/pylibs/pugscene.py:347 +#: PortMaster/pylibs/pugscene.py:374 msgid "All Ports" msgstr "Alle Ports" -#: PortMaster/pylibs/pugscene.py:348 +#: PortMaster/pylibs/pugscene.py:375 msgid "List all ports available on PortMaster." msgstr "Alle verfügbaren PortMaster Ports auflisten." -#: PortMaster/pylibs/pugscene.py:351 +#: PortMaster/pylibs/pugscene.py:378 msgid "Ready to Run Ports" msgstr "Ready to Run Ports" -#: PortMaster/pylibs/pugscene.py:352 +#: PortMaster/pylibs/pugscene.py:379 msgid "List all ports that are ready to play!" msgstr "Alle Ports auflisten, die zum Spielen bereit sind!" -#: PortMaster/pylibs/pugscene.py:355 +#: PortMaster/pylibs/pugscene.py:382 msgid "Manage Ports" msgstr "Ports verwalten" -#: PortMaster/pylibs/pugscene.py:356 +#: PortMaster/pylibs/pugscene.py:383 msgid "Update / Uninstall Ports" msgstr "Ports aktualisieren / deinstallieren" -#: PortMaster/pylibs/pugscene.py:361 +#: PortMaster/pylibs/pugscene.py:388 msgid "Options" msgstr "Optionen" -#: PortMaster/pylibs/pugscene.py:362 +#: PortMaster/pylibs/pugscene.py:389 msgid "PortMaster Options" msgstr "PortMaster Optionen" -#: PortMaster/pylibs/pugscene.py:365 +#: PortMaster/pylibs/pugscene.py:392 msgid "Exit" msgstr "Beenden" -#: PortMaster/pylibs/pugscene.py:366 +#: PortMaster/pylibs/pugscene.py:393 msgid "Quit PortMaster" msgstr "PortMaster beenden" -#: PortMaster/pylibs/pugscene.py:368 PortMaster/pylibs/pugscene.py:509 -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:395 PortMaster/pylibs/pugscene.py:536 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 msgid "Enter" msgstr "Eingabe" -#: PortMaster/pylibs/pugscene.py:368 +#: PortMaster/pylibs/pugscene.py:395 msgid "Quit" msgstr "Verlassen" -#: PortMaster/pylibs/pugscene.py:382 +#: PortMaster/pylibs/pugscene.py:409 #, python-brace-format msgid "Secret Mode {secret_mode}" msgstr "Geheim-Modus {secret_mode}" -#: PortMaster/pylibs/pugscene.py:383 PortMaster/pylibs/pugscene.py:470 -#: PortMaster/pylibs/pugscene.py:474 PortMaster/pylibs/pugscene.py:575 -#: PortMaster/pylibs/pugscene.py:584 +#: PortMaster/pylibs/pugscene.py:410 PortMaster/pylibs/pugscene.py:497 +#: PortMaster/pylibs/pugscene.py:501 PortMaster/pylibs/pugscene.py:602 +#: PortMaster/pylibs/pugscene.py:611 msgid "Enabled" msgstr "Aktiviert" -#: PortMaster/pylibs/pugscene.py:383 PortMaster/pylibs/pugscene.py:470 -#: PortMaster/pylibs/pugscene.py:474 PortMaster/pylibs/pugscene.py:575 -#: PortMaster/pylibs/pugscene.py:584 +#: PortMaster/pylibs/pugscene.py:410 PortMaster/pylibs/pugscene.py:497 +#: PortMaster/pylibs/pugscene.py:501 PortMaster/pylibs/pugscene.py:602 +#: PortMaster/pylibs/pugscene.py:611 msgid "Disabled" msgstr "Deaktiviert" -#: PortMaster/pylibs/pugscene.py:421 +#: PortMaster/pylibs/pugscene.py:448 msgid "Are you sure you want to exit PortMaster?" msgstr "" -#: PortMaster/pylibs/pugscene.py:431 +#: PortMaster/pylibs/pugscene.py:458 msgid "Options Menu" msgstr "Optionen" -#: PortMaster/pylibs/pugscene.py:436 +#: PortMaster/pylibs/pugscene.py:463 msgid "System" msgstr "System" -#: PortMaster/pylibs/pugscene.py:440 PortMaster/pylibs/pugscene.py:684 +#: PortMaster/pylibs/pugscene.py:467 PortMaster/pylibs/pugscene.py:711 msgid "Runtime Manager" msgstr "Runtime-Verwaltung" -#: PortMaster/pylibs/pugscene.py:441 +#: PortMaster/pylibs/pugscene.py:468 msgid "Manage port runtimes." msgstr "Port Runtimes verwalten." -#: PortMaster/pylibs/pugscene.py:445 +#: PortMaster/pylibs/pugscene.py:472 msgid "Update Ports" msgstr "Ports aktualisieren" -#: PortMaster/pylibs/pugscene.py:446 +#: PortMaster/pylibs/pugscene.py:473 msgid "Update all ports and associated information" msgstr "Alle Ports und zugehörigen Informationen aktualisieren" -#: PortMaster/pylibs/pugscene.py:450 +#: PortMaster/pylibs/pugscene.py:477 msgid "Update PortMaster" msgstr "PortMaster aktualisieren" -#: PortMaster/pylibs/pugscene.py:451 +#: PortMaster/pylibs/pugscene.py:478 msgid "Force check for a new PortMaster version." msgstr "Auf neue PortMaster Version prüfen." -#: PortMaster/pylibs/pugscene.py:455 +#: PortMaster/pylibs/pugscene.py:482 #, python-brace-format msgid "Release Channel: {channel}" msgstr "" -#: PortMaster/pylibs/pugscene.py:457 +#: PortMaster/pylibs/pugscene.py:484 msgid "Change release channel of PortMaster, either beta or stable." msgstr "" -#: PortMaster/pylibs/pugscene.py:463 PortMaster/pylibs/pugscene.py:602 +#: PortMaster/pylibs/pugscene.py:490 PortMaster/pylibs/pugscene.py:629 #, python-brace-format msgid "Controller Mode: {controller_mode}" msgstr "Controller-Modus: {controller_mode}" -#: PortMaster/pylibs/pugscene.py:464 +#: PortMaster/pylibs/pugscene.py:491 msgid "Toggle between various controller layouts." msgstr "Zwischen verschiedenen Controller-Layouts wechseln." -#: PortMaster/pylibs/pugscene.py:466 +#: PortMaster/pylibs/pugscene.py:493 msgid "Audio" msgstr "Audio" -#: PortMaster/pylibs/pugscene.py:470 PortMaster/pylibs/pugscene.py:575 +#: PortMaster/pylibs/pugscene.py:497 PortMaster/pylibs/pugscene.py:602 msgid "Music: " msgstr "Musik" -#: PortMaster/pylibs/pugscene.py:471 +#: PortMaster/pylibs/pugscene.py:498 msgid "Enable or Disable background music in PortMaster." msgstr "Hintergrundmusik in PortMaster aktivieren oder deaktivieren." -#: PortMaster/pylibs/pugscene.py:474 PortMaster/pylibs/pugscene.py:584 +#: PortMaster/pylibs/pugscene.py:501 PortMaster/pylibs/pugscene.py:611 msgid "Sound FX: " msgstr "Sound FX" -#: PortMaster/pylibs/pugscene.py:475 +#: PortMaster/pylibs/pugscene.py:502 msgid "Enable or Disable soundfx in PortMaster." msgstr "Soundfx in PortMaster aktivieren oder deaktivieren." -#: PortMaster/pylibs/pugscene.py:477 +#: PortMaster/pylibs/pugscene.py:504 msgid "Interface" msgstr "Benutzeroberfläche" -#: PortMaster/pylibs/pugscene.py:481 +#: PortMaster/pylibs/pugscene.py:508 msgid "Choose Language" msgstr "Sprache wählen" -#: PortMaster/pylibs/pugscene.py:482 +#: PortMaster/pylibs/pugscene.py:509 msgid "Select the language PortMaster uses." msgstr "Sprache auswählen." -#: PortMaster/pylibs/pugscene.py:485 PortMaster/pylibs/pugscene.py:850 +#: PortMaster/pylibs/pugscene.py:512 PortMaster/pylibs/pugscene.py:877 msgid "Select Theme" msgstr "Theme auswählen" -#: PortMaster/pylibs/pugscene.py:486 +#: PortMaster/pylibs/pugscene.py:513 msgid "Select a theme for PortMaster." msgstr "Theme auswählen." -#: PortMaster/pylibs/pugscene.py:492 +#: PortMaster/pylibs/pugscene.py:519 msgid "Select Color Scheme" msgstr "Farbschema auswählen" -#: PortMaster/pylibs/pugscene.py:493 +#: PortMaster/pylibs/pugscene.py:520 msgid "Select a colour scheme for PortMaster" msgstr "Farbschema auswählen" -#: PortMaster/pylibs/pugscene.py:496 +#: PortMaster/pylibs/pugscene.py:523 msgid "Secret Options" msgstr "Geheime Optionen" -#: PortMaster/pylibs/pugscene.py:499 +#: PortMaster/pylibs/pugscene.py:526 msgid "Delete PortMaster Config" msgstr "PortMaster Konfiguration löschen" -#: PortMaster/pylibs/pugscene.py:500 PortMaster/pylibs/pugscene.py:504 +#: PortMaster/pylibs/pugscene.py:527 PortMaster/pylibs/pugscene.py:531 msgid "This can break stuff, don't touch unless you know what you are doing." msgstr "Griffel weg wenn du kein Plan hast, sonst machst du noch alles kaputt!" -#: PortMaster/pylibs/pugscene.py:503 +#: PortMaster/pylibs/pugscene.py:530 msgid "Delete PortMaster Runtimes" msgstr "PortMaster Laufzeiten löschen" -#: PortMaster/pylibs/pugscene.py:509 PortMaster/pylibs/pugscene.py:773 -#: PortMaster/pylibs/pugscene.py:776 PortMaster/pylibs/pugscene.py:884 -#: PortMaster/pylibs/pugscene.py:966 PortMaster/pylibs/pugscene.py:967 -#: PortMaster/pylibs/pugscene.py:1020 PortMaster/pylibs/pugscene.py:1021 -#: PortMaster/pylibs/pugscene.py:1148 PortMaster/pylibs/pugscene.py:1348 -#: PortMaster/pylibs/pugscene.py:1372 PortMaster/pylibs/pugscene.py:1374 -#: PortMaster/pylibs/pugscene.py:1385 PortMaster/pylibs/pugscene.py:1387 -#: PortMaster/pylibs/pugscene.py:1420 PortMaster/pylibs/pugscene.py:1422 +#: PortMaster/pylibs/pugscene.py:536 PortMaster/pylibs/pugscene.py:800 +#: PortMaster/pylibs/pugscene.py:803 PortMaster/pylibs/pugscene.py:911 +#: PortMaster/pylibs/pugscene.py:993 PortMaster/pylibs/pugscene.py:994 +#: PortMaster/pylibs/pugscene.py:1047 PortMaster/pylibs/pugscene.py:1048 +#: PortMaster/pylibs/pugscene.py:1175 PortMaster/pylibs/pugscene.py:1402 +#: PortMaster/pylibs/pugscene.py:1426 PortMaster/pylibs/pugscene.py:1428 +#: PortMaster/pylibs/pugscene.py:1455 PortMaster/pylibs/pugscene.py:1458 +#: PortMaster/pylibs/pugscene.py:1533 PortMaster/pylibs/pugscene.py:1535 msgid "Back" msgstr "Zurück" -#: PortMaster/pylibs/pugscene.py:551 +#: PortMaster/pylibs/pugscene.py:578 #, python-brace-format msgid "Are you sure you want to change the release channel from {current_channel} to {new_channel}?\n\n" "PortMaster will upgrade or downgrade accordingly." msgstr "" -#: PortMaster/pylibs/pugscene.py:651 +#: PortMaster/pylibs/pugscene.py:678 msgid "Deleting Runtimes:" msgstr "Lösche Runtimes:" -#: PortMaster/pylibs/pugscene.py:676 +#: PortMaster/pylibs/pugscene.py:703 msgid "Source Manager" msgstr "Quellen-Manager" -#: PortMaster/pylibs/pugscene.py:713 +#: PortMaster/pylibs/pugscene.py:740 msgid "Download All" msgstr "Alles herunterladen" -#: PortMaster/pylibs/pugscene.py:758 +#: PortMaster/pylibs/pugscene.py:785 msgid "Used" msgstr "Benutzt" -#: PortMaster/pylibs/pugscene.py:758 +#: PortMaster/pylibs/pugscene.py:785 msgid "Not Used" msgstr "Nicht verwendet" -#: PortMaster/pylibs/pugscene.py:773 +#: PortMaster/pylibs/pugscene.py:800 msgid "Check" msgstr "Überprüfen" -#: PortMaster/pylibs/pugscene.py:773 PortMaster/pylibs/pugscene.py:1385 -#: PortMaster/pylibs/pugscene.py:1420 +#: PortMaster/pylibs/pugscene.py:800 PortMaster/pylibs/pugscene.py:1455 +#: PortMaster/pylibs/pugscene.py:1533 msgid "Uninstall" msgstr "Deinstallieren" -#: PortMaster/pylibs/pugscene.py:776 PortMaster/pylibs/pugscene.py:1387 -#: PortMaster/pylibs/pugscene.py:1422 +#: PortMaster/pylibs/pugscene.py:803 PortMaster/pylibs/pugscene.py:1458 +#: PortMaster/pylibs/pugscene.py:1535 msgid "Install" msgstr "Installieren" -#: PortMaster/pylibs/pugscene.py:791 +#: PortMaster/pylibs/pugscene.py:818 msgid "Are you sure you want to download and verify all runtimes?" msgstr "Alle runtimes herunterladen und verifizieren?" -#: PortMaster/pylibs/pugscene.py:833 +#: PortMaster/pylibs/pugscene.py:860 #, python-brace-format msgid "Deleted runtime {runtime}" msgstr "Runtime- {runtime} entfernt" -#: PortMaster/pylibs/pugscene.py:868 +#: PortMaster/pylibs/pugscene.py:895 #, python-brace-format msgid "{theme_name} (Selected)" msgstr "{theme_name} (Ausgewählt)" -#: PortMaster/pylibs/pugscene.py:882 PortMaster/pylibs/pugscene.py:967 -#: PortMaster/pylibs/pugscene.py:1021 PortMaster/pylibs/pugscene.py:1085 -#: PortMaster/pylibs/pugscene.py:1093 PortMaster/pylibs/pugscene.py:1148 +#: PortMaster/pylibs/pugscene.py:909 PortMaster/pylibs/pugscene.py:994 +#: PortMaster/pylibs/pugscene.py:1048 PortMaster/pylibs/pugscene.py:1112 +#: PortMaster/pylibs/pugscene.py:1120 PortMaster/pylibs/pugscene.py:1175 msgid "Select" msgstr "Auswählen" -#: PortMaster/pylibs/pugscene.py:887 +#: PortMaster/pylibs/pugscene.py:914 msgid "Download" msgstr "Herunterladen" -#: PortMaster/pylibs/pugscene.py:906 +#: PortMaster/pylibs/pugscene.py:933 msgid "Do you want to change theme?\n\n" "You will have to restart for it to take affect." msgstr "Theme wechseln?\n\n" "Neustart erforderlich, damit Änderungen wirksam werden." -#: PortMaster/pylibs/pugscene.py:947 +#: PortMaster/pylibs/pugscene.py:974 msgid "Select Colour Scheme" msgstr "Farbschema auswählen" -#: PortMaster/pylibs/pugscene.py:961 +#: PortMaster/pylibs/pugscene.py:988 #, python-brace-format msgid "{item_name} (Selected)" msgstr "{item_name} (Ausgewählt)" -#: PortMaster/pylibs/pugscene.py:984 +#: PortMaster/pylibs/pugscene.py:1011 msgid "Do you want to change the themes color scheme?\n\n" "You will have to restart for it to take affect." msgstr "Farbschema für das Theme ändern?\n\n" "Neustart erforderlich, damit Änderungen wirksam werden." -#: PortMaster/pylibs/pugscene.py:1005 +#: PortMaster/pylibs/pugscene.py:1032 msgid "Language Select" msgstr "Sprachauswahl" -#: PortMaster/pylibs/pugscene.py:1015 +#: PortMaster/pylibs/pugscene.py:1042 #, python-brace-format msgid "{lang_name} (Selected)" msgstr "{lang_name} (Ausgewählt)" -#: PortMaster/pylibs/pugscene.py:1038 +#: PortMaster/pylibs/pugscene.py:1065 msgid "Do you want to change language?\n\n" "You will have to restart for it to take affect." msgstr "Sprache wechseln?\n\n" "Neustart erforderlich, damit Änderungen wirksam werden." -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 msgid "Delete" msgstr "Löschen" -#: PortMaster/pylibs/pugscene.py:1085 +#: PortMaster/pylibs/pugscene.py:1112 msgid "Upper Case" msgstr "Großbuchstaben" -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 msgid "Space" msgstr "Leerzeichen" -#: PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:1120 msgid "Lower Case" msgstr "Kleinbuchstaben" -#: PortMaster/pylibs/pugscene.py:1185 PortMaster/pylibs/pugscene.py:1208 +#: PortMaster/pylibs/pugscene.py:1212 PortMaster/pylibs/pugscene.py:1235 msgid "NO PORTS" msgstr "KEINE PORTS" -#: PortMaster/pylibs/pugscene.py:1189 PortMaster/pylibs/pugscene.py:1215 +#: PortMaster/pylibs/pugscene.py:1216 PortMaster/pylibs/pugscene.py:1242 msgid "** NO PORTS FOUND **" msgstr "** KEINE PORTS GEFUNDEN **" -#: PortMaster/pylibs/pugscene.py:1191 PortMaster/pylibs/pugscene.py:1218 +#: PortMaster/pylibs/pugscene.py:1218 PortMaster/pylibs/pugscene.py:1245 msgid "Download ports first." msgstr "Zuerst Ports herunterladen." -#: PortMaster/pylibs/pugscene.py:1220 +#: PortMaster/pylibs/pugscene.py:1247 msgid "Try removing some filters." msgstr "Zuerst Filter entfernen" -#: PortMaster/pylibs/pugscene.py:1348 PortMaster/pylibs/pugscene.py:1372 -#: PortMaster/pylibs/pugscene.py:1374 +#: PortMaster/pylibs/pugscene.py:1402 PortMaster/pylibs/pugscene.py:1426 +#: PortMaster/pylibs/pugscene.py:1428 PortMaster/pylibs/pugscene.py:1513 +#: PortMaster/pylibs/pugscene.py:1518 msgid "Show Info" msgstr "Info anzeigen" -#: PortMaster/pylibs/pugscene.py:1353 +#: PortMaster/pylibs/pugscene.py:1407 msgid "Ports List" msgstr "Portliste" -#: PortMaster/pylibs/pugscene.py:1372 +#: PortMaster/pylibs/pugscene.py:1426 msgid "Filters" msgstr "Filter" -#: PortMaster/pylibs/pugscene.py:1380 +#: PortMaster/pylibs/pugscene.py:1434 msgid "Port Info Popup" msgstr "" -#: PortMaster/pylibs/pugscene.py:1385 PortMaster/pylibs/pugscene.py:1387 -msgid "Hide Information" +#: PortMaster/pylibs/pugscene.py:1445 PortMaster/pylibs/pugscene.py:1448 +msgid "Hide Info" msgstr "" -#: PortMaster/pylibs/pugscene.py:1385 PortMaster/pylibs/pugscene.py:1420 +#: PortMaster/pylibs/pugscene.py:1455 PortMaster/pylibs/pugscene.py:1533 msgid "Reinstall" msgstr "Neuinstallieren" -#: PortMaster/pylibs/pugscene.py:1406 +#: PortMaster/pylibs/pugscene.py:1482 msgid "Port Info" msgstr "Port Info" -#: PortMaster/pylibs/pugscene.py:1417 -msgid "Show Information" -msgstr "" - -#: PortMaster/pylibs/pugscene.py:1457 +#: PortMaster/pylibs/pugscene.py:1555 #, python-brace-format msgid "Are you sure you want to uninstall {port_name}?" msgstr "{port_name} wirklich deinstallieren?" -#: PortMaster/pylibs/pugscene.py:1482 +#: PortMaster/pylibs/pugscene.py:1599 msgid "Filters Scene" msgstr "Filter-Szene" -#: PortMaster/pylibs/pugscene.py:1511 +#: PortMaster/pylibs/pugscene.py:1628 msgid "Alphabetical" msgstr "Alphabetisch" -#: PortMaster/pylibs/pugscene.py:1512 +#: PortMaster/pylibs/pugscene.py:1629 msgid "Recently Added" msgstr "Zuletzt hinzugefügt" -#: PortMaster/pylibs/pugscene.py:1513 +#: PortMaster/pylibs/pugscene.py:1630 msgid "Recently Updated" msgstr "Vor kurzem aktualisiert" -#: PortMaster/pylibs/pugscene.py:1516 +#: PortMaster/pylibs/pugscene.py:1633 msgid "Action" msgstr "Aktion" -#: PortMaster/pylibs/pugscene.py:1517 +#: PortMaster/pylibs/pugscene.py:1634 msgid "Adventure" msgstr "Adventure" -#: PortMaster/pylibs/pugscene.py:1518 +#: PortMaster/pylibs/pugscene.py:1635 msgid "Arcade" msgstr "Arcade" -#: PortMaster/pylibs/pugscene.py:1519 +#: PortMaster/pylibs/pugscene.py:1636 msgid "Casino/Card" msgstr "Casino/Card" -#: PortMaster/pylibs/pugscene.py:1520 +#: PortMaster/pylibs/pugscene.py:1637 msgid "First Person Shooter" msgstr "First Person Shooter" -#: PortMaster/pylibs/pugscene.py:1521 +#: PortMaster/pylibs/pugscene.py:1638 msgid "Platformer" msgstr "Platformer" -#: PortMaster/pylibs/pugscene.py:1522 +#: PortMaster/pylibs/pugscene.py:1639 msgid "Puzzle" msgstr "Puzzle" -#: PortMaster/pylibs/pugscene.py:1523 +#: PortMaster/pylibs/pugscene.py:1640 msgid "Racing" msgstr "Racing" -#: PortMaster/pylibs/pugscene.py:1524 +#: PortMaster/pylibs/pugscene.py:1641 msgid "Rhythm" msgstr "Rhythm" -#: PortMaster/pylibs/pugscene.py:1525 +#: PortMaster/pylibs/pugscene.py:1642 msgid "Role Playing Game" msgstr "Role Playing Game" -#: PortMaster/pylibs/pugscene.py:1526 +#: PortMaster/pylibs/pugscene.py:1643 msgid "Simulation" msgstr "Simulation" -#: PortMaster/pylibs/pugscene.py:1527 +#: PortMaster/pylibs/pugscene.py:1644 msgid "Sports" msgstr "Sports" -#: PortMaster/pylibs/pugscene.py:1528 +#: PortMaster/pylibs/pugscene.py:1645 msgid "Strategy" msgstr "Strategie" -#: PortMaster/pylibs/pugscene.py:1529 +#: PortMaster/pylibs/pugscene.py:1646 msgid "Visual Novel" msgstr "Visual Novel" -#: PortMaster/pylibs/pugscene.py:1530 +#: PortMaster/pylibs/pugscene.py:1647 msgid "Other" msgstr "Sonstiges" -#: PortMaster/pylibs/pugscene.py:1536 +#: PortMaster/pylibs/pugscene.py:1653 msgid "Broken Ports" msgstr "Defekte Ports" -#: PortMaster/pylibs/pugscene.py:1539 +#: PortMaster/pylibs/pugscene.py:1656 msgid "Free game, all files included." msgstr "" -#: PortMaster/pylibs/pugscene.py:1540 +#: PortMaster/pylibs/pugscene.py:1657 msgid "Demo files included." msgstr "" -#: PortMaster/pylibs/pugscene.py:1541 +#: PortMaster/pylibs/pugscene.py:1658 msgid "Free external assets needed." msgstr "" -#: PortMaster/pylibs/pugscene.py:1542 +#: PortMaster/pylibs/pugscene.py:1659 msgid "Paid external assets needed." msgstr "" -#: PortMaster/pylibs/pugscene.py:1545 PortMaster/pylibs/pugscene.py:1546 +#: PortMaster/pylibs/pugscene.py:1662 PortMaster/pylibs/pugscene.py:1663 #, python-brace-format msgid "{runtime_name} Runtime" msgstr "{runtime_name} Runtime" -#: PortMaster/pylibs/pugscene.py:1590 +#: PortMaster/pylibs/pugscene.py:1707 msgid "Sort:" msgstr "Sortieren:" -#: PortMaster/pylibs/pugscene.py:1605 +#: PortMaster/pylibs/pugscene.py:1722 msgid "Clear Filters" msgstr "Filter löschen" -#: PortMaster/pylibs/pugscene.py:1629 +#: PortMaster/pylibs/pugscene.py:1746 msgid "Genres:" msgstr "Genres:" -#: PortMaster/pylibs/pugscene.py:1659 +#: PortMaster/pylibs/pugscene.py:1776 msgid "Attributes:" msgstr "Attribute:" -#: PortMaster/pylibs/pugscene.py:1688 +#: PortMaster/pylibs/pugscene.py:1805 msgid "Availability:" msgstr "" -#: PortMaster/pylibs/pugscene.py:1717 +#: PortMaster/pylibs/pugscene.py:1834 msgid "Porters:" msgstr "Porter:" -#: PortMaster/pylibs/pugscene.py:1785 +#: PortMaster/pylibs/pugscene.py:1902 msgid "Messages" msgstr "Meldungen" -#: PortMaster/pylibs/pugscene.py:1820 +#: PortMaster/pylibs/pugscene.py:1937 msgid "Are you sure you want to cancel?" msgstr "Wirklich abbrechen?" diff --git a/PortMaster/pylibs/locales/es_ES/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/es_ES/LC_MESSAGES/messages.po index 0022017..f74885a 100644 --- a/PortMaster/pylibs/locales/es_ES/LC_MESSAGES/messages.po +++ b/PortMaster/pylibs/locales/es_ES/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-23 18:47+0800\n" -"PO-Revision-Date: 2023-11-23 10:48\n" +"POT-Creation-Date: 2023-11-25 13:04+0800\n" +"PO-Revision-Date: 2023-11-25 05:04\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Language: es_ES\n" @@ -73,92 +73,92 @@ msgstr "" msgid "Unknown IP" msgstr "IP Desconocida" -#: PortMaster/pugwash:729 PortMaster/pugwash:868 +#: PortMaster/pugwash:729 PortMaster/pugwash:870 msgid "N/A" msgstr "N/D" -#: PortMaster/pugwash:837 +#: PortMaster/pugwash:838 msgid "** NO PORT **" msgstr "** SIN PORT**" -#: PortMaster/pugwash:855 PortMaster/pylibs/pugscene.py:1533 +#: PortMaster/pugwash:857 PortMaster/pylibs/pugscene.py:1650 msgid "Ready to Run" msgstr "Listo para Funcionar" -#: PortMaster/pugwash:855 +#: PortMaster/pugwash:857 msgid "Requires Files" msgstr "Requiere Archivos" -#: PortMaster/pugwash:862 PortMaster/pugwash:889 -#: PortMaster/pylibs/pugscene.py:757 +#: PortMaster/pugwash:864 PortMaster/pugwash:891 +#: PortMaster/pylibs/pugscene.py:784 msgid "Installed" msgstr "Instalado" -#: PortMaster/pugwash:864 +#: PortMaster/pugwash:866 msgid "Missing" msgstr "No Disponible" -#: PortMaster/pugwash:890 PortMaster/pylibs/harbourmaster/harbour.py:1377 -#: PortMaster/pylibs/pugscene.py:1535 +#: PortMaster/pugwash:892 PortMaster/pylibs/harbourmaster/harbour.py:1377 +#: PortMaster/pylibs/pugscene.py:1652 msgid "Update Available" msgstr "Actualización Disponible" -#: PortMaster/pugwash:891 PortMaster/pylibs/harbourmaster/harbour.py:1376 -#: PortMaster/pylibs/pugscene.py:757 PortMaster/pylibs/pugscene.py:1534 +#: PortMaster/pugwash:893 PortMaster/pylibs/harbourmaster/harbour.py:1376 +#: PortMaster/pylibs/pugscene.py:784 PortMaster/pylibs/pugscene.py:1651 msgid "Not Installed" msgstr "No Instalado" -#: PortMaster/pugwash:1064 PortMaster/pugwash:1384 -#: PortMaster/pylibs/pugscene.py:1832 PortMaster/pylibs/pugscene.py:1880 -#: PortMaster/pylibs/pugscene.py:1882 +#: PortMaster/pugwash:1069 PortMaster/pugwash:1389 +#: PortMaster/pylibs/pugscene.py:1949 PortMaster/pylibs/pugscene.py:1997 +#: PortMaster/pylibs/pugscene.py:1999 msgid "Okay" msgstr "Aceptar" -#: PortMaster/pugwash:1067 PortMaster/pugwash:1385 -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 -#: PortMaster/pylibs/pugscene.py:1801 PortMaster/pylibs/pugscene.py:1835 -#: PortMaster/pylibs/pugscene.py:1880 +#: PortMaster/pugwash:1072 PortMaster/pugwash:1390 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 +#: PortMaster/pylibs/pugscene.py:1918 PortMaster/pylibs/pugscene.py:1952 +#: PortMaster/pylibs/pugscene.py:1997 msgid "Cancel" msgstr "Cancelar" -#: PortMaster/pugwash:1290 +#: PortMaster/pugwash:1295 #, python-brace-format msgid "Installing {port_name}" msgstr "Instalando {port_name}" -#: PortMaster/pugwash:1299 +#: PortMaster/pugwash:1304 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "Desinstalando {port_name}" -#: PortMaster/pugwash:1310 +#: PortMaster/pugwash:1315 msgid "Updating all port sources:" msgstr "Actualizando todas las fuentes de ports:" -#: PortMaster/pugwash:1320 +#: PortMaster/pugwash:1325 #, python-brace-format msgid "Checking {runtime_name}" msgstr "" -#: PortMaster/pugwash:1724 +#: PortMaster/pugwash:1729 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to downgrade?" msgstr "" -#: PortMaster/pugwash:1730 +#: PortMaster/pugwash:1735 #, python-brace-format msgid "There is a new version of PortMaster ({portmaster_version})\n\n" "Do you want to upgrade?" msgstr "" -#: PortMaster/pugwash:1735 +#: PortMaster/pugwash:1740 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." msgstr "" -#: PortMaster/pugwash:1762 +#: PortMaster/pugwash:1767 msgid "No network connection available." msgstr "" @@ -383,7 +383,7 @@ msgstr "¡Éxito!" #: PortMaster/pylibs/harbourmaster/source.py:284 #: PortMaster/pylibs/harbourmaster/source.py:448 -#: PortMaster/pylibs/pugtheme.py:360 +#: PortMaster/pylibs/pugtheme.py:364 msgid "Fetching info" msgstr "Obteniendo información" @@ -436,513 +436,510 @@ msgstr "Validación de archivo correcta." msgid "Unable to validate download." msgstr "Error al validar la descarga." -#: PortMaster/pylibs/pugscene.py:336 +#: PortMaster/pylibs/pugscene.py:363 msgid "Main Menu" msgstr "" -#: PortMaster/pylibs/pugscene.py:343 PortMaster/pylibs/pugscene.py:1137 +#: PortMaster/pylibs/pugscene.py:370 PortMaster/pylibs/pugscene.py:1164 msgid "Featured Ports" msgstr "" -#: PortMaster/pylibs/pugscene.py:344 +#: PortMaster/pylibs/pugscene.py:371 msgid "Hand curated lists of ports" msgstr "" -#: PortMaster/pylibs/pugscene.py:347 +#: PortMaster/pylibs/pugscene.py:374 msgid "All Ports" msgstr "Todos los ports" -#: PortMaster/pylibs/pugscene.py:348 +#: PortMaster/pylibs/pugscene.py:375 msgid "List all ports available on PortMaster." msgstr "" -#: PortMaster/pylibs/pugscene.py:351 +#: PortMaster/pylibs/pugscene.py:378 msgid "Ready to Run Ports" msgstr "Ports listos para ejecutarse" -#: PortMaster/pylibs/pugscene.py:352 +#: PortMaster/pylibs/pugscene.py:379 msgid "List all ports that are ready to play!" msgstr "" -#: PortMaster/pylibs/pugscene.py:355 +#: PortMaster/pylibs/pugscene.py:382 msgid "Manage Ports" msgstr "" -#: PortMaster/pylibs/pugscene.py:356 +#: PortMaster/pylibs/pugscene.py:383 msgid "Update / Uninstall Ports" msgstr "" -#: PortMaster/pylibs/pugscene.py:361 +#: PortMaster/pylibs/pugscene.py:388 msgid "Options" msgstr "Opciones" -#: PortMaster/pylibs/pugscene.py:362 +#: PortMaster/pylibs/pugscene.py:389 msgid "PortMaster Options" msgstr "" -#: PortMaster/pylibs/pugscene.py:365 +#: PortMaster/pylibs/pugscene.py:392 msgid "Exit" msgstr "Salir" -#: PortMaster/pylibs/pugscene.py:366 +#: PortMaster/pylibs/pugscene.py:393 msgid "Quit PortMaster" msgstr "" -#: PortMaster/pylibs/pugscene.py:368 PortMaster/pylibs/pugscene.py:509 -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:395 PortMaster/pylibs/pugscene.py:536 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 msgid "Enter" msgstr "Entrar" -#: PortMaster/pylibs/pugscene.py:368 +#: PortMaster/pylibs/pugscene.py:395 msgid "Quit" msgstr "Salir" -#: PortMaster/pylibs/pugscene.py:382 +#: PortMaster/pylibs/pugscene.py:409 #, python-brace-format msgid "Secret Mode {secret_mode}" msgstr "" -#: PortMaster/pylibs/pugscene.py:383 PortMaster/pylibs/pugscene.py:470 -#: PortMaster/pylibs/pugscene.py:474 PortMaster/pylibs/pugscene.py:575 -#: PortMaster/pylibs/pugscene.py:584 +#: PortMaster/pylibs/pugscene.py:410 PortMaster/pylibs/pugscene.py:497 +#: PortMaster/pylibs/pugscene.py:501 PortMaster/pylibs/pugscene.py:602 +#: PortMaster/pylibs/pugscene.py:611 msgid "Enabled" msgstr "Habilitado" -#: PortMaster/pylibs/pugscene.py:383 PortMaster/pylibs/pugscene.py:470 -#: PortMaster/pylibs/pugscene.py:474 PortMaster/pylibs/pugscene.py:575 -#: PortMaster/pylibs/pugscene.py:584 +#: PortMaster/pylibs/pugscene.py:410 PortMaster/pylibs/pugscene.py:497 +#: PortMaster/pylibs/pugscene.py:501 PortMaster/pylibs/pugscene.py:602 +#: PortMaster/pylibs/pugscene.py:611 msgid "Disabled" msgstr "Deshabilitado" -#: PortMaster/pylibs/pugscene.py:421 +#: PortMaster/pylibs/pugscene.py:448 msgid "Are you sure you want to exit PortMaster?" msgstr "" -#: PortMaster/pylibs/pugscene.py:431 +#: PortMaster/pylibs/pugscene.py:458 msgid "Options Menu" msgstr "" -#: PortMaster/pylibs/pugscene.py:436 +#: PortMaster/pylibs/pugscene.py:463 msgid "System" msgstr "Sistema" -#: PortMaster/pylibs/pugscene.py:440 PortMaster/pylibs/pugscene.py:684 +#: PortMaster/pylibs/pugscene.py:467 PortMaster/pylibs/pugscene.py:711 msgid "Runtime Manager" msgstr "" -#: PortMaster/pylibs/pugscene.py:441 +#: PortMaster/pylibs/pugscene.py:468 msgid "Manage port runtimes." msgstr "" -#: PortMaster/pylibs/pugscene.py:445 +#: PortMaster/pylibs/pugscene.py:472 msgid "Update Ports" msgstr "Actualizar Ports" -#: PortMaster/pylibs/pugscene.py:446 +#: PortMaster/pylibs/pugscene.py:473 msgid "Update all ports and associated information" msgstr "" -#: PortMaster/pylibs/pugscene.py:450 +#: PortMaster/pylibs/pugscene.py:477 msgid "Update PortMaster" msgstr "Actualizar PortMaster" -#: PortMaster/pylibs/pugscene.py:451 +#: PortMaster/pylibs/pugscene.py:478 msgid "Force check for a new PortMaster version." msgstr "" -#: PortMaster/pylibs/pugscene.py:455 +#: PortMaster/pylibs/pugscene.py:482 #, python-brace-format msgid "Release Channel: {channel}" msgstr "" -#: PortMaster/pylibs/pugscene.py:457 +#: PortMaster/pylibs/pugscene.py:484 msgid "Change release channel of PortMaster, either beta or stable." msgstr "" -#: PortMaster/pylibs/pugscene.py:463 PortMaster/pylibs/pugscene.py:602 +#: PortMaster/pylibs/pugscene.py:490 PortMaster/pylibs/pugscene.py:629 #, python-brace-format msgid "Controller Mode: {controller_mode}" msgstr "Modo Controlador: {controller_mode}" -#: PortMaster/pylibs/pugscene.py:464 +#: PortMaster/pylibs/pugscene.py:491 msgid "Toggle between various controller layouts." msgstr "" -#: PortMaster/pylibs/pugscene.py:466 +#: PortMaster/pylibs/pugscene.py:493 msgid "Audio" msgstr "Audio" -#: PortMaster/pylibs/pugscene.py:470 PortMaster/pylibs/pugscene.py:575 +#: PortMaster/pylibs/pugscene.py:497 PortMaster/pylibs/pugscene.py:602 msgid "Music: " msgstr "Música: " -#: PortMaster/pylibs/pugscene.py:471 +#: PortMaster/pylibs/pugscene.py:498 msgid "Enable or Disable background music in PortMaster." msgstr "" -#: PortMaster/pylibs/pugscene.py:474 PortMaster/pylibs/pugscene.py:584 +#: PortMaster/pylibs/pugscene.py:501 PortMaster/pylibs/pugscene.py:611 msgid "Sound FX: " msgstr "Efectos: " -#: PortMaster/pylibs/pugscene.py:475 +#: PortMaster/pylibs/pugscene.py:502 msgid "Enable or Disable soundfx in PortMaster." msgstr "" -#: PortMaster/pylibs/pugscene.py:477 +#: PortMaster/pylibs/pugscene.py:504 msgid "Interface" msgstr "Interfaz" -#: PortMaster/pylibs/pugscene.py:481 +#: PortMaster/pylibs/pugscene.py:508 msgid "Choose Language" msgstr "Seleccionar idioma" -#: PortMaster/pylibs/pugscene.py:482 +#: PortMaster/pylibs/pugscene.py:509 msgid "Select the language PortMaster uses." msgstr "" -#: PortMaster/pylibs/pugscene.py:485 PortMaster/pylibs/pugscene.py:850 +#: PortMaster/pylibs/pugscene.py:512 PortMaster/pylibs/pugscene.py:877 msgid "Select Theme" msgstr "Seleccionar Tema" -#: PortMaster/pylibs/pugscene.py:486 +#: PortMaster/pylibs/pugscene.py:513 msgid "Select a theme for PortMaster." msgstr "" -#: PortMaster/pylibs/pugscene.py:492 +#: PortMaster/pylibs/pugscene.py:519 msgid "Select Color Scheme" msgstr "Seleccione el Esquema de Color" -#: PortMaster/pylibs/pugscene.py:493 +#: PortMaster/pylibs/pugscene.py:520 msgid "Select a colour scheme for PortMaster" msgstr "" -#: PortMaster/pylibs/pugscene.py:496 +#: PortMaster/pylibs/pugscene.py:523 msgid "Secret Options" msgstr "" -#: PortMaster/pylibs/pugscene.py:499 +#: PortMaster/pylibs/pugscene.py:526 msgid "Delete PortMaster Config" msgstr "" -#: PortMaster/pylibs/pugscene.py:500 PortMaster/pylibs/pugscene.py:504 +#: PortMaster/pylibs/pugscene.py:527 PortMaster/pylibs/pugscene.py:531 msgid "This can break stuff, don't touch unless you know what you are doing." msgstr "" -#: PortMaster/pylibs/pugscene.py:503 +#: PortMaster/pylibs/pugscene.py:530 msgid "Delete PortMaster Runtimes" msgstr "" -#: PortMaster/pylibs/pugscene.py:509 PortMaster/pylibs/pugscene.py:773 -#: PortMaster/pylibs/pugscene.py:776 PortMaster/pylibs/pugscene.py:884 -#: PortMaster/pylibs/pugscene.py:966 PortMaster/pylibs/pugscene.py:967 -#: PortMaster/pylibs/pugscene.py:1020 PortMaster/pylibs/pugscene.py:1021 -#: PortMaster/pylibs/pugscene.py:1148 PortMaster/pylibs/pugscene.py:1348 -#: PortMaster/pylibs/pugscene.py:1372 PortMaster/pylibs/pugscene.py:1374 -#: PortMaster/pylibs/pugscene.py:1385 PortMaster/pylibs/pugscene.py:1387 -#: PortMaster/pylibs/pugscene.py:1420 PortMaster/pylibs/pugscene.py:1422 +#: PortMaster/pylibs/pugscene.py:536 PortMaster/pylibs/pugscene.py:800 +#: PortMaster/pylibs/pugscene.py:803 PortMaster/pylibs/pugscene.py:911 +#: PortMaster/pylibs/pugscene.py:993 PortMaster/pylibs/pugscene.py:994 +#: PortMaster/pylibs/pugscene.py:1047 PortMaster/pylibs/pugscene.py:1048 +#: PortMaster/pylibs/pugscene.py:1175 PortMaster/pylibs/pugscene.py:1402 +#: PortMaster/pylibs/pugscene.py:1426 PortMaster/pylibs/pugscene.py:1428 +#: PortMaster/pylibs/pugscene.py:1455 PortMaster/pylibs/pugscene.py:1458 +#: PortMaster/pylibs/pugscene.py:1533 PortMaster/pylibs/pugscene.py:1535 msgid "Back" msgstr "Atrás" -#: PortMaster/pylibs/pugscene.py:551 +#: PortMaster/pylibs/pugscene.py:578 #, python-brace-format msgid "Are you sure you want to change the release channel from {current_channel} to {new_channel}?\n\n" "PortMaster will upgrade or downgrade accordingly." msgstr "" -#: PortMaster/pylibs/pugscene.py:651 +#: PortMaster/pylibs/pugscene.py:678 msgid "Deleting Runtimes:" msgstr "" -#: PortMaster/pylibs/pugscene.py:676 +#: PortMaster/pylibs/pugscene.py:703 msgid "Source Manager" msgstr "" -#: PortMaster/pylibs/pugscene.py:713 +#: PortMaster/pylibs/pugscene.py:740 msgid "Download All" msgstr "" -#: PortMaster/pylibs/pugscene.py:758 +#: PortMaster/pylibs/pugscene.py:785 msgid "Used" msgstr "" -#: PortMaster/pylibs/pugscene.py:758 +#: PortMaster/pylibs/pugscene.py:785 msgid "Not Used" msgstr "" -#: PortMaster/pylibs/pugscene.py:773 +#: PortMaster/pylibs/pugscene.py:800 msgid "Check" msgstr "" -#: PortMaster/pylibs/pugscene.py:773 PortMaster/pylibs/pugscene.py:1385 -#: PortMaster/pylibs/pugscene.py:1420 +#: PortMaster/pylibs/pugscene.py:800 PortMaster/pylibs/pugscene.py:1455 +#: PortMaster/pylibs/pugscene.py:1533 msgid "Uninstall" msgstr "Desinstalar" -#: PortMaster/pylibs/pugscene.py:776 PortMaster/pylibs/pugscene.py:1387 -#: PortMaster/pylibs/pugscene.py:1422 +#: PortMaster/pylibs/pugscene.py:803 PortMaster/pylibs/pugscene.py:1458 +#: PortMaster/pylibs/pugscene.py:1535 msgid "Install" msgstr "Instalar" -#: PortMaster/pylibs/pugscene.py:791 +#: PortMaster/pylibs/pugscene.py:818 msgid "Are you sure you want to download and verify all runtimes?" msgstr "" -#: PortMaster/pylibs/pugscene.py:833 +#: PortMaster/pylibs/pugscene.py:860 #, python-brace-format msgid "Deleted runtime {runtime}" msgstr "" -#: PortMaster/pylibs/pugscene.py:868 +#: PortMaster/pylibs/pugscene.py:895 #, python-brace-format msgid "{theme_name} (Selected)" msgstr "{theme_name} (seleccionado)" -#: PortMaster/pylibs/pugscene.py:882 PortMaster/pylibs/pugscene.py:967 -#: PortMaster/pylibs/pugscene.py:1021 PortMaster/pylibs/pugscene.py:1085 -#: PortMaster/pylibs/pugscene.py:1093 PortMaster/pylibs/pugscene.py:1148 +#: PortMaster/pylibs/pugscene.py:909 PortMaster/pylibs/pugscene.py:994 +#: PortMaster/pylibs/pugscene.py:1048 PortMaster/pylibs/pugscene.py:1112 +#: PortMaster/pylibs/pugscene.py:1120 PortMaster/pylibs/pugscene.py:1175 msgid "Select" msgstr "Seleccionar" -#: PortMaster/pylibs/pugscene.py:887 +#: PortMaster/pylibs/pugscene.py:914 msgid "Download" msgstr "Descargar" -#: PortMaster/pylibs/pugscene.py:906 +#: PortMaster/pylibs/pugscene.py:933 msgid "Do you want to change theme?\n\n" "You will have to restart for it to take affect." msgstr "¿Quieres cambiar de tema?\n\n" "Tendrás que reiniciar para que surta efecto." -#: PortMaster/pylibs/pugscene.py:947 +#: PortMaster/pylibs/pugscene.py:974 msgid "Select Colour Scheme" msgstr "" -#: PortMaster/pylibs/pugscene.py:961 +#: PortMaster/pylibs/pugscene.py:988 #, python-brace-format msgid "{item_name} (Selected)" msgstr "{item_name} (seleccionado)" -#: PortMaster/pylibs/pugscene.py:984 +#: PortMaster/pylibs/pugscene.py:1011 msgid "Do you want to change the themes color scheme?\n\n" "You will have to restart for it to take affect." msgstr "¿Quieres cambiar el esquema de color del tema?\n\n" "Tendrás que reiniciar para que surta efecto." -#: PortMaster/pylibs/pugscene.py:1005 +#: PortMaster/pylibs/pugscene.py:1032 msgid "Language Select" msgstr "" -#: PortMaster/pylibs/pugscene.py:1015 +#: PortMaster/pylibs/pugscene.py:1042 #, python-brace-format msgid "{lang_name} (Selected)" msgstr "{lang_name} (seleccionado)" -#: PortMaster/pylibs/pugscene.py:1038 +#: PortMaster/pylibs/pugscene.py:1065 msgid "Do you want to change language?\n\n" "You will have to restart for it to take affect." msgstr "¿Quieres cambiar de idioma?\n\n" "Tendrás que reiniciar para que surta efecto." -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 msgid "Delete" msgstr "Eliminar" -#: PortMaster/pylibs/pugscene.py:1085 +#: PortMaster/pylibs/pugscene.py:1112 msgid "Upper Case" msgstr "Mayúsculas" -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 msgid "Space" msgstr "Espacio" -#: PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:1120 msgid "Lower Case" msgstr "Minúsculas" -#: PortMaster/pylibs/pugscene.py:1185 PortMaster/pylibs/pugscene.py:1208 +#: PortMaster/pylibs/pugscene.py:1212 PortMaster/pylibs/pugscene.py:1235 msgid "NO PORTS" msgstr "SIN PORTS" -#: PortMaster/pylibs/pugscene.py:1189 PortMaster/pylibs/pugscene.py:1215 +#: PortMaster/pylibs/pugscene.py:1216 PortMaster/pylibs/pugscene.py:1242 msgid "** NO PORTS FOUND **" msgstr "** NO SE HAN ENCONTRADO PORTS **" -#: PortMaster/pylibs/pugscene.py:1191 PortMaster/pylibs/pugscene.py:1218 +#: PortMaster/pylibs/pugscene.py:1218 PortMaster/pylibs/pugscene.py:1245 msgid "Download ports first." msgstr "Descarga ports primero." -#: PortMaster/pylibs/pugscene.py:1220 +#: PortMaster/pylibs/pugscene.py:1247 msgid "Try removing some filters." msgstr "Prueba a eliminar algunos filtros." -#: PortMaster/pylibs/pugscene.py:1348 PortMaster/pylibs/pugscene.py:1372 -#: PortMaster/pylibs/pugscene.py:1374 +#: PortMaster/pylibs/pugscene.py:1402 PortMaster/pylibs/pugscene.py:1426 +#: PortMaster/pylibs/pugscene.py:1428 PortMaster/pylibs/pugscene.py:1513 +#: PortMaster/pylibs/pugscene.py:1518 msgid "Show Info" msgstr "Mostrar información" -#: PortMaster/pylibs/pugscene.py:1353 +#: PortMaster/pylibs/pugscene.py:1407 msgid "Ports List" msgstr "" -#: PortMaster/pylibs/pugscene.py:1372 +#: PortMaster/pylibs/pugscene.py:1426 msgid "Filters" msgstr "Filtros" -#: PortMaster/pylibs/pugscene.py:1380 +#: PortMaster/pylibs/pugscene.py:1434 msgid "Port Info Popup" msgstr "" -#: PortMaster/pylibs/pugscene.py:1385 PortMaster/pylibs/pugscene.py:1387 -msgid "Hide Information" +#: PortMaster/pylibs/pugscene.py:1445 PortMaster/pylibs/pugscene.py:1448 +msgid "Hide Info" msgstr "" -#: PortMaster/pylibs/pugscene.py:1385 PortMaster/pylibs/pugscene.py:1420 +#: PortMaster/pylibs/pugscene.py:1455 PortMaster/pylibs/pugscene.py:1533 msgid "Reinstall" msgstr "" -#: PortMaster/pylibs/pugscene.py:1406 +#: PortMaster/pylibs/pugscene.py:1482 msgid "Port Info" msgstr "" -#: PortMaster/pylibs/pugscene.py:1417 -msgid "Show Information" -msgstr "" - -#: PortMaster/pylibs/pugscene.py:1457 +#: PortMaster/pylibs/pugscene.py:1555 #, python-brace-format msgid "Are you sure you want to uninstall {port_name}?" msgstr "" -#: PortMaster/pylibs/pugscene.py:1482 +#: PortMaster/pylibs/pugscene.py:1599 msgid "Filters Scene" msgstr "" -#: PortMaster/pylibs/pugscene.py:1511 +#: PortMaster/pylibs/pugscene.py:1628 msgid "Alphabetical" msgstr "" -#: PortMaster/pylibs/pugscene.py:1512 +#: PortMaster/pylibs/pugscene.py:1629 msgid "Recently Added" msgstr "" -#: PortMaster/pylibs/pugscene.py:1513 +#: PortMaster/pylibs/pugscene.py:1630 msgid "Recently Updated" msgstr "" -#: PortMaster/pylibs/pugscene.py:1516 +#: PortMaster/pylibs/pugscene.py:1633 msgid "Action" msgstr "" -#: PortMaster/pylibs/pugscene.py:1517 +#: PortMaster/pylibs/pugscene.py:1634 msgid "Adventure" msgstr "" -#: PortMaster/pylibs/pugscene.py:1518 +#: PortMaster/pylibs/pugscene.py:1635 msgid "Arcade" msgstr "" -#: PortMaster/pylibs/pugscene.py:1519 +#: PortMaster/pylibs/pugscene.py:1636 msgid "Casino/Card" msgstr "" -#: PortMaster/pylibs/pugscene.py:1520 +#: PortMaster/pylibs/pugscene.py:1637 msgid "First Person Shooter" msgstr "" -#: PortMaster/pylibs/pugscene.py:1521 +#: PortMaster/pylibs/pugscene.py:1638 msgid "Platformer" msgstr "" -#: PortMaster/pylibs/pugscene.py:1522 +#: PortMaster/pylibs/pugscene.py:1639 msgid "Puzzle" msgstr "" -#: PortMaster/pylibs/pugscene.py:1523 +#: PortMaster/pylibs/pugscene.py:1640 msgid "Racing" msgstr "" -#: PortMaster/pylibs/pugscene.py:1524 +#: PortMaster/pylibs/pugscene.py:1641 msgid "Rhythm" msgstr "" -#: PortMaster/pylibs/pugscene.py:1525 +#: PortMaster/pylibs/pugscene.py:1642 msgid "Role Playing Game" msgstr "" -#: PortMaster/pylibs/pugscene.py:1526 +#: PortMaster/pylibs/pugscene.py:1643 msgid "Simulation" msgstr "" -#: PortMaster/pylibs/pugscene.py:1527 +#: PortMaster/pylibs/pugscene.py:1644 msgid "Sports" msgstr "" -#: PortMaster/pylibs/pugscene.py:1528 +#: PortMaster/pylibs/pugscene.py:1645 msgid "Strategy" msgstr "" -#: PortMaster/pylibs/pugscene.py:1529 +#: PortMaster/pylibs/pugscene.py:1646 msgid "Visual Novel" msgstr "" -#: PortMaster/pylibs/pugscene.py:1530 +#: PortMaster/pylibs/pugscene.py:1647 msgid "Other" msgstr "" -#: PortMaster/pylibs/pugscene.py:1536 +#: PortMaster/pylibs/pugscene.py:1653 msgid "Broken Ports" msgstr "" -#: PortMaster/pylibs/pugscene.py:1539 +#: PortMaster/pylibs/pugscene.py:1656 msgid "Free game, all files included." msgstr "" -#: PortMaster/pylibs/pugscene.py:1540 +#: PortMaster/pylibs/pugscene.py:1657 msgid "Demo files included." msgstr "" -#: PortMaster/pylibs/pugscene.py:1541 +#: PortMaster/pylibs/pugscene.py:1658 msgid "Free external assets needed." msgstr "" -#: PortMaster/pylibs/pugscene.py:1542 +#: PortMaster/pylibs/pugscene.py:1659 msgid "Paid external assets needed." msgstr "" -#: PortMaster/pylibs/pugscene.py:1545 PortMaster/pylibs/pugscene.py:1546 +#: PortMaster/pylibs/pugscene.py:1662 PortMaster/pylibs/pugscene.py:1663 #, python-brace-format msgid "{runtime_name} Runtime" msgstr "" -#: PortMaster/pylibs/pugscene.py:1590 +#: PortMaster/pylibs/pugscene.py:1707 msgid "Sort:" msgstr "" -#: PortMaster/pylibs/pugscene.py:1605 +#: PortMaster/pylibs/pugscene.py:1722 msgid "Clear Filters" msgstr "" -#: PortMaster/pylibs/pugscene.py:1629 +#: PortMaster/pylibs/pugscene.py:1746 msgid "Genres:" msgstr "Géneros:" -#: PortMaster/pylibs/pugscene.py:1659 +#: PortMaster/pylibs/pugscene.py:1776 msgid "Attributes:" msgstr "Atributos:" -#: PortMaster/pylibs/pugscene.py:1688 +#: PortMaster/pylibs/pugscene.py:1805 msgid "Availability:" msgstr "" -#: PortMaster/pylibs/pugscene.py:1717 +#: PortMaster/pylibs/pugscene.py:1834 msgid "Porters:" msgstr "Porters:" -#: PortMaster/pylibs/pugscene.py:1785 +#: PortMaster/pylibs/pugscene.py:1902 msgid "Messages" msgstr "" -#: PortMaster/pylibs/pugscene.py:1820 +#: PortMaster/pylibs/pugscene.py:1937 msgid "Are you sure you want to cancel?" msgstr "¿Está seguro de que quiere cancelar?" diff --git a/PortMaster/pylibs/locales/fr_FR/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/fr_FR/LC_MESSAGES/messages.po index 5a09d5c..23fc033 100644 --- a/PortMaster/pylibs/locales/fr_FR/LC_MESSAGES/messages.po +++ b/PortMaster/pylibs/locales/fr_FR/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-23 18:47+0800\n" -"PO-Revision-Date: 2023-11-23 10:48\n" +"POT-Creation-Date: 2023-11-25 13:04+0800\n" +"PO-Revision-Date: 2023-11-25 05:04\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -73,95 +73,95 @@ msgstr "Chinois simplifié" msgid "Unknown IP" msgstr "IP Inconnu" -#: PortMaster/pugwash:729 PortMaster/pugwash:868 +#: PortMaster/pugwash:729 PortMaster/pugwash:870 msgid "N/A" msgstr "N/A" -#: PortMaster/pugwash:837 +#: PortMaster/pugwash:838 msgid "** NO PORT **" msgstr "** AUCUN RÉSULTAT **" -#: PortMaster/pugwash:855 PortMaster/pylibs/pugscene.py:1533 +#: PortMaster/pugwash:857 PortMaster/pylibs/pugscene.py:1650 msgid "Ready to Run" msgstr "Prêt à Exécuter" -#: PortMaster/pugwash:855 +#: PortMaster/pugwash:857 msgid "Requires Files" msgstr "Fichiers Requis" -#: PortMaster/pugwash:862 PortMaster/pugwash:889 -#: PortMaster/pylibs/pugscene.py:757 +#: PortMaster/pugwash:864 PortMaster/pugwash:891 +#: PortMaster/pylibs/pugscene.py:784 msgid "Installed" msgstr "Installé" -#: PortMaster/pugwash:864 +#: PortMaster/pugwash:866 msgid "Missing" msgstr "Manquant" -#: PortMaster/pugwash:890 PortMaster/pylibs/harbourmaster/harbour.py:1377 -#: PortMaster/pylibs/pugscene.py:1535 +#: PortMaster/pugwash:892 PortMaster/pylibs/harbourmaster/harbour.py:1377 +#: PortMaster/pylibs/pugscene.py:1652 msgid "Update Available" msgstr "Nouvelle mise à jour disponible" -#: PortMaster/pugwash:891 PortMaster/pylibs/harbourmaster/harbour.py:1376 -#: PortMaster/pylibs/pugscene.py:757 PortMaster/pylibs/pugscene.py:1534 +#: PortMaster/pugwash:893 PortMaster/pylibs/harbourmaster/harbour.py:1376 +#: PortMaster/pylibs/pugscene.py:784 PortMaster/pylibs/pugscene.py:1651 msgid "Not Installed" msgstr "Non installé" -#: PortMaster/pugwash:1064 PortMaster/pugwash:1384 -#: PortMaster/pylibs/pugscene.py:1832 PortMaster/pylibs/pugscene.py:1880 -#: PortMaster/pylibs/pugscene.py:1882 +#: PortMaster/pugwash:1069 PortMaster/pugwash:1389 +#: PortMaster/pylibs/pugscene.py:1949 PortMaster/pylibs/pugscene.py:1997 +#: PortMaster/pylibs/pugscene.py:1999 msgid "Okay" msgstr "D'accord" -#: PortMaster/pugwash:1067 PortMaster/pugwash:1385 -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 -#: PortMaster/pylibs/pugscene.py:1801 PortMaster/pylibs/pugscene.py:1835 -#: PortMaster/pylibs/pugscene.py:1880 +#: PortMaster/pugwash:1072 PortMaster/pugwash:1390 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 +#: PortMaster/pylibs/pugscene.py:1918 PortMaster/pylibs/pugscene.py:1952 +#: PortMaster/pylibs/pugscene.py:1997 msgid "Cancel" msgstr "Annuler" -#: PortMaster/pugwash:1290 +#: PortMaster/pugwash:1295 #, python-brace-format msgid "Installing {port_name}" msgstr "Installation de {port_name}" -#: PortMaster/pugwash:1299 +#: PortMaster/pugwash:1304 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "Désinstallation de {port_name}" -#: PortMaster/pugwash:1310 +#: PortMaster/pugwash:1315 msgid "Updating all port sources:" msgstr "Mise à jour de toutes les sources de ports :" -#: PortMaster/pugwash:1320 +#: PortMaster/pugwash:1325 #, python-brace-format msgid "Checking {runtime_name}" msgstr "Vérification de {runtime_name}" -#: PortMaster/pugwash:1724 +#: PortMaster/pugwash:1729 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to downgrade?" msgstr "Vous passez de l' {old_release_channel} à la version {new_release_channel} .\n\n" "Voulez-vous downgrader ?" -#: PortMaster/pugwash:1730 +#: PortMaster/pugwash:1735 #, python-brace-format msgid "There is a new version of PortMaster ({portmaster_version})\n\n" "Do you want to upgrade?" msgstr "Il y a une nouvelle version de PortMaster ({portmaster_version})\n\n" "Voulez-vous mettre à jour ?" -#: PortMaster/pugwash:1735 +#: PortMaster/pugwash:1740 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." msgstr "Voulez-vous réinstaller PortMaster ?\n\n" "Cela va réinstaller depuis le canal {release_channel} vers {portmaster_version}." -#: PortMaster/pugwash:1762 +#: PortMaster/pugwash:1767 msgid "No network connection available." msgstr "Aucune connexion réseau disponible !" @@ -386,7 +386,7 @@ msgstr "Succès !" #: PortMaster/pylibs/harbourmaster/source.py:284 #: PortMaster/pylibs/harbourmaster/source.py:448 -#: PortMaster/pylibs/pugtheme.py:360 +#: PortMaster/pylibs/pugtheme.py:364 msgid "Fetching info" msgstr "Récupération des informations" @@ -439,513 +439,510 @@ msgstr "Validation du fichier réussie." msgid "Unable to validate download." msgstr "Impossible de valider le téléchargement." -#: PortMaster/pylibs/pugscene.py:336 +#: PortMaster/pylibs/pugscene.py:363 msgid "Main Menu" msgstr "Menu principal" -#: PortMaster/pylibs/pugscene.py:343 PortMaster/pylibs/pugscene.py:1137 +#: PortMaster/pylibs/pugscene.py:370 PortMaster/pylibs/pugscene.py:1164 msgid "Featured Ports" msgstr "Ports recommandés" -#: PortMaster/pylibs/pugscene.py:344 +#: PortMaster/pylibs/pugscene.py:371 msgid "Hand curated lists of ports" msgstr "Listes de ports sélectionnées à la main" -#: PortMaster/pylibs/pugscene.py:347 +#: PortMaster/pylibs/pugscene.py:374 msgid "All Ports" msgstr "Tous les Ports" -#: PortMaster/pylibs/pugscene.py:348 +#: PortMaster/pylibs/pugscene.py:375 msgid "List all ports available on PortMaster." msgstr "Lister tous les ports disponibles sur PortMaster." -#: PortMaster/pylibs/pugscene.py:351 +#: PortMaster/pylibs/pugscene.py:378 msgid "Ready to Run Ports" msgstr "Ports Prêts à Exécuter" -#: PortMaster/pylibs/pugscene.py:352 +#: PortMaster/pylibs/pugscene.py:379 msgid "List all ports that are ready to play!" msgstr "Lister tous les ports qui sont prêts à jouer !" -#: PortMaster/pylibs/pugscene.py:355 +#: PortMaster/pylibs/pugscene.py:382 msgid "Manage Ports" msgstr "Gestion des ports" -#: PortMaster/pylibs/pugscene.py:356 +#: PortMaster/pylibs/pugscene.py:383 msgid "Update / Uninstall Ports" msgstr "Mise à jour / Désinstallation des ports" -#: PortMaster/pylibs/pugscene.py:361 +#: PortMaster/pylibs/pugscene.py:388 msgid "Options" msgstr "Options" -#: PortMaster/pylibs/pugscene.py:362 +#: PortMaster/pylibs/pugscene.py:389 msgid "PortMaster Options" msgstr "" -#: PortMaster/pylibs/pugscene.py:365 +#: PortMaster/pylibs/pugscene.py:392 msgid "Exit" msgstr "Sortie" -#: PortMaster/pylibs/pugscene.py:366 +#: PortMaster/pylibs/pugscene.py:393 msgid "Quit PortMaster" msgstr "Quitter PortMaster" -#: PortMaster/pylibs/pugscene.py:368 PortMaster/pylibs/pugscene.py:509 -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:395 PortMaster/pylibs/pugscene.py:536 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 msgid "Enter" msgstr "Entrer" -#: PortMaster/pylibs/pugscene.py:368 +#: PortMaster/pylibs/pugscene.py:395 msgid "Quit" msgstr "Quitter" -#: PortMaster/pylibs/pugscene.py:382 +#: PortMaster/pylibs/pugscene.py:409 #, python-brace-format msgid "Secret Mode {secret_mode}" msgstr "Mode secret {secret_mode}" -#: PortMaster/pylibs/pugscene.py:383 PortMaster/pylibs/pugscene.py:470 -#: PortMaster/pylibs/pugscene.py:474 PortMaster/pylibs/pugscene.py:575 -#: PortMaster/pylibs/pugscene.py:584 +#: PortMaster/pylibs/pugscene.py:410 PortMaster/pylibs/pugscene.py:497 +#: PortMaster/pylibs/pugscene.py:501 PortMaster/pylibs/pugscene.py:602 +#: PortMaster/pylibs/pugscene.py:611 msgid "Enabled" msgstr "Activé" -#: PortMaster/pylibs/pugscene.py:383 PortMaster/pylibs/pugscene.py:470 -#: PortMaster/pylibs/pugscene.py:474 PortMaster/pylibs/pugscene.py:575 -#: PortMaster/pylibs/pugscene.py:584 +#: PortMaster/pylibs/pugscene.py:410 PortMaster/pylibs/pugscene.py:497 +#: PortMaster/pylibs/pugscene.py:501 PortMaster/pylibs/pugscene.py:602 +#: PortMaster/pylibs/pugscene.py:611 msgid "Disabled" msgstr "Désactivé" -#: PortMaster/pylibs/pugscene.py:421 +#: PortMaster/pylibs/pugscene.py:448 msgid "Are you sure you want to exit PortMaster?" msgstr "" -#: PortMaster/pylibs/pugscene.py:431 +#: PortMaster/pylibs/pugscene.py:458 msgid "Options Menu" msgstr "Menu des options" -#: PortMaster/pylibs/pugscene.py:436 +#: PortMaster/pylibs/pugscene.py:463 msgid "System" msgstr "Système" -#: PortMaster/pylibs/pugscene.py:440 PortMaster/pylibs/pugscene.py:684 +#: PortMaster/pylibs/pugscene.py:467 PortMaster/pylibs/pugscene.py:711 msgid "Runtime Manager" msgstr "Gestionnaire de Runtime" -#: PortMaster/pylibs/pugscene.py:441 +#: PortMaster/pylibs/pugscene.py:468 msgid "Manage port runtimes." msgstr "Gérer les Runtimes des ports." -#: PortMaster/pylibs/pugscene.py:445 +#: PortMaster/pylibs/pugscene.py:472 msgid "Update Ports" msgstr "Mettre à Jour les Ports" -#: PortMaster/pylibs/pugscene.py:446 +#: PortMaster/pylibs/pugscene.py:473 msgid "Update all ports and associated information" msgstr "Mettre à jour tous les ports et les informations associées" -#: PortMaster/pylibs/pugscene.py:450 +#: PortMaster/pylibs/pugscene.py:477 msgid "Update PortMaster" msgstr "Mettre à jour PortMaster" -#: PortMaster/pylibs/pugscene.py:451 +#: PortMaster/pylibs/pugscene.py:478 msgid "Force check for a new PortMaster version." msgstr "Forcer la vérification d'une nouvelle version de PortMaster." -#: PortMaster/pylibs/pugscene.py:455 +#: PortMaster/pylibs/pugscene.py:482 #, python-brace-format msgid "Release Channel: {channel}" msgstr "" -#: PortMaster/pylibs/pugscene.py:457 +#: PortMaster/pylibs/pugscene.py:484 msgid "Change release channel of PortMaster, either beta or stable." msgstr "" -#: PortMaster/pylibs/pugscene.py:463 PortMaster/pylibs/pugscene.py:602 +#: PortMaster/pylibs/pugscene.py:490 PortMaster/pylibs/pugscene.py:629 #, python-brace-format msgid "Controller Mode: {controller_mode}" msgstr "Mode contrôleur : {controller_mode}" -#: PortMaster/pylibs/pugscene.py:464 +#: PortMaster/pylibs/pugscene.py:491 msgid "Toggle between various controller layouts." msgstr "Basculer entre les différentes mises en page du contrôleur." -#: PortMaster/pylibs/pugscene.py:466 +#: PortMaster/pylibs/pugscene.py:493 msgid "Audio" msgstr "Audio" -#: PortMaster/pylibs/pugscene.py:470 PortMaster/pylibs/pugscene.py:575 +#: PortMaster/pylibs/pugscene.py:497 PortMaster/pylibs/pugscene.py:602 msgid "Music: " msgstr "Musique : " -#: PortMaster/pylibs/pugscene.py:471 +#: PortMaster/pylibs/pugscene.py:498 msgid "Enable or Disable background music in PortMaster." msgstr "Activer ou désactiver la musique de fond dans PortMaster." -#: PortMaster/pylibs/pugscene.py:474 PortMaster/pylibs/pugscene.py:584 +#: PortMaster/pylibs/pugscene.py:501 PortMaster/pylibs/pugscene.py:611 msgid "Sound FX: " msgstr "Effets sonores : " -#: PortMaster/pylibs/pugscene.py:475 +#: PortMaster/pylibs/pugscene.py:502 msgid "Enable or Disable soundfx in PortMaster." msgstr "Activer ou désactiver la SFX dans PortMaster." -#: PortMaster/pylibs/pugscene.py:477 +#: PortMaster/pylibs/pugscene.py:504 msgid "Interface" msgstr "Interface" -#: PortMaster/pylibs/pugscene.py:481 +#: PortMaster/pylibs/pugscene.py:508 msgid "Choose Language" msgstr "Choisir la Langue" -#: PortMaster/pylibs/pugscene.py:482 +#: PortMaster/pylibs/pugscene.py:509 msgid "Select the language PortMaster uses." msgstr "Sélectionnez la langue utilisée par PortMaster." -#: PortMaster/pylibs/pugscene.py:485 PortMaster/pylibs/pugscene.py:850 +#: PortMaster/pylibs/pugscene.py:512 PortMaster/pylibs/pugscene.py:877 msgid "Select Theme" msgstr "Sélectionner le Thème" -#: PortMaster/pylibs/pugscene.py:486 +#: PortMaster/pylibs/pugscene.py:513 msgid "Select a theme for PortMaster." msgstr "Sélectionnez un thème pour PortMaster." -#: PortMaster/pylibs/pugscene.py:492 +#: PortMaster/pylibs/pugscene.py:519 msgid "Select Color Scheme" msgstr "Sélectionner le Schéma de Couleurs" -#: PortMaster/pylibs/pugscene.py:493 +#: PortMaster/pylibs/pugscene.py:520 msgid "Select a colour scheme for PortMaster" msgstr "Sélectionnez un schéma de couleurs pour PortMaster" -#: PortMaster/pylibs/pugscene.py:496 +#: PortMaster/pylibs/pugscene.py:523 msgid "Secret Options" msgstr "Options Secrètes" -#: PortMaster/pylibs/pugscene.py:499 +#: PortMaster/pylibs/pugscene.py:526 msgid "Delete PortMaster Config" msgstr "Supprimer la configuration du PortMaster" -#: PortMaster/pylibs/pugscene.py:500 PortMaster/pylibs/pugscene.py:504 +#: PortMaster/pylibs/pugscene.py:527 PortMaster/pylibs/pugscene.py:531 msgid "This can break stuff, don't touch unless you know what you are doing." msgstr "Cela peut casser des trucs, ne touchez pas à moins de savoir ce que vous faites." -#: PortMaster/pylibs/pugscene.py:503 +#: PortMaster/pylibs/pugscene.py:530 msgid "Delete PortMaster Runtimes" msgstr "Supprimer PortMaster Runtimes" -#: PortMaster/pylibs/pugscene.py:509 PortMaster/pylibs/pugscene.py:773 -#: PortMaster/pylibs/pugscene.py:776 PortMaster/pylibs/pugscene.py:884 -#: PortMaster/pylibs/pugscene.py:966 PortMaster/pylibs/pugscene.py:967 -#: PortMaster/pylibs/pugscene.py:1020 PortMaster/pylibs/pugscene.py:1021 -#: PortMaster/pylibs/pugscene.py:1148 PortMaster/pylibs/pugscene.py:1348 -#: PortMaster/pylibs/pugscene.py:1372 PortMaster/pylibs/pugscene.py:1374 -#: PortMaster/pylibs/pugscene.py:1385 PortMaster/pylibs/pugscene.py:1387 -#: PortMaster/pylibs/pugscene.py:1420 PortMaster/pylibs/pugscene.py:1422 +#: PortMaster/pylibs/pugscene.py:536 PortMaster/pylibs/pugscene.py:800 +#: PortMaster/pylibs/pugscene.py:803 PortMaster/pylibs/pugscene.py:911 +#: PortMaster/pylibs/pugscene.py:993 PortMaster/pylibs/pugscene.py:994 +#: PortMaster/pylibs/pugscene.py:1047 PortMaster/pylibs/pugscene.py:1048 +#: PortMaster/pylibs/pugscene.py:1175 PortMaster/pylibs/pugscene.py:1402 +#: PortMaster/pylibs/pugscene.py:1426 PortMaster/pylibs/pugscene.py:1428 +#: PortMaster/pylibs/pugscene.py:1455 PortMaster/pylibs/pugscene.py:1458 +#: PortMaster/pylibs/pugscene.py:1533 PortMaster/pylibs/pugscene.py:1535 msgid "Back" msgstr "Retour" -#: PortMaster/pylibs/pugscene.py:551 +#: PortMaster/pylibs/pugscene.py:578 #, python-brace-format msgid "Are you sure you want to change the release channel from {current_channel} to {new_channel}?\n\n" "PortMaster will upgrade or downgrade accordingly." msgstr "" -#: PortMaster/pylibs/pugscene.py:651 +#: PortMaster/pylibs/pugscene.py:678 msgid "Deleting Runtimes:" msgstr "Suppression des Runtimes :" -#: PortMaster/pylibs/pugscene.py:676 +#: PortMaster/pylibs/pugscene.py:703 msgid "Source Manager" msgstr "" -#: PortMaster/pylibs/pugscene.py:713 +#: PortMaster/pylibs/pugscene.py:740 msgid "Download All" msgstr "Télécharger tout" -#: PortMaster/pylibs/pugscene.py:758 +#: PortMaster/pylibs/pugscene.py:785 msgid "Used" msgstr "Utilisé" -#: PortMaster/pylibs/pugscene.py:758 +#: PortMaster/pylibs/pugscene.py:785 msgid "Not Used" msgstr "Inutilisé" -#: PortMaster/pylibs/pugscene.py:773 +#: PortMaster/pylibs/pugscene.py:800 msgid "Check" msgstr "Vérifier" -#: PortMaster/pylibs/pugscene.py:773 PortMaster/pylibs/pugscene.py:1385 -#: PortMaster/pylibs/pugscene.py:1420 +#: PortMaster/pylibs/pugscene.py:800 PortMaster/pylibs/pugscene.py:1455 +#: PortMaster/pylibs/pugscene.py:1533 msgid "Uninstall" msgstr "Désinstaller" -#: PortMaster/pylibs/pugscene.py:776 PortMaster/pylibs/pugscene.py:1387 -#: PortMaster/pylibs/pugscene.py:1422 +#: PortMaster/pylibs/pugscene.py:803 PortMaster/pylibs/pugscene.py:1458 +#: PortMaster/pylibs/pugscene.py:1535 msgid "Install" msgstr "Installer" -#: PortMaster/pylibs/pugscene.py:791 +#: PortMaster/pylibs/pugscene.py:818 msgid "Are you sure you want to download and verify all runtimes?" msgstr "Êtes-vous sûr de vouloir télécharger et vérifier tous les runtimes ?" -#: PortMaster/pylibs/pugscene.py:833 +#: PortMaster/pylibs/pugscene.py:860 #, python-brace-format msgid "Deleted runtime {runtime}" msgstr "Runtime {runtime} supprimé" -#: PortMaster/pylibs/pugscene.py:868 +#: PortMaster/pylibs/pugscene.py:895 #, python-brace-format msgid "{theme_name} (Selected)" msgstr "{theme_name} (Sélectionné)" -#: PortMaster/pylibs/pugscene.py:882 PortMaster/pylibs/pugscene.py:967 -#: PortMaster/pylibs/pugscene.py:1021 PortMaster/pylibs/pugscene.py:1085 -#: PortMaster/pylibs/pugscene.py:1093 PortMaster/pylibs/pugscene.py:1148 +#: PortMaster/pylibs/pugscene.py:909 PortMaster/pylibs/pugscene.py:994 +#: PortMaster/pylibs/pugscene.py:1048 PortMaster/pylibs/pugscene.py:1112 +#: PortMaster/pylibs/pugscene.py:1120 PortMaster/pylibs/pugscene.py:1175 msgid "Select" msgstr "Sélectionner" -#: PortMaster/pylibs/pugscene.py:887 +#: PortMaster/pylibs/pugscene.py:914 msgid "Download" msgstr "Télécharger" -#: PortMaster/pylibs/pugscene.py:906 +#: PortMaster/pylibs/pugscene.py:933 msgid "Do you want to change theme?\n\n" "You will have to restart for it to take affect." msgstr "Voulez-vous changer de thème?\n\n" "Vous devrez redémarrer pour que cela prenne effet." -#: PortMaster/pylibs/pugscene.py:947 +#: PortMaster/pylibs/pugscene.py:974 msgid "Select Colour Scheme" msgstr "Sélectionner la palette de couleurs" -#: PortMaster/pylibs/pugscene.py:961 +#: PortMaster/pylibs/pugscene.py:988 #, python-brace-format msgid "{item_name} (Selected)" msgstr "{item_name} (Sélectionné)" -#: PortMaster/pylibs/pugscene.py:984 +#: PortMaster/pylibs/pugscene.py:1011 msgid "Do you want to change the themes color scheme?\n\n" "You will have to restart for it to take affect." msgstr "Voulez-vous changer le schéma de couleurs du thème?\n\n" "Vous devrez redémarrer pour que cela prenne effet." -#: PortMaster/pylibs/pugscene.py:1005 +#: PortMaster/pylibs/pugscene.py:1032 msgid "Language Select" msgstr "Sélection de la langue" -#: PortMaster/pylibs/pugscene.py:1015 +#: PortMaster/pylibs/pugscene.py:1042 #, python-brace-format msgid "{lang_name} (Selected)" msgstr "{lang_name} (Sélectionné)" -#: PortMaster/pylibs/pugscene.py:1038 +#: PortMaster/pylibs/pugscene.py:1065 msgid "Do you want to change language?\n\n" "You will have to restart for it to take affect." msgstr "Voulez-vous changer de langue?\n\n" "Vous devrez redémarrer pour que cela prenne effet." -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 msgid "Delete" msgstr "Supprimer" -#: PortMaster/pylibs/pugscene.py:1085 +#: PortMaster/pylibs/pugscene.py:1112 msgid "Upper Case" msgstr "Majuscule" -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 msgid "Space" msgstr "Espace" -#: PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:1120 msgid "Lower Case" msgstr "Minuscule" -#: PortMaster/pylibs/pugscene.py:1185 PortMaster/pylibs/pugscene.py:1208 +#: PortMaster/pylibs/pugscene.py:1212 PortMaster/pylibs/pugscene.py:1235 msgid "NO PORTS" msgstr "AUCUN RÉSULTAT" -#: PortMaster/pylibs/pugscene.py:1189 PortMaster/pylibs/pugscene.py:1215 +#: PortMaster/pylibs/pugscene.py:1216 PortMaster/pylibs/pugscene.py:1242 msgid "** NO PORTS FOUND **" msgstr "** AUCUN RÉSULTAT **" -#: PortMaster/pylibs/pugscene.py:1191 PortMaster/pylibs/pugscene.py:1218 +#: PortMaster/pylibs/pugscene.py:1218 PortMaster/pylibs/pugscene.py:1245 msgid "Download ports first." msgstr "Téléchargez d'abord les ports." -#: PortMaster/pylibs/pugscene.py:1220 +#: PortMaster/pylibs/pugscene.py:1247 msgid "Try removing some filters." msgstr "Essayez de supprimer certains filtres." -#: PortMaster/pylibs/pugscene.py:1348 PortMaster/pylibs/pugscene.py:1372 -#: PortMaster/pylibs/pugscene.py:1374 +#: PortMaster/pylibs/pugscene.py:1402 PortMaster/pylibs/pugscene.py:1426 +#: PortMaster/pylibs/pugscene.py:1428 PortMaster/pylibs/pugscene.py:1513 +#: PortMaster/pylibs/pugscene.py:1518 msgid "Show Info" msgstr "Afficher les Infos" -#: PortMaster/pylibs/pugscene.py:1353 +#: PortMaster/pylibs/pugscene.py:1407 msgid "Ports List" msgstr "Liste des Ports" -#: PortMaster/pylibs/pugscene.py:1372 +#: PortMaster/pylibs/pugscene.py:1426 msgid "Filters" msgstr "Filtres" -#: PortMaster/pylibs/pugscene.py:1380 +#: PortMaster/pylibs/pugscene.py:1434 msgid "Port Info Popup" msgstr "" -#: PortMaster/pylibs/pugscene.py:1385 PortMaster/pylibs/pugscene.py:1387 -msgid "Hide Information" +#: PortMaster/pylibs/pugscene.py:1445 PortMaster/pylibs/pugscene.py:1448 +msgid "Hide Info" msgstr "" -#: PortMaster/pylibs/pugscene.py:1385 PortMaster/pylibs/pugscene.py:1420 +#: PortMaster/pylibs/pugscene.py:1455 PortMaster/pylibs/pugscene.py:1533 msgid "Reinstall" msgstr "Réinstaller" -#: PortMaster/pylibs/pugscene.py:1406 +#: PortMaster/pylibs/pugscene.py:1482 msgid "Port Info" msgstr "Infos Port" -#: PortMaster/pylibs/pugscene.py:1417 -msgid "Show Information" -msgstr "" - -#: PortMaster/pylibs/pugscene.py:1457 +#: PortMaster/pylibs/pugscene.py:1555 #, python-brace-format msgid "Are you sure you want to uninstall {port_name}?" msgstr "Êtes-vous sûr de vouloir désinstaller {port_name}?" -#: PortMaster/pylibs/pugscene.py:1482 +#: PortMaster/pylibs/pugscene.py:1599 msgid "Filters Scene" msgstr "Filtre Scène" -#: PortMaster/pylibs/pugscene.py:1511 +#: PortMaster/pylibs/pugscene.py:1628 msgid "Alphabetical" msgstr "Ordre alphabétique" -#: PortMaster/pylibs/pugscene.py:1512 +#: PortMaster/pylibs/pugscene.py:1629 msgid "Recently Added" msgstr "Ajouts récents" -#: PortMaster/pylibs/pugscene.py:1513 +#: PortMaster/pylibs/pugscene.py:1630 msgid "Recently Updated" msgstr "Récemment mis à jour" -#: PortMaster/pylibs/pugscene.py:1516 +#: PortMaster/pylibs/pugscene.py:1633 msgid "Action" msgstr "Action" -#: PortMaster/pylibs/pugscene.py:1517 +#: PortMaster/pylibs/pugscene.py:1634 msgid "Adventure" msgstr "Aventure" -#: PortMaster/pylibs/pugscene.py:1518 +#: PortMaster/pylibs/pugscene.py:1635 msgid "Arcade" msgstr "Arcade" -#: PortMaster/pylibs/pugscene.py:1519 +#: PortMaster/pylibs/pugscene.py:1636 msgid "Casino/Card" msgstr "Casino/Carte" -#: PortMaster/pylibs/pugscene.py:1520 +#: PortMaster/pylibs/pugscene.py:1637 msgid "First Person Shooter" msgstr "Fps" -#: PortMaster/pylibs/pugscene.py:1521 +#: PortMaster/pylibs/pugscene.py:1638 msgid "Platformer" msgstr "Plateforme" -#: PortMaster/pylibs/pugscene.py:1522 +#: PortMaster/pylibs/pugscene.py:1639 msgid "Puzzle" msgstr "Réflexion" -#: PortMaster/pylibs/pugscene.py:1523 +#: PortMaster/pylibs/pugscene.py:1640 msgid "Racing" msgstr "Jeu de course" -#: PortMaster/pylibs/pugscene.py:1524 +#: PortMaster/pylibs/pugscene.py:1641 msgid "Rhythm" msgstr "Rythme" -#: PortMaster/pylibs/pugscene.py:1525 +#: PortMaster/pylibs/pugscene.py:1642 msgid "Role Playing Game" msgstr "Jeu de rôle" -#: PortMaster/pylibs/pugscene.py:1526 +#: PortMaster/pylibs/pugscene.py:1643 msgid "Simulation" msgstr "Simulation" -#: PortMaster/pylibs/pugscene.py:1527 +#: PortMaster/pylibs/pugscene.py:1644 msgid "Sports" msgstr "Sports" -#: PortMaster/pylibs/pugscene.py:1528 +#: PortMaster/pylibs/pugscene.py:1645 msgid "Strategy" msgstr "Stratégie" -#: PortMaster/pylibs/pugscene.py:1529 +#: PortMaster/pylibs/pugscene.py:1646 msgid "Visual Novel" msgstr "Visual Novel" -#: PortMaster/pylibs/pugscene.py:1530 +#: PortMaster/pylibs/pugscene.py:1647 msgid "Other" msgstr "Autre" -#: PortMaster/pylibs/pugscene.py:1536 +#: PortMaster/pylibs/pugscene.py:1653 msgid "Broken Ports" msgstr "Ports Cassés" -#: PortMaster/pylibs/pugscene.py:1539 +#: PortMaster/pylibs/pugscene.py:1656 msgid "Free game, all files included." msgstr "" -#: PortMaster/pylibs/pugscene.py:1540 +#: PortMaster/pylibs/pugscene.py:1657 msgid "Demo files included." msgstr "" -#: PortMaster/pylibs/pugscene.py:1541 +#: PortMaster/pylibs/pugscene.py:1658 msgid "Free external assets needed." msgstr "" -#: PortMaster/pylibs/pugscene.py:1542 +#: PortMaster/pylibs/pugscene.py:1659 msgid "Paid external assets needed." msgstr "" -#: PortMaster/pylibs/pugscene.py:1545 PortMaster/pylibs/pugscene.py:1546 +#: PortMaster/pylibs/pugscene.py:1662 PortMaster/pylibs/pugscene.py:1663 #, python-brace-format msgid "{runtime_name} Runtime" msgstr "{runtime_name} Runtime" -#: PortMaster/pylibs/pugscene.py:1590 +#: PortMaster/pylibs/pugscene.py:1707 msgid "Sort:" msgstr "Ordre:" -#: PortMaster/pylibs/pugscene.py:1605 +#: PortMaster/pylibs/pugscene.py:1722 msgid "Clear Filters" msgstr "Réinitialiser les filtres" -#: PortMaster/pylibs/pugscene.py:1629 +#: PortMaster/pylibs/pugscene.py:1746 msgid "Genres:" msgstr "Genres :" -#: PortMaster/pylibs/pugscene.py:1659 +#: PortMaster/pylibs/pugscene.py:1776 msgid "Attributes:" msgstr "Attributs :" -#: PortMaster/pylibs/pugscene.py:1688 +#: PortMaster/pylibs/pugscene.py:1805 msgid "Availability:" msgstr "" -#: PortMaster/pylibs/pugscene.py:1717 +#: PortMaster/pylibs/pugscene.py:1834 msgid "Porters:" msgstr "Porteurs :" -#: PortMaster/pylibs/pugscene.py:1785 +#: PortMaster/pylibs/pugscene.py:1902 msgid "Messages" msgstr "Messages" -#: PortMaster/pylibs/pugscene.py:1820 +#: PortMaster/pylibs/pugscene.py:1937 msgid "Are you sure you want to cancel?" msgstr "Êtes-vous sûr de vouloir annuler ?" diff --git a/PortMaster/pylibs/locales/it_IT/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/it_IT/LC_MESSAGES/messages.po index ebd2e9c..49d192f 100644 --- a/PortMaster/pylibs/locales/it_IT/LC_MESSAGES/messages.po +++ b/PortMaster/pylibs/locales/it_IT/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-23 18:47+0800\n" -"PO-Revision-Date: 2023-11-23 10:48\n" +"POT-Creation-Date: 2023-11-25 13:04+0800\n" +"PO-Revision-Date: 2023-11-25 05:04\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -73,95 +73,95 @@ msgstr "Cinese Semplificato" msgid "Unknown IP" msgstr "IP Ignoto" -#: PortMaster/pugwash:729 PortMaster/pugwash:868 +#: PortMaster/pugwash:729 PortMaster/pugwash:870 msgid "N/A" msgstr "N/A" -#: PortMaster/pugwash:837 +#: PortMaster/pugwash:838 msgid "** NO PORT **" msgstr "** Nessun Risultato **" -#: PortMaster/pugwash:855 PortMaster/pylibs/pugscene.py:1533 +#: PortMaster/pugwash:857 PortMaster/pylibs/pugscene.py:1650 msgid "Ready to Run" msgstr "Ready to Run" -#: PortMaster/pugwash:855 +#: PortMaster/pugwash:857 msgid "Requires Files" msgstr "File richiesti" -#: PortMaster/pugwash:862 PortMaster/pugwash:889 -#: PortMaster/pylibs/pugscene.py:757 +#: PortMaster/pugwash:864 PortMaster/pugwash:891 +#: PortMaster/pylibs/pugscene.py:784 msgid "Installed" msgstr "Installato" -#: PortMaster/pugwash:864 +#: PortMaster/pugwash:866 msgid "Missing" msgstr "Mancante" -#: PortMaster/pugwash:890 PortMaster/pylibs/harbourmaster/harbour.py:1377 -#: PortMaster/pylibs/pugscene.py:1535 +#: PortMaster/pugwash:892 PortMaster/pylibs/harbourmaster/harbour.py:1377 +#: PortMaster/pylibs/pugscene.py:1652 msgid "Update Available" msgstr "Aggiornamento Disponibile" -#: PortMaster/pugwash:891 PortMaster/pylibs/harbourmaster/harbour.py:1376 -#: PortMaster/pylibs/pugscene.py:757 PortMaster/pylibs/pugscene.py:1534 +#: PortMaster/pugwash:893 PortMaster/pylibs/harbourmaster/harbour.py:1376 +#: PortMaster/pylibs/pugscene.py:784 PortMaster/pylibs/pugscene.py:1651 msgid "Not Installed" msgstr "Non Installato" -#: PortMaster/pugwash:1064 PortMaster/pugwash:1384 -#: PortMaster/pylibs/pugscene.py:1832 PortMaster/pylibs/pugscene.py:1880 -#: PortMaster/pylibs/pugscene.py:1882 +#: PortMaster/pugwash:1069 PortMaster/pugwash:1389 +#: PortMaster/pylibs/pugscene.py:1949 PortMaster/pylibs/pugscene.py:1997 +#: PortMaster/pylibs/pugscene.py:1999 msgid "Okay" msgstr "Ok" -#: PortMaster/pugwash:1067 PortMaster/pugwash:1385 -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 -#: PortMaster/pylibs/pugscene.py:1801 PortMaster/pylibs/pugscene.py:1835 -#: PortMaster/pylibs/pugscene.py:1880 +#: PortMaster/pugwash:1072 PortMaster/pugwash:1390 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 +#: PortMaster/pylibs/pugscene.py:1918 PortMaster/pylibs/pugscene.py:1952 +#: PortMaster/pylibs/pugscene.py:1997 msgid "Cancel" msgstr "Annulla" -#: PortMaster/pugwash:1290 +#: PortMaster/pugwash:1295 #, python-brace-format msgid "Installing {port_name}" msgstr "Installo {port_name}" -#: PortMaster/pugwash:1299 +#: PortMaster/pugwash:1304 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "Disinstallo {port_name}" -#: PortMaster/pugwash:1310 +#: PortMaster/pugwash:1315 msgid "Updating all port sources:" msgstr "Aggiorno le fonti..." -#: PortMaster/pugwash:1320 +#: PortMaster/pugwash:1325 #, python-brace-format msgid "Checking {runtime_name}" msgstr "Verifico {runtime_name}" -#: PortMaster/pugwash:1724 +#: PortMaster/pugwash:1729 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to downgrade?" msgstr "Stai passando dalla versione {old_release_channel} alla versione {new_release_channel} .\n\n" "Vuoi effettuare il downgrade?" -#: PortMaster/pugwash:1730 +#: PortMaster/pugwash:1735 #, python-brace-format msgid "There is a new version of PortMaster ({portmaster_version})\n\n" "Do you want to upgrade?" msgstr "C'è una nuova versione di PortMaster ({portmaster_version})\n\n" "Vuoi fare l'upgrade?" -#: PortMaster/pugwash:1735 +#: PortMaster/pugwash:1740 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." msgstr "Vuoi reinstallare PortMaster?\n\n" "Proseguendo scaricherai da {release_channel} la versione {portmaster_version}." -#: PortMaster/pugwash:1762 +#: PortMaster/pugwash:1767 msgid "No network connection available." msgstr "Impossibile rilevare connessione di rete." @@ -386,7 +386,7 @@ msgstr "Successo!" #: PortMaster/pylibs/harbourmaster/source.py:284 #: PortMaster/pylibs/harbourmaster/source.py:448 -#: PortMaster/pylibs/pugtheme.py:360 +#: PortMaster/pylibs/pugtheme.py:364 msgid "Fetching info" msgstr "Cerco Informazioni" @@ -439,513 +439,510 @@ msgstr "File Validati" msgid "Unable to validate download." msgstr "Impossibile validare il download." -#: PortMaster/pylibs/pugscene.py:336 +#: PortMaster/pylibs/pugscene.py:363 msgid "Main Menu" msgstr "Menu principale" -#: PortMaster/pylibs/pugscene.py:343 PortMaster/pylibs/pugscene.py:1137 +#: PortMaster/pylibs/pugscene.py:370 PortMaster/pylibs/pugscene.py:1164 msgid "Featured Ports" msgstr "Raccomandati dal Team" -#: PortMaster/pylibs/pugscene.py:344 +#: PortMaster/pylibs/pugscene.py:371 msgid "Hand curated lists of ports" msgstr "Selezione di ports raccomandati dal Team" -#: PortMaster/pylibs/pugscene.py:347 +#: PortMaster/pylibs/pugscene.py:374 msgid "All Ports" msgstr "Tutti i Ports" -#: PortMaster/pylibs/pugscene.py:348 +#: PortMaster/pylibs/pugscene.py:375 msgid "List all ports available on PortMaster." msgstr "Lista con tutti i Ports disponibili su PortMaster." -#: PortMaster/pylibs/pugscene.py:351 +#: PortMaster/pylibs/pugscene.py:378 msgid "Ready to Run Ports" msgstr "Ready To Run" -#: PortMaster/pylibs/pugscene.py:352 +#: PortMaster/pylibs/pugscene.py:379 msgid "List all ports that are ready to play!" msgstr "Selezione di ports già compresivi di tutto il necessario per giocare!" -#: PortMaster/pylibs/pugscene.py:355 +#: PortMaster/pylibs/pugscene.py:382 msgid "Manage Ports" msgstr "Gestione Ports" -#: PortMaster/pylibs/pugscene.py:356 +#: PortMaster/pylibs/pugscene.py:383 msgid "Update / Uninstall Ports" msgstr "Aggiorna / Disinstalla Ports" -#: PortMaster/pylibs/pugscene.py:361 +#: PortMaster/pylibs/pugscene.py:388 msgid "Options" msgstr "Opzioni" -#: PortMaster/pylibs/pugscene.py:362 +#: PortMaster/pylibs/pugscene.py:389 msgid "PortMaster Options" msgstr "Configura PortMaster secondo le tue preferenze" -#: PortMaster/pylibs/pugscene.py:365 +#: PortMaster/pylibs/pugscene.py:392 msgid "Exit" msgstr "Esci" -#: PortMaster/pylibs/pugscene.py:366 +#: PortMaster/pylibs/pugscene.py:393 msgid "Quit PortMaster" msgstr "Esci Da PortMaster" -#: PortMaster/pylibs/pugscene.py:368 PortMaster/pylibs/pugscene.py:509 -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:395 PortMaster/pylibs/pugscene.py:536 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 msgid "Enter" msgstr "Accetta" -#: PortMaster/pylibs/pugscene.py:368 +#: PortMaster/pylibs/pugscene.py:395 msgid "Quit" msgstr "Indietro" -#: PortMaster/pylibs/pugscene.py:382 +#: PortMaster/pylibs/pugscene.py:409 #, python-brace-format msgid "Secret Mode {secret_mode}" msgstr "Modalità Segreta {secret_mode}" -#: PortMaster/pylibs/pugscene.py:383 PortMaster/pylibs/pugscene.py:470 -#: PortMaster/pylibs/pugscene.py:474 PortMaster/pylibs/pugscene.py:575 -#: PortMaster/pylibs/pugscene.py:584 +#: PortMaster/pylibs/pugscene.py:410 PortMaster/pylibs/pugscene.py:497 +#: PortMaster/pylibs/pugscene.py:501 PortMaster/pylibs/pugscene.py:602 +#: PortMaster/pylibs/pugscene.py:611 msgid "Enabled" msgstr "Attiva" -#: PortMaster/pylibs/pugscene.py:383 PortMaster/pylibs/pugscene.py:470 -#: PortMaster/pylibs/pugscene.py:474 PortMaster/pylibs/pugscene.py:575 -#: PortMaster/pylibs/pugscene.py:584 +#: PortMaster/pylibs/pugscene.py:410 PortMaster/pylibs/pugscene.py:497 +#: PortMaster/pylibs/pugscene.py:501 PortMaster/pylibs/pugscene.py:602 +#: PortMaster/pylibs/pugscene.py:611 msgid "Disabled" msgstr "Disattiva" -#: PortMaster/pylibs/pugscene.py:421 +#: PortMaster/pylibs/pugscene.py:448 msgid "Are you sure you want to exit PortMaster?" msgstr "" -#: PortMaster/pylibs/pugscene.py:431 +#: PortMaster/pylibs/pugscene.py:458 msgid "Options Menu" msgstr "Impostazioni" -#: PortMaster/pylibs/pugscene.py:436 +#: PortMaster/pylibs/pugscene.py:463 msgid "System" msgstr "Sistema" -#: PortMaster/pylibs/pugscene.py:440 PortMaster/pylibs/pugscene.py:684 +#: PortMaster/pylibs/pugscene.py:467 PortMaster/pylibs/pugscene.py:711 msgid "Runtime Manager" msgstr "Runtime Manager" -#: PortMaster/pylibs/pugscene.py:441 +#: PortMaster/pylibs/pugscene.py:468 msgid "Manage port runtimes." msgstr "Gestisci Runtimes." -#: PortMaster/pylibs/pugscene.py:445 +#: PortMaster/pylibs/pugscene.py:472 msgid "Update Ports" msgstr "Aggiorna Ports" -#: PortMaster/pylibs/pugscene.py:446 +#: PortMaster/pylibs/pugscene.py:473 msgid "Update all ports and associated information" msgstr "Aggiorna tutti i ports e le informazioni associate ad essi" -#: PortMaster/pylibs/pugscene.py:450 +#: PortMaster/pylibs/pugscene.py:477 msgid "Update PortMaster" msgstr "Aggiorna PortMaster" -#: PortMaster/pylibs/pugscene.py:451 +#: PortMaster/pylibs/pugscene.py:478 msgid "Force check for a new PortMaster version." msgstr "Forza il controllo per una nuova versione di PortMaster." -#: PortMaster/pylibs/pugscene.py:455 +#: PortMaster/pylibs/pugscene.py:482 #, python-brace-format msgid "Release Channel: {channel}" msgstr "" -#: PortMaster/pylibs/pugscene.py:457 +#: PortMaster/pylibs/pugscene.py:484 msgid "Change release channel of PortMaster, either beta or stable." msgstr "" -#: PortMaster/pylibs/pugscene.py:463 PortMaster/pylibs/pugscene.py:602 +#: PortMaster/pylibs/pugscene.py:490 PortMaster/pylibs/pugscene.py:629 #, python-brace-format msgid "Controller Mode: {controller_mode}" msgstr "Modalità Controller: {controller_mode}" -#: PortMaster/pylibs/pugscene.py:464 +#: PortMaster/pylibs/pugscene.py:491 msgid "Toggle between various controller layouts." msgstr "Cambia Schema comandi per la navigazione dei menu." -#: PortMaster/pylibs/pugscene.py:466 +#: PortMaster/pylibs/pugscene.py:493 msgid "Audio" msgstr "Audio" -#: PortMaster/pylibs/pugscene.py:470 PortMaster/pylibs/pugscene.py:575 +#: PortMaster/pylibs/pugscene.py:497 PortMaster/pylibs/pugscene.py:602 msgid "Music: " msgstr "Musica: " -#: PortMaster/pylibs/pugscene.py:471 +#: PortMaster/pylibs/pugscene.py:498 msgid "Enable or Disable background music in PortMaster." msgstr "Abilita o disabilita la musica di sottofondo in PortMaster." -#: PortMaster/pylibs/pugscene.py:474 PortMaster/pylibs/pugscene.py:584 +#: PortMaster/pylibs/pugscene.py:501 PortMaster/pylibs/pugscene.py:611 msgid "Sound FX: " msgstr "Effetti Sonori: " -#: PortMaster/pylibs/pugscene.py:475 +#: PortMaster/pylibs/pugscene.py:502 msgid "Enable or Disable soundfx in PortMaster." msgstr "Abilita o disabilita gli effetti sonori in PortMaster." -#: PortMaster/pylibs/pugscene.py:477 +#: PortMaster/pylibs/pugscene.py:504 msgid "Interface" msgstr "Interfaccia" -#: PortMaster/pylibs/pugscene.py:481 +#: PortMaster/pylibs/pugscene.py:508 msgid "Choose Language" msgstr "Lingua" -#: PortMaster/pylibs/pugscene.py:482 +#: PortMaster/pylibs/pugscene.py:509 msgid "Select the language PortMaster uses." msgstr "Seleziona la lingua usata da PortMaster." -#: PortMaster/pylibs/pugscene.py:485 PortMaster/pylibs/pugscene.py:850 +#: PortMaster/pylibs/pugscene.py:512 PortMaster/pylibs/pugscene.py:877 msgid "Select Theme" msgstr "Seleziona Tema" -#: PortMaster/pylibs/pugscene.py:486 +#: PortMaster/pylibs/pugscene.py:513 msgid "Select a theme for PortMaster." msgstr "Cambia il tuo attuale tema o scaricane di nuovi." -#: PortMaster/pylibs/pugscene.py:492 +#: PortMaster/pylibs/pugscene.py:519 msgid "Select Color Scheme" msgstr "Seleziona Modalità Tema" -#: PortMaster/pylibs/pugscene.py:493 +#: PortMaster/pylibs/pugscene.py:520 msgid "Select a colour scheme for PortMaster" msgstr "Cambia schema colori dell'attuale tema" -#: PortMaster/pylibs/pugscene.py:496 +#: PortMaster/pylibs/pugscene.py:523 msgid "Secret Options" msgstr "Opzioni Segrete" -#: PortMaster/pylibs/pugscene.py:499 +#: PortMaster/pylibs/pugscene.py:526 msgid "Delete PortMaster Config" msgstr "Elimina Configurazione Attuale" -#: PortMaster/pylibs/pugscene.py:500 PortMaster/pylibs/pugscene.py:504 +#: PortMaster/pylibs/pugscene.py:527 PortMaster/pylibs/pugscene.py:531 msgid "This can break stuff, don't touch unless you know what you are doing." msgstr "Attenzione, non toccare a meno che tu non sappia cosa stai facendo." -#: PortMaster/pylibs/pugscene.py:503 +#: PortMaster/pylibs/pugscene.py:530 msgid "Delete PortMaster Runtimes" msgstr "Elimina Runtimes installate" -#: PortMaster/pylibs/pugscene.py:509 PortMaster/pylibs/pugscene.py:773 -#: PortMaster/pylibs/pugscene.py:776 PortMaster/pylibs/pugscene.py:884 -#: PortMaster/pylibs/pugscene.py:966 PortMaster/pylibs/pugscene.py:967 -#: PortMaster/pylibs/pugscene.py:1020 PortMaster/pylibs/pugscene.py:1021 -#: PortMaster/pylibs/pugscene.py:1148 PortMaster/pylibs/pugscene.py:1348 -#: PortMaster/pylibs/pugscene.py:1372 PortMaster/pylibs/pugscene.py:1374 -#: PortMaster/pylibs/pugscene.py:1385 PortMaster/pylibs/pugscene.py:1387 -#: PortMaster/pylibs/pugscene.py:1420 PortMaster/pylibs/pugscene.py:1422 +#: PortMaster/pylibs/pugscene.py:536 PortMaster/pylibs/pugscene.py:800 +#: PortMaster/pylibs/pugscene.py:803 PortMaster/pylibs/pugscene.py:911 +#: PortMaster/pylibs/pugscene.py:993 PortMaster/pylibs/pugscene.py:994 +#: PortMaster/pylibs/pugscene.py:1047 PortMaster/pylibs/pugscene.py:1048 +#: PortMaster/pylibs/pugscene.py:1175 PortMaster/pylibs/pugscene.py:1402 +#: PortMaster/pylibs/pugscene.py:1426 PortMaster/pylibs/pugscene.py:1428 +#: PortMaster/pylibs/pugscene.py:1455 PortMaster/pylibs/pugscene.py:1458 +#: PortMaster/pylibs/pugscene.py:1533 PortMaster/pylibs/pugscene.py:1535 msgid "Back" msgstr "Indietro" -#: PortMaster/pylibs/pugscene.py:551 +#: PortMaster/pylibs/pugscene.py:578 #, python-brace-format msgid "Are you sure you want to change the release channel from {current_channel} to {new_channel}?\n\n" "PortMaster will upgrade or downgrade accordingly." msgstr "" -#: PortMaster/pylibs/pugscene.py:651 +#: PortMaster/pylibs/pugscene.py:678 msgid "Deleting Runtimes:" msgstr "Eliminazione Runtimes:" -#: PortMaster/pylibs/pugscene.py:676 +#: PortMaster/pylibs/pugscene.py:703 msgid "Source Manager" msgstr "Gestione Fonti" -#: PortMaster/pylibs/pugscene.py:713 +#: PortMaster/pylibs/pugscene.py:740 msgid "Download All" msgstr "Scarica tutto" -#: PortMaster/pylibs/pugscene.py:758 +#: PortMaster/pylibs/pugscene.py:785 msgid "Used" msgstr "In uso" -#: PortMaster/pylibs/pugscene.py:758 +#: PortMaster/pylibs/pugscene.py:785 msgid "Not Used" msgstr "Non utilizzato" -#: PortMaster/pylibs/pugscene.py:773 +#: PortMaster/pylibs/pugscene.py:800 msgid "Check" msgstr "Verifica" -#: PortMaster/pylibs/pugscene.py:773 PortMaster/pylibs/pugscene.py:1385 -#: PortMaster/pylibs/pugscene.py:1420 +#: PortMaster/pylibs/pugscene.py:800 PortMaster/pylibs/pugscene.py:1455 +#: PortMaster/pylibs/pugscene.py:1533 msgid "Uninstall" msgstr "Disinstalla" -#: PortMaster/pylibs/pugscene.py:776 PortMaster/pylibs/pugscene.py:1387 -#: PortMaster/pylibs/pugscene.py:1422 +#: PortMaster/pylibs/pugscene.py:803 PortMaster/pylibs/pugscene.py:1458 +#: PortMaster/pylibs/pugscene.py:1535 msgid "Install" msgstr "Installa" -#: PortMaster/pylibs/pugscene.py:791 +#: PortMaster/pylibs/pugscene.py:818 msgid "Are you sure you want to download and verify all runtimes?" msgstr "Sei sicuro di voler scaricare tutte le runtimes?" -#: PortMaster/pylibs/pugscene.py:833 +#: PortMaster/pylibs/pugscene.py:860 #, python-brace-format msgid "Deleted runtime {runtime}" msgstr "Runtime {runtime} eliminata" -#: PortMaster/pylibs/pugscene.py:868 +#: PortMaster/pylibs/pugscene.py:895 #, python-brace-format msgid "{theme_name} (Selected)" msgstr "{theme_name} (Attuale)" -#: PortMaster/pylibs/pugscene.py:882 PortMaster/pylibs/pugscene.py:967 -#: PortMaster/pylibs/pugscene.py:1021 PortMaster/pylibs/pugscene.py:1085 -#: PortMaster/pylibs/pugscene.py:1093 PortMaster/pylibs/pugscene.py:1148 +#: PortMaster/pylibs/pugscene.py:909 PortMaster/pylibs/pugscene.py:994 +#: PortMaster/pylibs/pugscene.py:1048 PortMaster/pylibs/pugscene.py:1112 +#: PortMaster/pylibs/pugscene.py:1120 PortMaster/pylibs/pugscene.py:1175 msgid "Select" msgstr "Seleziona" -#: PortMaster/pylibs/pugscene.py:887 +#: PortMaster/pylibs/pugscene.py:914 msgid "Download" msgstr "Download" -#: PortMaster/pylibs/pugscene.py:906 +#: PortMaster/pylibs/pugscene.py:933 msgid "Do you want to change theme?\n\n" "You will have to restart for it to take affect." msgstr "Vuoi cambiare Tema?\n\n" "Riavvia per applicare le modifiche." -#: PortMaster/pylibs/pugscene.py:947 +#: PortMaster/pylibs/pugscene.py:974 msgid "Select Colour Scheme" msgstr "Selezionare schema colori" -#: PortMaster/pylibs/pugscene.py:961 +#: PortMaster/pylibs/pugscene.py:988 #, python-brace-format msgid "{item_name} (Selected)" msgstr "{item_name} (Attuale)" -#: PortMaster/pylibs/pugscene.py:984 +#: PortMaster/pylibs/pugscene.py:1011 msgid "Do you want to change the themes color scheme?\n\n" "You will have to restart for it to take affect." msgstr "Vuoi Cambiare lo Schema Colore?\n\n" "Dovrai riavviare per applicare le modifiche." -#: PortMaster/pylibs/pugscene.py:1005 +#: PortMaster/pylibs/pugscene.py:1032 msgid "Language Select" msgstr "Selezione Lingua" -#: PortMaster/pylibs/pugscene.py:1015 +#: PortMaster/pylibs/pugscene.py:1042 #, python-brace-format msgid "{lang_name} (Selected)" msgstr "{lang_name} (Attuale)" -#: PortMaster/pylibs/pugscene.py:1038 +#: PortMaster/pylibs/pugscene.py:1065 msgid "Do you want to change language?\n\n" "You will have to restart for it to take affect." msgstr "Vuoi cambiare lingua?\n\n" "Riavvia per applicare le modifiche." -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 msgid "Delete" msgstr "Elimina" -#: PortMaster/pylibs/pugscene.py:1085 +#: PortMaster/pylibs/pugscene.py:1112 msgid "Upper Case" msgstr "Maiuscolo" -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 msgid "Space" msgstr "Spazio" -#: PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:1120 msgid "Lower Case" msgstr "Minuscolo" -#: PortMaster/pylibs/pugscene.py:1185 PortMaster/pylibs/pugscene.py:1208 +#: PortMaster/pylibs/pugscene.py:1212 PortMaster/pylibs/pugscene.py:1235 msgid "NO PORTS" msgstr "Nessun Risultato" -#: PortMaster/pylibs/pugscene.py:1189 PortMaster/pylibs/pugscene.py:1215 +#: PortMaster/pylibs/pugscene.py:1216 PortMaster/pylibs/pugscene.py:1242 msgid "** NO PORTS FOUND **" msgstr "** Nessun Risultato **" -#: PortMaster/pylibs/pugscene.py:1191 PortMaster/pylibs/pugscene.py:1218 +#: PortMaster/pylibs/pugscene.py:1218 PortMaster/pylibs/pugscene.py:1245 msgid "Download ports first." msgstr "Scarica qualcosa prima." -#: PortMaster/pylibs/pugscene.py:1220 +#: PortMaster/pylibs/pugscene.py:1247 msgid "Try removing some filters." msgstr "Rimuovi qualche filtro." -#: PortMaster/pylibs/pugscene.py:1348 PortMaster/pylibs/pugscene.py:1372 -#: PortMaster/pylibs/pugscene.py:1374 +#: PortMaster/pylibs/pugscene.py:1402 PortMaster/pylibs/pugscene.py:1426 +#: PortMaster/pylibs/pugscene.py:1428 PortMaster/pylibs/pugscene.py:1513 +#: PortMaster/pylibs/pugscene.py:1518 msgid "Show Info" msgstr "Mostra info" -#: PortMaster/pylibs/pugscene.py:1353 +#: PortMaster/pylibs/pugscene.py:1407 msgid "Ports List" msgstr "Lista dei Ports" -#: PortMaster/pylibs/pugscene.py:1372 +#: PortMaster/pylibs/pugscene.py:1426 msgid "Filters" msgstr "Filtri" -#: PortMaster/pylibs/pugscene.py:1380 +#: PortMaster/pylibs/pugscene.py:1434 msgid "Port Info Popup" msgstr "" -#: PortMaster/pylibs/pugscene.py:1385 PortMaster/pylibs/pugscene.py:1387 -msgid "Hide Information" +#: PortMaster/pylibs/pugscene.py:1445 PortMaster/pylibs/pugscene.py:1448 +msgid "Hide Info" msgstr "" -#: PortMaster/pylibs/pugscene.py:1385 PortMaster/pylibs/pugscene.py:1420 +#: PortMaster/pylibs/pugscene.py:1455 PortMaster/pylibs/pugscene.py:1533 msgid "Reinstall" msgstr "Reinstalla" -#: PortMaster/pylibs/pugscene.py:1406 +#: PortMaster/pylibs/pugscene.py:1482 msgid "Port Info" msgstr "Port Info" -#: PortMaster/pylibs/pugscene.py:1417 -msgid "Show Information" -msgstr "" - -#: PortMaster/pylibs/pugscene.py:1457 +#: PortMaster/pylibs/pugscene.py:1555 #, python-brace-format msgid "Are you sure you want to uninstall {port_name}?" msgstr "Sei sicuro di voler disinstallare {port_name}?" -#: PortMaster/pylibs/pugscene.py:1482 +#: PortMaster/pylibs/pugscene.py:1599 msgid "Filters Scene" msgstr "Filtri" -#: PortMaster/pylibs/pugscene.py:1511 +#: PortMaster/pylibs/pugscene.py:1628 msgid "Alphabetical" msgstr "Alfabetico" -#: PortMaster/pylibs/pugscene.py:1512 +#: PortMaster/pylibs/pugscene.py:1629 msgid "Recently Added" msgstr "Aggiunti di Recente" -#: PortMaster/pylibs/pugscene.py:1513 +#: PortMaster/pylibs/pugscene.py:1630 msgid "Recently Updated" msgstr "Aggiornati di recente" -#: PortMaster/pylibs/pugscene.py:1516 +#: PortMaster/pylibs/pugscene.py:1633 msgid "Action" msgstr "Azione" -#: PortMaster/pylibs/pugscene.py:1517 +#: PortMaster/pylibs/pugscene.py:1634 msgid "Adventure" msgstr "Avventura" -#: PortMaster/pylibs/pugscene.py:1518 +#: PortMaster/pylibs/pugscene.py:1635 msgid "Arcade" msgstr "Arcade" -#: PortMaster/pylibs/pugscene.py:1519 +#: PortMaster/pylibs/pugscene.py:1636 msgid "Casino/Card" msgstr "Casino/Carta" -#: PortMaster/pylibs/pugscene.py:1520 +#: PortMaster/pylibs/pugscene.py:1637 msgid "First Person Shooter" msgstr "Fps" -#: PortMaster/pylibs/pugscene.py:1521 +#: PortMaster/pylibs/pugscene.py:1638 msgid "Platformer" msgstr "Platform" -#: PortMaster/pylibs/pugscene.py:1522 +#: PortMaster/pylibs/pugscene.py:1639 msgid "Puzzle" msgstr "Rompicapo" -#: PortMaster/pylibs/pugscene.py:1523 +#: PortMaster/pylibs/pugscene.py:1640 msgid "Racing" msgstr "Racing" -#: PortMaster/pylibs/pugscene.py:1524 +#: PortMaster/pylibs/pugscene.py:1641 msgid "Rhythm" msgstr "Musicale" -#: PortMaster/pylibs/pugscene.py:1525 +#: PortMaster/pylibs/pugscene.py:1642 msgid "Role Playing Game" msgstr "Gioco Di Ruolo" -#: PortMaster/pylibs/pugscene.py:1526 +#: PortMaster/pylibs/pugscene.py:1643 msgid "Simulation" msgstr "Simulazione" -#: PortMaster/pylibs/pugscene.py:1527 +#: PortMaster/pylibs/pugscene.py:1644 msgid "Sports" msgstr "Sport" -#: PortMaster/pylibs/pugscene.py:1528 +#: PortMaster/pylibs/pugscene.py:1645 msgid "Strategy" msgstr "Strategia" -#: PortMaster/pylibs/pugscene.py:1529 +#: PortMaster/pylibs/pugscene.py:1646 msgid "Visual Novel" msgstr "Visual Novel" -#: PortMaster/pylibs/pugscene.py:1530 +#: PortMaster/pylibs/pugscene.py:1647 msgid "Other" msgstr "Altro" -#: PortMaster/pylibs/pugscene.py:1536 +#: PortMaster/pylibs/pugscene.py:1653 msgid "Broken Ports" msgstr "Ports Problematici" -#: PortMaster/pylibs/pugscene.py:1539 +#: PortMaster/pylibs/pugscene.py:1656 msgid "Free game, all files included." msgstr "" -#: PortMaster/pylibs/pugscene.py:1540 +#: PortMaster/pylibs/pugscene.py:1657 msgid "Demo files included." msgstr "" -#: PortMaster/pylibs/pugscene.py:1541 +#: PortMaster/pylibs/pugscene.py:1658 msgid "Free external assets needed." msgstr "" -#: PortMaster/pylibs/pugscene.py:1542 +#: PortMaster/pylibs/pugscene.py:1659 msgid "Paid external assets needed." msgstr "" -#: PortMaster/pylibs/pugscene.py:1545 PortMaster/pylibs/pugscene.py:1546 +#: PortMaster/pylibs/pugscene.py:1662 PortMaster/pylibs/pugscene.py:1663 #, python-brace-format msgid "{runtime_name} Runtime" msgstr "{runtime_name} Runtime" -#: PortMaster/pylibs/pugscene.py:1590 +#: PortMaster/pylibs/pugscene.py:1707 msgid "Sort:" msgstr "Ordina per:" -#: PortMaster/pylibs/pugscene.py:1605 +#: PortMaster/pylibs/pugscene.py:1722 msgid "Clear Filters" msgstr "Rimuovi Filtri" -#: PortMaster/pylibs/pugscene.py:1629 +#: PortMaster/pylibs/pugscene.py:1746 msgid "Genres:" msgstr "Genere" -#: PortMaster/pylibs/pugscene.py:1659 +#: PortMaster/pylibs/pugscene.py:1776 msgid "Attributes:" msgstr "Runtime" -#: PortMaster/pylibs/pugscene.py:1688 +#: PortMaster/pylibs/pugscene.py:1805 msgid "Availability:" msgstr "" -#: PortMaster/pylibs/pugscene.py:1717 +#: PortMaster/pylibs/pugscene.py:1834 msgid "Porters:" msgstr "Porter" -#: PortMaster/pylibs/pugscene.py:1785 +#: PortMaster/pylibs/pugscene.py:1902 msgid "Messages" msgstr "Avviso" -#: PortMaster/pylibs/pugscene.py:1820 +#: PortMaster/pylibs/pugscene.py:1937 msgid "Are you sure you want to cancel?" msgstr "Sicuro di voler annullare?" diff --git a/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/messages.po index da94564..337d471 100644 --- a/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/messages.po +++ b/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-23 18:47+0800\n" -"PO-Revision-Date: 2023-11-23 10:48\n" +"POT-Creation-Date: 2023-11-25 13:04+0800\n" +"PO-Revision-Date: 2023-11-25 05:04\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" @@ -73,95 +73,95 @@ msgstr "Chiński Uproszczony" msgid "Unknown IP" msgstr "Nieznany adres IP" -#: PortMaster/pugwash:729 PortMaster/pugwash:868 +#: PortMaster/pugwash:729 PortMaster/pugwash:870 msgid "N/A" msgstr "Nie dostępne" -#: PortMaster/pugwash:837 +#: PortMaster/pugwash:838 msgid "** NO PORT **" msgstr "** BRAK PORTU **" -#: PortMaster/pugwash:855 PortMaster/pylibs/pugscene.py:1533 +#: PortMaster/pugwash:857 PortMaster/pylibs/pugscene.py:1650 msgid "Ready to Run" msgstr "Gotowe do uruchomienia" -#: PortMaster/pugwash:855 +#: PortMaster/pugwash:857 msgid "Requires Files" msgstr "Wymagane pliki" -#: PortMaster/pugwash:862 PortMaster/pugwash:889 -#: PortMaster/pylibs/pugscene.py:757 +#: PortMaster/pugwash:864 PortMaster/pugwash:891 +#: PortMaster/pylibs/pugscene.py:784 msgid "Installed" msgstr "Zainstalowane" -#: PortMaster/pugwash:864 +#: PortMaster/pugwash:866 msgid "Missing" msgstr "Brakujące" -#: PortMaster/pugwash:890 PortMaster/pylibs/harbourmaster/harbour.py:1377 -#: PortMaster/pylibs/pugscene.py:1535 +#: PortMaster/pugwash:892 PortMaster/pylibs/harbourmaster/harbour.py:1377 +#: PortMaster/pylibs/pugscene.py:1652 msgid "Update Available" msgstr "Dostępna aktualizacja" -#: PortMaster/pugwash:891 PortMaster/pylibs/harbourmaster/harbour.py:1376 -#: PortMaster/pylibs/pugscene.py:757 PortMaster/pylibs/pugscene.py:1534 +#: PortMaster/pugwash:893 PortMaster/pylibs/harbourmaster/harbour.py:1376 +#: PortMaster/pylibs/pugscene.py:784 PortMaster/pylibs/pugscene.py:1651 msgid "Not Installed" msgstr "Nie zainstalowano" -#: PortMaster/pugwash:1064 PortMaster/pugwash:1384 -#: PortMaster/pylibs/pugscene.py:1832 PortMaster/pylibs/pugscene.py:1880 -#: PortMaster/pylibs/pugscene.py:1882 +#: PortMaster/pugwash:1069 PortMaster/pugwash:1389 +#: PortMaster/pylibs/pugscene.py:1949 PortMaster/pylibs/pugscene.py:1997 +#: PortMaster/pylibs/pugscene.py:1999 msgid "Okay" msgstr "W porządku" -#: PortMaster/pugwash:1067 PortMaster/pugwash:1385 -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 -#: PortMaster/pylibs/pugscene.py:1801 PortMaster/pylibs/pugscene.py:1835 -#: PortMaster/pylibs/pugscene.py:1880 +#: PortMaster/pugwash:1072 PortMaster/pugwash:1390 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 +#: PortMaster/pylibs/pugscene.py:1918 PortMaster/pylibs/pugscene.py:1952 +#: PortMaster/pylibs/pugscene.py:1997 msgid "Cancel" msgstr "Anuluj" -#: PortMaster/pugwash:1290 +#: PortMaster/pugwash:1295 #, python-brace-format msgid "Installing {port_name}" msgstr "Instalacja {port_name}" -#: PortMaster/pugwash:1299 +#: PortMaster/pugwash:1304 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "Odinstalowywanie {port_name}" -#: PortMaster/pugwash:1310 +#: PortMaster/pugwash:1315 msgid "Updating all port sources:" msgstr "Aktualizowanie wszystkich źródeł portów:" -#: PortMaster/pugwash:1320 +#: PortMaster/pugwash:1325 #, python-brace-format msgid "Checking {runtime_name}" msgstr "Sprawdzanie {runtime_name}" -#: PortMaster/pugwash:1724 +#: PortMaster/pugwash:1729 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to downgrade?" msgstr "Przechodzisz z {old_release_channel} na wersję {new_release_channel}.\n\n" "Czy chcesz kontynuować?" -#: PortMaster/pugwash:1730 +#: PortMaster/pugwash:1735 #, python-brace-format msgid "There is a new version of PortMaster ({portmaster_version})\n\n" "Do you want to upgrade?" msgstr "Dostępna jest nowa wersja PortMaster ({portmaster_version})\n\n" "Czy chcesz zaktualizować?" -#: PortMaster/pugwash:1735 +#: PortMaster/pugwash:1740 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." msgstr "Czy chcesz ponownie zainstalować PortMaster?\n\n" "Zostanie to ponownie zainstalowane z kanału {release_channel} do {portmaster_version}." -#: PortMaster/pugwash:1762 +#: PortMaster/pugwash:1767 msgid "No network connection available." msgstr "Brak połączenia sieciowego." @@ -386,7 +386,7 @@ msgstr "Udało się!" #: PortMaster/pylibs/harbourmaster/source.py:284 #: PortMaster/pylibs/harbourmaster/source.py:448 -#: PortMaster/pylibs/pugtheme.py:360 +#: PortMaster/pylibs/pugtheme.py:364 msgid "Fetching info" msgstr "Pobieram informacje" @@ -439,513 +439,511 @@ msgstr "Plik przeszedł pomyślnie walidację." msgid "Unable to validate download." msgstr "Nie można zweryfikować pobrania." -#: PortMaster/pylibs/pugscene.py:336 +#: PortMaster/pylibs/pugscene.py:363 msgid "Main Menu" msgstr "Menu Główne" -#: PortMaster/pylibs/pugscene.py:343 PortMaster/pylibs/pugscene.py:1137 +#: PortMaster/pylibs/pugscene.py:370 PortMaster/pylibs/pugscene.py:1164 msgid "Featured Ports" msgstr "Polecane porty" -#: PortMaster/pylibs/pugscene.py:344 +#: PortMaster/pylibs/pugscene.py:371 msgid "Hand curated lists of ports" msgstr "Ręcznie wyselekcjonowane listy portów" -#: PortMaster/pylibs/pugscene.py:347 +#: PortMaster/pylibs/pugscene.py:374 msgid "All Ports" msgstr "Wszystkie porty" -#: PortMaster/pylibs/pugscene.py:348 +#: PortMaster/pylibs/pugscene.py:375 msgid "List all ports available on PortMaster." msgstr "Lista wszystkich portów dostępnych na PortMaster." -#: PortMaster/pylibs/pugscene.py:351 +#: PortMaster/pylibs/pugscene.py:378 msgid "Ready to Run Ports" msgstr "Gotowe do uruchomienia porty" -#: PortMaster/pylibs/pugscene.py:352 +#: PortMaster/pylibs/pugscene.py:379 msgid "List all ports that are ready to play!" msgstr "Lista wszystkich portów, które są gotowe do gry!" -#: PortMaster/pylibs/pugscene.py:355 +#: PortMaster/pylibs/pugscene.py:382 msgid "Manage Ports" msgstr "Zarządzaj portami" -#: PortMaster/pylibs/pugscene.py:356 +#: PortMaster/pylibs/pugscene.py:383 msgid "Update / Uninstall Ports" msgstr "Aktualizuj / Odinstaluj porty" -#: PortMaster/pylibs/pugscene.py:361 +#: PortMaster/pylibs/pugscene.py:388 msgid "Options" msgstr "Ustawienia" -#: PortMaster/pylibs/pugscene.py:362 +#: PortMaster/pylibs/pugscene.py:389 msgid "PortMaster Options" msgstr "Opcje PortMaster" -#: PortMaster/pylibs/pugscene.py:365 +#: PortMaster/pylibs/pugscene.py:392 msgid "Exit" msgstr "Wyjście" -#: PortMaster/pylibs/pugscene.py:366 +#: PortMaster/pylibs/pugscene.py:393 msgid "Quit PortMaster" msgstr "Wyjdź z PortMaster" -#: PortMaster/pylibs/pugscene.py:368 PortMaster/pylibs/pugscene.py:509 -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:395 PortMaster/pylibs/pugscene.py:536 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 msgid "Enter" msgstr "Wejdź" -#: PortMaster/pylibs/pugscene.py:368 +#: PortMaster/pylibs/pugscene.py:395 msgid "Quit" msgstr "Wyjdź" -#: PortMaster/pylibs/pugscene.py:382 +#: PortMaster/pylibs/pugscene.py:409 #, python-brace-format msgid "Secret Mode {secret_mode}" msgstr "Tryb sekretny {secret_mode}" -#: PortMaster/pylibs/pugscene.py:383 PortMaster/pylibs/pugscene.py:470 -#: PortMaster/pylibs/pugscene.py:474 PortMaster/pylibs/pugscene.py:575 -#: PortMaster/pylibs/pugscene.py:584 +#: PortMaster/pylibs/pugscene.py:410 PortMaster/pylibs/pugscene.py:497 +#: PortMaster/pylibs/pugscene.py:501 PortMaster/pylibs/pugscene.py:602 +#: PortMaster/pylibs/pugscene.py:611 msgid "Enabled" msgstr "Włączony" -#: PortMaster/pylibs/pugscene.py:383 PortMaster/pylibs/pugscene.py:470 -#: PortMaster/pylibs/pugscene.py:474 PortMaster/pylibs/pugscene.py:575 -#: PortMaster/pylibs/pugscene.py:584 +#: PortMaster/pylibs/pugscene.py:410 PortMaster/pylibs/pugscene.py:497 +#: PortMaster/pylibs/pugscene.py:501 PortMaster/pylibs/pugscene.py:602 +#: PortMaster/pylibs/pugscene.py:611 msgid "Disabled" msgstr "Wyłączony" -#: PortMaster/pylibs/pugscene.py:421 +#: PortMaster/pylibs/pugscene.py:448 msgid "Are you sure you want to exit PortMaster?" -msgstr "" +msgstr "Czy na pewno chcesz wyjść z PortMastera?" -#: PortMaster/pylibs/pugscene.py:431 +#: PortMaster/pylibs/pugscene.py:458 msgid "Options Menu" msgstr "Menu opcji" -#: PortMaster/pylibs/pugscene.py:436 +#: PortMaster/pylibs/pugscene.py:463 msgid "System" msgstr "System" -#: PortMaster/pylibs/pugscene.py:440 PortMaster/pylibs/pugscene.py:684 +#: PortMaster/pylibs/pugscene.py:467 PortMaster/pylibs/pugscene.py:711 msgid "Runtime Manager" msgstr "Menadżer Runtime" -#: PortMaster/pylibs/pugscene.py:441 +#: PortMaster/pylibs/pugscene.py:468 msgid "Manage port runtimes." msgstr "Zarządzaj runtime porta." -#: PortMaster/pylibs/pugscene.py:445 +#: PortMaster/pylibs/pugscene.py:472 msgid "Update Ports" msgstr "Aktualizuj porty" -#: PortMaster/pylibs/pugscene.py:446 +#: PortMaster/pylibs/pugscene.py:473 msgid "Update all ports and associated information" msgstr "Aktualizuj wszystkie porty i powiązane informacje" -#: PortMaster/pylibs/pugscene.py:450 +#: PortMaster/pylibs/pugscene.py:477 msgid "Update PortMaster" msgstr "Aktualizuj PortMaster" -#: PortMaster/pylibs/pugscene.py:451 +#: PortMaster/pylibs/pugscene.py:478 msgid "Force check for a new PortMaster version." msgstr "Wymuś sprawdzenie nowej wersji PortMaster." -#: PortMaster/pylibs/pugscene.py:455 +#: PortMaster/pylibs/pugscene.py:482 #, python-brace-format msgid "Release Channel: {channel}" -msgstr "" +msgstr "Kanał Wydania: {channel}" -#: PortMaster/pylibs/pugscene.py:457 +#: PortMaster/pylibs/pugscene.py:484 msgid "Change release channel of PortMaster, either beta or stable." -msgstr "" +msgstr "Zmień kanał wydania PortMaster, beta lub stabilny." -#: PortMaster/pylibs/pugscene.py:463 PortMaster/pylibs/pugscene.py:602 +#: PortMaster/pylibs/pugscene.py:490 PortMaster/pylibs/pugscene.py:629 #, python-brace-format msgid "Controller Mode: {controller_mode}" msgstr "Tryb kontrolera: {controller_mode}" -#: PortMaster/pylibs/pugscene.py:464 +#: PortMaster/pylibs/pugscene.py:491 msgid "Toggle between various controller layouts." msgstr "Przełącz między różnymi układami kontrolera." -#: PortMaster/pylibs/pugscene.py:466 +#: PortMaster/pylibs/pugscene.py:493 msgid "Audio" msgstr "Dźwięk" -#: PortMaster/pylibs/pugscene.py:470 PortMaster/pylibs/pugscene.py:575 +#: PortMaster/pylibs/pugscene.py:497 PortMaster/pylibs/pugscene.py:602 msgid "Music: " msgstr "Muzyka: " -#: PortMaster/pylibs/pugscene.py:471 +#: PortMaster/pylibs/pugscene.py:498 msgid "Enable or Disable background music in PortMaster." msgstr "Włącz lub wyłącz muzykę w tle w PortMaster." -#: PortMaster/pylibs/pugscene.py:474 PortMaster/pylibs/pugscene.py:584 +#: PortMaster/pylibs/pugscene.py:501 PortMaster/pylibs/pugscene.py:611 msgid "Sound FX: " msgstr "Efekty dźwiękowe: " -#: PortMaster/pylibs/pugscene.py:475 +#: PortMaster/pylibs/pugscene.py:502 msgid "Enable or Disable soundfx in PortMaster." msgstr "Włącz lub wyłącz efekty dźwiękowe w PortMaster." -#: PortMaster/pylibs/pugscene.py:477 +#: PortMaster/pylibs/pugscene.py:504 msgid "Interface" msgstr "Interfejs" -#: PortMaster/pylibs/pugscene.py:481 +#: PortMaster/pylibs/pugscene.py:508 msgid "Choose Language" msgstr "Wybierz język" -#: PortMaster/pylibs/pugscene.py:482 +#: PortMaster/pylibs/pugscene.py:509 msgid "Select the language PortMaster uses." msgstr "Wybierz język używany przez PortMaster." -#: PortMaster/pylibs/pugscene.py:485 PortMaster/pylibs/pugscene.py:850 +#: PortMaster/pylibs/pugscene.py:512 PortMaster/pylibs/pugscene.py:877 msgid "Select Theme" msgstr "Wybierz motyw" -#: PortMaster/pylibs/pugscene.py:486 +#: PortMaster/pylibs/pugscene.py:513 msgid "Select a theme for PortMaster." msgstr "Wybierz motyw dla PortMaster." -#: PortMaster/pylibs/pugscene.py:492 +#: PortMaster/pylibs/pugscene.py:519 msgid "Select Color Scheme" msgstr "Wybierz schemat kolorów" -#: PortMaster/pylibs/pugscene.py:493 +#: PortMaster/pylibs/pugscene.py:520 msgid "Select a colour scheme for PortMaster" msgstr "Wybierz schemat kolorów dla PortMaster" -#: PortMaster/pylibs/pugscene.py:496 +#: PortMaster/pylibs/pugscene.py:523 msgid "Secret Options" msgstr "Sekretne Opcje" -#: PortMaster/pylibs/pugscene.py:499 +#: PortMaster/pylibs/pugscene.py:526 msgid "Delete PortMaster Config" msgstr "Usuń konfigurację PortMaster" -#: PortMaster/pylibs/pugscene.py:500 PortMaster/pylibs/pugscene.py:504 +#: PortMaster/pylibs/pugscene.py:527 PortMaster/pylibs/pugscene.py:531 msgid "This can break stuff, don't touch unless you know what you are doing." msgstr "To może zniszczyć rzeczy, nie dotykaj, chyba że wiesz co robisz." -#: PortMaster/pylibs/pugscene.py:503 +#: PortMaster/pylibs/pugscene.py:530 msgid "Delete PortMaster Runtimes" msgstr "Usuń runtime PortMastera" -#: PortMaster/pylibs/pugscene.py:509 PortMaster/pylibs/pugscene.py:773 -#: PortMaster/pylibs/pugscene.py:776 PortMaster/pylibs/pugscene.py:884 -#: PortMaster/pylibs/pugscene.py:966 PortMaster/pylibs/pugscene.py:967 -#: PortMaster/pylibs/pugscene.py:1020 PortMaster/pylibs/pugscene.py:1021 -#: PortMaster/pylibs/pugscene.py:1148 PortMaster/pylibs/pugscene.py:1348 -#: PortMaster/pylibs/pugscene.py:1372 PortMaster/pylibs/pugscene.py:1374 -#: PortMaster/pylibs/pugscene.py:1385 PortMaster/pylibs/pugscene.py:1387 -#: PortMaster/pylibs/pugscene.py:1420 PortMaster/pylibs/pugscene.py:1422 +#: PortMaster/pylibs/pugscene.py:536 PortMaster/pylibs/pugscene.py:800 +#: PortMaster/pylibs/pugscene.py:803 PortMaster/pylibs/pugscene.py:911 +#: PortMaster/pylibs/pugscene.py:993 PortMaster/pylibs/pugscene.py:994 +#: PortMaster/pylibs/pugscene.py:1047 PortMaster/pylibs/pugscene.py:1048 +#: PortMaster/pylibs/pugscene.py:1175 PortMaster/pylibs/pugscene.py:1402 +#: PortMaster/pylibs/pugscene.py:1426 PortMaster/pylibs/pugscene.py:1428 +#: PortMaster/pylibs/pugscene.py:1455 PortMaster/pylibs/pugscene.py:1458 +#: PortMaster/pylibs/pugscene.py:1533 PortMaster/pylibs/pugscene.py:1535 msgid "Back" msgstr "Powrót" -#: PortMaster/pylibs/pugscene.py:551 +#: PortMaster/pylibs/pugscene.py:578 #, python-brace-format msgid "Are you sure you want to change the release channel from {current_channel} to {new_channel}?\n\n" "PortMaster will upgrade or downgrade accordingly." -msgstr "" +msgstr "Czy na pewno chcesz zmienić kanał wydania z {current_channel} na {new_channel}?\n\n" +"PortMaster odpowiednio uaktualni lub obniży wersję." -#: PortMaster/pylibs/pugscene.py:651 +#: PortMaster/pylibs/pugscene.py:678 msgid "Deleting Runtimes:" msgstr "Usuwanie Runtime:" -#: PortMaster/pylibs/pugscene.py:676 +#: PortMaster/pylibs/pugscene.py:703 msgid "Source Manager" msgstr "Menedżer źródeł" -#: PortMaster/pylibs/pugscene.py:713 +#: PortMaster/pylibs/pugscene.py:740 msgid "Download All" msgstr "Pobierz wszystko" -#: PortMaster/pylibs/pugscene.py:758 +#: PortMaster/pylibs/pugscene.py:785 msgid "Used" msgstr "Używane" -#: PortMaster/pylibs/pugscene.py:758 +#: PortMaster/pylibs/pugscene.py:785 msgid "Not Used" msgstr "Nieużywane" -#: PortMaster/pylibs/pugscene.py:773 +#: PortMaster/pylibs/pugscene.py:800 msgid "Check" msgstr "Sprawdź" -#: PortMaster/pylibs/pugscene.py:773 PortMaster/pylibs/pugscene.py:1385 -#: PortMaster/pylibs/pugscene.py:1420 +#: PortMaster/pylibs/pugscene.py:800 PortMaster/pylibs/pugscene.py:1455 +#: PortMaster/pylibs/pugscene.py:1533 msgid "Uninstall" msgstr "Odinstaluj" -#: PortMaster/pylibs/pugscene.py:776 PortMaster/pylibs/pugscene.py:1387 -#: PortMaster/pylibs/pugscene.py:1422 +#: PortMaster/pylibs/pugscene.py:803 PortMaster/pylibs/pugscene.py:1458 +#: PortMaster/pylibs/pugscene.py:1535 msgid "Install" msgstr "Zainstaluj" -#: PortMaster/pylibs/pugscene.py:791 +#: PortMaster/pylibs/pugscene.py:818 msgid "Are you sure you want to download and verify all runtimes?" msgstr "Czy na pewno chcesz pobrać i zweryfikować wszystkie runtimes?" -#: PortMaster/pylibs/pugscene.py:833 +#: PortMaster/pylibs/pugscene.py:860 #, python-brace-format msgid "Deleted runtime {runtime}" msgstr "Usunięto runtime {runtime}" -#: PortMaster/pylibs/pugscene.py:868 +#: PortMaster/pylibs/pugscene.py:895 #, python-brace-format msgid "{theme_name} (Selected)" msgstr "{theme_name} (Wybrany)" -#: PortMaster/pylibs/pugscene.py:882 PortMaster/pylibs/pugscene.py:967 -#: PortMaster/pylibs/pugscene.py:1021 PortMaster/pylibs/pugscene.py:1085 -#: PortMaster/pylibs/pugscene.py:1093 PortMaster/pylibs/pugscene.py:1148 +#: PortMaster/pylibs/pugscene.py:909 PortMaster/pylibs/pugscene.py:994 +#: PortMaster/pylibs/pugscene.py:1048 PortMaster/pylibs/pugscene.py:1112 +#: PortMaster/pylibs/pugscene.py:1120 PortMaster/pylibs/pugscene.py:1175 msgid "Select" msgstr "Wybierz" -#: PortMaster/pylibs/pugscene.py:887 +#: PortMaster/pylibs/pugscene.py:914 msgid "Download" msgstr "Pobierz" -#: PortMaster/pylibs/pugscene.py:906 +#: PortMaster/pylibs/pugscene.py:933 msgid "Do you want to change theme?\n\n" "You will have to restart for it to take affect." msgstr "Czy chcesz zmienić motyw?\n\n" "Będziesz musiał zrestartować, aby zmienić ten motyw." -#: PortMaster/pylibs/pugscene.py:947 +#: PortMaster/pylibs/pugscene.py:974 msgid "Select Colour Scheme" msgstr "Wybierz schemat kolorów" -#: PortMaster/pylibs/pugscene.py:961 +#: PortMaster/pylibs/pugscene.py:988 #, python-brace-format msgid "{item_name} (Selected)" msgstr "{item_name} (Wybrany)" -#: PortMaster/pylibs/pugscene.py:984 +#: PortMaster/pylibs/pugscene.py:1011 msgid "Do you want to change the themes color scheme?\n\n" "You will have to restart for it to take affect." msgstr "Czy chcesz zmienić schemat kolorów motywu?\n\n" "Będziesz musiał zrestartować, aby go zmienić." -#: PortMaster/pylibs/pugscene.py:1005 +#: PortMaster/pylibs/pugscene.py:1032 msgid "Language Select" msgstr "Wybór języka" -#: PortMaster/pylibs/pugscene.py:1015 +#: PortMaster/pylibs/pugscene.py:1042 #, python-brace-format msgid "{lang_name} (Selected)" msgstr "{lang_name} (Wybrany)" -#: PortMaster/pylibs/pugscene.py:1038 +#: PortMaster/pylibs/pugscene.py:1065 msgid "Do you want to change language?\n\n" "You will have to restart for it to take affect." msgstr "Czy chcesz zmienić język?\n\n" "Będziesz musiał zrestartować, aby zastosować." -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 msgid "Delete" msgstr "Usuń" -#: PortMaster/pylibs/pugscene.py:1085 +#: PortMaster/pylibs/pugscene.py:1112 msgid "Upper Case" msgstr "Wielkie litery" -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 msgid "Space" msgstr "Spacja" -#: PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:1120 msgid "Lower Case" msgstr "Małe litery" -#: PortMaster/pylibs/pugscene.py:1185 PortMaster/pylibs/pugscene.py:1208 +#: PortMaster/pylibs/pugscene.py:1212 PortMaster/pylibs/pugscene.py:1235 msgid "NO PORTS" msgstr "BRAK PORTÓW" -#: PortMaster/pylibs/pugscene.py:1189 PortMaster/pylibs/pugscene.py:1215 +#: PortMaster/pylibs/pugscene.py:1216 PortMaster/pylibs/pugscene.py:1242 msgid "** NO PORTS FOUND **" msgstr "** NIE ZNALEZIONO PORTÓW **" -#: PortMaster/pylibs/pugscene.py:1191 PortMaster/pylibs/pugscene.py:1218 +#: PortMaster/pylibs/pugscene.py:1218 PortMaster/pylibs/pugscene.py:1245 msgid "Download ports first." msgstr "Najpierw pobierz porty." -#: PortMaster/pylibs/pugscene.py:1220 +#: PortMaster/pylibs/pugscene.py:1247 msgid "Try removing some filters." msgstr "Spróbuj usunąć kilka filtrów." -#: PortMaster/pylibs/pugscene.py:1348 PortMaster/pylibs/pugscene.py:1372 -#: PortMaster/pylibs/pugscene.py:1374 +#: PortMaster/pylibs/pugscene.py:1402 PortMaster/pylibs/pugscene.py:1426 +#: PortMaster/pylibs/pugscene.py:1428 PortMaster/pylibs/pugscene.py:1513 +#: PortMaster/pylibs/pugscene.py:1518 msgid "Show Info" msgstr "Pokaż info" -#: PortMaster/pylibs/pugscene.py:1353 +#: PortMaster/pylibs/pugscene.py:1407 msgid "Ports List" msgstr "Listy portów" -#: PortMaster/pylibs/pugscene.py:1372 +#: PortMaster/pylibs/pugscene.py:1426 msgid "Filters" msgstr "Filtry" -#: PortMaster/pylibs/pugscene.py:1380 +#: PortMaster/pylibs/pugscene.py:1434 msgid "Port Info Popup" -msgstr "" +msgstr "Wyskakujące okno informacji o porcie" -#: PortMaster/pylibs/pugscene.py:1385 PortMaster/pylibs/pugscene.py:1387 -msgid "Hide Information" +#: PortMaster/pylibs/pugscene.py:1445 PortMaster/pylibs/pugscene.py:1448 +msgid "Hide Info" msgstr "" -#: PortMaster/pylibs/pugscene.py:1385 PortMaster/pylibs/pugscene.py:1420 +#: PortMaster/pylibs/pugscene.py:1455 PortMaster/pylibs/pugscene.py:1533 msgid "Reinstall" msgstr "Reinstalacja" -#: PortMaster/pylibs/pugscene.py:1406 +#: PortMaster/pylibs/pugscene.py:1482 msgid "Port Info" msgstr "Informacje o porcie" -#: PortMaster/pylibs/pugscene.py:1417 -msgid "Show Information" -msgstr "" - -#: PortMaster/pylibs/pugscene.py:1457 +#: PortMaster/pylibs/pugscene.py:1555 #, python-brace-format msgid "Are you sure you want to uninstall {port_name}?" msgstr "Jesteś pewien, że chcesz odinstalować {port_name}?" -#: PortMaster/pylibs/pugscene.py:1482 +#: PortMaster/pylibs/pugscene.py:1599 msgid "Filters Scene" msgstr "Filtry sceny" -#: PortMaster/pylibs/pugscene.py:1511 +#: PortMaster/pylibs/pugscene.py:1628 msgid "Alphabetical" msgstr "Alfabetycznie" -#: PortMaster/pylibs/pugscene.py:1512 +#: PortMaster/pylibs/pugscene.py:1629 msgid "Recently Added" msgstr "Ostatnio dodane" -#: PortMaster/pylibs/pugscene.py:1513 +#: PortMaster/pylibs/pugscene.py:1630 msgid "Recently Updated" msgstr "Ostatnio zaktualizowane" -#: PortMaster/pylibs/pugscene.py:1516 +#: PortMaster/pylibs/pugscene.py:1633 msgid "Action" msgstr "Akcja" -#: PortMaster/pylibs/pugscene.py:1517 +#: PortMaster/pylibs/pugscene.py:1634 msgid "Adventure" msgstr "Przygodowe" -#: PortMaster/pylibs/pugscene.py:1518 +#: PortMaster/pylibs/pugscene.py:1635 msgid "Arcade" msgstr "Arcade" -#: PortMaster/pylibs/pugscene.py:1519 +#: PortMaster/pylibs/pugscene.py:1636 msgid "Casino/Card" msgstr "Kasino/Karta" -#: PortMaster/pylibs/pugscene.py:1520 +#: PortMaster/pylibs/pugscene.py:1637 msgid "First Person Shooter" msgstr "Pierwszoosobowa strzelanka" -#: PortMaster/pylibs/pugscene.py:1521 +#: PortMaster/pylibs/pugscene.py:1638 msgid "Platformer" msgstr "Platformówka" -#: PortMaster/pylibs/pugscene.py:1522 +#: PortMaster/pylibs/pugscene.py:1639 msgid "Puzzle" msgstr "Puzzle" -#: PortMaster/pylibs/pugscene.py:1523 +#: PortMaster/pylibs/pugscene.py:1640 msgid "Racing" msgstr "Wyścigowe" -#: PortMaster/pylibs/pugscene.py:1524 +#: PortMaster/pylibs/pugscene.py:1641 msgid "Rhythm" msgstr "Rytm" -#: PortMaster/pylibs/pugscene.py:1525 +#: PortMaster/pylibs/pugscene.py:1642 msgid "Role Playing Game" msgstr "Role Playing" -#: PortMaster/pylibs/pugscene.py:1526 +#: PortMaster/pylibs/pugscene.py:1643 msgid "Simulation" msgstr "Symulacja" -#: PortMaster/pylibs/pugscene.py:1527 +#: PortMaster/pylibs/pugscene.py:1644 msgid "Sports" msgstr "Sportowe" -#: PortMaster/pylibs/pugscene.py:1528 +#: PortMaster/pylibs/pugscene.py:1645 msgid "Strategy" msgstr "Strategie" -#: PortMaster/pylibs/pugscene.py:1529 +#: PortMaster/pylibs/pugscene.py:1646 msgid "Visual Novel" msgstr "Wizualna nowela" -#: PortMaster/pylibs/pugscene.py:1530 +#: PortMaster/pylibs/pugscene.py:1647 msgid "Other" msgstr "Inne" -#: PortMaster/pylibs/pugscene.py:1536 +#: PortMaster/pylibs/pugscene.py:1653 msgid "Broken Ports" msgstr "Uszkodzone porty" -#: PortMaster/pylibs/pugscene.py:1539 +#: PortMaster/pylibs/pugscene.py:1656 msgid "Free game, all files included." -msgstr "" +msgstr "Darmowa gra, wszystkie pliki załączone." -#: PortMaster/pylibs/pugscene.py:1540 +#: PortMaster/pylibs/pugscene.py:1657 msgid "Demo files included." -msgstr "" +msgstr "Załączone pliki demo." -#: PortMaster/pylibs/pugscene.py:1541 +#: PortMaster/pylibs/pugscene.py:1658 msgid "Free external assets needed." -msgstr "" +msgstr "Potrzebne są bezpłatne aktywa zewnętrzne." -#: PortMaster/pylibs/pugscene.py:1542 +#: PortMaster/pylibs/pugscene.py:1659 msgid "Paid external assets needed." -msgstr "" +msgstr "Potrzebne płatne aktywa zewnętrzne." -#: PortMaster/pylibs/pugscene.py:1545 PortMaster/pylibs/pugscene.py:1546 +#: PortMaster/pylibs/pugscene.py:1662 PortMaster/pylibs/pugscene.py:1663 #, python-brace-format msgid "{runtime_name} Runtime" msgstr "{runtime_name} Czas pracy" -#: PortMaster/pylibs/pugscene.py:1590 +#: PortMaster/pylibs/pugscene.py:1707 msgid "Sort:" msgstr "Sortuj:" -#: PortMaster/pylibs/pugscene.py:1605 +#: PortMaster/pylibs/pugscene.py:1722 msgid "Clear Filters" msgstr "Wyczyść filtry" -#: PortMaster/pylibs/pugscene.py:1629 +#: PortMaster/pylibs/pugscene.py:1746 msgid "Genres:" msgstr "Gatunek:" -#: PortMaster/pylibs/pugscene.py:1659 +#: PortMaster/pylibs/pugscene.py:1776 msgid "Attributes:" msgstr "Atrybuty:" -#: PortMaster/pylibs/pugscene.py:1688 +#: PortMaster/pylibs/pugscene.py:1805 msgid "Availability:" -msgstr "" +msgstr "Dostępność:" -#: PortMaster/pylibs/pugscene.py:1717 +#: PortMaster/pylibs/pugscene.py:1834 msgid "Porters:" msgstr "Porterzy:" -#: PortMaster/pylibs/pugscene.py:1785 +#: PortMaster/pylibs/pugscene.py:1902 msgid "Messages" msgstr "Wiadomości" -#: PortMaster/pylibs/pugscene.py:1820 +#: PortMaster/pylibs/pugscene.py:1937 msgid "Are you sure you want to cancel?" msgstr "Czy na pewno chcesz anulować?" diff --git a/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/themes.po b/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/themes.po index 957dd22..df5ad1d 100644 --- a/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/themes.po +++ b/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/themes.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-09-09 16:35+0800\n" -"PO-Revision-Date: 2023-11-23 10:48\n" +"PO-Revision-Date: 2023-11-25 05:04\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" diff --git a/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/messages.po index bdc96fc..4027495 100644 --- a/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/messages.po +++ b/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-23 18:47+0800\n" -"PO-Revision-Date: 2023-11-23 10:48\n" +"POT-Creation-Date: 2023-11-25 13:04+0800\n" +"PO-Revision-Date: 2023-11-25 05:04\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -73,95 +73,95 @@ msgstr "Chines Simplificado" msgid "Unknown IP" msgstr "IP desconhecido" -#: PortMaster/pugwash:729 PortMaster/pugwash:868 +#: PortMaster/pugwash:729 PortMaster/pugwash:870 msgid "N/A" msgstr "Não disponível" -#: PortMaster/pugwash:837 +#: PortMaster/pugwash:838 msgid "** NO PORT **" msgstr "** SEM JOGO **" -#: PortMaster/pugwash:855 PortMaster/pylibs/pugscene.py:1533 +#: PortMaster/pugwash:857 PortMaster/pylibs/pugscene.py:1650 msgid "Ready to Run" msgstr "Pronto para executar" -#: PortMaster/pugwash:855 +#: PortMaster/pugwash:857 msgid "Requires Files" msgstr "Arquivos necessários" -#: PortMaster/pugwash:862 PortMaster/pugwash:889 -#: PortMaster/pylibs/pugscene.py:757 +#: PortMaster/pugwash:864 PortMaster/pugwash:891 +#: PortMaster/pylibs/pugscene.py:784 msgid "Installed" msgstr "Instalado" -#: PortMaster/pugwash:864 +#: PortMaster/pugwash:866 msgid "Missing" msgstr "Faltando" -#: PortMaster/pugwash:890 PortMaster/pylibs/harbourmaster/harbour.py:1377 -#: PortMaster/pylibs/pugscene.py:1535 +#: PortMaster/pugwash:892 PortMaster/pylibs/harbourmaster/harbour.py:1377 +#: PortMaster/pylibs/pugscene.py:1652 msgid "Update Available" msgstr "Atualização disponível" -#: PortMaster/pugwash:891 PortMaster/pylibs/harbourmaster/harbour.py:1376 -#: PortMaster/pylibs/pugscene.py:757 PortMaster/pylibs/pugscene.py:1534 +#: PortMaster/pugwash:893 PortMaster/pylibs/harbourmaster/harbour.py:1376 +#: PortMaster/pylibs/pugscene.py:784 PortMaster/pylibs/pugscene.py:1651 msgid "Not Installed" msgstr "Não instalado" -#: PortMaster/pugwash:1064 PortMaster/pugwash:1384 -#: PortMaster/pylibs/pugscene.py:1832 PortMaster/pylibs/pugscene.py:1880 -#: PortMaster/pylibs/pugscene.py:1882 +#: PortMaster/pugwash:1069 PortMaster/pugwash:1389 +#: PortMaster/pylibs/pugscene.py:1949 PortMaster/pylibs/pugscene.py:1997 +#: PortMaster/pylibs/pugscene.py:1999 msgid "Okay" msgstr "Ok" -#: PortMaster/pugwash:1067 PortMaster/pugwash:1385 -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 -#: PortMaster/pylibs/pugscene.py:1801 PortMaster/pylibs/pugscene.py:1835 -#: PortMaster/pylibs/pugscene.py:1880 +#: PortMaster/pugwash:1072 PortMaster/pugwash:1390 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 +#: PortMaster/pylibs/pugscene.py:1918 PortMaster/pylibs/pugscene.py:1952 +#: PortMaster/pylibs/pugscene.py:1997 msgid "Cancel" msgstr "Cancelar" -#: PortMaster/pugwash:1290 +#: PortMaster/pugwash:1295 #, python-brace-format msgid "Installing {port_name}" msgstr "Instalando {port_name}" -#: PortMaster/pugwash:1299 +#: PortMaster/pugwash:1304 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "Desinstalando {port_name}" -#: PortMaster/pugwash:1310 +#: PortMaster/pugwash:1315 msgid "Updating all port sources:" msgstr "Atualizando todas as fontes de jogos:" -#: PortMaster/pugwash:1320 +#: PortMaster/pugwash:1325 #, python-brace-format msgid "Checking {runtime_name}" msgstr "Verificando {runtime_name}" -#: PortMaster/pugwash:1724 +#: PortMaster/pugwash:1729 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to downgrade?" msgstr "Você está trocando da versão {old_release_channel} para a versão {new_release_channel}.\n\n" "Você quer fazer o downgrade?" -#: PortMaster/pugwash:1730 +#: PortMaster/pugwash:1735 #, python-brace-format msgid "There is a new version of PortMaster ({portmaster_version})\n\n" "Do you want to upgrade?" msgstr "Há uma nova versão de Portmaster ({portmaster_version})\n\n" "Você quer atualizar?" -#: PortMaster/pugwash:1735 +#: PortMaster/pugwash:1740 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." msgstr "Você quer reinstalar PortMaster?\n\n" "Isso irá reinstalar do canal {release_channel} para {portmaster_version}." -#: PortMaster/pugwash:1762 +#: PortMaster/pugwash:1767 msgid "No network connection available." msgstr "Nenhuma conexão de rede disponível." @@ -386,7 +386,7 @@ msgstr "Sucesso!" #: PortMaster/pylibs/harbourmaster/source.py:284 #: PortMaster/pylibs/harbourmaster/source.py:448 -#: PortMaster/pylibs/pugtheme.py:360 +#: PortMaster/pylibs/pugtheme.py:364 msgid "Fetching info" msgstr "Buscando informação" @@ -439,513 +439,510 @@ msgstr "Passou validação de arquivo." msgid "Unable to validate download." msgstr "Incapaz de validar download." -#: PortMaster/pylibs/pugscene.py:336 +#: PortMaster/pylibs/pugscene.py:363 msgid "Main Menu" msgstr "Menu Principal" -#: PortMaster/pylibs/pugscene.py:343 PortMaster/pylibs/pugscene.py:1137 +#: PortMaster/pylibs/pugscene.py:370 PortMaster/pylibs/pugscene.py:1164 msgid "Featured Ports" msgstr "Jogos em Destaque" -#: PortMaster/pylibs/pugscene.py:344 +#: PortMaster/pylibs/pugscene.py:371 msgid "Hand curated lists of ports" msgstr "Listas de jogos curadas" -#: PortMaster/pylibs/pugscene.py:347 +#: PortMaster/pylibs/pugscene.py:374 msgid "All Ports" msgstr "Todos os Jogos" -#: PortMaster/pylibs/pugscene.py:348 +#: PortMaster/pylibs/pugscene.py:375 msgid "List all ports available on PortMaster." msgstr "Listar todos os jogos disponíveis em PortMaster." -#: PortMaster/pylibs/pugscene.py:351 +#: PortMaster/pylibs/pugscene.py:378 msgid "Ready to Run Ports" msgstr "Jogos Pronto para Rodar" -#: PortMaster/pylibs/pugscene.py:352 +#: PortMaster/pylibs/pugscene.py:379 msgid "List all ports that are ready to play!" msgstr "Listar todos os jogos que estão prontos para jogar!" -#: PortMaster/pylibs/pugscene.py:355 +#: PortMaster/pylibs/pugscene.py:382 msgid "Manage Ports" msgstr "Gerenciar jogos" -#: PortMaster/pylibs/pugscene.py:356 +#: PortMaster/pylibs/pugscene.py:383 msgid "Update / Uninstall Ports" msgstr "Atualizar / desinstalar Jogos" -#: PortMaster/pylibs/pugscene.py:361 +#: PortMaster/pylibs/pugscene.py:388 msgid "Options" msgstr "Opções" -#: PortMaster/pylibs/pugscene.py:362 +#: PortMaster/pylibs/pugscene.py:389 msgid "PortMaster Options" msgstr "Opções do PortMaster" -#: PortMaster/pylibs/pugscene.py:365 +#: PortMaster/pylibs/pugscene.py:392 msgid "Exit" msgstr "Sair" -#: PortMaster/pylibs/pugscene.py:366 +#: PortMaster/pylibs/pugscene.py:393 msgid "Quit PortMaster" msgstr "Sair do PortMaster" -#: PortMaster/pylibs/pugscene.py:368 PortMaster/pylibs/pugscene.py:509 -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:395 PortMaster/pylibs/pugscene.py:536 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 msgid "Enter" msgstr "Entrar" -#: PortMaster/pylibs/pugscene.py:368 +#: PortMaster/pylibs/pugscene.py:395 msgid "Quit" msgstr "Sair" -#: PortMaster/pylibs/pugscene.py:382 +#: PortMaster/pylibs/pugscene.py:409 #, python-brace-format msgid "Secret Mode {secret_mode}" msgstr "Modo Secreto {secret_mode}" -#: PortMaster/pylibs/pugscene.py:383 PortMaster/pylibs/pugscene.py:470 -#: PortMaster/pylibs/pugscene.py:474 PortMaster/pylibs/pugscene.py:575 -#: PortMaster/pylibs/pugscene.py:584 +#: PortMaster/pylibs/pugscene.py:410 PortMaster/pylibs/pugscene.py:497 +#: PortMaster/pylibs/pugscene.py:501 PortMaster/pylibs/pugscene.py:602 +#: PortMaster/pylibs/pugscene.py:611 msgid "Enabled" msgstr "Ativado" -#: PortMaster/pylibs/pugscene.py:383 PortMaster/pylibs/pugscene.py:470 -#: PortMaster/pylibs/pugscene.py:474 PortMaster/pylibs/pugscene.py:575 -#: PortMaster/pylibs/pugscene.py:584 +#: PortMaster/pylibs/pugscene.py:410 PortMaster/pylibs/pugscene.py:497 +#: PortMaster/pylibs/pugscene.py:501 PortMaster/pylibs/pugscene.py:602 +#: PortMaster/pylibs/pugscene.py:611 msgid "Disabled" msgstr "Desativado" -#: PortMaster/pylibs/pugscene.py:421 +#: PortMaster/pylibs/pugscene.py:448 msgid "Are you sure you want to exit PortMaster?" msgstr "" -#: PortMaster/pylibs/pugscene.py:431 +#: PortMaster/pylibs/pugscene.py:458 msgid "Options Menu" msgstr "Menu de Opções" -#: PortMaster/pylibs/pugscene.py:436 +#: PortMaster/pylibs/pugscene.py:463 msgid "System" msgstr "Sistema" -#: PortMaster/pylibs/pugscene.py:440 PortMaster/pylibs/pugscene.py:684 +#: PortMaster/pylibs/pugscene.py:467 PortMaster/pylibs/pugscene.py:711 msgid "Runtime Manager" msgstr "Gerenciador de Tempos de Execução" -#: PortMaster/pylibs/pugscene.py:441 +#: PortMaster/pylibs/pugscene.py:468 msgid "Manage port runtimes." msgstr "Gerenciar tempos de execução dos jogos." -#: PortMaster/pylibs/pugscene.py:445 +#: PortMaster/pylibs/pugscene.py:472 msgid "Update Ports" msgstr "Atualizar Jogos" -#: PortMaster/pylibs/pugscene.py:446 +#: PortMaster/pylibs/pugscene.py:473 msgid "Update all ports and associated information" msgstr "Atualizar todos os jogos e informações associadas" -#: PortMaster/pylibs/pugscene.py:450 +#: PortMaster/pylibs/pugscene.py:477 msgid "Update PortMaster" msgstr "Atualizar PortMaster" -#: PortMaster/pylibs/pugscene.py:451 +#: PortMaster/pylibs/pugscene.py:478 msgid "Force check for a new PortMaster version." msgstr "Forçar verificação para uma nova versão de PortMaster." -#: PortMaster/pylibs/pugscene.py:455 +#: PortMaster/pylibs/pugscene.py:482 #, python-brace-format msgid "Release Channel: {channel}" msgstr "" -#: PortMaster/pylibs/pugscene.py:457 +#: PortMaster/pylibs/pugscene.py:484 msgid "Change release channel of PortMaster, either beta or stable." msgstr "" -#: PortMaster/pylibs/pugscene.py:463 PortMaster/pylibs/pugscene.py:602 +#: PortMaster/pylibs/pugscene.py:490 PortMaster/pylibs/pugscene.py:629 #, python-brace-format msgid "Controller Mode: {controller_mode}" msgstr "Modo de controle: {controller_mode}" -#: PortMaster/pylibs/pugscene.py:464 +#: PortMaster/pylibs/pugscene.py:491 msgid "Toggle between various controller layouts." msgstr "Alternar entre diferentes disposições de controle." -#: PortMaster/pylibs/pugscene.py:466 +#: PortMaster/pylibs/pugscene.py:493 msgid "Audio" msgstr "Áudio" -#: PortMaster/pylibs/pugscene.py:470 PortMaster/pylibs/pugscene.py:575 +#: PortMaster/pylibs/pugscene.py:497 PortMaster/pylibs/pugscene.py:602 msgid "Music: " msgstr "Música: " -#: PortMaster/pylibs/pugscene.py:471 +#: PortMaster/pylibs/pugscene.py:498 msgid "Enable or Disable background music in PortMaster." msgstr "Ativar ou Desativar música de fundo em PortMaster." -#: PortMaster/pylibs/pugscene.py:474 PortMaster/pylibs/pugscene.py:584 +#: PortMaster/pylibs/pugscene.py:501 PortMaster/pylibs/pugscene.py:611 msgid "Sound FX: " msgstr "Efeitos Sonoros: " -#: PortMaster/pylibs/pugscene.py:475 +#: PortMaster/pylibs/pugscene.py:502 msgid "Enable or Disable soundfx in PortMaster." msgstr "Ativar ou Desativar efeitos sonoros em PortMaster." -#: PortMaster/pylibs/pugscene.py:477 +#: PortMaster/pylibs/pugscene.py:504 msgid "Interface" msgstr "Interface" -#: PortMaster/pylibs/pugscene.py:481 +#: PortMaster/pylibs/pugscene.py:508 msgid "Choose Language" msgstr "Escolher Idioma" -#: PortMaster/pylibs/pugscene.py:482 +#: PortMaster/pylibs/pugscene.py:509 msgid "Select the language PortMaster uses." msgstr "Selecione o idioma que PortMaster usa." -#: PortMaster/pylibs/pugscene.py:485 PortMaster/pylibs/pugscene.py:850 +#: PortMaster/pylibs/pugscene.py:512 PortMaster/pylibs/pugscene.py:877 msgid "Select Theme" msgstr "Selecionar Tema" -#: PortMaster/pylibs/pugscene.py:486 +#: PortMaster/pylibs/pugscene.py:513 msgid "Select a theme for PortMaster." msgstr "Selecione um tema para PortMaster." -#: PortMaster/pylibs/pugscene.py:492 +#: PortMaster/pylibs/pugscene.py:519 msgid "Select Color Scheme" msgstr "Selecionar Esquema de Cores" -#: PortMaster/pylibs/pugscene.py:493 +#: PortMaster/pylibs/pugscene.py:520 msgid "Select a colour scheme for PortMaster" msgstr "Selecionar um esquema de cores para PortMaster" -#: PortMaster/pylibs/pugscene.py:496 +#: PortMaster/pylibs/pugscene.py:523 msgid "Secret Options" msgstr "Opções Secretas" -#: PortMaster/pylibs/pugscene.py:499 +#: PortMaster/pylibs/pugscene.py:526 msgid "Delete PortMaster Config" msgstr "Deletar Configuração de PortMaster" -#: PortMaster/pylibs/pugscene.py:500 PortMaster/pylibs/pugscene.py:504 +#: PortMaster/pylibs/pugscene.py:527 PortMaster/pylibs/pugscene.py:531 msgid "This can break stuff, don't touch unless you know what you are doing." msgstr "Isso pode quebrar coisas, não toque a não ser que você saiba o que está fazendo." -#: PortMaster/pylibs/pugscene.py:503 +#: PortMaster/pylibs/pugscene.py:530 msgid "Delete PortMaster Runtimes" msgstr "Deletar Tempos de Execução de PortMaster" -#: PortMaster/pylibs/pugscene.py:509 PortMaster/pylibs/pugscene.py:773 -#: PortMaster/pylibs/pugscene.py:776 PortMaster/pylibs/pugscene.py:884 -#: PortMaster/pylibs/pugscene.py:966 PortMaster/pylibs/pugscene.py:967 -#: PortMaster/pylibs/pugscene.py:1020 PortMaster/pylibs/pugscene.py:1021 -#: PortMaster/pylibs/pugscene.py:1148 PortMaster/pylibs/pugscene.py:1348 -#: PortMaster/pylibs/pugscene.py:1372 PortMaster/pylibs/pugscene.py:1374 -#: PortMaster/pylibs/pugscene.py:1385 PortMaster/pylibs/pugscene.py:1387 -#: PortMaster/pylibs/pugscene.py:1420 PortMaster/pylibs/pugscene.py:1422 +#: PortMaster/pylibs/pugscene.py:536 PortMaster/pylibs/pugscene.py:800 +#: PortMaster/pylibs/pugscene.py:803 PortMaster/pylibs/pugscene.py:911 +#: PortMaster/pylibs/pugscene.py:993 PortMaster/pylibs/pugscene.py:994 +#: PortMaster/pylibs/pugscene.py:1047 PortMaster/pylibs/pugscene.py:1048 +#: PortMaster/pylibs/pugscene.py:1175 PortMaster/pylibs/pugscene.py:1402 +#: PortMaster/pylibs/pugscene.py:1426 PortMaster/pylibs/pugscene.py:1428 +#: PortMaster/pylibs/pugscene.py:1455 PortMaster/pylibs/pugscene.py:1458 +#: PortMaster/pylibs/pugscene.py:1533 PortMaster/pylibs/pugscene.py:1535 msgid "Back" msgstr "Voltar" -#: PortMaster/pylibs/pugscene.py:551 +#: PortMaster/pylibs/pugscene.py:578 #, python-brace-format msgid "Are you sure you want to change the release channel from {current_channel} to {new_channel}?\n\n" "PortMaster will upgrade or downgrade accordingly." msgstr "" -#: PortMaster/pylibs/pugscene.py:651 +#: PortMaster/pylibs/pugscene.py:678 msgid "Deleting Runtimes:" msgstr "Deletando Tempos de Execução:" -#: PortMaster/pylibs/pugscene.py:676 +#: PortMaster/pylibs/pugscene.py:703 msgid "Source Manager" msgstr "Gerenciador de Fontes" -#: PortMaster/pylibs/pugscene.py:713 +#: PortMaster/pylibs/pugscene.py:740 msgid "Download All" msgstr "Baixar Tudo" -#: PortMaster/pylibs/pugscene.py:758 +#: PortMaster/pylibs/pugscene.py:785 msgid "Used" msgstr "Usado" -#: PortMaster/pylibs/pugscene.py:758 +#: PortMaster/pylibs/pugscene.py:785 msgid "Not Used" msgstr "Não usado" -#: PortMaster/pylibs/pugscene.py:773 +#: PortMaster/pylibs/pugscene.py:800 msgid "Check" msgstr "Verificar" -#: PortMaster/pylibs/pugscene.py:773 PortMaster/pylibs/pugscene.py:1385 -#: PortMaster/pylibs/pugscene.py:1420 +#: PortMaster/pylibs/pugscene.py:800 PortMaster/pylibs/pugscene.py:1455 +#: PortMaster/pylibs/pugscene.py:1533 msgid "Uninstall" msgstr "Desinstalar" -#: PortMaster/pylibs/pugscene.py:776 PortMaster/pylibs/pugscene.py:1387 -#: PortMaster/pylibs/pugscene.py:1422 +#: PortMaster/pylibs/pugscene.py:803 PortMaster/pylibs/pugscene.py:1458 +#: PortMaster/pylibs/pugscene.py:1535 msgid "Install" msgstr "Instalar" -#: PortMaster/pylibs/pugscene.py:791 +#: PortMaster/pylibs/pugscene.py:818 msgid "Are you sure you want to download and verify all runtimes?" msgstr "Você tem certeza que quer baixar e verificar todos os tempos de execução?" -#: PortMaster/pylibs/pugscene.py:833 +#: PortMaster/pylibs/pugscene.py:860 #, python-brace-format msgid "Deleted runtime {runtime}" msgstr "Tempo de execução {runtime} deletado" -#: PortMaster/pylibs/pugscene.py:868 +#: PortMaster/pylibs/pugscene.py:895 #, python-brace-format msgid "{theme_name} (Selected)" msgstr "{theme_name} (Selecionado)" -#: PortMaster/pylibs/pugscene.py:882 PortMaster/pylibs/pugscene.py:967 -#: PortMaster/pylibs/pugscene.py:1021 PortMaster/pylibs/pugscene.py:1085 -#: PortMaster/pylibs/pugscene.py:1093 PortMaster/pylibs/pugscene.py:1148 +#: PortMaster/pylibs/pugscene.py:909 PortMaster/pylibs/pugscene.py:994 +#: PortMaster/pylibs/pugscene.py:1048 PortMaster/pylibs/pugscene.py:1112 +#: PortMaster/pylibs/pugscene.py:1120 PortMaster/pylibs/pugscene.py:1175 msgid "Select" msgstr "Selecionar" -#: PortMaster/pylibs/pugscene.py:887 +#: PortMaster/pylibs/pugscene.py:914 msgid "Download" msgstr "Baixar" -#: PortMaster/pylibs/pugscene.py:906 +#: PortMaster/pylibs/pugscene.py:933 msgid "Do you want to change theme?\n\n" "You will have to restart for it to take affect." msgstr "Você quer trocar de tema?\n\n" "Você terá que reiniciar para trocar o tema." -#: PortMaster/pylibs/pugscene.py:947 +#: PortMaster/pylibs/pugscene.py:974 msgid "Select Colour Scheme" msgstr "Selecionar Esquema de Cores" -#: PortMaster/pylibs/pugscene.py:961 +#: PortMaster/pylibs/pugscene.py:988 #, python-brace-format msgid "{item_name} (Selected)" msgstr "{item_name} (Selecionado)" -#: PortMaster/pylibs/pugscene.py:984 +#: PortMaster/pylibs/pugscene.py:1011 msgid "Do you want to change the themes color scheme?\n\n" "You will have to restart for it to take affect." msgstr "Você quer trocar o esquema de cores do tema?\n\n" "Você terá que reiniciar para trocar as cores." -#: PortMaster/pylibs/pugscene.py:1005 +#: PortMaster/pylibs/pugscene.py:1032 msgid "Language Select" msgstr "Seleção de Idioma" -#: PortMaster/pylibs/pugscene.py:1015 +#: PortMaster/pylibs/pugscene.py:1042 #, python-brace-format msgid "{lang_name} (Selected)" msgstr "{lang_name} (Selecionado)" -#: PortMaster/pylibs/pugscene.py:1038 +#: PortMaster/pylibs/pugscene.py:1065 msgid "Do you want to change language?\n\n" "You will have to restart for it to take affect." msgstr "Você quer trocar de idioma?\n\n" "Você terá que reiniciar para trocar o idioma." -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 msgid "Delete" msgstr "Apagar" -#: PortMaster/pylibs/pugscene.py:1085 +#: PortMaster/pylibs/pugscene.py:1112 msgid "Upper Case" msgstr "Letra maiúscula" -#: PortMaster/pylibs/pugscene.py:1085 PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:1112 PortMaster/pylibs/pugscene.py:1120 msgid "Space" msgstr "Espaço" -#: PortMaster/pylibs/pugscene.py:1093 +#: PortMaster/pylibs/pugscene.py:1120 msgid "Lower Case" msgstr "Letra minúscula" -#: PortMaster/pylibs/pugscene.py:1185 PortMaster/pylibs/pugscene.py:1208 +#: PortMaster/pylibs/pugscene.py:1212 PortMaster/pylibs/pugscene.py:1235 msgid "NO PORTS" msgstr "SEM JOGOS" -#: PortMaster/pylibs/pugscene.py:1189 PortMaster/pylibs/pugscene.py:1215 +#: PortMaster/pylibs/pugscene.py:1216 PortMaster/pylibs/pugscene.py:1242 msgid "** NO PORTS FOUND **" msgstr "** NENHUM JOGO ENCONTRADO **" -#: PortMaster/pylibs/pugscene.py:1191 PortMaster/pylibs/pugscene.py:1218 +#: PortMaster/pylibs/pugscene.py:1218 PortMaster/pylibs/pugscene.py:1245 msgid "Download ports first." msgstr "Baixe jogos primeiro." -#: PortMaster/pylibs/pugscene.py:1220 +#: PortMaster/pylibs/pugscene.py:1247 msgid "Try removing some filters." msgstr "Tente remover alguns filtros." -#: PortMaster/pylibs/pugscene.py:1348 PortMaster/pylibs/pugscene.py:1372 -#: PortMaster/pylibs/pugscene.py:1374 +#: PortMaster/pylibs/pugscene.py:1402 PortMaster/pylibs/pugscene.py:1426 +#: PortMaster/pylibs/pugscene.py:1428 PortMaster/pylibs/pugscene.py:1513 +#: PortMaster/pylibs/pugscene.py:1518 msgid "Show Info" msgstr "Mostrar informação" -#: PortMaster/pylibs/pugscene.py:1353 +#: PortMaster/pylibs/pugscene.py:1407 msgid "Ports List" msgstr "Lista de Jogos" -#: PortMaster/pylibs/pugscene.py:1372 +#: PortMaster/pylibs/pugscene.py:1426 msgid "Filters" msgstr "Filtros" -#: PortMaster/pylibs/pugscene.py:1380 +#: PortMaster/pylibs/pugscene.py:1434 msgid "Port Info Popup" msgstr "" -#: PortMaster/pylibs/pugscene.py:1385 PortMaster/pylibs/pugscene.py:1387 -msgid "Hide Information" +#: PortMaster/pylibs/pugscene.py:1445 PortMaster/pylibs/pugscene.py:1448 +msgid "Hide Info" msgstr "" -#: PortMaster/pylibs/pugscene.py:1385 PortMaster/pylibs/pugscene.py:1420 +#: PortMaster/pylibs/pugscene.py:1455 PortMaster/pylibs/pugscene.py:1533 msgid "Reinstall" msgstr "Reinstalar" -#: PortMaster/pylibs/pugscene.py:1406 +#: PortMaster/pylibs/pugscene.py:1482 msgid "Port Info" msgstr "Informações de Jogo" -#: PortMaster/pylibs/pugscene.py:1417 -msgid "Show Information" -msgstr "" - -#: PortMaster/pylibs/pugscene.py:1457 +#: PortMaster/pylibs/pugscene.py:1555 #, python-brace-format msgid "Are you sure you want to uninstall {port_name}?" msgstr "Você tem certeza que quer desinstalar {port_name}?" -#: PortMaster/pylibs/pugscene.py:1482 +#: PortMaster/pylibs/pugscene.py:1599 msgid "Filters Scene" msgstr "Cena de Filtros" -#: PortMaster/pylibs/pugscene.py:1511 +#: PortMaster/pylibs/pugscene.py:1628 msgid "Alphabetical" msgstr "Alfabético" -#: PortMaster/pylibs/pugscene.py:1512 +#: PortMaster/pylibs/pugscene.py:1629 msgid "Recently Added" msgstr "Adicionado Recentemente" -#: PortMaster/pylibs/pugscene.py:1513 +#: PortMaster/pylibs/pugscene.py:1630 msgid "Recently Updated" msgstr "Atualizado Recentemente" -#: PortMaster/pylibs/pugscene.py:1516 +#: PortMaster/pylibs/pugscene.py:1633 msgid "Action" msgstr "Ação" -#: PortMaster/pylibs/pugscene.py:1517 +#: PortMaster/pylibs/pugscene.py:1634 msgid "Adventure" msgstr "Aventura" -#: PortMaster/pylibs/pugscene.py:1518 +#: PortMaster/pylibs/pugscene.py:1635 msgid "Arcade" msgstr "Arcade" -#: PortMaster/pylibs/pugscene.py:1519 +#: PortMaster/pylibs/pugscene.py:1636 msgid "Casino/Card" msgstr "Cassino/Cartas" -#: PortMaster/pylibs/pugscene.py:1520 +#: PortMaster/pylibs/pugscene.py:1637 msgid "First Person Shooter" msgstr "FPS (Tiro em primeira pessoa)" -#: PortMaster/pylibs/pugscene.py:1521 +#: PortMaster/pylibs/pugscene.py:1638 msgid "Platformer" msgstr "Plataforma" -#: PortMaster/pylibs/pugscene.py:1522 +#: PortMaster/pylibs/pugscene.py:1639 msgid "Puzzle" msgstr "Quebra-cabeça" -#: PortMaster/pylibs/pugscene.py:1523 +#: PortMaster/pylibs/pugscene.py:1640 msgid "Racing" msgstr "Corrida" -#: PortMaster/pylibs/pugscene.py:1524 +#: PortMaster/pylibs/pugscene.py:1641 msgid "Rhythm" msgstr "Ritmo" -#: PortMaster/pylibs/pugscene.py:1525 +#: PortMaster/pylibs/pugscene.py:1642 msgid "Role Playing Game" msgstr "RPG (Role Playing Game)" -#: PortMaster/pylibs/pugscene.py:1526 +#: PortMaster/pylibs/pugscene.py:1643 msgid "Simulation" msgstr "Simulação" -#: PortMaster/pylibs/pugscene.py:1527 +#: PortMaster/pylibs/pugscene.py:1644 msgid "Sports" msgstr "Esportes" -#: PortMaster/pylibs/pugscene.py:1528 +#: PortMaster/pylibs/pugscene.py:1645 msgid "Strategy" msgstr "Estratégia" -#: PortMaster/pylibs/pugscene.py:1529 +#: PortMaster/pylibs/pugscene.py:1646 msgid "Visual Novel" msgstr "Visual Novel (Romance Visual)" -#: PortMaster/pylibs/pugscene.py:1530 +#: PortMaster/pylibs/pugscene.py:1647 msgid "Other" msgstr "Outros" -#: PortMaster/pylibs/pugscene.py:1536 +#: PortMaster/pylibs/pugscene.py:1653 msgid "Broken Ports" msgstr "Jogos Quebrados" -#: PortMaster/pylibs/pugscene.py:1539 +#: PortMaster/pylibs/pugscene.py:1656 msgid "Free game, all files included." msgstr "" -#: PortMaster/pylibs/pugscene.py:1540 +#: PortMaster/pylibs/pugscene.py:1657 msgid "Demo files included." msgstr "" -#: PortMaster/pylibs/pugscene.py:1541 +#: PortMaster/pylibs/pugscene.py:1658 msgid "Free external assets needed." msgstr "" -#: PortMaster/pylibs/pugscene.py:1542 +#: PortMaster/pylibs/pugscene.py:1659 msgid "Paid external assets needed." msgstr "" -#: PortMaster/pylibs/pugscene.py:1545 PortMaster/pylibs/pugscene.py:1546 +#: PortMaster/pylibs/pugscene.py:1662 PortMaster/pylibs/pugscene.py:1663 #, python-brace-format msgid "{runtime_name} Runtime" msgstr "Tempo de execução {runtime_name}" -#: PortMaster/pylibs/pugscene.py:1590 +#: PortMaster/pylibs/pugscene.py:1707 msgid "Sort:" msgstr "Organizar:" -#: PortMaster/pylibs/pugscene.py:1605 +#: PortMaster/pylibs/pugscene.py:1722 msgid "Clear Filters" msgstr "Remover Filtros" -#: PortMaster/pylibs/pugscene.py:1629 +#: PortMaster/pylibs/pugscene.py:1746 msgid "Genres:" msgstr "Gêneros:" -#: PortMaster/pylibs/pugscene.py:1659 +#: PortMaster/pylibs/pugscene.py:1776 msgid "Attributes:" msgstr "Atributos:" -#: PortMaster/pylibs/pugscene.py:1688 +#: PortMaster/pylibs/pugscene.py:1805 msgid "Availability:" msgstr "" -#: PortMaster/pylibs/pugscene.py:1717 +#: PortMaster/pylibs/pugscene.py:1834 msgid "Porters:" msgstr "Porters:" -#: PortMaster/pylibs/pugscene.py:1785 +#: PortMaster/pylibs/pugscene.py:1902 msgid "Messages" msgstr "Mensagens" -#: PortMaster/pylibs/pugscene.py:1820 +#: PortMaster/pylibs/pugscene.py:1937 msgid "Are you sure you want to cancel?" msgstr "Tem certeza de que quer cancelar?" diff --git a/PortMaster/pylibs/pugscene.py b/PortMaster/pylibs/pugscene.py index 7bb63ba..8cc7b41 100644 --- a/PortMaster/pylibs/pugscene.py +++ b/PortMaster/pylibs/pugscene.py @@ -224,6 +224,19 @@ def load_regions(self, section, required_tags): self.regions.sort(key=lambda x: (x.z_index, x.z_position)) + if "buttons" in self.config: + if "A" in self.config["buttons"]: + del self.config["buttons"]["A"] + + if "B" in self.config["buttons"]: + del self.config["buttons"]["B"] + + if "X" in self.config["buttons"]: + del self.config["buttons"]["X"] + + if "Y" in self.config["buttons"]: + del self.config["buttons"]["Y"] + def update_data(self, keys): regions = set() @@ -326,6 +339,9 @@ def button_back(self): self.gui.sounds.play(self.tags['button_bar'].button_sound_alt, volume=self.tags['button_bar'].button_sound_alt_volume) def config_buttons(self, events): + if "buttons" not in self.config: + return + for button, action in self.config.get("buttons", {}).items(): if events.was_pressed(button): yield action