From 50bbb124f6945d649ffb04b1b21ab19670a36ef3 Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Wed, 28 Jun 2023 15:50:11 -0700 Subject: [PATCH 1/5] Add backspace as keyboard shortcut for delete This makes Edit > Delete triggered when the user types a Control-Backspace on Windows/Linux or Command-Delete on macos in the memory editor. --- chirp/wxui/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/chirp/wxui/main.py b/chirp/wxui/main.py index 719fafd2c..bed3ec77d 100644 --- a/chirp/wxui/main.py +++ b/chirp/wxui/main.py @@ -716,6 +716,7 @@ def make_menubar(self): self.Bind(wx.EVT_MENU, self._menu_selall, selall_item) delete_item = edit_menu.Append(wx.ID_DELETE) + delete_item.SetAccel(wx.AcceleratorEntry(wx.MOD_CONTROL, wx.WXK_BACK)) self.Bind(wx.EVT_MENU, self._menu_delete, delete_item) edit_menu.Append(wx.MenuItem(edit_menu, wx.ID_SEPARATOR)) From 110e33cbc3a1a441dd51316cc1cc1c67e11cbf9f Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Wed, 28 Jun 2023 14:53:15 -0700 Subject: [PATCH 2/5] Allow overriding stock_configs directory Fixes: #10688 --- chirp/wxui/main.py | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/chirp/wxui/main.py b/chirp/wxui/main.py index bed3ec77d..7afea44fe 100644 --- a/chirp/wxui/main.py +++ b/chirp/wxui/main.py @@ -68,6 +68,13 @@ ALL_MAIN_WINDOWS = [] +def get_stock_configs(): + default_dir = chirp_platform.get_platform().config_file( + "stock_configs") + prefs_dir = CONF.get('stock_configs', 'prefs') + return prefs_dir or default_dir + + class ChirpDropTarget(wx.DropTarget): def __init__(self, chirpmain): super().__init__() @@ -566,8 +573,7 @@ def add_stock_menu(self): stock = wx.Menu() try: - user_stock_dir = chirp_platform.get_platform().config_file( - "stock_configs") + user_stock_dir = get_stock_configs() user_stock_confs = sorted(os.listdir(user_stock_dir)) except FileNotFoundError: user_stock_confs = [] @@ -953,7 +959,7 @@ def adj_menu_open_recent(self, filename): return # Don't add stock config files to the recent files list - stock_dir = chirp_platform.get_platform().config_file("stock_configs") + stock_dir = get_stock_configs() this_dir = os.path.dirname(filename) if (stock_dir and os.path.exists(stock_dir) and this_dir and os.path.samefile(stock_dir, this_dir)): @@ -1177,8 +1183,7 @@ def _menu_open_stock_config(self, event): fn = self.OPEN_STOCK_CONFIG_MENU.FindItemById( event.GetId()).GetItemLabelText() - user_stock_dir = chirp_platform.get_platform().config_file( - "stock_configs") + user_stock_dir = get_stock_configs() user_stock_conf = os.path.join(user_stock_dir, fn) with importlib_resources.as_file( importlib_resources.files('chirp.stock_configs') From a6b3e2db46c0ca08fefa2d33c235bb939582be23 Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Wed, 28 Jun 2023 15:48:03 -0700 Subject: [PATCH 3/5] Add menu option to open stock configs directory This makes it easier to find the directory, since it is hiddenish on all platforms, and can now be overridden. Related to #10688 --- chirp/wxui/common.py | 14 ++++++++++++++ chirp/wxui/main.py | 22 +++++++++++++++------- 2 files changed, 29 insertions(+), 7 deletions(-) diff --git a/chirp/wxui/common.py b/chirp/wxui/common.py index 94a8b1030..cd6c61f74 100644 --- a/chirp/wxui/common.py +++ b/chirp/wxui/common.py @@ -15,6 +15,8 @@ import functools import logging +import os +import platform import threading import wx @@ -555,3 +557,15 @@ def __exit__(self, exc_type, exc_val, traceback): LOG.exception('Context raised unexpected_exception', exc_info=(exc_type, exc_val, traceback)) self.show_error(exc_val) + + +def reveal_location(path): + if not os.path.isdir(path): + raise FileNotFoundError(_('Path %s does not exist') % path) + system = platform.system() + if system == 'Windows': + wx.Execute('explorer /select, %s' % path) + elif system == 'Darwin': + wx.Execute('open -R %s' % path) + else: + raise Exception(_('Unable to reveal %s on this system') % path) diff --git a/chirp/wxui/main.py b/chirp/wxui/main.py index 7afea44fe..b8293ffad 100644 --- a/chirp/wxui/main.py +++ b/chirp/wxui/main.py @@ -66,6 +66,7 @@ OPEN_STOCK_CONFIG_MENU = None CHIRP_TAB_DF = wx.DataFormat('x-chirp/file-tab') ALL_MAIN_WINDOWS = [] +REVEAL_STOCK_DIR = wx.NewId() def get_stock_configs(): @@ -577,6 +578,7 @@ def add_stock_menu(self): user_stock_confs = sorted(os.listdir(user_stock_dir)) except FileNotFoundError: user_stock_confs = [] + os.makedirs(user_stock_dir, exist_ok=True) dist_stock_confs = sorted( [ conf.name for conf @@ -597,6 +599,13 @@ def add_stock(fn): stock.Append(wx.MenuItem(stock, wx.ID_SEPARATOR)) + if sys.platform in ('darwin', 'win32'): + reveal = stock.Append(REVEAL_STOCK_DIR, + _('Open stock config directory')) + self.Bind(wx.EVT_MENU, self._menu_open_stock_config, reveal) + + stock.Append(wx.MenuItem(stock, wx.ID_SEPARATOR)) + for fn in dist_stock_confs: if os.path.basename(fn) not in found: add_stock(fn) @@ -1179,7 +1188,12 @@ def _menu_open(self, event): if filename is not None: self.open_file(filename) + @common.error_proof(FileNotFoundError) def _menu_open_stock_config(self, event): + if event.GetId() == REVEAL_STOCK_DIR: + common.reveal_location(get_stock_configs()) + return + fn = self.OPEN_STOCK_CONFIG_MENU.FindItemById( event.GetId()).GetItemLabelText() @@ -1608,13 +1622,7 @@ def _menu_debug_loc(self, event): prefix='chirp_debug-', suffix='.txt').name shutil.copy(src, dst) - system = platform.system() - if system == 'Windows': - wx.Execute('explorer /select, %s' % dst) - elif system == 'Darwin': - wx.Execute('open -R %s' % dst) - else: - raise Exception(_('Unable to reveal %s on this system') % dst) + common.reveal_location(dst) @common.error_proof() def _menu_load_from_issue(self, event): From 4caaf1a88ed8b6b3a66d39f1729c0aa369ce1da1 Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Wed, 28 Jun 2023 16:07:33 -0700 Subject: [PATCH 4/5] Clean up legacy stock config files CHIRP-legacy used to copy the distribution stock_configs into the user's directory, which was always messy. CHIRP-next stopped doing that, but many users still have these files there. Instead of ignoring distribution files if they're already in the user's directory (as was the previous behavior), try to clean them up. If they hash to the same value, assume they're the same and remove them. Related to #10688 --- chirp/wxui/main.py | 33 ++++++++++++++++++++++++++------- 1 file changed, 26 insertions(+), 7 deletions(-) diff --git a/chirp/wxui/main.py b/chirp/wxui/main.py index b8293ffad..b2b0a5a6b 100644 --- a/chirp/wxui/main.py +++ b/chirp/wxui/main.py @@ -581,7 +581,7 @@ def add_stock_menu(self): os.makedirs(user_stock_dir, exist_ok=True) dist_stock_confs = sorted( [ - conf.name for conf + (conf.name, hashlib.md5(conf.read_bytes())) for conf in importlib_resources.files('chirp.stock_configs').iterdir() if conf.is_file() ] @@ -606,12 +606,31 @@ def add_stock(fn): stock.Append(wx.MenuItem(stock, wx.ID_SEPARATOR)) - for fn in dist_stock_confs: - if os.path.basename(fn) not in found: - add_stock(fn) - else: - LOG.info('Ignoring dist stock conf %s because same name found ' - 'in user dir', os.path.basename(fn)) + for fn, hash in dist_stock_confs: + if os.path.basename(fn) in found: + # Remove old stock configs that were copied to the user's + # directory by legacy chirp. + try: + user_fn = os.path.join(get_stock_configs(), + os.path.basename(fn)) + with open(user_fn, 'rb') as f: + user_hash = hashlib.md5(f.read()) + if hash.digest() == user_hash.digest(): + LOG.info('Removing stale legacy stock config %s', + os.path.basename(fn)) + os.remove(user_fn) + # Since we already added it to the user area, just + # don't add it to system this time. At next startup, + # it will move to the system section. + continue + else: + raise FileExistsError('File is changed') + except Exception as e: + LOG.info('Ignoring dist stock conf %s because same name ' + 'found in user dir: %s', + os.path.basename(fn), e) + continue + add_stock(fn) return stock From 08529887fb2e00d0439de5d048769e231f7f143b Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Wed, 28 Jun 2023 16:31:56 -0700 Subject: [PATCH 5/5] Update locale for stock configs menu changes --- chirp/locale/de.po | 263 +++++++++++++++++++++-------------------- chirp/locale/el.po | 260 +++++++++++++++++++++-------------------- chirp/locale/en_US.po | 259 +++++++++++++++++++++-------------------- chirp/locale/es.po | 264 +++++++++++++++++++++--------------------- chirp/locale/fr.po | 263 +++++++++++++++++++++-------------------- chirp/locale/hu.po | 263 +++++++++++++++++++++-------------------- chirp/locale/it.po | 263 +++++++++++++++++++++-------------------- chirp/locale/nl.po | 263 +++++++++++++++++++++-------------------- chirp/locale/pl.po | 259 +++++++++++++++++++++-------------------- chirp/locale/pt_BR.po | 263 +++++++++++++++++++++-------------------- chirp/locale/ru.po | 263 +++++++++++++++++++++-------------------- chirp/locale/tr_TR.po | 260 +++++++++++++++++++++-------------------- chirp/locale/uk_UA.po | 263 +++++++++++++++++++++-------------------- chirp/locale/zh_CN.po | 264 +++++++++++++++++++++--------------------- 14 files changed, 1888 insertions(+), 1782 deletions(-) diff --git a/chirp/locale/de.po b/chirp/locale/de.po index 67aad085d..256f15069 100644 --- a/chirp/locale/de.po +++ b/chirp/locale/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: CHIRP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 18:46-0700\n" +"POT-Creation-Date: 2023-06-28 16:31-0700\n" "PO-Revision-Date: 2012-10-02 22:11+0100\n" "Last-Translator: Benjamin, HB9EUK \n" "Language-Team: German\n" @@ -50,7 +50,7 @@ msgstr "Löschen (und nach oben verschieben)" msgid "%i Memories and shift block up" msgstr "Löschen (und nach oben verschieben)" -#: ../wxui/main.py:1307 +#: ../wxui/main.py:1347 #, fuzzy, python-format msgid "%s has not been saved. Save before closing?" msgstr "Datei wurde geändert, speichern Sie die Änderungen vor dem Schliessen?" @@ -59,7 +59,7 @@ msgstr "Datei wurde geändert, speichern Sie die Änderungen vor dem Schliessen? msgid "(none)" msgstr "" -#: ../wxui/memedit.py:1787 +#: ../wxui/memedit.py:1791 #, python-format msgid "...and %i more" msgstr "" @@ -596,7 +596,7 @@ msgid "" " click Then" msgstr "" -#: ../drivers/uvk5.py:636 +#: ../drivers/uvk5.py:633 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -607,7 +607,7 @@ msgid "" "attached\n" msgstr "" -#: ../drivers/uvk5.py:643 +#: ../drivers/uvk5.py:640 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -617,17 +617,17 @@ msgid "" "It will may not work if you turn on the radio with the cable already attached" msgstr "" -#: ../wxui/main.py:1685 +#: ../wxui/main.py:1719 msgid "" "A new CHIRP version is available. Please visit the website as soon as " "possible to download it!" msgstr "" -#: ../wxui/main.py:859 +#: ../wxui/main.py:894 msgid "About" msgstr "" -#: ../wxui/main.py:1547 +#: ../wxui/main.py:1587 msgid "About CHIRP" msgstr "" @@ -635,12 +635,12 @@ msgstr "" msgid "All" msgstr "Alle" -#: ../wxui/main.py:1143 +#: ../wxui/main.py:1178 #, fuzzy msgid "All Files" msgstr "CSV Datei" -#: ../wxui/main.py:1154 +#: ../wxui/main.py:1189 msgid "All supported formats|" msgstr "" @@ -648,7 +648,7 @@ msgstr "" msgid "Amateur" msgstr "" -#: ../wxui/common.py:497 ../wxui/common.py:523 +#: ../wxui/common.py:499 ../wxui/common.py:525 msgid "An error has occurred" msgstr "Ein Fehler ist aufgetreten" @@ -660,7 +660,7 @@ msgstr "" msgid "Available modules" msgstr "" -#: ../wxui/main.py:1631 +#: ../wxui/main.py:1665 msgid "Bandplan" msgstr "" @@ -668,7 +668,7 @@ msgstr "" msgid "Bands" msgstr "" -#: ../wxui/main.py:204 +#: ../wxui/main.py:212 msgid "Banks" msgstr "Bank" @@ -676,7 +676,7 @@ msgstr "Bank" msgid "Bin" msgstr "" -#: ../wxui/main.py:215 +#: ../wxui/main.py:223 msgid "Browser" msgstr "" @@ -694,7 +694,7 @@ msgid "" "Channels with equivalent TX and RX %s are represented by tone mode of \"%s\"" msgstr "" -#: ../wxui/main.py:1142 +#: ../wxui/main.py:1177 msgid "Chirp Image Files" msgstr "" @@ -744,7 +744,7 @@ msgstr "" msgid "Clone completed, checking for spurious bytes" msgstr "" -#: ../wxui/common.py:108 +#: ../wxui/common.py:110 msgid "Cloning" msgstr "Klonen" @@ -758,11 +758,11 @@ msgstr "Download vom Gerät" msgid "Cloning to radio" msgstr "Upload zum Gerät" -#: ../wxui/main.py:937 +#: ../wxui/main.py:972 msgid "Close" msgstr "" -#: ../wxui/main.py:938 +#: ../wxui/main.py:973 msgid "Close file" msgstr "" @@ -822,11 +822,11 @@ msgid "" "Polarity" msgstr "DTCS Pol" -#: ../wxui/memedit.py:2040 +#: ../wxui/memedit.py:2044 msgid "DV Memory" msgstr "" -#: ../wxui/main.py:1561 +#: ../wxui/main.py:1601 msgid "Danger Ahead" msgstr "" @@ -839,12 +839,12 @@ msgstr "Erkennung" msgid "Delete" msgstr "Löschen" -#: ../wxui/main.py:864 +#: ../wxui/main.py:899 #, fuzzy msgid "Developer Mode" msgstr "Entwickler" -#: ../wxui/main.py:1567 +#: ../wxui/main.py:1607 #, python-format msgid "Developer state is now %s. CHIRP must be restarted to take effect" msgstr "" @@ -853,11 +853,11 @@ msgstr "" msgid "Diff Raw Memories" msgstr "Vergleiche Rohspeicher" -#: ../wxui/memedit.py:1965 +#: ../wxui/memedit.py:1969 msgid "Digital Code" msgstr "Digital Code" -#: ../wxui/main.py:1578 +#: ../wxui/main.py:1618 msgid "Disable reporting" msgstr "" @@ -879,16 +879,16 @@ msgstr "" msgid "Double-click to change bank name" msgstr "" -#: ../wxui/main.py:939 +#: ../wxui/main.py:974 msgid "Download" msgstr "" -#: ../wxui/main.py:776 ../wxui/main.py:940 +#: ../wxui/main.py:811 ../wxui/main.py:975 #, fuzzy msgid "Download from radio" msgstr "Download vom Gerät" -#: ../wxui/clone.py:512 +#: ../wxui/clone.py:513 #, fuzzy msgid "Download instructions" msgstr "Download vom Gerät" @@ -897,17 +897,17 @@ msgstr "Download vom Gerät" msgid "Duplex" msgstr "Duplex" -#: ../wxui/memedit.py:1995 +#: ../wxui/memedit.py:1999 #, python-format msgid "Edit details for %i memories" msgstr "" -#: ../wxui/memedit.py:1993 +#: ../wxui/memedit.py:1997 #, python-format msgid "Edit details for memory %i" msgstr "" -#: ../wxui/main.py:808 +#: ../wxui/main.py:843 msgid "Enable Automatic Edits" msgstr "" @@ -934,11 +934,11 @@ msgstr "" msgid "Enter a new name for bank %s:" msgstr "" -#: ../wxui/clone.py:405 +#: ../wxui/clone.py:406 msgid "Enter custom port:" msgstr "" -#: ../wxui/common.py:316 +#: ../wxui/common.py:318 #, fuzzy, python-format msgid "Erased memory %s" msgstr "Lösche Speicher {loc}" @@ -948,25 +948,25 @@ msgstr "Lösche Speicher {loc}" msgid "Error applying settings" msgstr "Fehler beim Setzen der Speicher" -#: ../wxui/clone.py:449 +#: ../wxui/clone.py:450 msgid "Error communicating with radio" msgstr "" -#: ../wxui/clone.py:480 +#: ../wxui/clone.py:481 #, fuzzy msgid "Experimental driver" msgstr "Weiter mit dem experimentellen Treiber?" -#: ../wxui/memedit.py:1925 +#: ../wxui/memedit.py:1929 msgid "Export can only write CSV files" msgstr "" -#: ../wxui/main.py:672 ../wxui/main.py:1292 +#: ../wxui/main.py:706 ../wxui/main.py:1332 #, fuzzy msgid "Export to CSV" msgstr "In Datei exportieren" -#: ../wxui/memedit.py:2029 +#: ../wxui/memedit.py:2033 msgid "Extra" msgstr "" @@ -978,13 +978,13 @@ msgstr "" msgid "Features" msgstr "" -#: ../wxui/main.py:534 +#: ../wxui/main.py:542 #, python-format msgid "File does not exist: %s" msgstr "" -#: ../wxui/main.py:1146 ../wxui/main.py:1223 ../wxui/main.py:1233 -#: ../wxui/main.py:1288 ../wxui/main.py:1513 ../wxui/main.py:1514 +#: ../wxui/main.py:1181 ../wxui/main.py:1262 ../wxui/main.py:1272 +#: ../wxui/main.py:1328 ../wxui/main.py:1553 ../wxui/main.py:1554 #, fuzzy msgid "Files" msgstr "_Datei" @@ -997,17 +997,17 @@ msgstr "" msgid "Filter results with location matching this string" msgstr "" -#: ../wxui/main.py:1362 +#: ../wxui/main.py:1402 #, fuzzy msgid "Find" msgstr "RFinder" -#: ../wxui/main.py:730 +#: ../wxui/main.py:765 #, fuzzy msgid "Find Next" msgstr "RFinder" -#: ../wxui/common.py:318 +#: ../wxui/common.py:320 #, python-format msgid "Finished radio job %s" msgstr "" @@ -1238,16 +1238,16 @@ msgstr "" msgid "If set, sort results by distance from these coordinates" msgstr "" -#: ../wxui/main.py:1278 +#: ../wxui/main.py:1318 msgid "Import" msgstr "Importieren" -#: ../wxui/main.py:666 +#: ../wxui/main.py:700 #, fuzzy msgid "Import from file" msgstr "Importieren von Datei" -#: ../wxui/main.py:1276 +#: ../wxui/main.py:1316 msgid "Import not recommended" msgstr "" @@ -1255,7 +1255,7 @@ msgstr "" msgid "Index" msgstr "Index" -#: ../wxui/main.py:217 +#: ../wxui/main.py:225 msgid "Info" msgstr "" @@ -1272,7 +1272,7 @@ msgstr "Zeile oben einfügen" msgid "Install desktop icon?" msgstr "" -#: ../wxui/main.py:848 +#: ../wxui/main.py:883 msgid "Interact with driver" msgstr "" @@ -1285,12 +1285,12 @@ msgstr "Ungültiger Wert. Muss eine ganze Zahl sein." msgid "Invalid ZIP code" msgstr "" -#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2120 +#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2124 #, python-format msgid "Invalid edit: %s" msgstr "" -#: ../wxui/main.py:1510 +#: ../wxui/main.py:1550 msgid "Invalid or unsupported module file" msgstr "" @@ -1303,7 +1303,7 @@ msgstr "Ungültiger Wert für dieses Feld" msgid "Issue number:" msgstr "" -#: ../wxui/main.py:335 +#: ../wxui/main.py:343 msgid "LIVE" msgstr "" @@ -1328,16 +1328,16 @@ msgstr "" msgid "Limit results to this distance (km) from coordinates" msgstr "" -#: ../wxui/main.py:678 +#: ../wxui/main.py:712 msgid "Load Module" msgstr "Module laden" -#: ../wxui/main.py:896 ../wxui/developer.py:487 +#: ../wxui/main.py:931 ../wxui/developer.py:487 #, fuzzy msgid "Load module from issue" msgstr "Module laden" -#: ../wxui/main.py:1517 +#: ../wxui/main.py:1557 msgid "" "Loading modules can be extremely dangerous, leading to damage to your " "computer, radio, or both. NEVER load a module from a source you do not " @@ -1355,7 +1355,7 @@ msgstr "" msgid "Longitude" msgstr "" -#: ../wxui/main.py:196 +#: ../wxui/main.py:204 msgid "Memories" msgstr "Speicher" @@ -1378,7 +1378,7 @@ msgstr "" msgid "Mode" msgstr "Mode" -#: ../wxui/clone.py:246 +#: ../wxui/clone.py:247 msgid "Model" msgstr "Model" @@ -1387,21 +1387,21 @@ msgstr "Model" msgid "Modes" msgstr "Mode" -#: ../wxui/main.py:1514 +#: ../wxui/main.py:1554 #, fuzzy msgid "Module" msgstr "Module laden" -#: ../wxui/main.py:1486 +#: ../wxui/main.py:1526 #, fuzzy msgid "Module Loaded" msgstr "Module laden" -#: ../wxui/main.py:1617 +#: ../wxui/main.py:1651 msgid "Module loaded successfully" msgstr "" -#: ../wxui/clone.py:374 +#: ../wxui/clone.py:375 #, python-format msgid "More than one port found: %s" msgstr "" @@ -1416,11 +1416,11 @@ msgstr "Nach _Unten" msgid "Move Up" msgstr "Nach _Oben" -#: ../wxui/main.py:613 +#: ../wxui/main.py:647 msgid "New Window" msgstr "" -#: ../wxui/main.py:1687 +#: ../wxui/main.py:1721 #, fuzzy msgid "New version available" msgstr "Eine neue Version von CHIRP ist verfügbar:" @@ -1459,40 +1459,45 @@ msgstr "" msgid "Only certain modes" msgstr "" -#: ../wxui/main.py:317 +#: ../wxui/main.py:325 msgid "Only memory tabs may be exported" msgstr "" -#: ../wxui/main.py:933 ../wxui/main.py:1278 +#: ../wxui/main.py:968 ../wxui/main.py:1318 msgid "Open" msgstr "" -#: ../wxui/main.py:653 +#: ../wxui/main.py:687 #, fuzzy msgid "Open Recent" msgstr "_Aktuell" -#: ../wxui/main.py:624 +#: ../wxui/main.py:658 #, fuzzy msgid "Open Stock Config" msgstr "Speichervorgaben öffnen" -#: ../wxui/main.py:934 ../wxui/main.py:1157 +#: ../wxui/main.py:969 ../wxui/main.py:1192 msgid "Open a file" msgstr "" -#: ../wxui/main.py:1532 +#: ../wxui/main.py:1572 msgid "Open a module" msgstr "" -#: ../wxui/main.py:885 +#: ../wxui/main.py:920 msgid "Open debug log" msgstr "" -#: ../wxui/main.py:504 +#: ../wxui/main.py:512 msgid "Open in new window" msgstr "" +#: ../wxui/main.py:604 +#, fuzzy +msgid "Open stock config directory" +msgstr "Vorgaben öffnen {name}" + #: ../wxui/query_sources.py:298 msgid "Optional: -122.0000" msgstr "" @@ -1510,7 +1515,7 @@ msgstr "" msgid "Optional: County, Hospital, etc" msgstr "" -#: ../wxui/memedit.py:1742 +#: ../wxui/memedit.py:1746 #, fuzzy msgid "Overwrite memories?" msgstr "Überschreiben?" @@ -1526,27 +1531,32 @@ msgstr "" msgid "Paste" msgstr "Einfügen" -#: ../wxui/memedit.py:1736 +#: ../wxui/memedit.py:1740 #, python-format msgid "Pasted memories will overwrite %i existing memories" msgstr "" -#: ../wxui/memedit.py:1739 +#: ../wxui/memedit.py:1743 #, python-format msgid "Pasted memories will overwrite memories %s" msgstr "" -#: ../wxui/memedit.py:1733 +#: ../wxui/memedit.py:1737 #, python-format msgid "Pasted memories will overwrite memory %i" msgstr "" -#: ../wxui/memedit.py:1730 +#: ../wxui/memedit.py:1734 #, python-format msgid "Pasted memory will overwrite memory %i" msgstr "" -#: ../wxui/main.py:1691 +#: ../wxui/common.py:564 +#, python-format +msgid "Path %s does not exist" +msgstr "" + +#: ../wxui/main.py:1725 msgid "Please be sure to quit CHIRP before installing the new version!" msgstr "" @@ -1576,7 +1586,7 @@ msgid "" " (At the end radio will beep)\n" msgstr "" -#: ../wxui/main.py:1555 +#: ../wxui/main.py:1595 msgid "" "Please note that developer mode is intended for use by developers of the " "CHIRP project, or under the direction of a developer. It enables behaviors " @@ -1584,15 +1594,15 @@ msgid "" "EXTREME care. You have been warned! Proceed anyway?" msgstr "" -#: ../wxui/common.py:181 +#: ../wxui/common.py:183 msgid "Please wait" msgstr "" -#: ../wxui/clone.py:351 +#: ../wxui/clone.py:352 msgid "Plug in your cable and then click OK" msgstr "" -#: ../wxui/clone.py:239 +#: ../wxui/clone.py:240 msgid "Port" msgstr "Port" @@ -1605,7 +1615,7 @@ msgstr "Leistung" msgid "Press enter to set this in memory" msgstr "Fehler beim Setzen der Speicher" -#: ../wxui/main.py:689 +#: ../wxui/main.py:723 msgid "Print Preview" msgstr "" @@ -1617,12 +1627,12 @@ msgstr "" msgid "Properties" msgstr "" -#: ../wxui/main.py:1645 +#: ../wxui/main.py:1679 #, python-format msgid "Query %s" msgstr "" -#: ../wxui/main.py:790 +#: ../wxui/main.py:825 #, fuzzy msgid "Query Source" msgstr "Datenquelle abfragen" @@ -1631,7 +1641,7 @@ msgstr "Datenquelle abfragen" msgid "RX DTCS" msgstr "" -#: ../wxui/main.py:904 +#: ../wxui/main.py:939 msgid "Radio" msgstr "Gerät" @@ -1640,7 +1650,7 @@ msgstr "Gerät" msgid "Radio did not ack block %i" msgstr "" -#: ../wxui/clone.py:504 ../wxui/clone.py:569 +#: ../wxui/clone.py:505 ../wxui/clone.py:570 #, fuzzy msgid "Radio information" msgstr "Abrufen der Speicherbank" @@ -1656,16 +1666,16 @@ msgstr "" msgid "RadioReference Canada requires a login before you can query" msgstr "" -#: ../wxui/common.py:308 +#: ../wxui/common.py:310 #, python-format msgid "Refreshed memory %s" msgstr "" -#: ../wxui/main.py:825 +#: ../wxui/main.py:860 msgid "Reload Driver" msgstr "" -#: ../wxui/main.py:834 +#: ../wxui/main.py:869 msgid "Reload Driver and File" msgstr "" @@ -1674,49 +1684,49 @@ msgstr "" msgid "Rename bank" msgstr "Setze Name für Bank" -#: ../wxui/main.py:873 +#: ../wxui/main.py:908 #, fuzzy msgid "Reporting enabled" msgstr "Report ist deaktiviert" -#: ../wxui/main.py:1574 +#: ../wxui/main.py:1614 msgid "" "Reporting helps the CHIRP project know which radio models and OS platforms " "to spend our limited efforts on. We would really appreciate if you left it " "enabled. Really disable reporting?" msgstr "" -#: ../wxui/main.py:1569 +#: ../wxui/main.py:1609 msgid "Restart Required" msgstr "" -#: ../wxui/main.py:634 +#: ../wxui/main.py:668 #, python-format msgid "Restore %i tabs" msgstr "" -#: ../wxui/common.py:312 +#: ../wxui/common.py:314 msgid "Retrieved settings" msgstr "" -#: ../wxui/main.py:935 +#: ../wxui/main.py:970 msgid "Save" msgstr "" -#: ../wxui/main.py:1309 +#: ../wxui/main.py:1349 msgid "Save before closing?" msgstr "" -#: ../wxui/main.py:936 ../wxui/main.py:1237 +#: ../wxui/main.py:971 ../wxui/main.py:1276 msgid "Save file" msgstr "" -#: ../wxui/common.py:314 +#: ../wxui/common.py:316 #, fuzzy msgid "Saved settings" msgstr "Einstellungen" -#: ../wxui/main.py:815 +#: ../wxui/main.py:850 #, fuzzy msgid "Select Bandplan" msgstr "Spalten auswählen" @@ -1731,7 +1741,7 @@ msgstr "Spalten auswählen" msgid "Select Modes" msgstr "Spalten auswählen" -#: ../wxui/main.py:1630 +#: ../wxui/main.py:1664 msgid "Select a bandplan" msgstr "" @@ -1739,7 +1749,7 @@ msgstr "" msgid "Service" msgstr "" -#: ../wxui/main.py:209 +#: ../wxui/main.py:217 msgid "Settings" msgstr "Einstellungen" @@ -1747,7 +1757,7 @@ msgstr "Einstellungen" msgid "Show Raw Memory" msgstr "Zeige RAW Speicher" -#: ../wxui/main.py:891 +#: ../wxui/main.py:926 msgid "Show debug log location" msgstr "" @@ -1755,13 +1765,13 @@ msgstr "" msgid "Show extra fields" msgstr "" -#: ../wxui/memedit.py:1791 +#: ../wxui/memedit.py:1795 #, fuzzy msgid "Some memories are incompatible with this radio" msgstr "" "Eingefügter Speicher {number} ist nicht mit diesem Gerät kompatibel weil:" -#: ../wxui/memedit.py:1686 +#: ../wxui/memedit.py:1687 msgid "Some memories are not deletable" msgstr "" @@ -1797,7 +1807,7 @@ msgstr "" msgid "State/Province" msgstr "" -#: ../wxui/main.py:1618 +#: ../wxui/main.py:1652 msgid "Success" msgstr "" @@ -1824,7 +1834,7 @@ msgid "" "download to a CHIRP Radio Images (*.img) file.\n" msgstr "" -#: ../wxui/main.py:1269 +#: ../wxui/main.py:1309 #, python-format msgid "" "The recommended procedure for importing memories is to open the source file " @@ -1903,12 +1913,12 @@ msgstr "ToneSql" msgid "Tuning Step" msgstr "Abstimmungsschritt" -#: ../wxui/clone.py:345 ../wxui/clone.py:352 ../wxui/clone.py:363 -#: ../wxui/clone.py:371 ../wxui/clone.py:375 +#: ../wxui/clone.py:346 ../wxui/clone.py:353 ../wxui/clone.py:364 +#: ../wxui/clone.py:372 ../wxui/clone.py:376 msgid "USB Port Finder" msgstr "" -#: ../wxui/clone.py:361 +#: ../wxui/clone.py:362 msgid "" "Unable to determine port for your cable. Check your drivers and connections." msgstr "" @@ -1917,12 +1927,12 @@ msgstr "" msgid "Unable to edit memory before radio is loaded" msgstr "" -#: ../wxui/main.py:1195 +#: ../wxui/main.py:1234 #, fuzzy, python-format msgid "Unable to find stock config %r" msgstr "Speichervorgaben öffnen" -#: ../wxui/common.py:214 +#: ../wxui/common.py:216 #, fuzzy msgid "Unable to open the clipboard" msgstr "Kann Gerät auf {port} nicht erkennen" @@ -1934,7 +1944,7 @@ msgid "" "model and try again." msgstr "" -#: ../wxui/main.py:1610 +#: ../wxui/common.py:571 #, fuzzy, python-format msgid "Unable to reveal %s on this system" msgstr "Keine Änderungen bei diesem Modell möglich" @@ -1948,29 +1958,29 @@ msgstr "Keine Änderungen bei diesem Modell möglich" msgid "United States" msgstr "" -#: ../wxui/clone.py:344 +#: ../wxui/clone.py:345 msgid "Unplug your cable (if needed) and then click OK" msgstr "" -#: ../wxui/clone.py:584 +#: ../wxui/clone.py:585 msgid "Upload instructions" msgstr "" -#: ../wxui/main.py:784 ../wxui/main.py:942 +#: ../wxui/main.py:819 ../wxui/main.py:977 #, fuzzy msgid "Upload to radio" msgstr "Upload zum Gerät" -#: ../wxui/common.py:310 +#: ../wxui/common.py:312 #, python-format msgid "Uploaded memory %s" msgstr "" -#: ../wxui/main.py:752 +#: ../wxui/main.py:787 msgid "Use fixed-width font" msgstr "" -#: ../wxui/main.py:760 +#: ../wxui/main.py:795 msgid "Use larger font" msgstr "" @@ -1979,12 +1989,12 @@ msgstr "" msgid "Value does not fit in %i bits" msgstr "" -#: ../wxui/common.py:420 +#: ../wxui/common.py:422 #, python-format msgid "Value must be at least %.4f" msgstr "" -#: ../wxui/common.py:424 +#: ../wxui/common.py:426 #, python-format msgid "Value must be at most %.4f" msgstr "" @@ -1998,11 +2008,11 @@ msgstr "" msgid "Value must be zero or greater" msgstr "" -#: ../wxui/clone.py:242 +#: ../wxui/clone.py:243 msgid "Vendor" msgstr "Hersteller" -#: ../wxui/main.py:903 +#: ../wxui/main.py:938 #, fuzzy msgid "View" msgstr "_Ansicht" @@ -2016,7 +2026,7 @@ msgstr "" msgid "Warning: %s" msgstr "" -#: ../wxui/main.py:421 +#: ../wxui/main.py:429 msgid "Welcome" msgstr "" @@ -2024,7 +2034,7 @@ msgstr "" msgid "Would you like CHIRP to install a desktop icon for you?" msgstr "" -#: ../wxui/clone.py:369 +#: ../wxui/clone.py:370 msgid "Your cable appears to be on port:" msgstr "" @@ -2040,12 +2050,12 @@ msgstr "" msgid "bytes each" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 #, fuzzy msgid "disabled" msgstr "Aktiviert" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 #, fuzzy msgid "enabled" msgstr "Aktiviert" @@ -2358,9 +2368,6 @@ msgstr "" #~ msgid "Open recent file {name}" #~ msgstr "Letzte Datei öffnen {name}" -#~ msgid "Open stock configuration {name}" -#~ msgstr "Vorgaben öffnen {name}" - #~ msgid "Overwrite" #~ msgstr "Überschreiben" diff --git a/chirp/locale/el.po b/chirp/locale/el.po index b2978210d..7bf9ccc97 100644 --- a/chirp/locale/el.po +++ b/chirp/locale/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: CHIRP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 18:46-0700\n" +"POT-Creation-Date: 2023-06-28 16:31-0700\n" "PO-Revision-Date: 2023-02-11 15:12+0200\n" "Last-Translator: Sokratis Alichanidis \n" "Language-Team: Greek\n" @@ -52,7 +52,7 @@ msgstr "Διαγραφή %i μνημών και μετακίνηση όλων π msgid "%i Memories and shift block up" msgstr "Διαγραφή %i μνημών και μετακίνηση ομάδας προς τα επάνω" -#: ../wxui/main.py:1307 +#: ../wxui/main.py:1347 #, python-format msgid "%s has not been saved. Save before closing?" msgstr "" @@ -61,7 +61,7 @@ msgstr "" msgid "(none)" msgstr "(καμία)" -#: ../wxui/memedit.py:1787 +#: ../wxui/memedit.py:1791 #, python-format msgid "...and %i more" msgstr "" @@ -598,7 +598,7 @@ msgid "" " click Then" msgstr "" -#: ../drivers/uvk5.py:636 +#: ../drivers/uvk5.py:633 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -609,7 +609,7 @@ msgid "" "attached\n" msgstr "" -#: ../drivers/uvk5.py:643 +#: ../drivers/uvk5.py:640 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -619,7 +619,7 @@ msgid "" "It will may not work if you turn on the radio with the cable already attached" msgstr "" -#: ../wxui/main.py:1685 +#: ../wxui/main.py:1719 msgid "" "A new CHIRP version is available. Please visit the website as soon as " "possible to download it!" @@ -627,11 +627,11 @@ msgstr "" "Μία νέα έκδοση του CHIRP είναι διαθέσιμη. Παρακαλούμε επισκεφθείτε την " "ιστοσελίδα το συντομότερο δυνατό για να την κατεβάσετε!" -#: ../wxui/main.py:859 +#: ../wxui/main.py:894 msgid "About" msgstr "Σχετικά" -#: ../wxui/main.py:1547 +#: ../wxui/main.py:1587 msgid "About CHIRP" msgstr "Σχετικά με το CHIRP" @@ -639,11 +639,11 @@ msgstr "Σχετικά με το CHIRP" msgid "All" msgstr "Όλες" -#: ../wxui/main.py:1143 +#: ../wxui/main.py:1178 msgid "All Files" msgstr "Όλα τα αρχεία" -#: ../wxui/main.py:1154 +#: ../wxui/main.py:1189 msgid "All supported formats|" msgstr "Όλοι οι τύποι αρχείων|" @@ -651,7 +651,7 @@ msgstr "Όλοι οι τύποι αρχείων|" msgid "Amateur" msgstr "Ραδιοερασιτέχνη" -#: ../wxui/common.py:497 ../wxui/common.py:523 +#: ../wxui/common.py:499 ../wxui/common.py:525 msgid "An error has occurred" msgstr "Παρουσιάστηκε ένα σφάλμα" @@ -663,7 +663,7 @@ msgstr "Εφαρμογή ρυθμίσεων" msgid "Available modules" msgstr "" -#: ../wxui/main.py:1631 +#: ../wxui/main.py:1665 msgid "Bandplan" msgstr "Χάρτης συχνοτήτων" @@ -671,7 +671,7 @@ msgstr "Χάρτης συχνοτήτων" msgid "Bands" msgstr "Μπάντες" -#: ../wxui/main.py:204 +#: ../wxui/main.py:212 msgid "Banks" msgstr "Ομάδες μνημών" @@ -679,7 +679,7 @@ msgstr "Ομάδες μνημών" msgid "Bin" msgstr "Bin" -#: ../wxui/main.py:215 +#: ../wxui/main.py:223 msgid "Browser" msgstr "Περιηγητής" @@ -697,7 +697,7 @@ msgid "" "Channels with equivalent TX and RX %s are represented by tone mode of \"%s\"" msgstr "" -#: ../wxui/main.py:1142 +#: ../wxui/main.py:1177 msgid "Chirp Image Files" msgstr "Αρχεία ειδώλου CHIRP" @@ -747,7 +747,7 @@ msgstr "" msgid "Clone completed, checking for spurious bytes" msgstr "" -#: ../wxui/common.py:108 +#: ../wxui/common.py:110 msgid "Cloning" msgstr "Αντιγραφή" @@ -759,11 +759,11 @@ msgstr "Λήψη από πομποδέκτη" msgid "Cloning to radio" msgstr "Αποστολή σε πομποδέκτη" -#: ../wxui/main.py:937 +#: ../wxui/main.py:972 msgid "Close" msgstr "Κλείσιμο" -#: ../wxui/main.py:938 +#: ../wxui/main.py:973 msgid "Close file" msgstr "Κλείσιμο αρχείου" @@ -823,11 +823,11 @@ msgstr "" "Πολικότητα\n" "DTCS" -#: ../wxui/memedit.py:2040 +#: ../wxui/memedit.py:2044 msgid "DV Memory" msgstr "Μνήμη DV" -#: ../wxui/main.py:1561 +#: ../wxui/main.py:1601 msgid "Danger Ahead" msgstr "" @@ -839,11 +839,11 @@ msgstr "Dec" msgid "Delete" msgstr "Διαγραφή" -#: ../wxui/main.py:864 +#: ../wxui/main.py:899 msgid "Developer Mode" msgstr "Λειτουργία προγραμματιστή" -#: ../wxui/main.py:1567 +#: ../wxui/main.py:1607 #, python-format msgid "Developer state is now %s. CHIRP must be restarted to take effect" msgstr "" @@ -852,12 +852,12 @@ msgstr "" msgid "Diff Raw Memories" msgstr "" -#: ../wxui/memedit.py:1965 +#: ../wxui/memedit.py:1969 #, fuzzy msgid "Digital Code" msgstr "Ψηφιακός Κωδικός" -#: ../wxui/main.py:1578 +#: ../wxui/main.py:1618 #, fuzzy msgid "Disable reporting" msgstr "Αναφορές απενεργοποιημένες" @@ -879,15 +879,15 @@ msgstr "Να μην ερωτηθώ ξανά για %s" msgid "Double-click to change bank name" msgstr "Κάντε διπλό κλικ για μετονομασία της ομάδας μνημών" -#: ../wxui/main.py:939 +#: ../wxui/main.py:974 msgid "Download" msgstr "Λήψη" -#: ../wxui/main.py:776 ../wxui/main.py:940 +#: ../wxui/main.py:811 ../wxui/main.py:975 msgid "Download from radio" msgstr "Λήψη Από Πομποδέκτη" -#: ../wxui/clone.py:512 +#: ../wxui/clone.py:513 msgid "Download instructions" msgstr "Οδηγίες λήψης" @@ -895,17 +895,17 @@ msgstr "Οδηγίες λήψης" msgid "Duplex" msgstr "" -#: ../wxui/memedit.py:1995 +#: ../wxui/memedit.py:1999 #, python-format msgid "Edit details for %i memories" msgstr "Επεξεργασία λεπτομερειών για %i μνήμες" -#: ../wxui/memedit.py:1993 +#: ../wxui/memedit.py:1997 #, python-format msgid "Edit details for memory %i" msgstr "Επεξεργασία λεπτομερειών για τη μνήμη %i" -#: ../wxui/main.py:808 +#: ../wxui/main.py:843 #, fuzzy msgid "Enable Automatic Edits" msgstr "Ενεργοποίηση αυτόματης επεξεργασίας" @@ -931,11 +931,11 @@ msgstr "Εισάγετε συχνότητα εκπομπής (MHz)" msgid "Enter a new name for bank %s:" msgstr "Εισάγετε ένα νέο όνομα για την ομάδα μνημών %s:" -#: ../wxui/clone.py:405 +#: ../wxui/clone.py:406 msgid "Enter custom port:" msgstr "Εισάγετε προσαρμοσμένη θύρα:" -#: ../wxui/common.py:316 +#: ../wxui/common.py:318 #, python-format msgid "Erased memory %s" msgstr "Διεγράφη η μνήμη %s" @@ -944,23 +944,23 @@ msgstr "Διεγράφη η μνήμη %s" msgid "Error applying settings" msgstr "Σφάλμα εφαρμογής ρυθμίσεων" -#: ../wxui/clone.py:449 +#: ../wxui/clone.py:450 msgid "Error communicating with radio" msgstr "Σφάλμα επικοινωνίας με τον πομποδέκτη" -#: ../wxui/clone.py:480 +#: ../wxui/clone.py:481 msgid "Experimental driver" msgstr "Πειραματικός οδηγός" -#: ../wxui/memedit.py:1925 +#: ../wxui/memedit.py:1929 msgid "Export can only write CSV files" msgstr "Η εξαγωγή είναι δυνατή μόνο σε αρχεία CSV" -#: ../wxui/main.py:672 ../wxui/main.py:1292 +#: ../wxui/main.py:706 ../wxui/main.py:1332 msgid "Export to CSV" msgstr "Εξαγωγή σε αρχείο μορφής .CSV" -#: ../wxui/memedit.py:2029 +#: ../wxui/memedit.py:2033 msgid "Extra" msgstr "Περισσότερα" @@ -972,13 +972,13 @@ msgstr "Αδυναμία φόρτωσης περιηγητή πομποδεκτ msgid "Features" msgstr "Δυνατότητες" -#: ../wxui/main.py:534 +#: ../wxui/main.py:542 #, python-format msgid "File does not exist: %s" msgstr "Το αρχείο δεν υπάρχει: %s" -#: ../wxui/main.py:1146 ../wxui/main.py:1223 ../wxui/main.py:1233 -#: ../wxui/main.py:1288 ../wxui/main.py:1513 ../wxui/main.py:1514 +#: ../wxui/main.py:1181 ../wxui/main.py:1262 ../wxui/main.py:1272 +#: ../wxui/main.py:1328 ../wxui/main.py:1553 ../wxui/main.py:1554 msgid "Files" msgstr "Αρχεία" @@ -990,15 +990,15 @@ msgstr "Φίλτρο" msgid "Filter results with location matching this string" msgstr "Φιλτράρισμα αποτελεσμάτων με τοποθεσία σύμφωνη με αυτό το λεκτικό" -#: ../wxui/main.py:1362 +#: ../wxui/main.py:1402 msgid "Find" msgstr "Εύρεση" -#: ../wxui/main.py:730 +#: ../wxui/main.py:765 msgid "Find Next" msgstr "Εύρεση επόμενου" -#: ../wxui/common.py:318 +#: ../wxui/common.py:320 #, python-format msgid "Finished radio job %s" msgstr "Τελείωσε η εργασία %s" @@ -1228,15 +1228,15 @@ msgstr "" msgid "If set, sort results by distance from these coordinates" msgstr "" -#: ../wxui/main.py:1278 +#: ../wxui/main.py:1318 msgid "Import" msgstr "" -#: ../wxui/main.py:666 +#: ../wxui/main.py:700 msgid "Import from file" msgstr "" -#: ../wxui/main.py:1276 +#: ../wxui/main.py:1316 msgid "Import not recommended" msgstr "" @@ -1244,7 +1244,7 @@ msgstr "" msgid "Index" msgstr "" -#: ../wxui/main.py:217 +#: ../wxui/main.py:225 msgid "Info" msgstr "Πληροφορίες" @@ -1260,7 +1260,7 @@ msgstr "Εισαγωγή γραμμής επάνω" msgid "Install desktop icon?" msgstr "" -#: ../wxui/main.py:848 +#: ../wxui/main.py:883 #, fuzzy msgid "Interact with driver" msgstr "Αλληλεπίδραση με οδηγό" @@ -1274,12 +1274,12 @@ msgstr "" msgid "Invalid ZIP code" msgstr "Μη έγκυρος ΤΚ" -#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2120 +#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2124 #, python-format msgid "Invalid edit: %s" msgstr "Μη έγκυρη τιμή: %s" -#: ../wxui/main.py:1510 +#: ../wxui/main.py:1550 msgid "Invalid or unsupported module file" msgstr "" @@ -1292,7 +1292,7 @@ msgstr "Μη έγκυρη τιμή: %r" msgid "Issue number:" msgstr "" -#: ../wxui/main.py:335 +#: ../wxui/main.py:343 #, fuzzy msgid "LIVE" msgstr "LIVE" @@ -1318,16 +1318,16 @@ msgstr "" msgid "Limit results to this distance (km) from coordinates" msgstr "" -#: ../wxui/main.py:678 +#: ../wxui/main.py:712 msgid "Load Module" msgstr "Φόρτωση Module" -#: ../wxui/main.py:896 ../wxui/developer.py:487 +#: ../wxui/main.py:931 ../wxui/developer.py:487 #, fuzzy msgid "Load module from issue" msgstr "Φόρτωση Module" -#: ../wxui/main.py:1517 +#: ../wxui/main.py:1557 msgid "" "Loading modules can be extremely dangerous, leading to damage to your " "computer, radio, or both. NEVER load a module from a source you do not " @@ -1345,7 +1345,7 @@ msgstr "Φόρτωση ρυθμίσεων" msgid "Longitude" msgstr "Γεωγραφικό μήκος" -#: ../wxui/main.py:196 +#: ../wxui/main.py:204 msgid "Memories" msgstr "Μνήμες" @@ -1368,7 +1368,7 @@ msgstr "Η μνήμη {num} δεν βρίσκεται στην ομάδα μνη msgid "Mode" msgstr "Λειτουργία" -#: ../wxui/clone.py:246 +#: ../wxui/clone.py:247 msgid "Model" msgstr "Μοντέλο" @@ -1376,20 +1376,20 @@ msgstr "Μοντέλο" msgid "Modes" msgstr "" -#: ../wxui/main.py:1514 +#: ../wxui/main.py:1554 msgid "Module" msgstr "Module" -#: ../wxui/main.py:1486 +#: ../wxui/main.py:1526 #, fuzzy msgid "Module Loaded" msgstr "Module" -#: ../wxui/main.py:1617 +#: ../wxui/main.py:1651 msgid "Module loaded successfully" msgstr "" -#: ../wxui/clone.py:374 +#: ../wxui/clone.py:375 #, python-format msgid "More than one port found: %s" msgstr "Βρέθηκαν περισσότερες από μία θύρες: %s" @@ -1402,11 +1402,11 @@ msgstr "" msgid "Move Up" msgstr "" -#: ../wxui/main.py:613 +#: ../wxui/main.py:647 msgid "New Window" msgstr "" -#: ../wxui/main.py:1687 +#: ../wxui/main.py:1721 msgid "New version available" msgstr "Διαθέσιμη νέα έκδοση" @@ -1443,38 +1443,43 @@ msgstr "Μόνο ορισμένες μπάντες" msgid "Only certain modes" msgstr "" -#: ../wxui/main.py:317 +#: ../wxui/main.py:325 msgid "Only memory tabs may be exported" msgstr "Μόνο οι καρτέλες μνημών μπορούν να εξαχθούν" -#: ../wxui/main.py:933 ../wxui/main.py:1278 +#: ../wxui/main.py:968 ../wxui/main.py:1318 msgid "Open" msgstr "Άνοιγμα" -#: ../wxui/main.py:653 +#: ../wxui/main.py:687 msgid "Open Recent" msgstr "Άνοιγμα πρόσφατου" -#: ../wxui/main.py:624 +#: ../wxui/main.py:658 msgid "Open Stock Config" msgstr "Άνοιγμα προεπιλεγμένων ρυθμίσεων" -#: ../wxui/main.py:934 ../wxui/main.py:1157 +#: ../wxui/main.py:969 ../wxui/main.py:1192 msgid "Open a file" msgstr "Άνοιγμα αρχείου" -#: ../wxui/main.py:1532 +#: ../wxui/main.py:1572 msgid "Open a module" msgstr "Άνοιγμα αρθρώματος" -#: ../wxui/main.py:885 +#: ../wxui/main.py:920 msgid "Open debug log" msgstr "Άνοιγμα αρχείου καταγραφής αποσφαλμάτωσης" -#: ../wxui/main.py:504 +#: ../wxui/main.py:512 msgid "Open in new window" msgstr "" +#: ../wxui/main.py:604 +#, fuzzy +msgid "Open stock config directory" +msgstr "Άνοιγμα προεπιλεγμένων ρυθμίσεων" + #: ../wxui/query_sources.py:298 msgid "Optional: -122.0000" msgstr "Προαιρετικό: -122.0000" @@ -1491,7 +1496,7 @@ msgstr "Προαιρετικό: 45.0000" msgid "Optional: County, Hospital, etc" msgstr "Προαιρετικό: Επαρχία, Νοσοκομείο κλπ" -#: ../wxui/memedit.py:1742 +#: ../wxui/memedit.py:1746 msgid "Overwrite memories?" msgstr "Αντικατάσταση μνημών;" @@ -1506,27 +1511,32 @@ msgstr "" msgid "Paste" msgstr "" -#: ../wxui/memedit.py:1736 +#: ../wxui/memedit.py:1740 #, python-format msgid "Pasted memories will overwrite %i existing memories" msgstr "" -#: ../wxui/memedit.py:1739 +#: ../wxui/memedit.py:1743 #, python-format msgid "Pasted memories will overwrite memories %s" msgstr "" -#: ../wxui/memedit.py:1733 +#: ../wxui/memedit.py:1737 #, python-format msgid "Pasted memories will overwrite memory %i" msgstr "" -#: ../wxui/memedit.py:1730 +#: ../wxui/memedit.py:1734 #, python-format msgid "Pasted memory will overwrite memory %i" msgstr "" -#: ../wxui/main.py:1691 +#: ../wxui/common.py:564 +#, fuzzy, python-format +msgid "Path %s does not exist" +msgstr "Το αρχείο δεν υπάρχει: %s" + +#: ../wxui/main.py:1725 msgid "Please be sure to quit CHIRP before installing the new version!" msgstr "" "Παρακαλούμε βεβαιωθείτε ότι έχετε κλείσει το CHIRP πριν εγκαταστήσετε την " @@ -1558,7 +1568,7 @@ msgid "" " (At the end radio will beep)\n" msgstr "" -#: ../wxui/main.py:1555 +#: ../wxui/main.py:1595 msgid "" "Please note that developer mode is intended for use by developers of the " "CHIRP project, or under the direction of a developer. It enables behaviors " @@ -1566,15 +1576,15 @@ msgid "" "EXTREME care. You have been warned! Proceed anyway?" msgstr "" -#: ../wxui/common.py:181 +#: ../wxui/common.py:183 msgid "Please wait" msgstr "Παρακαλώ περιμένετε" -#: ../wxui/clone.py:351 +#: ../wxui/clone.py:352 msgid "Plug in your cable and then click OK" msgstr "Συνδέστε το καλώδιο σας και πατήστε OK" -#: ../wxui/clone.py:239 +#: ../wxui/clone.py:240 msgid "Port" msgstr "Θύρα" @@ -1586,7 +1596,7 @@ msgstr "Ισχύς" msgid "Press enter to set this in memory" msgstr "Πατήστε enter για καταχώρηση στη μνήμη" -#: ../wxui/main.py:689 +#: ../wxui/main.py:723 msgid "Print Preview" msgstr "Προεπισκόπηση εκτύπωσης" @@ -1598,12 +1608,12 @@ msgstr "Εκτύπωση" msgid "Properties" msgstr "Ιδιότητες" -#: ../wxui/main.py:1645 +#: ../wxui/main.py:1679 #, python-format msgid "Query %s" msgstr "Ερώτημα %s" -#: ../wxui/main.py:790 +#: ../wxui/main.py:825 msgid "Query Source" msgstr "Ερώτημα Πηγής" @@ -1611,7 +1621,7 @@ msgstr "Ερώτημα Πηγής" msgid "RX DTCS" msgstr "DTCS Λήψης" -#: ../wxui/main.py:904 +#: ../wxui/main.py:939 msgid "Radio" msgstr "Πομποδέκτης" @@ -1620,7 +1630,7 @@ msgstr "Πομποδέκτης" msgid "Radio did not ack block %i" msgstr "Ο πομποδέκτης δεν επιβεβαίωσε το μπλοκ %i" -#: ../wxui/clone.py:504 ../wxui/clone.py:569 +#: ../wxui/clone.py:505 ../wxui/clone.py:570 msgid "Radio information" msgstr "Πληροφορίες πομποδέκτη" @@ -1635,16 +1645,16 @@ msgstr "" msgid "RadioReference Canada requires a login before you can query" msgstr "" -#: ../wxui/common.py:308 +#: ../wxui/common.py:310 #, python-format msgid "Refreshed memory %s" msgstr "Ανανεώθηκε η μνήμη %s" -#: ../wxui/main.py:825 +#: ../wxui/main.py:860 msgid "Reload Driver" msgstr "Επαναφόρτωση Οδηγού" -#: ../wxui/main.py:834 +#: ../wxui/main.py:869 msgid "Reload Driver and File" msgstr "Επαναφόρτωση Οδηγού και Αρχείου" @@ -1652,48 +1662,48 @@ msgstr "Επαναφόρτωση Οδηγού και Αρχείου" msgid "Rename bank" msgstr "Μετονομασία ομάδας μνημών" -#: ../wxui/main.py:873 +#: ../wxui/main.py:908 #, fuzzy msgid "Reporting enabled" msgstr "Αναφορές ενεργοποιημένες" -#: ../wxui/main.py:1574 +#: ../wxui/main.py:1614 msgid "" "Reporting helps the CHIRP project know which radio models and OS platforms " "to spend our limited efforts on. We would really appreciate if you left it " "enabled. Really disable reporting?" msgstr "" -#: ../wxui/main.py:1569 +#: ../wxui/main.py:1609 msgid "Restart Required" msgstr "Απαιτείται επανεκκίνηση" -#: ../wxui/main.py:634 +#: ../wxui/main.py:668 #, python-format msgid "Restore %i tabs" msgstr "Επαναφορά %i καρτελών" -#: ../wxui/common.py:312 +#: ../wxui/common.py:314 msgid "Retrieved settings" msgstr "Ρυθμίσεις ανακτήθηκαν" -#: ../wxui/main.py:935 +#: ../wxui/main.py:970 msgid "Save" msgstr "Αποθήκευση" -#: ../wxui/main.py:1309 +#: ../wxui/main.py:1349 msgid "Save before closing?" msgstr "Αποθήκευση πριν το κλείσιμο;" -#: ../wxui/main.py:936 ../wxui/main.py:1237 +#: ../wxui/main.py:971 ../wxui/main.py:1276 msgid "Save file" msgstr "Αποθήκευση αρχείου" -#: ../wxui/common.py:314 +#: ../wxui/common.py:316 msgid "Saved settings" msgstr "Ρυθμίσεις αποθηκεύθηκαν" -#: ../wxui/main.py:815 +#: ../wxui/main.py:850 msgid "Select Bandplan" msgstr "Επιλογή χάρτη συχνοτήτων" @@ -1705,7 +1715,7 @@ msgstr "Επιλογή Μπαντών" msgid "Select Modes" msgstr "" -#: ../wxui/main.py:1630 +#: ../wxui/main.py:1664 msgid "Select a bandplan" msgstr "Επιλογή χάρτη συνοτήτων" @@ -1713,7 +1723,7 @@ msgstr "Επιλογή χάρτη συνοτήτων" msgid "Service" msgstr "Υπηρεσία" -#: ../wxui/main.py:209 +#: ../wxui/main.py:217 msgid "Settings" msgstr "Ρυθμίσεις" @@ -1721,7 +1731,7 @@ msgstr "Ρυθμίσεις" msgid "Show Raw Memory" msgstr "" -#: ../wxui/main.py:891 +#: ../wxui/main.py:926 msgid "Show debug log location" msgstr "Εμφάνιση τοποθεσίας αρχείου καταγραφής αποσφαλμάτωσης" @@ -1729,11 +1739,11 @@ msgstr "Εμφάνιση τοποθεσίας αρχείου καταγραφή msgid "Show extra fields" msgstr "" -#: ../wxui/memedit.py:1791 +#: ../wxui/memedit.py:1795 msgid "Some memories are incompatible with this radio" msgstr "Κάποιες μνήμες δεν είναι συμβατές με αυτόν τον πομποδέκτη" -#: ../wxui/memedit.py:1686 +#: ../wxui/memedit.py:1687 msgid "Some memories are not deletable" msgstr "Κάποιες μνήμες δεν είναι δυνατόν να διαγραφούν" @@ -1769,7 +1779,7 @@ msgstr "Πολιτεία" msgid "State/Province" msgstr "Πολιτεία / Επαρχία" -#: ../wxui/main.py:1618 +#: ../wxui/main.py:1652 msgid "Success" msgstr "" @@ -1796,7 +1806,7 @@ msgid "" "download to a CHIRP Radio Images (*.img) file.\n" msgstr "" -#: ../wxui/main.py:1269 +#: ../wxui/main.py:1309 #, python-format msgid "" "The recommended procedure for importing memories is to open the source file " @@ -1880,12 +1890,12 @@ msgstr "Τόνος Φίμωσης" msgid "Tuning Step" msgstr "Βήμα συντονισμού" -#: ../wxui/clone.py:345 ../wxui/clone.py:352 ../wxui/clone.py:363 -#: ../wxui/clone.py:371 ../wxui/clone.py:375 +#: ../wxui/clone.py:346 ../wxui/clone.py:353 ../wxui/clone.py:364 +#: ../wxui/clone.py:372 ../wxui/clone.py:376 msgid "USB Port Finder" msgstr "Έυρεση θυρών USB" -#: ../wxui/clone.py:361 +#: ../wxui/clone.py:362 msgid "" "Unable to determine port for your cable. Check your drivers and connections." msgstr "" @@ -1894,12 +1904,12 @@ msgstr "" msgid "Unable to edit memory before radio is loaded" msgstr "" -#: ../wxui/main.py:1195 +#: ../wxui/main.py:1234 #, python-format msgid "Unable to find stock config %r" msgstr "" -#: ../wxui/common.py:214 +#: ../wxui/common.py:216 msgid "Unable to open the clipboard" msgstr "Αδυναμία ανοίγματος του πρόχειρου" @@ -1910,7 +1920,7 @@ msgid "" "model and try again." msgstr "" -#: ../wxui/main.py:1610 +#: ../wxui/common.py:571 #, python-format msgid "Unable to reveal %s on this system" msgstr "" @@ -1924,28 +1934,28 @@ msgstr "Πατήστε enter για καταχώρηση στη μνήμη" msgid "United States" msgstr "Ηνωμένες Πολιτείες" -#: ../wxui/clone.py:344 +#: ../wxui/clone.py:345 msgid "Unplug your cable (if needed) and then click OK" msgstr "Αποσυνδέστε το καλώδιο σας (αν χρειάζεται) και μετά πατήστε OK" -#: ../wxui/clone.py:584 +#: ../wxui/clone.py:585 msgid "Upload instructions" msgstr "Οδηγίες αποστολής" -#: ../wxui/main.py:784 ../wxui/main.py:942 +#: ../wxui/main.py:819 ../wxui/main.py:977 msgid "Upload to radio" msgstr "Αποστολή Σε Πομποδέκτη" -#: ../wxui/common.py:310 +#: ../wxui/common.py:312 #, python-format msgid "Uploaded memory %s" msgstr "Απεστάλη η μνήμη %s" -#: ../wxui/main.py:752 +#: ../wxui/main.py:787 msgid "Use fixed-width font" msgstr "Χρήση γραμματοσειράς σταθερού πλάτους" -#: ../wxui/main.py:760 +#: ../wxui/main.py:795 msgid "Use larger font" msgstr "Χρήση μεγαλύτερης γραμματοσειράς" @@ -1954,12 +1964,12 @@ msgstr "Χρήση μεγαλύτερης γραμματοσειράς" msgid "Value does not fit in %i bits" msgstr "Η τιμή δεν χωράει σε %i bits" -#: ../wxui/common.py:420 +#: ../wxui/common.py:422 #, python-format msgid "Value must be at least %.4f" msgstr "Η τιμή πρέπει να είναι τουλάχιστον %.4f" -#: ../wxui/common.py:424 +#: ../wxui/common.py:426 #, python-format msgid "Value must be at most %.4f" msgstr "Η τιμή πρέπει να είναι το πολύ %.4f" @@ -1973,11 +1983,11 @@ msgstr "Η τιμή πρέπει να έιναι ακριβώς %i δεκαδι msgid "Value must be zero or greater" msgstr "Η τιμή πρέπει να είναι μηδέν ή μεγαλύτερη" -#: ../wxui/clone.py:242 +#: ../wxui/clone.py:243 msgid "Vendor" msgstr "Προμηθευτής" -#: ../wxui/main.py:903 +#: ../wxui/main.py:938 msgid "View" msgstr "Εμφάνιση" @@ -1990,7 +2000,7 @@ msgstr "Προειδοποίηση" msgid "Warning: %s" msgstr "Προειδοποίηση: %s" -#: ../wxui/main.py:421 +#: ../wxui/main.py:429 msgid "Welcome" msgstr "Καλωσήρθατε" @@ -1998,7 +2008,7 @@ msgstr "Καλωσήρθατε" msgid "Would you like CHIRP to install a desktop icon for you?" msgstr "" -#: ../wxui/clone.py:369 +#: ../wxui/clone.py:370 msgid "Your cable appears to be on port:" msgstr "Το καλώδιο σας φαίνεται να είανι στη θύρα:" @@ -2014,11 +2024,11 @@ msgstr "bytes" msgid "bytes each" msgstr "bytes το καθένα" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "disabled" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "enabled" msgstr "" diff --git a/chirp/locale/en_US.po b/chirp/locale/en_US.po index 14d3a0e1a..f5be02e12 100644 --- a/chirp/locale/en_US.po +++ b/chirp/locale/en_US.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: CHIRP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 18:46-0700\n" +"POT-Creation-Date: 2023-06-28 16:31-0700\n" "PO-Revision-Date: 2011-11-29 16:07-0800\n" "Last-Translator: Dan Smith \n" "Language-Team: English\n" @@ -48,7 +48,7 @@ msgstr "_Delete" msgid "%i Memories and shift block up" msgstr "_Delete" -#: ../wxui/main.py:1307 +#: ../wxui/main.py:1347 #, fuzzy, python-format msgid "%s has not been saved. Save before closing?" msgstr "File is modified, save changes before closing?" @@ -57,7 +57,7 @@ msgstr "File is modified, save changes before closing?" msgid "(none)" msgstr "" -#: ../wxui/memedit.py:1787 +#: ../wxui/memedit.py:1791 #, python-format msgid "...and %i more" msgstr "" @@ -594,7 +594,7 @@ msgid "" " click Then" msgstr "" -#: ../drivers/uvk5.py:636 +#: ../drivers/uvk5.py:633 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -605,7 +605,7 @@ msgid "" "attached\n" msgstr "" -#: ../drivers/uvk5.py:643 +#: ../drivers/uvk5.py:640 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -615,17 +615,17 @@ msgid "" "It will may not work if you turn on the radio with the cable already attached" msgstr "" -#: ../wxui/main.py:1685 +#: ../wxui/main.py:1719 msgid "" "A new CHIRP version is available. Please visit the website as soon as " "possible to download it!" msgstr "" -#: ../wxui/main.py:859 +#: ../wxui/main.py:894 msgid "About" msgstr "" -#: ../wxui/main.py:1547 +#: ../wxui/main.py:1587 msgid "About CHIRP" msgstr "" @@ -633,12 +633,12 @@ msgstr "" msgid "All" msgstr "" -#: ../wxui/main.py:1143 +#: ../wxui/main.py:1178 #, fuzzy msgid "All Files" msgstr "CSV Files" -#: ../wxui/main.py:1154 +#: ../wxui/main.py:1189 msgid "All supported formats|" msgstr "" @@ -646,7 +646,7 @@ msgstr "" msgid "Amateur" msgstr "" -#: ../wxui/common.py:497 ../wxui/common.py:523 +#: ../wxui/common.py:499 ../wxui/common.py:525 msgid "An error has occurred" msgstr "" @@ -658,7 +658,7 @@ msgstr "" msgid "Available modules" msgstr "" -#: ../wxui/main.py:1631 +#: ../wxui/main.py:1665 msgid "Bandplan" msgstr "" @@ -666,7 +666,7 @@ msgstr "" msgid "Bands" msgstr "" -#: ../wxui/main.py:204 +#: ../wxui/main.py:212 msgid "Banks" msgstr "" @@ -674,7 +674,7 @@ msgstr "" msgid "Bin" msgstr "" -#: ../wxui/main.py:215 +#: ../wxui/main.py:223 msgid "Browser" msgstr "" @@ -692,7 +692,7 @@ msgid "" "Channels with equivalent TX and RX %s are represented by tone mode of \"%s\"" msgstr "" -#: ../wxui/main.py:1142 +#: ../wxui/main.py:1177 msgid "Chirp Image Files" msgstr "" @@ -741,7 +741,7 @@ msgstr "" msgid "Clone completed, checking for spurious bytes" msgstr "" -#: ../wxui/common.py:108 +#: ../wxui/common.py:110 msgid "Cloning" msgstr "" @@ -755,11 +755,11 @@ msgstr "Download From Radio" msgid "Cloning to radio" msgstr "Upload To Radio" -#: ../wxui/main.py:937 +#: ../wxui/main.py:972 msgid "Close" msgstr "" -#: ../wxui/main.py:938 +#: ../wxui/main.py:973 msgid "Close file" msgstr "" @@ -818,11 +818,11 @@ msgid "" "Polarity" msgstr "" -#: ../wxui/memedit.py:2040 +#: ../wxui/memedit.py:2044 msgid "DV Memory" msgstr "" -#: ../wxui/main.py:1561 +#: ../wxui/main.py:1601 msgid "Danger Ahead" msgstr "" @@ -835,12 +835,12 @@ msgstr "" msgid "Delete" msgstr "_Delete" -#: ../wxui/main.py:864 +#: ../wxui/main.py:899 #, fuzzy msgid "Developer Mode" msgstr "Developer" -#: ../wxui/main.py:1567 +#: ../wxui/main.py:1607 #, python-format msgid "Developer state is now %s. CHIRP must be restarted to take effect" msgstr "" @@ -850,11 +850,11 @@ msgstr "" msgid "Diff Raw Memories" msgstr "Diff raw memories" -#: ../wxui/memedit.py:1965 +#: ../wxui/memedit.py:1969 msgid "Digital Code" msgstr "" -#: ../wxui/main.py:1578 +#: ../wxui/main.py:1618 msgid "Disable reporting" msgstr "" @@ -875,16 +875,16 @@ msgstr "" msgid "Double-click to change bank name" msgstr "" -#: ../wxui/main.py:939 +#: ../wxui/main.py:974 msgid "Download" msgstr "" -#: ../wxui/main.py:776 ../wxui/main.py:940 +#: ../wxui/main.py:811 ../wxui/main.py:975 #, fuzzy msgid "Download from radio" msgstr "Download From Radio" -#: ../wxui/clone.py:512 +#: ../wxui/clone.py:513 #, fuzzy msgid "Download instructions" msgstr "Download From Radio" @@ -893,17 +893,17 @@ msgstr "Download From Radio" msgid "Duplex" msgstr "" -#: ../wxui/memedit.py:1995 +#: ../wxui/memedit.py:1999 #, python-format msgid "Edit details for %i memories" msgstr "" -#: ../wxui/memedit.py:1993 +#: ../wxui/memedit.py:1997 #, python-format msgid "Edit details for memory %i" msgstr "" -#: ../wxui/main.py:808 +#: ../wxui/main.py:843 msgid "Enable Automatic Edits" msgstr "" @@ -928,11 +928,11 @@ msgstr "" msgid "Enter a new name for bank %s:" msgstr "" -#: ../wxui/clone.py:405 +#: ../wxui/clone.py:406 msgid "Enter custom port:" msgstr "" -#: ../wxui/common.py:316 +#: ../wxui/common.py:318 #, fuzzy, python-format msgid "Erased memory %s" msgstr "E_xchange" @@ -941,24 +941,24 @@ msgstr "E_xchange" msgid "Error applying settings" msgstr "" -#: ../wxui/clone.py:449 +#: ../wxui/clone.py:450 msgid "Error communicating with radio" msgstr "" -#: ../wxui/clone.py:480 +#: ../wxui/clone.py:481 msgid "Experimental driver" msgstr "" -#: ../wxui/memedit.py:1925 +#: ../wxui/memedit.py:1929 msgid "Export can only write CSV files" msgstr "" -#: ../wxui/main.py:672 ../wxui/main.py:1292 +#: ../wxui/main.py:706 ../wxui/main.py:1332 #, fuzzy msgid "Export to CSV" msgstr "Import from RFinder" -#: ../wxui/memedit.py:2029 +#: ../wxui/memedit.py:2033 msgid "Extra" msgstr "" @@ -970,13 +970,13 @@ msgstr "" msgid "Features" msgstr "" -#: ../wxui/main.py:534 +#: ../wxui/main.py:542 #, python-format msgid "File does not exist: %s" msgstr "" -#: ../wxui/main.py:1146 ../wxui/main.py:1223 ../wxui/main.py:1233 -#: ../wxui/main.py:1288 ../wxui/main.py:1513 ../wxui/main.py:1514 +#: ../wxui/main.py:1181 ../wxui/main.py:1262 ../wxui/main.py:1272 +#: ../wxui/main.py:1328 ../wxui/main.py:1553 ../wxui/main.py:1554 #, fuzzy msgid "Files" msgstr "_File" @@ -989,15 +989,15 @@ msgstr "" msgid "Filter results with location matching this string" msgstr "" -#: ../wxui/main.py:1362 +#: ../wxui/main.py:1402 msgid "Find" msgstr "" -#: ../wxui/main.py:730 +#: ../wxui/main.py:765 msgid "Find Next" msgstr "" -#: ../wxui/common.py:318 +#: ../wxui/common.py:320 #, python-format msgid "Finished radio job %s" msgstr "" @@ -1228,16 +1228,16 @@ msgstr "" msgid "If set, sort results by distance from these coordinates" msgstr "" -#: ../wxui/main.py:1278 +#: ../wxui/main.py:1318 msgid "Import" msgstr "Import" -#: ../wxui/main.py:666 +#: ../wxui/main.py:700 #, fuzzy msgid "Import from file" msgstr "Import from RFinder" -#: ../wxui/main.py:1276 +#: ../wxui/main.py:1316 #, fuzzy msgid "Import not recommended" msgstr "Import from RFinder" @@ -1246,7 +1246,7 @@ msgstr "Import from RFinder" msgid "Index" msgstr "" -#: ../wxui/main.py:217 +#: ../wxui/main.py:225 msgid "Info" msgstr "" @@ -1262,7 +1262,7 @@ msgstr "" msgid "Install desktop icon?" msgstr "" -#: ../wxui/main.py:848 +#: ../wxui/main.py:883 msgid "Interact with driver" msgstr "" @@ -1275,12 +1275,12 @@ msgstr "" msgid "Invalid ZIP code" msgstr "" -#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2120 +#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2124 #, python-format msgid "Invalid edit: %s" msgstr "" -#: ../wxui/main.py:1510 +#: ../wxui/main.py:1550 msgid "Invalid or unsupported module file" msgstr "" @@ -1293,7 +1293,7 @@ msgstr "" msgid "Issue number:" msgstr "" -#: ../wxui/main.py:335 +#: ../wxui/main.py:343 msgid "LIVE" msgstr "" @@ -1318,15 +1318,15 @@ msgstr "" msgid "Limit results to this distance (km) from coordinates" msgstr "" -#: ../wxui/main.py:678 +#: ../wxui/main.py:712 msgid "Load Module" msgstr "" -#: ../wxui/main.py:896 ../wxui/developer.py:487 +#: ../wxui/main.py:931 ../wxui/developer.py:487 msgid "Load module from issue" msgstr "" -#: ../wxui/main.py:1517 +#: ../wxui/main.py:1557 msgid "" "Loading modules can be extremely dangerous, leading to damage to your " "computer, radio, or both. NEVER load a module from a source you do not " @@ -1344,7 +1344,7 @@ msgstr "" msgid "Longitude" msgstr "" -#: ../wxui/main.py:196 +#: ../wxui/main.py:204 #, fuzzy msgid "Memories" msgstr "Diff raw memories" @@ -1367,7 +1367,7 @@ msgstr "" msgid "Mode" msgstr "" -#: ../wxui/clone.py:246 +#: ../wxui/clone.py:247 msgid "Model" msgstr "" @@ -1375,19 +1375,19 @@ msgstr "" msgid "Modes" msgstr "" -#: ../wxui/main.py:1514 +#: ../wxui/main.py:1554 msgid "Module" msgstr "" -#: ../wxui/main.py:1486 +#: ../wxui/main.py:1526 msgid "Module Loaded" msgstr "" -#: ../wxui/main.py:1617 +#: ../wxui/main.py:1651 msgid "Module loaded successfully" msgstr "" -#: ../wxui/clone.py:374 +#: ../wxui/clone.py:375 #, python-format msgid "More than one port found: %s" msgstr "" @@ -1402,11 +1402,11 @@ msgstr "Move D_n" msgid "Move Up" msgstr "Move _Up" -#: ../wxui/main.py:613 +#: ../wxui/main.py:647 msgid "New Window" msgstr "" -#: ../wxui/main.py:1687 +#: ../wxui/main.py:1721 msgid "New version available" msgstr "" @@ -1443,39 +1443,43 @@ msgstr "" msgid "Only certain modes" msgstr "" -#: ../wxui/main.py:317 +#: ../wxui/main.py:325 msgid "Only memory tabs may be exported" msgstr "" -#: ../wxui/main.py:933 ../wxui/main.py:1278 +#: ../wxui/main.py:968 ../wxui/main.py:1318 msgid "Open" msgstr "" -#: ../wxui/main.py:653 +#: ../wxui/main.py:687 #, fuzzy msgid "Open Recent" msgstr "_Recent" -#: ../wxui/main.py:624 +#: ../wxui/main.py:658 msgid "Open Stock Config" msgstr "" -#: ../wxui/main.py:934 ../wxui/main.py:1157 +#: ../wxui/main.py:969 ../wxui/main.py:1192 msgid "Open a file" msgstr "" -#: ../wxui/main.py:1532 +#: ../wxui/main.py:1572 msgid "Open a module" msgstr "" -#: ../wxui/main.py:885 +#: ../wxui/main.py:920 msgid "Open debug log" msgstr "" -#: ../wxui/main.py:504 +#: ../wxui/main.py:512 msgid "Open in new window" msgstr "" +#: ../wxui/main.py:604 +msgid "Open stock config directory" +msgstr "" + #: ../wxui/query_sources.py:298 msgid "Optional: -122.0000" msgstr "" @@ -1492,7 +1496,7 @@ msgstr "" msgid "Optional: County, Hospital, etc" msgstr "" -#: ../wxui/memedit.py:1742 +#: ../wxui/memedit.py:1746 #, fuzzy msgid "Overwrite memories?" msgstr "Diff raw memories" @@ -1509,27 +1513,32 @@ msgstr "" msgid "Paste" msgstr "_Paste" -#: ../wxui/memedit.py:1736 +#: ../wxui/memedit.py:1740 #, python-format msgid "Pasted memories will overwrite %i existing memories" msgstr "" -#: ../wxui/memedit.py:1739 +#: ../wxui/memedit.py:1743 #, python-format msgid "Pasted memories will overwrite memories %s" msgstr "" -#: ../wxui/memedit.py:1733 +#: ../wxui/memedit.py:1737 #, python-format msgid "Pasted memories will overwrite memory %i" msgstr "" -#: ../wxui/memedit.py:1730 +#: ../wxui/memedit.py:1734 #, python-format msgid "Pasted memory will overwrite memory %i" msgstr "" -#: ../wxui/main.py:1691 +#: ../wxui/common.py:564 +#, python-format +msgid "Path %s does not exist" +msgstr "" + +#: ../wxui/main.py:1725 msgid "Please be sure to quit CHIRP before installing the new version!" msgstr "" @@ -1559,7 +1568,7 @@ msgid "" " (At the end radio will beep)\n" msgstr "" -#: ../wxui/main.py:1555 +#: ../wxui/main.py:1595 msgid "" "Please note that developer mode is intended for use by developers of the " "CHIRP project, or under the direction of a developer. It enables behaviors " @@ -1567,15 +1576,15 @@ msgid "" "EXTREME care. You have been warned! Proceed anyway?" msgstr "" -#: ../wxui/common.py:181 +#: ../wxui/common.py:183 msgid "Please wait" msgstr "" -#: ../wxui/clone.py:351 +#: ../wxui/clone.py:352 msgid "Plug in your cable and then click OK" msgstr "" -#: ../wxui/clone.py:239 +#: ../wxui/clone.py:240 msgid "Port" msgstr "" @@ -1587,7 +1596,7 @@ msgstr "" msgid "Press enter to set this in memory" msgstr "" -#: ../wxui/main.py:689 +#: ../wxui/main.py:723 msgid "Print Preview" msgstr "" @@ -1599,12 +1608,12 @@ msgstr "" msgid "Properties" msgstr "" -#: ../wxui/main.py:1645 +#: ../wxui/main.py:1679 #, python-format msgid "Query %s" msgstr "" -#: ../wxui/main.py:790 +#: ../wxui/main.py:825 msgid "Query Source" msgstr "" @@ -1612,7 +1621,7 @@ msgstr "" msgid "RX DTCS" msgstr "" -#: ../wxui/main.py:904 +#: ../wxui/main.py:939 #, fuzzy msgid "Radio" msgstr "_Radio" @@ -1622,7 +1631,7 @@ msgstr "_Radio" msgid "Radio did not ack block %i" msgstr "" -#: ../wxui/clone.py:504 ../wxui/clone.py:569 +#: ../wxui/clone.py:505 ../wxui/clone.py:570 msgid "Radio information" msgstr "" @@ -1637,16 +1646,16 @@ msgstr "" msgid "RadioReference Canada requires a login before you can query" msgstr "" -#: ../wxui/common.py:308 +#: ../wxui/common.py:310 #, python-format msgid "Refreshed memory %s" msgstr "" -#: ../wxui/main.py:825 +#: ../wxui/main.py:860 msgid "Reload Driver" msgstr "" -#: ../wxui/main.py:834 +#: ../wxui/main.py:869 msgid "Reload Driver and File" msgstr "" @@ -1654,48 +1663,48 @@ msgstr "" msgid "Rename bank" msgstr "" -#: ../wxui/main.py:873 +#: ../wxui/main.py:908 #, fuzzy msgid "Reporting enabled" msgstr "Reporting is disabled" -#: ../wxui/main.py:1574 +#: ../wxui/main.py:1614 msgid "" "Reporting helps the CHIRP project know which radio models and OS platforms " "to spend our limited efforts on. We would really appreciate if you left it " "enabled. Really disable reporting?" msgstr "" -#: ../wxui/main.py:1569 +#: ../wxui/main.py:1609 msgid "Restart Required" msgstr "" -#: ../wxui/main.py:634 +#: ../wxui/main.py:668 #, python-format msgid "Restore %i tabs" msgstr "" -#: ../wxui/common.py:312 +#: ../wxui/common.py:314 msgid "Retrieved settings" msgstr "" -#: ../wxui/main.py:935 +#: ../wxui/main.py:970 msgid "Save" msgstr "" -#: ../wxui/main.py:1309 +#: ../wxui/main.py:1349 msgid "Save before closing?" msgstr "" -#: ../wxui/main.py:936 ../wxui/main.py:1237 +#: ../wxui/main.py:971 ../wxui/main.py:1276 msgid "Save file" msgstr "" -#: ../wxui/common.py:314 +#: ../wxui/common.py:316 msgid "Saved settings" msgstr "" -#: ../wxui/main.py:815 +#: ../wxui/main.py:850 #, fuzzy msgid "Select Bandplan" msgstr "Select Columns" @@ -1710,7 +1719,7 @@ msgstr "Select Columns" msgid "Select Modes" msgstr "Select Columns" -#: ../wxui/main.py:1630 +#: ../wxui/main.py:1664 msgid "Select a bandplan" msgstr "" @@ -1718,7 +1727,7 @@ msgstr "" msgid "Service" msgstr "" -#: ../wxui/main.py:209 +#: ../wxui/main.py:217 msgid "Settings" msgstr "" @@ -1727,7 +1736,7 @@ msgstr "" msgid "Show Raw Memory" msgstr "Show raw memory" -#: ../wxui/main.py:891 +#: ../wxui/main.py:926 msgid "Show debug log location" msgstr "" @@ -1735,11 +1744,11 @@ msgstr "" msgid "Show extra fields" msgstr "" -#: ../wxui/memedit.py:1791 +#: ../wxui/memedit.py:1795 msgid "Some memories are incompatible with this radio" msgstr "" -#: ../wxui/memedit.py:1686 +#: ../wxui/memedit.py:1687 msgid "Some memories are not deletable" msgstr "" @@ -1775,7 +1784,7 @@ msgstr "" msgid "State/Province" msgstr "" -#: ../wxui/main.py:1618 +#: ../wxui/main.py:1652 msgid "Success" msgstr "" @@ -1802,7 +1811,7 @@ msgid "" "download to a CHIRP Radio Images (*.img) file.\n" msgstr "" -#: ../wxui/main.py:1269 +#: ../wxui/main.py:1309 #, python-format msgid "" "The recommended procedure for importing memories is to open the source file " @@ -1879,12 +1888,12 @@ msgstr "" msgid "Tuning Step" msgstr "" -#: ../wxui/clone.py:345 ../wxui/clone.py:352 ../wxui/clone.py:363 -#: ../wxui/clone.py:371 ../wxui/clone.py:375 +#: ../wxui/clone.py:346 ../wxui/clone.py:353 ../wxui/clone.py:364 +#: ../wxui/clone.py:372 ../wxui/clone.py:376 msgid "USB Port Finder" msgstr "" -#: ../wxui/clone.py:361 +#: ../wxui/clone.py:362 msgid "" "Unable to determine port for your cable. Check your drivers and connections." msgstr "" @@ -1893,12 +1902,12 @@ msgstr "" msgid "Unable to edit memory before radio is loaded" msgstr "" -#: ../wxui/main.py:1195 +#: ../wxui/main.py:1234 #, python-format msgid "Unable to find stock config %r" msgstr "" -#: ../wxui/common.py:214 +#: ../wxui/common.py:216 msgid "Unable to open the clipboard" msgstr "" @@ -1909,7 +1918,7 @@ msgid "" "model and try again." msgstr "" -#: ../wxui/main.py:1610 +#: ../wxui/common.py:571 #, python-format msgid "Unable to reveal %s on this system" msgstr "" @@ -1923,29 +1932,29 @@ msgstr "" msgid "United States" msgstr "" -#: ../wxui/clone.py:344 +#: ../wxui/clone.py:345 msgid "Unplug your cable (if needed) and then click OK" msgstr "" -#: ../wxui/clone.py:584 +#: ../wxui/clone.py:585 msgid "Upload instructions" msgstr "" -#: ../wxui/main.py:784 ../wxui/main.py:942 +#: ../wxui/main.py:819 ../wxui/main.py:977 #, fuzzy msgid "Upload to radio" msgstr "Upload To Radio" -#: ../wxui/common.py:310 +#: ../wxui/common.py:312 #, python-format msgid "Uploaded memory %s" msgstr "" -#: ../wxui/main.py:752 +#: ../wxui/main.py:787 msgid "Use fixed-width font" msgstr "" -#: ../wxui/main.py:760 +#: ../wxui/main.py:795 msgid "Use larger font" msgstr "" @@ -1954,12 +1963,12 @@ msgstr "" msgid "Value does not fit in %i bits" msgstr "" -#: ../wxui/common.py:420 +#: ../wxui/common.py:422 #, python-format msgid "Value must be at least %.4f" msgstr "" -#: ../wxui/common.py:424 +#: ../wxui/common.py:426 #, python-format msgid "Value must be at most %.4f" msgstr "" @@ -1973,11 +1982,11 @@ msgstr "" msgid "Value must be zero or greater" msgstr "" -#: ../wxui/clone.py:242 +#: ../wxui/clone.py:243 msgid "Vendor" msgstr "" -#: ../wxui/main.py:903 +#: ../wxui/main.py:938 #, fuzzy msgid "View" msgstr "_View" @@ -1991,7 +2000,7 @@ msgstr "" msgid "Warning: %s" msgstr "" -#: ../wxui/main.py:421 +#: ../wxui/main.py:429 msgid "Welcome" msgstr "" @@ -1999,7 +2008,7 @@ msgstr "" msgid "Would you like CHIRP to install a desktop icon for you?" msgstr "" -#: ../wxui/clone.py:369 +#: ../wxui/clone.py:370 msgid "Your cable appears to be on port:" msgstr "" @@ -2015,11 +2024,11 @@ msgstr "" msgid "bytes each" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "disabled" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "enabled" msgstr "" diff --git a/chirp/locale/es.po b/chirp/locale/es.po index b9a75195e..e8a466dc6 100644 --- a/chirp/locale/es.po +++ b/chirp/locale/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: CHIRP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 18:46-0700\n" +"POT-Creation-Date: 2023-06-28 16:31-0700\n" "PO-Revision-Date: 2023-06-27 18:18-0400\n" "Last-Translator: MELERIX\n" "Language-Team: \n" @@ -58,7 +58,7 @@ msgstr "%i Memorias y desplazar todo hacia arriba" msgid "%i Memories and shift block up" msgstr "%i Memorias y desplazar bloque hacia arriba" -#: ../wxui/main.py:1307 +#: ../wxui/main.py:1347 #, python-format msgid "%s has not been saved. Save before closing?" msgstr "%s no ha sido guardado. ¿Guardar antes de cerrar?" @@ -67,7 +67,7 @@ msgstr "%s no ha sido guardado. ¿Guardar antes de cerrar?" msgid "(none)" msgstr "(nada)" -#: ../wxui/memedit.py:1787 +#: ../wxui/memedit.py:1791 #, python-format msgid "...and %i more" msgstr "...y %i más" @@ -956,7 +956,7 @@ msgstr "" "cliquea \n" " Aceptar " -#: ../drivers/uvk5.py:636 +#: ../drivers/uvk5.py:633 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -973,7 +973,7 @@ msgstr "" "\n" "Esto podría no funcionar si enciendes la radio con el cable ya conectado\n" -#: ../drivers/uvk5.py:643 +#: ../drivers/uvk5.py:640 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -989,7 +989,7 @@ msgstr "" "\n" "Esto podría no funcionar si enciendes la radio con el cable ya conectado" -#: ../wxui/main.py:1685 +#: ../wxui/main.py:1719 msgid "" "A new CHIRP version is available. Please visit the website as soon as " "possible to download it!" @@ -997,11 +997,11 @@ msgstr "" "Una nueva versión de CHIRP está disponible, ¡Por favor visita el sitio web " "tan pronto como sea posible para descargarla!" -#: ../wxui/main.py:859 +#: ../wxui/main.py:894 msgid "About" msgstr "Acerca de" -#: ../wxui/main.py:1547 +#: ../wxui/main.py:1587 msgid "About CHIRP" msgstr "Acerca de CHIRP" @@ -1009,11 +1009,11 @@ msgstr "Acerca de CHIRP" msgid "All" msgstr "Todo" -#: ../wxui/main.py:1143 +#: ../wxui/main.py:1178 msgid "All Files" msgstr "Todos los archivos" -#: ../wxui/main.py:1154 +#: ../wxui/main.py:1189 msgid "All supported formats|" msgstr "Todos los formatos soportados|" @@ -1021,7 +1021,7 @@ msgstr "Todos los formatos soportados|" msgid "Amateur" msgstr "Aficionado" -#: ../wxui/common.py:497 ../wxui/common.py:523 +#: ../wxui/common.py:499 ../wxui/common.py:525 msgid "An error has occurred" msgstr "Ha ocurrido un error" @@ -1033,7 +1033,7 @@ msgstr "Aplicando ajustes" msgid "Available modules" msgstr "Módulos disponibles" -#: ../wxui/main.py:1631 +#: ../wxui/main.py:1665 msgid "Bandplan" msgstr "Plan de banda" @@ -1041,7 +1041,7 @@ msgstr "Plan de banda" msgid "Bands" msgstr "Bandas" -#: ../wxui/main.py:204 +#: ../wxui/main.py:212 msgid "Banks" msgstr "Bancos" @@ -1049,7 +1049,7 @@ msgstr "Bancos" msgid "Bin" msgstr "Binario" -#: ../wxui/main.py:215 +#: ../wxui/main.py:223 msgid "Browser" msgstr "Navegador" @@ -1069,7 +1069,7 @@ msgstr "" "Canales con TX y RX equivalentes %s son representados por modo de tono de " "\"%s\"" -#: ../wxui/main.py:1142 +#: ../wxui/main.py:1177 msgid "Chirp Image Files" msgstr "Archivos de imagen Chirp" @@ -1125,7 +1125,7 @@ msgstr "" msgid "Clone completed, checking for spurious bytes" msgstr "Clonado completado, comprobando por bytes espurios" -#: ../wxui/common.py:108 +#: ../wxui/common.py:110 msgid "Cloning" msgstr "Clonando" @@ -1137,11 +1137,11 @@ msgstr "Clonando desde radio" msgid "Cloning to radio" msgstr "Clonando a radio" -#: ../wxui/main.py:937 +#: ../wxui/main.py:972 msgid "Close" msgstr "Cerrar" -#: ../wxui/main.py:938 +#: ../wxui/main.py:973 msgid "Close file" msgstr "Cerrar archivo" @@ -1202,11 +1202,11 @@ msgstr "" "Polaridad\n" "DTCS" -#: ../wxui/memedit.py:2040 +#: ../wxui/memedit.py:2044 msgid "DV Memory" msgstr "Memoria DV" -#: ../wxui/main.py:1561 +#: ../wxui/main.py:1601 msgid "Danger Ahead" msgstr "Peligro adelante" @@ -1218,11 +1218,11 @@ msgstr "Decimal" msgid "Delete" msgstr "Borrar" -#: ../wxui/main.py:864 +#: ../wxui/main.py:899 msgid "Developer Mode" msgstr "Modo desarrollador" -#: ../wxui/main.py:1567 +#: ../wxui/main.py:1607 #, python-format msgid "Developer state is now %s. CHIRP must be restarted to take effect" msgstr "" @@ -1233,11 +1233,11 @@ msgstr "" msgid "Diff Raw Memories" msgstr "Diferenciar memorias en bruto" -#: ../wxui/memedit.py:1965 +#: ../wxui/memedit.py:1969 msgid "Digital Code" msgstr "Código digital" -#: ../wxui/main.py:1578 +#: ../wxui/main.py:1618 msgid "Disable reporting" msgstr "Deshabilitar reportes" @@ -1258,15 +1258,15 @@ msgstr "No preguntar de nuevo para %s" msgid "Double-click to change bank name" msgstr "Doble clic para cambiar nombre de banco" -#: ../wxui/main.py:939 +#: ../wxui/main.py:974 msgid "Download" msgstr "Descargar" -#: ../wxui/main.py:776 ../wxui/main.py:940 +#: ../wxui/main.py:811 ../wxui/main.py:975 msgid "Download from radio" msgstr "Descargar desde radio" -#: ../wxui/clone.py:512 +#: ../wxui/clone.py:513 msgid "Download instructions" msgstr "Descargar instrucciones" @@ -1274,17 +1274,17 @@ msgstr "Descargar instrucciones" msgid "Duplex" msgstr "Dúplex" -#: ../wxui/memedit.py:1995 +#: ../wxui/memedit.py:1999 #, python-format msgid "Edit details for %i memories" msgstr "Editar detalles para %i memorias" -#: ../wxui/memedit.py:1993 +#: ../wxui/memedit.py:1997 #, python-format msgid "Edit details for memory %i" msgstr "Editar detalles para memoria %i" -#: ../wxui/main.py:808 +#: ../wxui/main.py:843 msgid "Enable Automatic Edits" msgstr "Habilitar ediciones automáticas" @@ -1309,11 +1309,11 @@ msgstr "Ingresar frecuencia TX (MHz)" msgid "Enter a new name for bank %s:" msgstr "Ingresa un nuevo nombre para el banco %s:" -#: ../wxui/clone.py:405 +#: ../wxui/clone.py:406 msgid "Enter custom port:" msgstr "Ingresar puerto personalizado:" -#: ../wxui/common.py:316 +#: ../wxui/common.py:318 #, python-format msgid "Erased memory %s" msgstr "Memoria borrada %s" @@ -1322,23 +1322,23 @@ msgstr "Memoria borrada %s" msgid "Error applying settings" msgstr "Error aplicando ajustes" -#: ../wxui/clone.py:449 +#: ../wxui/clone.py:450 msgid "Error communicating with radio" msgstr "Error comunicándose con la radio" -#: ../wxui/clone.py:480 +#: ../wxui/clone.py:481 msgid "Experimental driver" msgstr "Controlador experimental" -#: ../wxui/memedit.py:1925 +#: ../wxui/memedit.py:1929 msgid "Export can only write CSV files" msgstr "Exportar solo puede escribir archivos CSV" -#: ../wxui/main.py:672 ../wxui/main.py:1292 +#: ../wxui/main.py:706 ../wxui/main.py:1332 msgid "Export to CSV" msgstr "Exportar a CSV" -#: ../wxui/memedit.py:2029 +#: ../wxui/memedit.py:2033 msgid "Extra" msgstr "Extra" @@ -1350,13 +1350,13 @@ msgstr "Fallo al cargar navegador de radio" msgid "Features" msgstr "Caracteristicas" -#: ../wxui/main.py:534 +#: ../wxui/main.py:542 #, python-format msgid "File does not exist: %s" msgstr "Archivo no existe: %s" -#: ../wxui/main.py:1146 ../wxui/main.py:1223 ../wxui/main.py:1233 -#: ../wxui/main.py:1288 ../wxui/main.py:1513 ../wxui/main.py:1514 +#: ../wxui/main.py:1181 ../wxui/main.py:1262 ../wxui/main.py:1272 +#: ../wxui/main.py:1328 ../wxui/main.py:1553 ../wxui/main.py:1554 msgid "Files" msgstr "Archivos" @@ -1368,15 +1368,15 @@ msgstr "Filtrar" msgid "Filter results with location matching this string" msgstr "Filtrar resultados con ubicación coincidiendo esta cadena" -#: ../wxui/main.py:1362 +#: ../wxui/main.py:1402 msgid "Find" msgstr "Buscar" -#: ../wxui/main.py:730 +#: ../wxui/main.py:765 msgid "Find Next" msgstr "Buscar siguiente" -#: ../wxui/common.py:318 +#: ../wxui/common.py:320 #, python-format msgid "Finished radio job %s" msgstr "Trabajos de radio terminados %s" @@ -1701,15 +1701,15 @@ msgid "If set, sort results by distance from these coordinates" msgstr "" "Si se establece, ordenar los resultados por distancia desde estas coordenadas" -#: ../wxui/main.py:1278 +#: ../wxui/main.py:1318 msgid "Import" msgstr "Importar" -#: ../wxui/main.py:666 +#: ../wxui/main.py:700 msgid "Import from file" msgstr "Importar desde archivo" -#: ../wxui/main.py:1276 +#: ../wxui/main.py:1316 msgid "Import not recommended" msgstr "Importación no recomendada" @@ -1717,7 +1717,7 @@ msgstr "Importación no recomendada" msgid "Index" msgstr "Índice" -#: ../wxui/main.py:217 +#: ../wxui/main.py:225 msgid "Info" msgstr "Información" @@ -1733,7 +1733,7 @@ msgstr "Insertar fila arriba" msgid "Install desktop icon?" msgstr "¿Instalar icono de escritorio?" -#: ../wxui/main.py:848 +#: ../wxui/main.py:883 msgid "Interact with driver" msgstr "Interactuar con controlador" @@ -1746,12 +1746,12 @@ msgstr "%(value)s inválido (usa grados decimales)" msgid "Invalid ZIP code" msgstr "Código postal inválido" -#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2120 +#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2124 #, python-format msgid "Invalid edit: %s" msgstr "Edición inválida: %s" -#: ../wxui/main.py:1510 +#: ../wxui/main.py:1550 msgid "Invalid or unsupported module file" msgstr "Archivo de módulo inválido o no soportado" @@ -1764,7 +1764,7 @@ msgstr "Valor inválido: %r" msgid "Issue number:" msgstr "Número de problema:" -#: ../wxui/main.py:335 +#: ../wxui/main.py:343 msgid "LIVE" msgstr "EN VIVO" @@ -1789,15 +1789,15 @@ msgstr "Modos límite" msgid "Limit results to this distance (km) from coordinates" msgstr "Limitar resultados a esta distancia (km) desde coordenadas" -#: ../wxui/main.py:678 +#: ../wxui/main.py:712 msgid "Load Module" msgstr "Cargar modulo" -#: ../wxui/main.py:896 ../wxui/developer.py:487 +#: ../wxui/main.py:931 ../wxui/developer.py:487 msgid "Load module from issue" msgstr "Cargar módulo desde problema" -#: ../wxui/main.py:1517 +#: ../wxui/main.py:1557 msgid "" "Loading modules can be extremely dangerous, leading to damage to your " "computer, radio, or both. NEVER load a module from a source you do not " @@ -1821,7 +1821,7 @@ msgstr "Cargando ajustes" msgid "Longitude" msgstr "Longitud" -#: ../wxui/main.py:196 +#: ../wxui/main.py:204 msgid "Memories" msgstr "Memorias" @@ -1843,7 +1843,7 @@ msgstr "Memoria {num} no en banco {bank}" msgid "Mode" msgstr "Modo" -#: ../wxui/clone.py:246 +#: ../wxui/clone.py:247 msgid "Model" msgstr "Modelo" @@ -1851,19 +1851,19 @@ msgstr "Modelo" msgid "Modes" msgstr "Modos" -#: ../wxui/main.py:1514 +#: ../wxui/main.py:1554 msgid "Module" msgstr "Modulo" -#: ../wxui/main.py:1486 +#: ../wxui/main.py:1526 msgid "Module Loaded" msgstr "Módulo cargado" -#: ../wxui/main.py:1617 +#: ../wxui/main.py:1651 msgid "Module loaded successfully" msgstr "Módulo cargado exitosamente" -#: ../wxui/clone.py:374 +#: ../wxui/clone.py:375 #, python-format msgid "More than one port found: %s" msgstr "Más de un puerto encontrado: %s" @@ -1876,11 +1876,11 @@ msgstr "Mover abajo" msgid "Move Up" msgstr "Mover arriba" -#: ../wxui/main.py:613 +#: ../wxui/main.py:647 msgid "New Window" msgstr "Nueva ventana" -#: ../wxui/main.py:1687 +#: ../wxui/main.py:1721 msgid "New version available" msgstr "Nueva versión disponible" @@ -1917,38 +1917,43 @@ msgstr "Solo ciertas bandas" msgid "Only certain modes" msgstr "Solo ciertos modos" -#: ../wxui/main.py:317 +#: ../wxui/main.py:325 msgid "Only memory tabs may be exported" msgstr "Solo pestañas de memorias pueden ser exportadas" -#: ../wxui/main.py:933 ../wxui/main.py:1278 +#: ../wxui/main.py:968 ../wxui/main.py:1318 msgid "Open" msgstr "Abrir" -#: ../wxui/main.py:653 +#: ../wxui/main.py:687 msgid "Open Recent" msgstr "Abrir reciente" -#: ../wxui/main.py:624 +#: ../wxui/main.py:658 msgid "Open Stock Config" msgstr "Abrir configuración original" -#: ../wxui/main.py:934 ../wxui/main.py:1157 +#: ../wxui/main.py:969 ../wxui/main.py:1192 msgid "Open a file" msgstr "Abrir un archivo" -#: ../wxui/main.py:1532 +#: ../wxui/main.py:1572 msgid "Open a module" msgstr "Abrir un modulo" -#: ../wxui/main.py:885 +#: ../wxui/main.py:920 msgid "Open debug log" msgstr "Abrir registro de depuración" -#: ../wxui/main.py:504 +#: ../wxui/main.py:512 msgid "Open in new window" msgstr "Abrir en nueva ventana" +#: ../wxui/main.py:604 +#, fuzzy +msgid "Open stock config directory" +msgstr "Abrir configuración original {name}" + #: ../wxui/query_sources.py:298 msgid "Optional: -122.0000" msgstr "Opcional: -122.0000" @@ -1965,7 +1970,7 @@ msgstr "Opcional: 45.0000" msgid "Optional: County, Hospital, etc" msgstr "Opcional: País, Hospital, etc" -#: ../wxui/memedit.py:1742 +#: ../wxui/memedit.py:1746 msgid "Overwrite memories?" msgstr "¿Sobrescribir memorias?" @@ -1983,27 +1988,32 @@ msgstr "" msgid "Paste" msgstr "Pegar" -#: ../wxui/memedit.py:1736 +#: ../wxui/memedit.py:1740 #, python-format msgid "Pasted memories will overwrite %i existing memories" msgstr "Memorias pegadas sobrescribirán %i memorias existentes" -#: ../wxui/memedit.py:1739 +#: ../wxui/memedit.py:1743 #, python-format msgid "Pasted memories will overwrite memories %s" msgstr "Memorias pegadas sobrescribirán memorias %s" -#: ../wxui/memedit.py:1733 +#: ../wxui/memedit.py:1737 #, python-format msgid "Pasted memories will overwrite memory %i" msgstr "Memorias pegadas sobrescribirán memoria %i" -#: ../wxui/memedit.py:1730 +#: ../wxui/memedit.py:1734 #, python-format msgid "Pasted memory will overwrite memory %i" msgstr "Memoria pegada sobrescribirá memoria %i" -#: ../wxui/main.py:1691 +#: ../wxui/common.py:564 +#, fuzzy, python-format +msgid "Path %s does not exist" +msgstr "Archivo no existe: %s" + +#: ../wxui/main.py:1725 msgid "Please be sure to quit CHIRP before installing the new version!" msgstr "" "¡Por favor asegúrate de salir de CHIRP antes de instalar la nueva versión!" @@ -2052,7 +2062,7 @@ msgstr "" "4 - Entonces presiona el botón \"A\" en tu radio para iniciar la clonación.\n" " (Al final la radio emitirá un pitido)\n" -#: ../wxui/main.py:1555 +#: ../wxui/main.py:1595 msgid "" "Please note that developer mode is intended for use by developers of the " "CHIRP project, or under the direction of a developer. It enables behaviors " @@ -2065,15 +2075,15 @@ msgstr "" "tu radio si no se usan con EXTREMO cuidado. ¡has sido advertido! ¿Proceder " "de todos modos?" -#: ../wxui/common.py:181 +#: ../wxui/common.py:183 msgid "Please wait" msgstr "Por favor espera" -#: ../wxui/clone.py:351 +#: ../wxui/clone.py:352 msgid "Plug in your cable and then click OK" msgstr "Conecta tu cable y luego haz clic en ACEPTAR" -#: ../wxui/clone.py:239 +#: ../wxui/clone.py:240 msgid "Port" msgstr "Puerto" @@ -2085,7 +2095,7 @@ msgstr "Poder" msgid "Press enter to set this in memory" msgstr "Presiona enter para configurar esto en memoria" -#: ../wxui/main.py:689 +#: ../wxui/main.py:723 msgid "Print Preview" msgstr "Previsualización de impresión" @@ -2097,12 +2107,12 @@ msgstr "Imprimiendo" msgid "Properties" msgstr "Propiedades" -#: ../wxui/main.py:1645 +#: ../wxui/main.py:1679 #, python-format msgid "Query %s" msgstr "Consulta %s" -#: ../wxui/main.py:790 +#: ../wxui/main.py:825 msgid "Query Source" msgstr "Consultar fuente" @@ -2110,7 +2120,7 @@ msgstr "Consultar fuente" msgid "RX DTCS" msgstr "RX DTCS" -#: ../wxui/main.py:904 +#: ../wxui/main.py:939 msgid "Radio" msgstr "Radio" @@ -2119,7 +2129,7 @@ msgstr "Radio" msgid "Radio did not ack block %i" msgstr "La radio no reconoció el bloque %i" -#: ../wxui/clone.py:504 ../wxui/clone.py:569 +#: ../wxui/clone.py:505 ../wxui/clone.py:570 msgid "Radio information" msgstr "Información de radio" @@ -2139,16 +2149,16 @@ msgstr "" "RadioReference Canadá requiere un inicio de sesión antes de que puedas " "consultar" -#: ../wxui/common.py:308 +#: ../wxui/common.py:310 #, python-format msgid "Refreshed memory %s" msgstr "Memoria actualizada %s" -#: ../wxui/main.py:825 +#: ../wxui/main.py:860 msgid "Reload Driver" msgstr "Recargar controlador" -#: ../wxui/main.py:834 +#: ../wxui/main.py:869 msgid "Reload Driver and File" msgstr "Recargar controlador y archivo" @@ -2156,11 +2166,11 @@ msgstr "Recargar controlador y archivo" msgid "Rename bank" msgstr "Renombrar banco" -#: ../wxui/main.py:873 +#: ../wxui/main.py:908 msgid "Reporting enabled" msgstr "Reportes habilitados" -#: ../wxui/main.py:1574 +#: ../wxui/main.py:1614 msgid "" "Reporting helps the CHIRP project know which radio models and OS platforms " "to spend our limited efforts on. We would really appreciate if you left it " @@ -2170,36 +2180,36 @@ msgstr "" "plataformas de SO gastar nuestros limitados esfuerzos. Apreciamos mucho si " "lo dejas habilitado. ¿Realmente deshabilitar reportes?" -#: ../wxui/main.py:1569 +#: ../wxui/main.py:1609 msgid "Restart Required" msgstr "Reinicio requerido" -#: ../wxui/main.py:634 +#: ../wxui/main.py:668 #, python-format msgid "Restore %i tabs" msgstr "Restaurar %i pestañas" -#: ../wxui/common.py:312 +#: ../wxui/common.py:314 msgid "Retrieved settings" msgstr "Ajustes recuperados" -#: ../wxui/main.py:935 +#: ../wxui/main.py:970 msgid "Save" msgstr "Guardar" -#: ../wxui/main.py:1309 +#: ../wxui/main.py:1349 msgid "Save before closing?" msgstr "¿Guardar antes de cerrar?" -#: ../wxui/main.py:936 ../wxui/main.py:1237 +#: ../wxui/main.py:971 ../wxui/main.py:1276 msgid "Save file" msgstr "Guardar archivo" -#: ../wxui/common.py:314 +#: ../wxui/common.py:316 msgid "Saved settings" msgstr "Ajustes guardados" -#: ../wxui/main.py:815 +#: ../wxui/main.py:850 msgid "Select Bandplan" msgstr "Seleccionar plan de banda" @@ -2211,7 +2221,7 @@ msgstr "Seleccionar bandas" msgid "Select Modes" msgstr "Seleccionar modos" -#: ../wxui/main.py:1630 +#: ../wxui/main.py:1664 msgid "Select a bandplan" msgstr "Seleccionar plan de banda" @@ -2219,7 +2229,7 @@ msgstr "Seleccionar plan de banda" msgid "Service" msgstr "Servicio" -#: ../wxui/main.py:209 +#: ../wxui/main.py:217 msgid "Settings" msgstr "Ajustes" @@ -2227,7 +2237,7 @@ msgstr "Ajustes" msgid "Show Raw Memory" msgstr "Mostrar memoria en bruto" -#: ../wxui/main.py:891 +#: ../wxui/main.py:926 msgid "Show debug log location" msgstr "Mostrar ubicación del registro de depuración" @@ -2235,11 +2245,11 @@ msgstr "Mostrar ubicación del registro de depuración" msgid "Show extra fields" msgstr "Mostrar campos adicionales" -#: ../wxui/memedit.py:1791 +#: ../wxui/memedit.py:1795 msgid "Some memories are incompatible with this radio" msgstr "Algunas memorias son incompatibles con esta radio" -#: ../wxui/memedit.py:1686 +#: ../wxui/memedit.py:1687 msgid "Some memories are not deletable" msgstr "Algunas memorias no son borrables" @@ -2274,7 +2284,7 @@ msgstr "Estado" msgid "State/Province" msgstr "Estado/Provincia" -#: ../wxui/main.py:1618 +#: ../wxui/main.py:1652 msgid "Success" msgstr "Éxito" @@ -2316,7 +2326,7 @@ msgstr "" "Por favor guarda una copia sin editar de tu primera descarga\n" "exitosa a un archivo de imagen de Radio de CHIRP (*.img).\n" -#: ../wxui/main.py:1269 +#: ../wxui/main.py:1309 #, python-format msgid "" "The recommended procedure for importing memories is to open the source file " @@ -2412,12 +2422,12 @@ msgstr "Silenciador de tono" msgid "Tuning Step" msgstr "Paso de sintonización" -#: ../wxui/clone.py:345 ../wxui/clone.py:352 ../wxui/clone.py:363 -#: ../wxui/clone.py:371 ../wxui/clone.py:375 +#: ../wxui/clone.py:346 ../wxui/clone.py:353 ../wxui/clone.py:364 +#: ../wxui/clone.py:372 ../wxui/clone.py:376 msgid "USB Port Finder" msgstr "Buscador de puertos USB" -#: ../wxui/clone.py:361 +#: ../wxui/clone.py:362 msgid "" "Unable to determine port for your cable. Check your drivers and connections." msgstr "" @@ -2428,12 +2438,12 @@ msgstr "" msgid "Unable to edit memory before radio is loaded" msgstr "No se puede editar memoria antes de que la radio este cargada" -#: ../wxui/main.py:1195 +#: ../wxui/main.py:1234 #, python-format msgid "Unable to find stock config %r" msgstr "No se puede buscar la configuración original %r" -#: ../wxui/common.py:214 +#: ../wxui/common.py:216 msgid "Unable to open the clipboard" msgstr "No se puede abrir el portapapeles" @@ -2447,7 +2457,7 @@ msgstr "" "seleccionado es de EE.UU pero la radio no es una de EE.UU (o de banda " "ancha). Por favor elije el modelo correcto e intenta de nuevo." -#: ../wxui/main.py:1610 +#: ../wxui/common.py:571 #, python-format msgid "Unable to reveal %s on this system" msgstr "No se puede revelar %s en este sistema" @@ -2461,28 +2471,28 @@ msgstr "No se puede establecer %s en esta memoria" msgid "United States" msgstr "Estados Unidos" -#: ../wxui/clone.py:344 +#: ../wxui/clone.py:345 msgid "Unplug your cable (if needed) and then click OK" msgstr "Desconecta tu cable (si es necesario) y entonces haz clic en ACEPTAR" -#: ../wxui/clone.py:584 +#: ../wxui/clone.py:585 msgid "Upload instructions" msgstr "Cargar instrucciones" -#: ../wxui/main.py:784 ../wxui/main.py:942 +#: ../wxui/main.py:819 ../wxui/main.py:977 msgid "Upload to radio" msgstr "Cargar a radio" -#: ../wxui/common.py:310 +#: ../wxui/common.py:312 #, python-format msgid "Uploaded memory %s" msgstr "Memoria cargada %s" -#: ../wxui/main.py:752 +#: ../wxui/main.py:787 msgid "Use fixed-width font" msgstr "Usar fuente de ancho fijo" -#: ../wxui/main.py:760 +#: ../wxui/main.py:795 msgid "Use larger font" msgstr "Usar fuente más grande" @@ -2491,12 +2501,12 @@ msgstr "Usar fuente más grande" msgid "Value does not fit in %i bits" msgstr "Valor no cabe en %i bits" -#: ../wxui/common.py:420 +#: ../wxui/common.py:422 #, python-format msgid "Value must be at least %.4f" msgstr "Valor debe ser al menos %.4f" -#: ../wxui/common.py:424 +#: ../wxui/common.py:426 #, python-format msgid "Value must be at most %.4f" msgstr "Valor debe ser como máximo %.4f" @@ -2510,11 +2520,11 @@ msgstr "Valor debe ser exactamente %i dígitos decimales" msgid "Value must be zero or greater" msgstr "Valor debe ser cero o superior" -#: ../wxui/clone.py:242 +#: ../wxui/clone.py:243 msgid "Vendor" msgstr "Vendedor" -#: ../wxui/main.py:903 +#: ../wxui/main.py:938 msgid "View" msgstr "Ver" @@ -2527,7 +2537,7 @@ msgstr "Advertencia" msgid "Warning: %s" msgstr "Advertencia: %s" -#: ../wxui/main.py:421 +#: ../wxui/main.py:429 msgid "Welcome" msgstr "Bienvenido" @@ -2535,7 +2545,7 @@ msgstr "Bienvenido" msgid "Would you like CHIRP to install a desktop icon for you?" msgstr "¿Quieres que CHIRP instale un icono en el escritorio para ti?" -#: ../wxui/clone.py:369 +#: ../wxui/clone.py:370 msgid "Your cable appears to be on port:" msgstr "Tu cable parece estar en puerto:" @@ -2551,11 +2561,11 @@ msgstr "bytes" msgid "bytes each" msgstr "bytes cada" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "disabled" msgstr "deshabilitado" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "enabled" msgstr "habilitado" @@ -2896,10 +2906,6 @@ msgstr "{bank} está lleno" #~ msgid "Note:" #~ msgstr "Nota:" -#, python-brace-format -#~ msgid "Open stock configuration {name}" -#~ msgstr "Abrir configuración original {name}" - #~ msgid "Other" #~ msgstr "Otro" diff --git a/chirp/locale/fr.po b/chirp/locale/fr.po index fa333a57e..317dc4833 100644 --- a/chirp/locale/fr.po +++ b/chirp/locale/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: CHIRP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 18:46-0700\n" +"POT-Creation-Date: 2023-06-28 16:31-0700\n" "PO-Revision-Date: 2014-04-05 22:18+0100\n" "Last-Translator: Matthieu Lapadu-Hargues \n" "Language-Team: French\n" @@ -49,7 +49,7 @@ msgstr "Supprimer (et remonter)" msgid "%i Memories and shift block up" msgstr "Supprimer (et remonter)" -#: ../wxui/main.py:1307 +#: ../wxui/main.py:1347 #, fuzzy, python-format msgid "%s has not been saved. Save before closing?" msgstr "" @@ -59,7 +59,7 @@ msgstr "" msgid "(none)" msgstr "" -#: ../wxui/memedit.py:1787 +#: ../wxui/memedit.py:1791 #, python-format msgid "...and %i more" msgstr "" @@ -596,7 +596,7 @@ msgid "" " click Then" msgstr "" -#: ../drivers/uvk5.py:636 +#: ../drivers/uvk5.py:633 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -607,7 +607,7 @@ msgid "" "attached\n" msgstr "" -#: ../drivers/uvk5.py:643 +#: ../drivers/uvk5.py:640 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -617,17 +617,17 @@ msgid "" "It will may not work if you turn on the radio with the cable already attached" msgstr "" -#: ../wxui/main.py:1685 +#: ../wxui/main.py:1719 msgid "" "A new CHIRP version is available. Please visit the website as soon as " "possible to download it!" msgstr "" -#: ../wxui/main.py:859 +#: ../wxui/main.py:894 msgid "About" msgstr "" -#: ../wxui/main.py:1547 +#: ../wxui/main.py:1587 msgid "About CHIRP" msgstr "" @@ -635,12 +635,12 @@ msgstr "" msgid "All" msgstr "Tout" -#: ../wxui/main.py:1143 +#: ../wxui/main.py:1178 #, fuzzy msgid "All Files" msgstr "Fichiers CSV" -#: ../wxui/main.py:1154 +#: ../wxui/main.py:1189 msgid "All supported formats|" msgstr "" @@ -648,7 +648,7 @@ msgstr "" msgid "Amateur" msgstr "" -#: ../wxui/common.py:497 ../wxui/common.py:523 +#: ../wxui/common.py:499 ../wxui/common.py:525 msgid "An error has occurred" msgstr "Une erreur s'est produite" @@ -660,7 +660,7 @@ msgstr "" msgid "Available modules" msgstr "" -#: ../wxui/main.py:1631 +#: ../wxui/main.py:1665 msgid "Bandplan" msgstr "" @@ -668,7 +668,7 @@ msgstr "" msgid "Bands" msgstr "" -#: ../wxui/main.py:204 +#: ../wxui/main.py:212 msgid "Banks" msgstr "Banques" @@ -676,7 +676,7 @@ msgstr "Banques" msgid "Bin" msgstr "" -#: ../wxui/main.py:215 +#: ../wxui/main.py:223 msgid "Browser" msgstr "" @@ -694,7 +694,7 @@ msgid "" "Channels with equivalent TX and RX %s are represented by tone mode of \"%s\"" msgstr "" -#: ../wxui/main.py:1142 +#: ../wxui/main.py:1177 msgid "Chirp Image Files" msgstr "" @@ -744,7 +744,7 @@ msgstr "" msgid "Clone completed, checking for spurious bytes" msgstr "" -#: ../wxui/common.py:108 +#: ../wxui/common.py:110 msgid "Cloning" msgstr "Clonage" @@ -758,11 +758,11 @@ msgstr "Telecharger depuis la radio - Lire" msgid "Cloning to radio" msgstr "Telecharger vers la radio - Ecrire" -#: ../wxui/main.py:937 +#: ../wxui/main.py:972 msgid "Close" msgstr "" -#: ../wxui/main.py:938 +#: ../wxui/main.py:973 msgid "Close file" msgstr "" @@ -823,11 +823,11 @@ msgid "" "Polarity" msgstr "DTCS Pol" -#: ../wxui/memedit.py:2040 +#: ../wxui/memedit.py:2044 msgid "DV Memory" msgstr "" -#: ../wxui/main.py:1561 +#: ../wxui/main.py:1601 msgid "Danger Ahead" msgstr "" @@ -840,12 +840,12 @@ msgstr "Detecter" msgid "Delete" msgstr "Supprimer" -#: ../wxui/main.py:864 +#: ../wxui/main.py:899 #, fuzzy msgid "Developer Mode" msgstr "Developpeur" -#: ../wxui/main.py:1567 +#: ../wxui/main.py:1607 #, python-format msgid "Developer state is now %s. CHIRP must be restarted to take effect" msgstr "" @@ -854,11 +854,11 @@ msgstr "" msgid "Diff Raw Memories" msgstr "Comparaison memoires brutes" -#: ../wxui/memedit.py:1965 +#: ../wxui/memedit.py:1969 msgid "Digital Code" msgstr "Digital code" -#: ../wxui/main.py:1578 +#: ../wxui/main.py:1618 msgid "Disable reporting" msgstr "" @@ -879,16 +879,16 @@ msgstr "" msgid "Double-click to change bank name" msgstr "" -#: ../wxui/main.py:939 +#: ../wxui/main.py:974 msgid "Download" msgstr "" -#: ../wxui/main.py:776 ../wxui/main.py:940 +#: ../wxui/main.py:811 ../wxui/main.py:975 #, fuzzy msgid "Download from radio" msgstr "Telecharger depuis la radio - Lire" -#: ../wxui/clone.py:512 +#: ../wxui/clone.py:513 #, fuzzy msgid "Download instructions" msgstr "Telecharger depuis la radio - Lire" @@ -897,17 +897,17 @@ msgstr "Telecharger depuis la radio - Lire" msgid "Duplex" msgstr "Duplex" -#: ../wxui/memedit.py:1995 +#: ../wxui/memedit.py:1999 #, python-format msgid "Edit details for %i memories" msgstr "" -#: ../wxui/memedit.py:1993 +#: ../wxui/memedit.py:1997 #, python-format msgid "Edit details for memory %i" msgstr "" -#: ../wxui/main.py:808 +#: ../wxui/main.py:843 msgid "Enable Automatic Edits" msgstr "" @@ -933,11 +933,11 @@ msgstr "" msgid "Enter a new name for bank %s:" msgstr "" -#: ../wxui/clone.py:405 +#: ../wxui/clone.py:406 msgid "Enter custom port:" msgstr "" -#: ../wxui/common.py:316 +#: ../wxui/common.py:318 #, fuzzy, python-format msgid "Erased memory %s" msgstr "Effacer la memoire {loc}" @@ -947,24 +947,24 @@ msgstr "Effacer la memoire {loc}" msgid "Error applying settings" msgstr "Erreur ecriture memoire" -#: ../wxui/clone.py:449 +#: ../wxui/clone.py:450 msgid "Error communicating with radio" msgstr "" -#: ../wxui/clone.py:480 +#: ../wxui/clone.py:481 msgid "Experimental driver" msgstr "" -#: ../wxui/memedit.py:1925 +#: ../wxui/memedit.py:1929 msgid "Export can only write CSV files" msgstr "" -#: ../wxui/main.py:672 ../wxui/main.py:1292 +#: ../wxui/main.py:706 ../wxui/main.py:1332 #, fuzzy msgid "Export to CSV" msgstr "Exporter vers un fichier" -#: ../wxui/memedit.py:2029 +#: ../wxui/memedit.py:2033 msgid "Extra" msgstr "" @@ -976,13 +976,13 @@ msgstr "" msgid "Features" msgstr "" -#: ../wxui/main.py:534 +#: ../wxui/main.py:542 #, python-format msgid "File does not exist: %s" msgstr "" -#: ../wxui/main.py:1146 ../wxui/main.py:1223 ../wxui/main.py:1233 -#: ../wxui/main.py:1288 ../wxui/main.py:1513 ../wxui/main.py:1514 +#: ../wxui/main.py:1181 ../wxui/main.py:1262 ../wxui/main.py:1272 +#: ../wxui/main.py:1328 ../wxui/main.py:1553 ../wxui/main.py:1554 #, fuzzy msgid "Files" msgstr "_Fichier" @@ -995,15 +995,15 @@ msgstr "" msgid "Filter results with location matching this string" msgstr "" -#: ../wxui/main.py:1362 +#: ../wxui/main.py:1402 msgid "Find" msgstr "" -#: ../wxui/main.py:730 +#: ../wxui/main.py:765 msgid "Find Next" msgstr "" -#: ../wxui/common.py:318 +#: ../wxui/common.py:320 #, python-format msgid "Finished radio job %s" msgstr "" @@ -1234,16 +1234,16 @@ msgstr "" msgid "If set, sort results by distance from these coordinates" msgstr "" -#: ../wxui/main.py:1278 +#: ../wxui/main.py:1318 msgid "Import" msgstr "Importer" -#: ../wxui/main.py:666 +#: ../wxui/main.py:700 #, fuzzy msgid "Import from file" msgstr "Importer depuis un fichier" -#: ../wxui/main.py:1276 +#: ../wxui/main.py:1316 #, fuzzy msgid "Import not recommended" msgstr "Importer de RFinder" @@ -1252,7 +1252,7 @@ msgstr "Importer de RFinder" msgid "Index" msgstr "Index" -#: ../wxui/main.py:217 +#: ../wxui/main.py:225 msgid "Info" msgstr "" @@ -1269,7 +1269,7 @@ msgstr "Inserer une ligne avant" msgid "Install desktop icon?" msgstr "" -#: ../wxui/main.py:848 +#: ../wxui/main.py:883 msgid "Interact with driver" msgstr "" @@ -1282,12 +1282,12 @@ msgstr "Valeur invalide. Doit etre un entier." msgid "Invalid ZIP code" msgstr "" -#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2120 +#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2124 #, python-format msgid "Invalid edit: %s" msgstr "" -#: ../wxui/main.py:1510 +#: ../wxui/main.py:1550 msgid "Invalid or unsupported module file" msgstr "" @@ -1300,7 +1300,7 @@ msgstr "Valeur invalide pour ce champ" msgid "Issue number:" msgstr "" -#: ../wxui/main.py:335 +#: ../wxui/main.py:343 msgid "LIVE" msgstr "" @@ -1325,17 +1325,17 @@ msgstr "" msgid "Limit results to this distance (km) from coordinates" msgstr "" -#: ../wxui/main.py:678 +#: ../wxui/main.py:712 #, fuzzy msgid "Load Module" msgstr "Tone Mode" -#: ../wxui/main.py:896 ../wxui/developer.py:487 +#: ../wxui/main.py:931 ../wxui/developer.py:487 #, fuzzy msgid "Load module from issue" msgstr "Tone Mode" -#: ../wxui/main.py:1517 +#: ../wxui/main.py:1557 msgid "" "Loading modules can be extremely dangerous, leading to damage to your " "computer, radio, or both. NEVER load a module from a source you do not " @@ -1353,7 +1353,7 @@ msgstr "" msgid "Longitude" msgstr "" -#: ../wxui/main.py:196 +#: ../wxui/main.py:204 msgid "Memories" msgstr "Memoires" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Mode" msgstr "Mode" -#: ../wxui/clone.py:246 +#: ../wxui/clone.py:247 msgid "Model" msgstr "Modele" @@ -1385,19 +1385,19 @@ msgstr "Modele" msgid "Modes" msgstr "Mode" -#: ../wxui/main.py:1514 +#: ../wxui/main.py:1554 msgid "Module" msgstr "" -#: ../wxui/main.py:1486 +#: ../wxui/main.py:1526 msgid "Module Loaded" msgstr "" -#: ../wxui/main.py:1617 +#: ../wxui/main.py:1651 msgid "Module loaded successfully" msgstr "" -#: ../wxui/clone.py:374 +#: ../wxui/clone.py:375 #, python-format msgid "More than one port found: %s" msgstr "" @@ -1412,11 +1412,11 @@ msgstr "Desce_ndre" msgid "Move Up" msgstr "_Monter" -#: ../wxui/main.py:613 +#: ../wxui/main.py:647 msgid "New Window" msgstr "" -#: ../wxui/main.py:1687 +#: ../wxui/main.py:1721 msgid "New version available" msgstr "" @@ -1454,40 +1454,45 @@ msgstr "" msgid "Only certain modes" msgstr "" -#: ../wxui/main.py:317 +#: ../wxui/main.py:325 msgid "Only memory tabs may be exported" msgstr "" -#: ../wxui/main.py:933 ../wxui/main.py:1278 +#: ../wxui/main.py:968 ../wxui/main.py:1318 msgid "Open" msgstr "" -#: ../wxui/main.py:653 +#: ../wxui/main.py:687 #, fuzzy msgid "Open Recent" msgstr "_Recent" -#: ../wxui/main.py:624 +#: ../wxui/main.py:658 #, fuzzy msgid "Open Stock Config" msgstr "Ouvrir base de donnees" -#: ../wxui/main.py:934 ../wxui/main.py:1157 +#: ../wxui/main.py:969 ../wxui/main.py:1192 msgid "Open a file" msgstr "" -#: ../wxui/main.py:1532 +#: ../wxui/main.py:1572 msgid "Open a module" msgstr "" -#: ../wxui/main.py:885 +#: ../wxui/main.py:920 msgid "Open debug log" msgstr "" -#: ../wxui/main.py:504 +#: ../wxui/main.py:512 msgid "Open in new window" msgstr "" +#: ../wxui/main.py:604 +#, fuzzy +msgid "Open stock config directory" +msgstr "Ouvrir la base de donnees {name}" + #: ../wxui/query_sources.py:298 msgid "Optional: -122.0000" msgstr "" @@ -1505,7 +1510,7 @@ msgstr "" msgid "Optional: County, Hospital, etc" msgstr "" -#: ../wxui/memedit.py:1742 +#: ../wxui/memedit.py:1746 #, fuzzy msgid "Overwrite memories?" msgstr "Ecraser ?" @@ -1521,27 +1526,32 @@ msgstr "" msgid "Paste" msgstr "Coller" -#: ../wxui/memedit.py:1736 +#: ../wxui/memedit.py:1740 #, python-format msgid "Pasted memories will overwrite %i existing memories" msgstr "" -#: ../wxui/memedit.py:1739 +#: ../wxui/memedit.py:1743 #, python-format msgid "Pasted memories will overwrite memories %s" msgstr "" -#: ../wxui/memedit.py:1733 +#: ../wxui/memedit.py:1737 #, python-format msgid "Pasted memories will overwrite memory %i" msgstr "" -#: ../wxui/memedit.py:1730 +#: ../wxui/memedit.py:1734 #, python-format msgid "Pasted memory will overwrite memory %i" msgstr "" -#: ../wxui/main.py:1691 +#: ../wxui/common.py:564 +#, python-format +msgid "Path %s does not exist" +msgstr "" + +#: ../wxui/main.py:1725 msgid "Please be sure to quit CHIRP before installing the new version!" msgstr "" @@ -1571,7 +1581,7 @@ msgid "" " (At the end radio will beep)\n" msgstr "" -#: ../wxui/main.py:1555 +#: ../wxui/main.py:1595 msgid "" "Please note that developer mode is intended for use by developers of the " "CHIRP project, or under the direction of a developer. It enables behaviors " @@ -1579,15 +1589,15 @@ msgid "" "EXTREME care. You have been warned! Proceed anyway?" msgstr "" -#: ../wxui/common.py:181 +#: ../wxui/common.py:183 msgid "Please wait" msgstr "" -#: ../wxui/clone.py:351 +#: ../wxui/clone.py:352 msgid "Plug in your cable and then click OK" msgstr "" -#: ../wxui/clone.py:239 +#: ../wxui/clone.py:240 msgid "Port" msgstr "Port" @@ -1600,7 +1610,7 @@ msgstr "Puissance" msgid "Press enter to set this in memory" msgstr "Erreur ecriture memoire" -#: ../wxui/main.py:689 +#: ../wxui/main.py:723 msgid "Print Preview" msgstr "" @@ -1612,12 +1622,12 @@ msgstr "" msgid "Properties" msgstr "" -#: ../wxui/main.py:1645 +#: ../wxui/main.py:1679 #, python-format msgid "Query %s" msgstr "" -#: ../wxui/main.py:790 +#: ../wxui/main.py:825 msgid "Query Source" msgstr "" @@ -1625,7 +1635,7 @@ msgstr "" msgid "RX DTCS" msgstr "" -#: ../wxui/main.py:904 +#: ../wxui/main.py:939 msgid "Radio" msgstr "Radio" @@ -1634,7 +1644,7 @@ msgstr "Radio" msgid "Radio did not ack block %i" msgstr "" -#: ../wxui/clone.py:504 ../wxui/clone.py:569 +#: ../wxui/clone.py:505 ../wxui/clone.py:570 #, fuzzy msgid "Radio information" msgstr "Recuperation des information de banque" @@ -1650,16 +1660,16 @@ msgstr "" msgid "RadioReference Canada requires a login before you can query" msgstr "" -#: ../wxui/common.py:308 +#: ../wxui/common.py:310 #, python-format msgid "Refreshed memory %s" msgstr "" -#: ../wxui/main.py:825 +#: ../wxui/main.py:860 msgid "Reload Driver" msgstr "" -#: ../wxui/main.py:834 +#: ../wxui/main.py:869 msgid "Reload Driver and File" msgstr "" @@ -1668,48 +1678,48 @@ msgstr "" msgid "Rename bank" msgstr "Donner un nom a la banque" -#: ../wxui/main.py:873 +#: ../wxui/main.py:908 #, fuzzy msgid "Reporting enabled" msgstr "Rapport d'utilisation desactive" -#: ../wxui/main.py:1574 +#: ../wxui/main.py:1614 msgid "" "Reporting helps the CHIRP project know which radio models and OS platforms " "to spend our limited efforts on. We would really appreciate if you left it " "enabled. Really disable reporting?" msgstr "" -#: ../wxui/main.py:1569 +#: ../wxui/main.py:1609 msgid "Restart Required" msgstr "" -#: ../wxui/main.py:634 +#: ../wxui/main.py:668 #, python-format msgid "Restore %i tabs" msgstr "" -#: ../wxui/common.py:312 +#: ../wxui/common.py:314 msgid "Retrieved settings" msgstr "" -#: ../wxui/main.py:935 +#: ../wxui/main.py:970 msgid "Save" msgstr "" -#: ../wxui/main.py:1309 +#: ../wxui/main.py:1349 msgid "Save before closing?" msgstr "" -#: ../wxui/main.py:936 ../wxui/main.py:1237 +#: ../wxui/main.py:971 ../wxui/main.py:1276 msgid "Save file" msgstr "" -#: ../wxui/common.py:314 +#: ../wxui/common.py:316 msgid "Saved settings" msgstr "" -#: ../wxui/main.py:815 +#: ../wxui/main.py:850 #, fuzzy msgid "Select Bandplan" msgstr "Selectionner les colonnes" @@ -1724,7 +1734,7 @@ msgstr "Selectionner les colonnes" msgid "Select Modes" msgstr "Selectionner les colonnes" -#: ../wxui/main.py:1630 +#: ../wxui/main.py:1664 msgid "Select a bandplan" msgstr "" @@ -1732,7 +1742,7 @@ msgstr "" msgid "Service" msgstr "" -#: ../wxui/main.py:209 +#: ../wxui/main.py:217 msgid "Settings" msgstr "" @@ -1740,7 +1750,7 @@ msgstr "" msgid "Show Raw Memory" msgstr "Afficher les donnees de memoires brutes" -#: ../wxui/main.py:891 +#: ../wxui/main.py:926 msgid "Show debug log location" msgstr "" @@ -1748,12 +1758,12 @@ msgstr "" msgid "Show extra fields" msgstr "" -#: ../wxui/memedit.py:1791 +#: ../wxui/memedit.py:1795 #, fuzzy msgid "Some memories are incompatible with this radio" msgstr "La memoire collee {number} n'est pas compatible avec cette radio car :" -#: ../wxui/memedit.py:1686 +#: ../wxui/memedit.py:1687 msgid "Some memories are not deletable" msgstr "" @@ -1789,7 +1799,7 @@ msgstr "" msgid "State/Province" msgstr "" -#: ../wxui/main.py:1618 +#: ../wxui/main.py:1652 msgid "Success" msgstr "" @@ -1816,7 +1826,7 @@ msgid "" "download to a CHIRP Radio Images (*.img) file.\n" msgstr "" -#: ../wxui/main.py:1269 +#: ../wxui/main.py:1309 #, python-format msgid "" "The recommended procedure for importing memories is to open the source file " @@ -1895,12 +1905,12 @@ msgstr "ToneSql" msgid "Tuning Step" msgstr "Pas" -#: ../wxui/clone.py:345 ../wxui/clone.py:352 ../wxui/clone.py:363 -#: ../wxui/clone.py:371 ../wxui/clone.py:375 +#: ../wxui/clone.py:346 ../wxui/clone.py:353 ../wxui/clone.py:364 +#: ../wxui/clone.py:372 ../wxui/clone.py:376 msgid "USB Port Finder" msgstr "" -#: ../wxui/clone.py:361 +#: ../wxui/clone.py:362 msgid "" "Unable to determine port for your cable. Check your drivers and connections." msgstr "" @@ -1909,12 +1919,12 @@ msgstr "" msgid "Unable to edit memory before radio is loaded" msgstr "" -#: ../wxui/main.py:1195 +#: ../wxui/main.py:1234 #, fuzzy, python-format msgid "Unable to find stock config %r" msgstr "Ouvrir base de donnees" -#: ../wxui/common.py:214 +#: ../wxui/common.py:216 #, fuzzy msgid "Unable to open the clipboard" msgstr "Impossible de detecter la radio sur {port}" @@ -1926,7 +1936,7 @@ msgid "" "model and try again." msgstr "" -#: ../wxui/main.py:1610 +#: ../wxui/common.py:571 #, fuzzy, python-format msgid "Unable to reveal %s on this system" msgstr "Impossible de realiser des changements pour ce modele" @@ -1940,29 +1950,29 @@ msgstr "Impossible de realiser des changements pour ce modele" msgid "United States" msgstr "" -#: ../wxui/clone.py:344 +#: ../wxui/clone.py:345 msgid "Unplug your cable (if needed) and then click OK" msgstr "" -#: ../wxui/clone.py:584 +#: ../wxui/clone.py:585 msgid "Upload instructions" msgstr "" -#: ../wxui/main.py:784 ../wxui/main.py:942 +#: ../wxui/main.py:819 ../wxui/main.py:977 #, fuzzy msgid "Upload to radio" msgstr "Telecharger vers la radio - Ecrire" -#: ../wxui/common.py:310 +#: ../wxui/common.py:312 #, python-format msgid "Uploaded memory %s" msgstr "" -#: ../wxui/main.py:752 +#: ../wxui/main.py:787 msgid "Use fixed-width font" msgstr "" -#: ../wxui/main.py:760 +#: ../wxui/main.py:795 msgid "Use larger font" msgstr "" @@ -1971,12 +1981,12 @@ msgstr "" msgid "Value does not fit in %i bits" msgstr "" -#: ../wxui/common.py:420 +#: ../wxui/common.py:422 #, python-format msgid "Value must be at least %.4f" msgstr "" -#: ../wxui/common.py:424 +#: ../wxui/common.py:426 #, python-format msgid "Value must be at most %.4f" msgstr "" @@ -1990,11 +2000,11 @@ msgstr "" msgid "Value must be zero or greater" msgstr "" -#: ../wxui/clone.py:242 +#: ../wxui/clone.py:243 msgid "Vendor" msgstr "Fabricant" -#: ../wxui/main.py:903 +#: ../wxui/main.py:938 #, fuzzy msgid "View" msgstr "_Voir" @@ -2008,7 +2018,7 @@ msgstr "" msgid "Warning: %s" msgstr "" -#: ../wxui/main.py:421 +#: ../wxui/main.py:429 msgid "Welcome" msgstr "" @@ -2016,7 +2026,7 @@ msgstr "" msgid "Would you like CHIRP to install a desktop icon for you?" msgstr "" -#: ../wxui/clone.py:369 +#: ../wxui/clone.py:370 msgid "Your cable appears to be on port:" msgstr "" @@ -2032,11 +2042,11 @@ msgstr "" msgid "bytes each" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "disabled" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "enabled" msgstr "" @@ -2318,9 +2328,6 @@ msgstr "" #~ msgid "Open recent file {name}" #~ msgstr "Ouvrir le fichier recent {name}" -#~ msgid "Open stock configuration {name}" -#~ msgstr "Ouvrir la base de donnees {name}" - #~ msgid "Overwrite" #~ msgstr "Ecraser" diff --git a/chirp/locale/hu.po b/chirp/locale/hu.po index e8e653132..01b56b6aa 100644 --- a/chirp/locale/hu.po +++ b/chirp/locale/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: CHIRP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 18:46-0700\n" +"POT-Creation-Date: 2023-06-28 16:31-0700\n" "PO-Revision-Date: 2015-01-28 13:47+0100\n" "Last-Translator: Attila Joubert \n" "Language-Team: English\n" @@ -49,7 +49,7 @@ msgstr "... és a tömböt felfelé lépteti" msgid "%i Memories and shift block up" msgstr "... és a tömböt felfelé lépteti" -#: ../wxui/main.py:1307 +#: ../wxui/main.py:1347 #, fuzzy, python-format msgid "%s has not been saved. Save before closing?" msgstr "A fájl megváltozott! Menti bezárás előtt?" @@ -58,7 +58,7 @@ msgstr "A fájl megváltozott! Menti bezárás előtt?" msgid "(none)" msgstr "" -#: ../wxui/memedit.py:1787 +#: ../wxui/memedit.py:1791 #, fuzzy, python-format msgid "...and %i more" msgstr "...és minden memória felfelé lép" @@ -595,7 +595,7 @@ msgid "" " click Then" msgstr "" -#: ../drivers/uvk5.py:636 +#: ../drivers/uvk5.py:633 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -606,7 +606,7 @@ msgid "" "attached\n" msgstr "" -#: ../drivers/uvk5.py:643 +#: ../drivers/uvk5.py:640 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -616,17 +616,17 @@ msgid "" "It will may not work if you turn on the radio with the cable already attached" msgstr "" -#: ../wxui/main.py:1685 +#: ../wxui/main.py:1719 msgid "" "A new CHIRP version is available. Please visit the website as soon as " "possible to download it!" msgstr "" -#: ../wxui/main.py:859 +#: ../wxui/main.py:894 msgid "About" msgstr "" -#: ../wxui/main.py:1547 +#: ../wxui/main.py:1587 msgid "About CHIRP" msgstr "" @@ -634,12 +634,12 @@ msgstr "" msgid "All" msgstr "Mind" -#: ../wxui/main.py:1143 +#: ../wxui/main.py:1178 #, fuzzy msgid "All Files" msgstr "CSV fájlok" -#: ../wxui/main.py:1154 +#: ../wxui/main.py:1189 msgid "All supported formats|" msgstr "" @@ -647,7 +647,7 @@ msgstr "" msgid "Amateur" msgstr "" -#: ../wxui/common.py:497 ../wxui/common.py:523 +#: ../wxui/common.py:499 ../wxui/common.py:525 msgid "An error has occurred" msgstr "Hiba történt" @@ -659,7 +659,7 @@ msgstr "" msgid "Available modules" msgstr "" -#: ../wxui/main.py:1631 +#: ../wxui/main.py:1665 msgid "Bandplan" msgstr "" @@ -667,7 +667,7 @@ msgstr "" msgid "Bands" msgstr "" -#: ../wxui/main.py:204 +#: ../wxui/main.py:212 msgid "Banks" msgstr "" @@ -675,7 +675,7 @@ msgstr "" msgid "Bin" msgstr "" -#: ../wxui/main.py:215 +#: ../wxui/main.py:223 msgid "Browser" msgstr "Böngésző" @@ -693,7 +693,7 @@ msgid "" "Channels with equivalent TX and RX %s are represented by tone mode of \"%s\"" msgstr "" -#: ../wxui/main.py:1142 +#: ../wxui/main.py:1177 msgid "Chirp Image Files" msgstr "" @@ -743,7 +743,7 @@ msgstr "" msgid "Clone completed, checking for spurious bytes" msgstr "" -#: ../wxui/common.py:108 +#: ../wxui/common.py:110 msgid "Cloning" msgstr "Klónozás" @@ -757,11 +757,11 @@ msgstr "Letöltés a rádióról" msgid "Cloning to radio" msgstr "Feltöltés a rádióra" -#: ../wxui/main.py:937 +#: ../wxui/main.py:972 msgid "Close" msgstr "" -#: ../wxui/main.py:938 +#: ../wxui/main.py:973 msgid "Close file" msgstr "" @@ -821,12 +821,12 @@ msgid "" "Polarity" msgstr "DTCS pol." -#: ../wxui/memedit.py:2040 +#: ../wxui/memedit.py:2044 #, fuzzy msgid "DV Memory" msgstr "ez a memória" -#: ../wxui/main.py:1561 +#: ../wxui/main.py:1601 msgid "Danger Ahead" msgstr "" @@ -839,12 +839,12 @@ msgstr "Érzékelés" msgid "Delete" msgstr "Törlés" -#: ../wxui/main.py:864 +#: ../wxui/main.py:899 #, fuzzy msgid "Developer Mode" msgstr "Fejlesztői" -#: ../wxui/main.py:1567 +#: ../wxui/main.py:1607 #, python-format msgid "Developer state is now %s. CHIRP must be restarted to take effect" msgstr "" @@ -853,11 +853,11 @@ msgstr "" msgid "Diff Raw Memories" msgstr "Memóriasorok összehasonlítása" -#: ../wxui/memedit.py:1965 +#: ../wxui/memedit.py:1969 msgid "Digital Code" msgstr "Digitális kód" -#: ../wxui/main.py:1578 +#: ../wxui/main.py:1618 msgid "Disable reporting" msgstr "" @@ -879,16 +879,16 @@ msgstr "" msgid "Double-click to change bank name" msgstr "" -#: ../wxui/main.py:939 +#: ../wxui/main.py:974 msgid "Download" msgstr "" -#: ../wxui/main.py:776 ../wxui/main.py:940 +#: ../wxui/main.py:811 ../wxui/main.py:975 #, fuzzy msgid "Download from radio" msgstr "Letöltés a rádióról" -#: ../wxui/clone.py:512 +#: ../wxui/clone.py:513 #, fuzzy msgid "Download instructions" msgstr "{name} Utasítások" @@ -897,17 +897,17 @@ msgstr "{name} Utasítások" msgid "Duplex" msgstr "Duplex" -#: ../wxui/memedit.py:1995 +#: ../wxui/memedit.py:1999 #, fuzzy, python-format msgid "Edit details for %i memories" msgstr "Több memória szerkesztése" -#: ../wxui/memedit.py:1993 +#: ../wxui/memedit.py:1997 #, python-format msgid "Edit details for memory %i" msgstr "" -#: ../wxui/main.py:808 +#: ../wxui/main.py:843 msgid "Enable Automatic Edits" msgstr "" @@ -934,11 +934,11 @@ msgstr "" msgid "Enter a new name for bank %s:" msgstr "" -#: ../wxui/clone.py:405 +#: ../wxui/clone.py:406 msgid "Enter custom port:" msgstr "" -#: ../wxui/common.py:316 +#: ../wxui/common.py:318 #, fuzzy, python-format msgid "Erased memory %s" msgstr "A(z) {loc}. memóriahely törlése" @@ -948,25 +948,25 @@ msgstr "A(z) {loc}. memóriahely törlése" msgid "Error applying settings" msgstr "Hiba a(z) %s érték beállításakor" -#: ../wxui/clone.py:449 +#: ../wxui/clone.py:450 msgid "Error communicating with radio" msgstr "" -#: ../wxui/clone.py:480 +#: ../wxui/clone.py:481 #, fuzzy msgid "Experimental driver" msgstr "Folytassam kísérleti driver-rel?" -#: ../wxui/memedit.py:1925 +#: ../wxui/memedit.py:1929 msgid "Export can only write CSV files" msgstr "" -#: ../wxui/main.py:672 ../wxui/main.py:1292 +#: ../wxui/main.py:706 ../wxui/main.py:1332 #, fuzzy msgid "Export to CSV" msgstr "Export fájlba" -#: ../wxui/memedit.py:2029 +#: ../wxui/memedit.py:2033 msgid "Extra" msgstr "" @@ -978,13 +978,13 @@ msgstr "" msgid "Features" msgstr "" -#: ../wxui/main.py:534 +#: ../wxui/main.py:542 #, python-format msgid "File does not exist: %s" msgstr "" -#: ../wxui/main.py:1146 ../wxui/main.py:1223 ../wxui/main.py:1233 -#: ../wxui/main.py:1288 ../wxui/main.py:1513 ../wxui/main.py:1514 +#: ../wxui/main.py:1181 ../wxui/main.py:1262 ../wxui/main.py:1272 +#: ../wxui/main.py:1328 ../wxui/main.py:1553 ../wxui/main.py:1554 #, fuzzy msgid "Files" msgstr "_Fájl" @@ -997,17 +997,17 @@ msgstr "" msgid "Filter results with location matching this string" msgstr "" -#: ../wxui/main.py:1362 +#: ../wxui/main.py:1402 #, fuzzy msgid "Find" msgstr "RFinder" -#: ../wxui/main.py:730 +#: ../wxui/main.py:765 #, fuzzy msgid "Find Next" msgstr "RFinder" -#: ../wxui/common.py:318 +#: ../wxui/common.py:320 #, python-format msgid "Finished radio job %s" msgstr "" @@ -1240,16 +1240,16 @@ msgstr "" msgid "If set, sort results by distance from these coordinates" msgstr "" -#: ../wxui/main.py:1278 +#: ../wxui/main.py:1318 msgid "Import" msgstr "Importálás" -#: ../wxui/main.py:666 +#: ../wxui/main.py:700 #, fuzzy msgid "Import from file" msgstr "Importálás fájlból" -#: ../wxui/main.py:1276 +#: ../wxui/main.py:1316 msgid "Import not recommended" msgstr "" @@ -1257,7 +1257,7 @@ msgstr "" msgid "Index" msgstr "Sorszám" -#: ../wxui/main.py:217 +#: ../wxui/main.py:225 msgid "Info" msgstr "" @@ -1275,7 +1275,7 @@ msgstr "Memória beszúrása fölé" msgid "Install desktop icon?" msgstr "" -#: ../wxui/main.py:848 +#: ../wxui/main.py:883 msgid "Interact with driver" msgstr "" @@ -1288,12 +1288,12 @@ msgstr "Érvénytelen érték! Egész szám kell legyen." msgid "Invalid ZIP code" msgstr "" -#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2120 +#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2124 #, fuzzy, python-format msgid "Invalid edit: %s" msgstr "Érvénytelen érték %s" -#: ../wxui/main.py:1510 +#: ../wxui/main.py:1550 msgid "Invalid or unsupported module file" msgstr "" @@ -1306,7 +1306,7 @@ msgstr "Érvénytelen %s mezőérték" msgid "Issue number:" msgstr "" -#: ../wxui/main.py:335 +#: ../wxui/main.py:343 msgid "LIVE" msgstr "" @@ -1331,16 +1331,16 @@ msgstr "" msgid "Limit results to this distance (km) from coordinates" msgstr "" -#: ../wxui/main.py:678 +#: ../wxui/main.py:712 msgid "Load Module" msgstr "Modul betöltése" -#: ../wxui/main.py:896 ../wxui/developer.py:487 +#: ../wxui/main.py:931 ../wxui/developer.py:487 #, fuzzy msgid "Load module from issue" msgstr "Modul betöltése" -#: ../wxui/main.py:1517 +#: ../wxui/main.py:1557 msgid "" "Loading modules can be extremely dangerous, leading to damage to your " "computer, radio, or both. NEVER load a module from a source you do not " @@ -1358,7 +1358,7 @@ msgstr "" msgid "Longitude" msgstr "" -#: ../wxui/main.py:196 +#: ../wxui/main.py:204 msgid "Memories" msgstr "Memória" @@ -1381,7 +1381,7 @@ msgstr "" msgid "Mode" msgstr "Mód" -#: ../wxui/clone.py:246 +#: ../wxui/clone.py:247 msgid "Model" msgstr "Modell" @@ -1390,21 +1390,21 @@ msgstr "Modell" msgid "Modes" msgstr "Mód" -#: ../wxui/main.py:1514 +#: ../wxui/main.py:1554 #, fuzzy msgid "Module" msgstr "Modul betöltése" -#: ../wxui/main.py:1486 +#: ../wxui/main.py:1526 #, fuzzy msgid "Module Loaded" msgstr "Modul betöltése" -#: ../wxui/main.py:1617 +#: ../wxui/main.py:1651 msgid "Module loaded successfully" msgstr "" -#: ../wxui/clone.py:374 +#: ../wxui/clone.py:375 #, python-format msgid "More than one port found: %s" msgstr "" @@ -1419,11 +1419,11 @@ msgstr "Lefel_é" msgid "Move Up" msgstr "Fe_lfelé" -#: ../wxui/main.py:613 +#: ../wxui/main.py:647 msgid "New Window" msgstr "" -#: ../wxui/main.py:1687 +#: ../wxui/main.py:1721 #, fuzzy msgid "New version available" msgstr "A CHIRP egy új verziója érhető el:" @@ -1462,40 +1462,45 @@ msgstr "" msgid "Only certain modes" msgstr "" -#: ../wxui/main.py:317 +#: ../wxui/main.py:325 msgid "Only memory tabs may be exported" msgstr "" -#: ../wxui/main.py:933 ../wxui/main.py:1278 +#: ../wxui/main.py:968 ../wxui/main.py:1318 msgid "Open" msgstr "" -#: ../wxui/main.py:653 +#: ../wxui/main.py:687 #, fuzzy msgid "Open Recent" msgstr "Leg_utóbbi" -#: ../wxui/main.py:624 +#: ../wxui/main.py:658 #, fuzzy msgid "Open Stock Config" msgstr "A csoportos beállítás megnyitása" -#: ../wxui/main.py:934 ../wxui/main.py:1157 +#: ../wxui/main.py:969 ../wxui/main.py:1192 msgid "Open a file" msgstr "" -#: ../wxui/main.py:1532 +#: ../wxui/main.py:1572 msgid "Open a module" msgstr "" -#: ../wxui/main.py:885 +#: ../wxui/main.py:920 msgid "Open debug log" msgstr "" -#: ../wxui/main.py:504 +#: ../wxui/main.py:512 msgid "Open in new window" msgstr "" +#: ../wxui/main.py:604 +#, fuzzy +msgid "Open stock config directory" +msgstr "A(z) {name} konfigurációs készlet megnyitása" + #: ../wxui/query_sources.py:298 msgid "Optional: -122.0000" msgstr "" @@ -1513,7 +1518,7 @@ msgstr "" msgid "Optional: County, Hospital, etc" msgstr "" -#: ../wxui/memedit.py:1742 +#: ../wxui/memedit.py:1746 #, fuzzy msgid "Overwrite memories?" msgstr "Felülírja?" @@ -1529,27 +1534,32 @@ msgstr "" msgid "Paste" msgstr "Beillesztés" -#: ../wxui/memedit.py:1736 +#: ../wxui/memedit.py:1740 #, python-format msgid "Pasted memories will overwrite %i existing memories" msgstr "" -#: ../wxui/memedit.py:1739 +#: ../wxui/memedit.py:1743 #, python-format msgid "Pasted memories will overwrite memories %s" msgstr "" -#: ../wxui/memedit.py:1733 +#: ../wxui/memedit.py:1737 #, python-format msgid "Pasted memories will overwrite memory %i" msgstr "" -#: ../wxui/memedit.py:1730 +#: ../wxui/memedit.py:1734 #, python-format msgid "Pasted memory will overwrite memory %i" msgstr "" -#: ../wxui/main.py:1691 +#: ../wxui/common.py:564 +#, python-format +msgid "Path %s does not exist" +msgstr "" + +#: ../wxui/main.py:1725 msgid "Please be sure to quit CHIRP before installing the new version!" msgstr "" @@ -1579,7 +1589,7 @@ msgid "" " (At the end radio will beep)\n" msgstr "" -#: ../wxui/main.py:1555 +#: ../wxui/main.py:1595 msgid "" "Please note that developer mode is intended for use by developers of the " "CHIRP project, or under the direction of a developer. It enables behaviors " @@ -1587,15 +1597,15 @@ msgid "" "EXTREME care. You have been warned! Proceed anyway?" msgstr "" -#: ../wxui/common.py:181 +#: ../wxui/common.py:183 msgid "Please wait" msgstr "" -#: ../wxui/clone.py:351 +#: ../wxui/clone.py:352 msgid "Plug in your cable and then click OK" msgstr "" -#: ../wxui/clone.py:239 +#: ../wxui/clone.py:240 msgid "Port" msgstr "Port" @@ -1608,7 +1618,7 @@ msgstr "Teljesítmény" msgid "Press enter to set this in memory" msgstr "Memória beállítási hiba" -#: ../wxui/main.py:689 +#: ../wxui/main.py:723 msgid "Print Preview" msgstr "" @@ -1620,12 +1630,12 @@ msgstr "" msgid "Properties" msgstr "" -#: ../wxui/main.py:1645 +#: ../wxui/main.py:1679 #, fuzzy, python-format msgid "Query %s" msgstr "Lekérdezés hiba" -#: ../wxui/main.py:790 +#: ../wxui/main.py:825 #, fuzzy msgid "Query Source" msgstr "Lekérd. adatforrása" @@ -1635,7 +1645,7 @@ msgstr "Lekérd. adatforrása" msgid "RX DTCS" msgstr "RX DTCS kód" -#: ../wxui/main.py:904 +#: ../wxui/main.py:939 msgid "Radio" msgstr "Rádió" @@ -1644,7 +1654,7 @@ msgstr "Rádió" msgid "Radio did not ack block %i" msgstr "" -#: ../wxui/clone.py:504 ../wxui/clone.py:569 +#: ../wxui/clone.py:505 ../wxui/clone.py:570 #, fuzzy msgid "Radio information" msgstr "%s információk lekérése" @@ -1660,16 +1670,16 @@ msgstr "" msgid "RadioReference Canada requires a login before you can query" msgstr "" -#: ../wxui/common.py:308 +#: ../wxui/common.py:310 #, fuzzy, python-format msgid "Refreshed memory %s" msgstr "ezek a memóriák" -#: ../wxui/main.py:825 +#: ../wxui/main.py:860 msgid "Reload Driver" msgstr "" -#: ../wxui/main.py:834 +#: ../wxui/main.py:869 msgid "Reload Driver and File" msgstr "" @@ -1677,49 +1687,49 @@ msgstr "" msgid "Rename bank" msgstr "" -#: ../wxui/main.py:873 +#: ../wxui/main.py:908 #, fuzzy msgid "Reporting enabled" msgstr "Listázás letiltva" -#: ../wxui/main.py:1574 +#: ../wxui/main.py:1614 msgid "" "Reporting helps the CHIRP project know which radio models and OS platforms " "to spend our limited efforts on. We would really appreciate if you left it " "enabled. Really disable reporting?" msgstr "" -#: ../wxui/main.py:1569 +#: ../wxui/main.py:1609 msgid "Restart Required" msgstr "" -#: ../wxui/main.py:634 +#: ../wxui/main.py:668 #, python-format msgid "Restore %i tabs" msgstr "" -#: ../wxui/common.py:312 +#: ../wxui/common.py:314 msgid "Retrieved settings" msgstr "" -#: ../wxui/main.py:935 +#: ../wxui/main.py:970 msgid "Save" msgstr "" -#: ../wxui/main.py:1309 +#: ../wxui/main.py:1349 msgid "Save before closing?" msgstr "" -#: ../wxui/main.py:936 ../wxui/main.py:1237 +#: ../wxui/main.py:971 ../wxui/main.py:1276 msgid "Save file" msgstr "" -#: ../wxui/common.py:314 +#: ../wxui/common.py:316 #, fuzzy msgid "Saved settings" msgstr "Beállítás" -#: ../wxui/main.py:815 +#: ../wxui/main.py:850 #, fuzzy msgid "Select Bandplan" msgstr "Oszlopok kiválasztása" @@ -1734,7 +1744,7 @@ msgstr "Oszlopok kiválasztása" msgid "Select Modes" msgstr "Oszlopok kiválasztása" -#: ../wxui/main.py:1630 +#: ../wxui/main.py:1664 msgid "Select a bandplan" msgstr "" @@ -1742,7 +1752,7 @@ msgstr "" msgid "Service" msgstr "" -#: ../wxui/main.py:209 +#: ../wxui/main.py:217 msgid "Settings" msgstr "Beállítás" @@ -1750,7 +1760,7 @@ msgstr "Beállítás" msgid "Show Raw Memory" msgstr "Memóriasor mutatása" -#: ../wxui/main.py:891 +#: ../wxui/main.py:926 msgid "Show debug log location" msgstr "" @@ -1758,14 +1768,14 @@ msgstr "" msgid "Show extra fields" msgstr "" -#: ../wxui/memedit.py:1791 +#: ../wxui/memedit.py:1795 #, fuzzy msgid "Some memories are incompatible with this radio" msgstr "" "A beillesztett {number}. számú memória nem kompatibilis ezzel a rádióval, " "mert:" -#: ../wxui/memedit.py:1686 +#: ../wxui/memedit.py:1687 msgid "Some memories are not deletable" msgstr "" @@ -1801,7 +1811,7 @@ msgstr "" msgid "State/Province" msgstr "" -#: ../wxui/main.py:1618 +#: ../wxui/main.py:1652 msgid "Success" msgstr "" @@ -1828,7 +1838,7 @@ msgid "" "download to a CHIRP Radio Images (*.img) file.\n" msgstr "" -#: ../wxui/main.py:1269 +#: ../wxui/main.py:1309 #, python-format msgid "" "The recommended procedure for importing memories is to open the source file " @@ -1907,12 +1917,12 @@ msgstr "ToneSql" msgid "Tuning Step" msgstr "Lépésköz" -#: ../wxui/clone.py:345 ../wxui/clone.py:352 ../wxui/clone.py:363 -#: ../wxui/clone.py:371 ../wxui/clone.py:375 +#: ../wxui/clone.py:346 ../wxui/clone.py:353 ../wxui/clone.py:364 +#: ../wxui/clone.py:372 ../wxui/clone.py:376 msgid "USB Port Finder" msgstr "" -#: ../wxui/clone.py:361 +#: ../wxui/clone.py:362 msgid "" "Unable to determine port for your cable. Check your drivers and connections." msgstr "" @@ -1921,12 +1931,12 @@ msgstr "" msgid "Unable to edit memory before radio is loaded" msgstr "" -#: ../wxui/main.py:1195 +#: ../wxui/main.py:1234 #, fuzzy, python-format msgid "Unable to find stock config %r" msgstr "A csoportos beállítás megnyitása" -#: ../wxui/common.py:214 +#: ../wxui/common.py:216 #, fuzzy msgid "Unable to open the clipboard" msgstr "Nem érzékelek a {port} porton!" @@ -1938,7 +1948,7 @@ msgid "" "model and try again." msgstr "" -#: ../wxui/main.py:1610 +#: ../wxui/common.py:571 #, fuzzy, python-format msgid "Unable to reveal %s on this system" msgstr "Ennél a modellnél nem változtatható" @@ -1952,30 +1962,30 @@ msgstr "Ennél a modellnél nem változtatható" msgid "United States" msgstr "" -#: ../wxui/clone.py:344 +#: ../wxui/clone.py:345 msgid "Unplug your cable (if needed) and then click OK" msgstr "" -#: ../wxui/clone.py:584 +#: ../wxui/clone.py:585 #, fuzzy msgid "Upload instructions" msgstr "{instructions}" -#: ../wxui/main.py:784 ../wxui/main.py:942 +#: ../wxui/main.py:819 ../wxui/main.py:977 #, fuzzy msgid "Upload to radio" msgstr "Feltöltés a rádióra" -#: ../wxui/common.py:310 +#: ../wxui/common.py:312 #, python-format msgid "Uploaded memory %s" msgstr "" -#: ../wxui/main.py:752 +#: ../wxui/main.py:787 msgid "Use fixed-width font" msgstr "" -#: ../wxui/main.py:760 +#: ../wxui/main.py:795 msgid "Use larger font" msgstr "" @@ -1984,12 +1994,12 @@ msgstr "" msgid "Value does not fit in %i bits" msgstr "" -#: ../wxui/common.py:420 +#: ../wxui/common.py:422 #, python-format msgid "Value must be at least %.4f" msgstr "" -#: ../wxui/common.py:424 +#: ../wxui/common.py:426 #, python-format msgid "Value must be at most %.4f" msgstr "" @@ -2003,11 +2013,11 @@ msgstr "" msgid "Value must be zero or greater" msgstr "" -#: ../wxui/clone.py:242 +#: ../wxui/clone.py:243 msgid "Vendor" msgstr "Gyártó" -#: ../wxui/main.py:903 +#: ../wxui/main.py:938 #, fuzzy msgid "View" msgstr "Né_zet" @@ -2021,7 +2031,7 @@ msgstr "" msgid "Warning: %s" msgstr "" -#: ../wxui/main.py:421 +#: ../wxui/main.py:429 msgid "Welcome" msgstr "" @@ -2029,7 +2039,7 @@ msgstr "" msgid "Would you like CHIRP to install a desktop icon for you?" msgstr "" -#: ../wxui/clone.py:369 +#: ../wxui/clone.py:370 msgid "Your cable appears to be on port:" msgstr "" @@ -2045,12 +2055,12 @@ msgstr "" msgid "bytes each" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 #, fuzzy msgid "disabled" msgstr "Engedélyezve" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 #, fuzzy msgid "enabled" msgstr "Engedélyezve" @@ -2405,9 +2415,6 @@ msgstr "" #~ msgid "Open recent file {name}" #~ msgstr "A legutóbbi {name} fájl megnyitása" -#~ msgid "Open stock configuration {name}" -#~ msgstr "A(z) {name} konfigurációs készlet megnyitása" - #~ msgid "Overwrite" #~ msgstr "Felülírás" diff --git a/chirp/locale/it.po b/chirp/locale/it.po index c337a4f57..74629ca57 100644 --- a/chirp/locale/it.po +++ b/chirp/locale/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: CHIRP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 18:46-0700\n" +"POT-Creation-Date: 2023-06-28 16:31-0700\n" "PO-Revision-Date: 2014-11-08 17:58+0100\n" "Last-Translator: Dan Smith \n" "Language-Team: English\n" @@ -49,7 +49,7 @@ msgstr "Elimina (e sposta sopra)" msgid "%i Memories and shift block up" msgstr "Elimina (e sposta sopra)" -#: ../wxui/main.py:1307 +#: ../wxui/main.py:1347 #, fuzzy, python-format msgid "%s has not been saved. Save before closing?" msgstr "Il file e' stato modificato, salvare i cambiamenti prima di chiudere?" @@ -58,7 +58,7 @@ msgstr "Il file e' stato modificato, salvare i cambiamenti prima di chiudere?" msgid "(none)" msgstr "" -#: ../wxui/memedit.py:1787 +#: ../wxui/memedit.py:1791 #, python-format msgid "...and %i more" msgstr "" @@ -595,7 +595,7 @@ msgid "" " click Then" msgstr "" -#: ../drivers/uvk5.py:636 +#: ../drivers/uvk5.py:633 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -606,7 +606,7 @@ msgid "" "attached\n" msgstr "" -#: ../drivers/uvk5.py:643 +#: ../drivers/uvk5.py:640 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -616,17 +616,17 @@ msgid "" "It will may not work if you turn on the radio with the cable already attached" msgstr "" -#: ../wxui/main.py:1685 +#: ../wxui/main.py:1719 msgid "" "A new CHIRP version is available. Please visit the website as soon as " "possible to download it!" msgstr "" -#: ../wxui/main.py:859 +#: ../wxui/main.py:894 msgid "About" msgstr "" -#: ../wxui/main.py:1547 +#: ../wxui/main.py:1587 msgid "About CHIRP" msgstr "" @@ -634,12 +634,12 @@ msgstr "" msgid "All" msgstr "Tutto" -#: ../wxui/main.py:1143 +#: ../wxui/main.py:1178 #, fuzzy msgid "All Files" msgstr "Files CSV" -#: ../wxui/main.py:1154 +#: ../wxui/main.py:1189 msgid "All supported formats|" msgstr "" @@ -647,7 +647,7 @@ msgstr "" msgid "Amateur" msgstr "" -#: ../wxui/common.py:497 ../wxui/common.py:523 +#: ../wxui/common.py:499 ../wxui/common.py:525 msgid "An error has occurred" msgstr "Si e' verificato un errore" @@ -659,7 +659,7 @@ msgstr "" msgid "Available modules" msgstr "" -#: ../wxui/main.py:1631 +#: ../wxui/main.py:1665 msgid "Bandplan" msgstr "" @@ -667,7 +667,7 @@ msgstr "" msgid "Bands" msgstr "" -#: ../wxui/main.py:204 +#: ../wxui/main.py:212 msgid "Banks" msgstr "Bank" @@ -675,7 +675,7 @@ msgstr "Bank" msgid "Bin" msgstr "" -#: ../wxui/main.py:215 +#: ../wxui/main.py:223 msgid "Browser" msgstr "" @@ -693,7 +693,7 @@ msgid "" "Channels with equivalent TX and RX %s are represented by tone mode of \"%s\"" msgstr "" -#: ../wxui/main.py:1142 +#: ../wxui/main.py:1177 msgid "Chirp Image Files" msgstr "" @@ -743,7 +743,7 @@ msgstr "" msgid "Clone completed, checking for spurious bytes" msgstr "" -#: ../wxui/common.py:108 +#: ../wxui/common.py:110 msgid "Cloning" msgstr "Programmazione" @@ -757,11 +757,11 @@ msgstr "Leggi da Radio" msgid "Cloning to radio" msgstr "Scrivi su Radio" -#: ../wxui/main.py:937 +#: ../wxui/main.py:972 msgid "Close" msgstr "" -#: ../wxui/main.py:938 +#: ../wxui/main.py:973 msgid "Close file" msgstr "" @@ -822,11 +822,11 @@ msgid "" "Polarity" msgstr "DTCS Pol" -#: ../wxui/memedit.py:2040 +#: ../wxui/memedit.py:2044 msgid "DV Memory" msgstr "" -#: ../wxui/main.py:1561 +#: ../wxui/main.py:1601 msgid "Danger Ahead" msgstr "" @@ -839,12 +839,12 @@ msgstr "Rileva" msgid "Delete" msgstr "Elimina" -#: ../wxui/main.py:864 +#: ../wxui/main.py:899 #, fuzzy msgid "Developer Mode" msgstr "Sviluppatore" -#: ../wxui/main.py:1567 +#: ../wxui/main.py:1607 #, python-format msgid "Developer state is now %s. CHIRP must be restarted to take effect" msgstr "" @@ -853,11 +853,11 @@ msgstr "" msgid "Diff Raw Memories" msgstr "Diff memorie Raw" -#: ../wxui/memedit.py:1965 +#: ../wxui/memedit.py:1969 msgid "Digital Code" msgstr "Digital Code" -#: ../wxui/main.py:1578 +#: ../wxui/main.py:1618 msgid "Disable reporting" msgstr "" @@ -878,16 +878,16 @@ msgstr "" msgid "Double-click to change bank name" msgstr "" -#: ../wxui/main.py:939 +#: ../wxui/main.py:974 msgid "Download" msgstr "" -#: ../wxui/main.py:776 ../wxui/main.py:940 +#: ../wxui/main.py:811 ../wxui/main.py:975 #, fuzzy msgid "Download from radio" msgstr "Leggi da Radio" -#: ../wxui/clone.py:512 +#: ../wxui/clone.py:513 #, fuzzy msgid "Download instructions" msgstr "Leggi da Radio" @@ -896,17 +896,17 @@ msgstr "Leggi da Radio" msgid "Duplex" msgstr "Duplex" -#: ../wxui/memedit.py:1995 +#: ../wxui/memedit.py:1999 #, python-format msgid "Edit details for %i memories" msgstr "" -#: ../wxui/memedit.py:1993 +#: ../wxui/memedit.py:1997 #, python-format msgid "Edit details for memory %i" msgstr "" -#: ../wxui/main.py:808 +#: ../wxui/main.py:843 msgid "Enable Automatic Edits" msgstr "" @@ -932,11 +932,11 @@ msgstr "" msgid "Enter a new name for bank %s:" msgstr "" -#: ../wxui/clone.py:405 +#: ../wxui/clone.py:406 msgid "Enter custom port:" msgstr "" -#: ../wxui/common.py:316 +#: ../wxui/common.py:318 #, fuzzy, python-format msgid "Erased memory %s" msgstr "Cancellazione memoria {loc}" @@ -946,24 +946,24 @@ msgstr "Cancellazione memoria {loc}" msgid "Error applying settings" msgstr "Errore di scrittura della memoria" -#: ../wxui/clone.py:449 +#: ../wxui/clone.py:450 msgid "Error communicating with radio" msgstr "" -#: ../wxui/clone.py:480 +#: ../wxui/clone.py:481 msgid "Experimental driver" msgstr "" -#: ../wxui/memedit.py:1925 +#: ../wxui/memedit.py:1929 msgid "Export can only write CSV files" msgstr "" -#: ../wxui/main.py:672 ../wxui/main.py:1292 +#: ../wxui/main.py:706 ../wxui/main.py:1332 #, fuzzy msgid "Export to CSV" msgstr "Esporta in File" -#: ../wxui/memedit.py:2029 +#: ../wxui/memedit.py:2033 msgid "Extra" msgstr "" @@ -975,13 +975,13 @@ msgstr "" msgid "Features" msgstr "" -#: ../wxui/main.py:534 +#: ../wxui/main.py:542 #, python-format msgid "File does not exist: %s" msgstr "" -#: ../wxui/main.py:1146 ../wxui/main.py:1223 ../wxui/main.py:1233 -#: ../wxui/main.py:1288 ../wxui/main.py:1513 ../wxui/main.py:1514 +#: ../wxui/main.py:1181 ../wxui/main.py:1262 ../wxui/main.py:1272 +#: ../wxui/main.py:1328 ../wxui/main.py:1553 ../wxui/main.py:1554 #, fuzzy msgid "Files" msgstr "File" @@ -994,15 +994,15 @@ msgstr "" msgid "Filter results with location matching this string" msgstr "" -#: ../wxui/main.py:1362 +#: ../wxui/main.py:1402 msgid "Find" msgstr "" -#: ../wxui/main.py:730 +#: ../wxui/main.py:765 msgid "Find Next" msgstr "" -#: ../wxui/common.py:318 +#: ../wxui/common.py:320 #, python-format msgid "Finished radio job %s" msgstr "" @@ -1233,16 +1233,16 @@ msgstr "" msgid "If set, sort results by distance from these coordinates" msgstr "" -#: ../wxui/main.py:1278 +#: ../wxui/main.py:1318 msgid "Import" msgstr "Import" -#: ../wxui/main.py:666 +#: ../wxui/main.py:700 #, fuzzy msgid "Import from file" msgstr "Importa da File" -#: ../wxui/main.py:1276 +#: ../wxui/main.py:1316 #, fuzzy msgid "Import not recommended" msgstr "Importa da RFinder" @@ -1251,7 +1251,7 @@ msgstr "Importa da RFinder" msgid "Index" msgstr "Indice" -#: ../wxui/main.py:217 +#: ../wxui/main.py:225 msgid "Info" msgstr "" @@ -1268,7 +1268,7 @@ msgstr "Inserisci riga sopra" msgid "Install desktop icon?" msgstr "" -#: ../wxui/main.py:848 +#: ../wxui/main.py:883 msgid "Interact with driver" msgstr "" @@ -1281,12 +1281,12 @@ msgstr "Valore non valido. Deve essere un numero intero" msgid "Invalid ZIP code" msgstr "" -#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2120 +#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2124 #, python-format msgid "Invalid edit: %s" msgstr "" -#: ../wxui/main.py:1510 +#: ../wxui/main.py:1550 msgid "Invalid or unsupported module file" msgstr "" @@ -1299,7 +1299,7 @@ msgstr "Valore non valido per questo campo" msgid "Issue number:" msgstr "" -#: ../wxui/main.py:335 +#: ../wxui/main.py:343 msgid "LIVE" msgstr "" @@ -1324,17 +1324,17 @@ msgstr "" msgid "Limit results to this distance (km) from coordinates" msgstr "" -#: ../wxui/main.py:678 +#: ../wxui/main.py:712 #, fuzzy msgid "Load Module" msgstr "Modalita' tono" -#: ../wxui/main.py:896 ../wxui/developer.py:487 +#: ../wxui/main.py:931 ../wxui/developer.py:487 #, fuzzy msgid "Load module from issue" msgstr "Modalita' tono" -#: ../wxui/main.py:1517 +#: ../wxui/main.py:1557 msgid "" "Loading modules can be extremely dangerous, leading to damage to your " "computer, radio, or both. NEVER load a module from a source you do not " @@ -1352,7 +1352,7 @@ msgstr "" msgid "Longitude" msgstr "" -#: ../wxui/main.py:196 +#: ../wxui/main.py:204 msgid "Memories" msgstr "Memorie" @@ -1375,7 +1375,7 @@ msgstr "" msgid "Mode" msgstr "Modulazione" -#: ../wxui/clone.py:246 +#: ../wxui/clone.py:247 msgid "Model" msgstr "Modello" @@ -1384,19 +1384,19 @@ msgstr "Modello" msgid "Modes" msgstr "Modulazione" -#: ../wxui/main.py:1514 +#: ../wxui/main.py:1554 msgid "Module" msgstr "" -#: ../wxui/main.py:1486 +#: ../wxui/main.py:1526 msgid "Module Loaded" msgstr "" -#: ../wxui/main.py:1617 +#: ../wxui/main.py:1651 msgid "Module loaded successfully" msgstr "" -#: ../wxui/clone.py:374 +#: ../wxui/clone.py:375 #, python-format msgid "More than one port found: %s" msgstr "" @@ -1411,11 +1411,11 @@ msgstr "Muovi Giu" msgid "Move Up" msgstr "Muovi Su" -#: ../wxui/main.py:613 +#: ../wxui/main.py:647 msgid "New Window" msgstr "" -#: ../wxui/main.py:1687 +#: ../wxui/main.py:1721 msgid "New version available" msgstr "" @@ -1453,40 +1453,45 @@ msgstr "" msgid "Only certain modes" msgstr "" -#: ../wxui/main.py:317 +#: ../wxui/main.py:325 msgid "Only memory tabs may be exported" msgstr "" -#: ../wxui/main.py:933 ../wxui/main.py:1278 +#: ../wxui/main.py:968 ../wxui/main.py:1318 msgid "Open" msgstr "" -#: ../wxui/main.py:653 +#: ../wxui/main.py:687 #, fuzzy msgid "Open Recent" msgstr "Recenti" -#: ../wxui/main.py:624 +#: ../wxui/main.py:658 #, fuzzy msgid "Open Stock Config" msgstr "Apri configurazione stock" -#: ../wxui/main.py:934 ../wxui/main.py:1157 +#: ../wxui/main.py:969 ../wxui/main.py:1192 msgid "Open a file" msgstr "" -#: ../wxui/main.py:1532 +#: ../wxui/main.py:1572 msgid "Open a module" msgstr "" -#: ../wxui/main.py:885 +#: ../wxui/main.py:920 msgid "Open debug log" msgstr "" -#: ../wxui/main.py:504 +#: ../wxui/main.py:512 msgid "Open in new window" msgstr "" +#: ../wxui/main.py:604 +#, fuzzy +msgid "Open stock config directory" +msgstr "Apertura configurazione stock {name}" + #: ../wxui/query_sources.py:298 msgid "Optional: -122.0000" msgstr "" @@ -1504,7 +1509,7 @@ msgstr "" msgid "Optional: County, Hospital, etc" msgstr "" -#: ../wxui/memedit.py:1742 +#: ../wxui/memedit.py:1746 #, fuzzy msgid "Overwrite memories?" msgstr "Sovrascrivere?" @@ -1520,27 +1525,32 @@ msgstr "" msgid "Paste" msgstr "Incolla" -#: ../wxui/memedit.py:1736 +#: ../wxui/memedit.py:1740 #, python-format msgid "Pasted memories will overwrite %i existing memories" msgstr "" -#: ../wxui/memedit.py:1739 +#: ../wxui/memedit.py:1743 #, python-format msgid "Pasted memories will overwrite memories %s" msgstr "" -#: ../wxui/memedit.py:1733 +#: ../wxui/memedit.py:1737 #, python-format msgid "Pasted memories will overwrite memory %i" msgstr "" -#: ../wxui/memedit.py:1730 +#: ../wxui/memedit.py:1734 #, python-format msgid "Pasted memory will overwrite memory %i" msgstr "" -#: ../wxui/main.py:1691 +#: ../wxui/common.py:564 +#, python-format +msgid "Path %s does not exist" +msgstr "" + +#: ../wxui/main.py:1725 msgid "Please be sure to quit CHIRP before installing the new version!" msgstr "" @@ -1570,7 +1580,7 @@ msgid "" " (At the end radio will beep)\n" msgstr "" -#: ../wxui/main.py:1555 +#: ../wxui/main.py:1595 msgid "" "Please note that developer mode is intended for use by developers of the " "CHIRP project, or under the direction of a developer. It enables behaviors " @@ -1578,15 +1588,15 @@ msgid "" "EXTREME care. You have been warned! Proceed anyway?" msgstr "" -#: ../wxui/common.py:181 +#: ../wxui/common.py:183 msgid "Please wait" msgstr "" -#: ../wxui/clone.py:351 +#: ../wxui/clone.py:352 msgid "Plug in your cable and then click OK" msgstr "" -#: ../wxui/clone.py:239 +#: ../wxui/clone.py:240 msgid "Port" msgstr "Porta" @@ -1599,7 +1609,7 @@ msgstr "Potenza" msgid "Press enter to set this in memory" msgstr "Errore di scrittura della memoria" -#: ../wxui/main.py:689 +#: ../wxui/main.py:723 msgid "Print Preview" msgstr "" @@ -1611,12 +1621,12 @@ msgstr "" msgid "Properties" msgstr "" -#: ../wxui/main.py:1645 +#: ../wxui/main.py:1679 #, python-format msgid "Query %s" msgstr "" -#: ../wxui/main.py:790 +#: ../wxui/main.py:825 msgid "Query Source" msgstr "" @@ -1624,7 +1634,7 @@ msgstr "" msgid "RX DTCS" msgstr "" -#: ../wxui/main.py:904 +#: ../wxui/main.py:939 msgid "Radio" msgstr "Radio" @@ -1633,7 +1643,7 @@ msgstr "Radio" msgid "Radio did not ack block %i" msgstr "" -#: ../wxui/clone.py:504 ../wxui/clone.py:569 +#: ../wxui/clone.py:505 ../wxui/clone.py:570 #, fuzzy msgid "Radio information" msgstr "Recupero informazioni bank" @@ -1649,16 +1659,16 @@ msgstr "" msgid "RadioReference Canada requires a login before you can query" msgstr "" -#: ../wxui/common.py:308 +#: ../wxui/common.py:310 #, python-format msgid "Refreshed memory %s" msgstr "" -#: ../wxui/main.py:825 +#: ../wxui/main.py:860 msgid "Reload Driver" msgstr "" -#: ../wxui/main.py:834 +#: ../wxui/main.py:869 msgid "Reload Driver and File" msgstr "" @@ -1667,48 +1677,48 @@ msgstr "" msgid "Rename bank" msgstr "Scrittura nome del bank" -#: ../wxui/main.py:873 +#: ../wxui/main.py:908 #, fuzzy msgid "Reporting enabled" msgstr "Reporting disattivato" -#: ../wxui/main.py:1574 +#: ../wxui/main.py:1614 msgid "" "Reporting helps the CHIRP project know which radio models and OS platforms " "to spend our limited efforts on. We would really appreciate if you left it " "enabled. Really disable reporting?" msgstr "" -#: ../wxui/main.py:1569 +#: ../wxui/main.py:1609 msgid "Restart Required" msgstr "" -#: ../wxui/main.py:634 +#: ../wxui/main.py:668 #, python-format msgid "Restore %i tabs" msgstr "" -#: ../wxui/common.py:312 +#: ../wxui/common.py:314 msgid "Retrieved settings" msgstr "" -#: ../wxui/main.py:935 +#: ../wxui/main.py:970 msgid "Save" msgstr "" -#: ../wxui/main.py:1309 +#: ../wxui/main.py:1349 msgid "Save before closing?" msgstr "" -#: ../wxui/main.py:936 ../wxui/main.py:1237 +#: ../wxui/main.py:971 ../wxui/main.py:1276 msgid "Save file" msgstr "" -#: ../wxui/common.py:314 +#: ../wxui/common.py:316 msgid "Saved settings" msgstr "" -#: ../wxui/main.py:815 +#: ../wxui/main.py:850 #, fuzzy msgid "Select Bandplan" msgstr "Seleziona colonne" @@ -1723,7 +1733,7 @@ msgstr "Seleziona colonne" msgid "Select Modes" msgstr "Seleziona colonne" -#: ../wxui/main.py:1630 +#: ../wxui/main.py:1664 msgid "Select a bandplan" msgstr "" @@ -1731,7 +1741,7 @@ msgstr "" msgid "Service" msgstr "" -#: ../wxui/main.py:209 +#: ../wxui/main.py:217 msgid "Settings" msgstr "" @@ -1739,7 +1749,7 @@ msgstr "" msgid "Show Raw Memory" msgstr "Mostra memorie Raw" -#: ../wxui/main.py:891 +#: ../wxui/main.py:926 msgid "Show debug log location" msgstr "" @@ -1747,13 +1757,13 @@ msgstr "" msgid "Show extra fields" msgstr "" -#: ../wxui/memedit.py:1791 +#: ../wxui/memedit.py:1795 #, fuzzy msgid "Some memories are incompatible with this radio" msgstr "" "La memoria incollata {number} non e' compatibile con questa radio perche':" -#: ../wxui/memedit.py:1686 +#: ../wxui/memedit.py:1687 msgid "Some memories are not deletable" msgstr "" @@ -1789,7 +1799,7 @@ msgstr "" msgid "State/Province" msgstr "" -#: ../wxui/main.py:1618 +#: ../wxui/main.py:1652 msgid "Success" msgstr "" @@ -1816,7 +1826,7 @@ msgid "" "download to a CHIRP Radio Images (*.img) file.\n" msgstr "" -#: ../wxui/main.py:1269 +#: ../wxui/main.py:1309 #, python-format msgid "" "The recommended procedure for importing memories is to open the source file " @@ -1895,12 +1905,12 @@ msgstr "ToneSql" msgid "Tuning Step" msgstr "Step sintonia" -#: ../wxui/clone.py:345 ../wxui/clone.py:352 ../wxui/clone.py:363 -#: ../wxui/clone.py:371 ../wxui/clone.py:375 +#: ../wxui/clone.py:346 ../wxui/clone.py:353 ../wxui/clone.py:364 +#: ../wxui/clone.py:372 ../wxui/clone.py:376 msgid "USB Port Finder" msgstr "" -#: ../wxui/clone.py:361 +#: ../wxui/clone.py:362 msgid "" "Unable to determine port for your cable. Check your drivers and connections." msgstr "" @@ -1909,12 +1919,12 @@ msgstr "" msgid "Unable to edit memory before radio is loaded" msgstr "" -#: ../wxui/main.py:1195 +#: ../wxui/main.py:1234 #, fuzzy, python-format msgid "Unable to find stock config %r" msgstr "Apri configurazione stock" -#: ../wxui/common.py:214 +#: ../wxui/common.py:216 #, fuzzy msgid "Unable to open the clipboard" msgstr "Impossibile rilevare radio sulla porta {port}" @@ -1926,7 +1936,7 @@ msgid "" "model and try again." msgstr "" -#: ../wxui/main.py:1610 +#: ../wxui/common.py:571 #, fuzzy, python-format msgid "Unable to reveal %s on this system" msgstr "Impossibile effettuare modifiche su questo modello" @@ -1940,29 +1950,29 @@ msgstr "Impossibile effettuare modifiche su questo modello" msgid "United States" msgstr "" -#: ../wxui/clone.py:344 +#: ../wxui/clone.py:345 msgid "Unplug your cable (if needed) and then click OK" msgstr "" -#: ../wxui/clone.py:584 +#: ../wxui/clone.py:585 msgid "Upload instructions" msgstr "" -#: ../wxui/main.py:784 ../wxui/main.py:942 +#: ../wxui/main.py:819 ../wxui/main.py:977 #, fuzzy msgid "Upload to radio" msgstr "Scrivi su Radio" -#: ../wxui/common.py:310 +#: ../wxui/common.py:312 #, python-format msgid "Uploaded memory %s" msgstr "" -#: ../wxui/main.py:752 +#: ../wxui/main.py:787 msgid "Use fixed-width font" msgstr "" -#: ../wxui/main.py:760 +#: ../wxui/main.py:795 msgid "Use larger font" msgstr "" @@ -1971,12 +1981,12 @@ msgstr "" msgid "Value does not fit in %i bits" msgstr "" -#: ../wxui/common.py:420 +#: ../wxui/common.py:422 #, python-format msgid "Value must be at least %.4f" msgstr "" -#: ../wxui/common.py:424 +#: ../wxui/common.py:426 #, python-format msgid "Value must be at most %.4f" msgstr "" @@ -1990,11 +2000,11 @@ msgstr "" msgid "Value must be zero or greater" msgstr "" -#: ../wxui/clone.py:242 +#: ../wxui/clone.py:243 msgid "Vendor" msgstr "Produttore" -#: ../wxui/main.py:903 +#: ../wxui/main.py:938 #, fuzzy msgid "View" msgstr "Vista" @@ -2008,7 +2018,7 @@ msgstr "" msgid "Warning: %s" msgstr "" -#: ../wxui/main.py:421 +#: ../wxui/main.py:429 msgid "Welcome" msgstr "" @@ -2016,7 +2026,7 @@ msgstr "" msgid "Would you like CHIRP to install a desktop icon for you?" msgstr "" -#: ../wxui/clone.py:369 +#: ../wxui/clone.py:370 msgid "Your cable appears to be on port:" msgstr "" @@ -2032,11 +2042,11 @@ msgstr "" msgid "bytes each" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "disabled" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "enabled" msgstr "" @@ -2322,9 +2332,6 @@ msgstr "" #~ msgid "Open recent file {name}" #~ msgstr "Apri file recente {name}" -#~ msgid "Open stock configuration {name}" -#~ msgstr "Apertura configurazione stock {name}" - #~ msgid "Overwrite" #~ msgstr "Sovrascrivi" diff --git a/chirp/locale/nl.po b/chirp/locale/nl.po index 773eeb6ac..071ca201f 100644 --- a/chirp/locale/nl.po +++ b/chirp/locale/nl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: CHIRP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 18:46-0700\n" +"POT-Creation-Date: 2023-06-28 16:31-0700\n" "PO-Revision-Date: 2012-03-18 12:01+0100\n" "Last-Translator: Michael Tel \n" "Language-Team: Dutch\n" @@ -49,7 +49,7 @@ msgstr "Verwijderen (en naar boven verplaatsen)" msgid "%i Memories and shift block up" msgstr "Verwijderen (en naar boven verplaatsen)" -#: ../wxui/main.py:1307 +#: ../wxui/main.py:1347 #, fuzzy, python-format msgid "%s has not been saved. Save before closing?" msgstr "Het bestand is aangepast. Wilt u de wijzigingen opslaan?" @@ -58,7 +58,7 @@ msgstr "Het bestand is aangepast. Wilt u de wijzigingen opslaan?" msgid "(none)" msgstr "" -#: ../wxui/memedit.py:1787 +#: ../wxui/memedit.py:1791 #, python-format msgid "...and %i more" msgstr "" @@ -595,7 +595,7 @@ msgid "" " click Then" msgstr "" -#: ../drivers/uvk5.py:636 +#: ../drivers/uvk5.py:633 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -606,7 +606,7 @@ msgid "" "attached\n" msgstr "" -#: ../drivers/uvk5.py:643 +#: ../drivers/uvk5.py:640 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -616,17 +616,17 @@ msgid "" "It will may not work if you turn on the radio with the cable already attached" msgstr "" -#: ../wxui/main.py:1685 +#: ../wxui/main.py:1719 msgid "" "A new CHIRP version is available. Please visit the website as soon as " "possible to download it!" msgstr "" -#: ../wxui/main.py:859 +#: ../wxui/main.py:894 msgid "About" msgstr "" -#: ../wxui/main.py:1547 +#: ../wxui/main.py:1587 msgid "About CHIRP" msgstr "" @@ -634,12 +634,12 @@ msgstr "" msgid "All" msgstr "Alles" -#: ../wxui/main.py:1143 +#: ../wxui/main.py:1178 #, fuzzy msgid "All Files" msgstr "Komma gescheiden bestanden" -#: ../wxui/main.py:1154 +#: ../wxui/main.py:1189 msgid "All supported formats|" msgstr "" @@ -647,7 +647,7 @@ msgstr "" msgid "Amateur" msgstr "" -#: ../wxui/common.py:497 ../wxui/common.py:523 +#: ../wxui/common.py:499 ../wxui/common.py:525 msgid "An error has occurred" msgstr "Er is een fout opgetreden" @@ -659,7 +659,7 @@ msgstr "" msgid "Available modules" msgstr "" -#: ../wxui/main.py:1631 +#: ../wxui/main.py:1665 msgid "Bandplan" msgstr "" @@ -667,7 +667,7 @@ msgstr "" msgid "Bands" msgstr "" -#: ../wxui/main.py:204 +#: ../wxui/main.py:212 msgid "Banks" msgstr "Banken" @@ -675,7 +675,7 @@ msgstr "Banken" msgid "Bin" msgstr "" -#: ../wxui/main.py:215 +#: ../wxui/main.py:223 msgid "Browser" msgstr "" @@ -693,7 +693,7 @@ msgid "" "Channels with equivalent TX and RX %s are represented by tone mode of \"%s\"" msgstr "" -#: ../wxui/main.py:1142 +#: ../wxui/main.py:1177 msgid "Chirp Image Files" msgstr "" @@ -743,7 +743,7 @@ msgstr "" msgid "Clone completed, checking for spurious bytes" msgstr "" -#: ../wxui/common.py:108 +#: ../wxui/common.py:110 msgid "Cloning" msgstr "Klonen" @@ -757,11 +757,11 @@ msgstr "Download van radio" msgid "Cloning to radio" msgstr "Naar radio uploaden" -#: ../wxui/main.py:937 +#: ../wxui/main.py:972 msgid "Close" msgstr "" -#: ../wxui/main.py:938 +#: ../wxui/main.py:973 msgid "Close file" msgstr "" @@ -822,11 +822,11 @@ msgid "" "Polarity" msgstr "DTCS Pol" -#: ../wxui/memedit.py:2040 +#: ../wxui/memedit.py:2044 msgid "DV Memory" msgstr "" -#: ../wxui/main.py:1561 +#: ../wxui/main.py:1601 msgid "Danger Ahead" msgstr "" @@ -839,12 +839,12 @@ msgstr "Detecteren" msgid "Delete" msgstr "Verwijderen" -#: ../wxui/main.py:864 +#: ../wxui/main.py:899 #, fuzzy msgid "Developer Mode" msgstr "Ontwerper" -#: ../wxui/main.py:1567 +#: ../wxui/main.py:1607 #, python-format msgid "Developer state is now %s. CHIRP must be restarted to take effect" msgstr "" @@ -853,11 +853,11 @@ msgstr "" msgid "Diff Raw Memories" msgstr "Verschillen ruwe kanalen" -#: ../wxui/memedit.py:1965 +#: ../wxui/memedit.py:1969 msgid "Digital Code" msgstr "Digitale code" -#: ../wxui/main.py:1578 +#: ../wxui/main.py:1618 msgid "Disable reporting" msgstr "" @@ -878,16 +878,16 @@ msgstr "" msgid "Double-click to change bank name" msgstr "" -#: ../wxui/main.py:939 +#: ../wxui/main.py:974 msgid "Download" msgstr "" -#: ../wxui/main.py:776 ../wxui/main.py:940 +#: ../wxui/main.py:811 ../wxui/main.py:975 #, fuzzy msgid "Download from radio" msgstr "Download van radio" -#: ../wxui/clone.py:512 +#: ../wxui/clone.py:513 #, fuzzy msgid "Download instructions" msgstr "Download van radio" @@ -896,17 +896,17 @@ msgstr "Download van radio" msgid "Duplex" msgstr "Duplex" -#: ../wxui/memedit.py:1995 +#: ../wxui/memedit.py:1999 #, python-format msgid "Edit details for %i memories" msgstr "" -#: ../wxui/memedit.py:1993 +#: ../wxui/memedit.py:1997 #, python-format msgid "Edit details for memory %i" msgstr "" -#: ../wxui/main.py:808 +#: ../wxui/main.py:843 msgid "Enable Automatic Edits" msgstr "" @@ -932,11 +932,11 @@ msgstr "" msgid "Enter a new name for bank %s:" msgstr "" -#: ../wxui/clone.py:405 +#: ../wxui/clone.py:406 msgid "Enter custom port:" msgstr "" -#: ../wxui/common.py:316 +#: ../wxui/common.py:318 #, fuzzy, python-format msgid "Erased memory %s" msgstr "Wis kanaal {loc}" @@ -946,24 +946,24 @@ msgstr "Wis kanaal {loc}" msgid "Error applying settings" msgstr "Fout bij het instellen van het geheugen" -#: ../wxui/clone.py:449 +#: ../wxui/clone.py:450 msgid "Error communicating with radio" msgstr "" -#: ../wxui/clone.py:480 +#: ../wxui/clone.py:481 msgid "Experimental driver" msgstr "" -#: ../wxui/memedit.py:1925 +#: ../wxui/memedit.py:1929 msgid "Export can only write CSV files" msgstr "" -#: ../wxui/main.py:672 ../wxui/main.py:1292 +#: ../wxui/main.py:706 ../wxui/main.py:1332 #, fuzzy msgid "Export to CSV" msgstr "Exporteren naar bestand" -#: ../wxui/memedit.py:2029 +#: ../wxui/memedit.py:2033 msgid "Extra" msgstr "" @@ -975,13 +975,13 @@ msgstr "" msgid "Features" msgstr "" -#: ../wxui/main.py:534 +#: ../wxui/main.py:542 #, python-format msgid "File does not exist: %s" msgstr "" -#: ../wxui/main.py:1146 ../wxui/main.py:1223 ../wxui/main.py:1233 -#: ../wxui/main.py:1288 ../wxui/main.py:1513 ../wxui/main.py:1514 +#: ../wxui/main.py:1181 ../wxui/main.py:1262 ../wxui/main.py:1272 +#: ../wxui/main.py:1328 ../wxui/main.py:1553 ../wxui/main.py:1554 #, fuzzy msgid "Files" msgstr "_Bestanden" @@ -994,15 +994,15 @@ msgstr "" msgid "Filter results with location matching this string" msgstr "" -#: ../wxui/main.py:1362 +#: ../wxui/main.py:1402 msgid "Find" msgstr "" -#: ../wxui/main.py:730 +#: ../wxui/main.py:765 msgid "Find Next" msgstr "" -#: ../wxui/common.py:318 +#: ../wxui/common.py:320 #, python-format msgid "Finished radio job %s" msgstr "" @@ -1233,16 +1233,16 @@ msgstr "" msgid "If set, sort results by distance from these coordinates" msgstr "" -#: ../wxui/main.py:1278 +#: ../wxui/main.py:1318 msgid "Import" msgstr "Importeren" -#: ../wxui/main.py:666 +#: ../wxui/main.py:700 #, fuzzy msgid "Import from file" msgstr "Importeren van bestand" -#: ../wxui/main.py:1276 +#: ../wxui/main.py:1316 #, fuzzy msgid "Import not recommended" msgstr "Importeren uit RFinder" @@ -1251,7 +1251,7 @@ msgstr "Importeren uit RFinder" msgid "Index" msgstr "Index" -#: ../wxui/main.py:217 +#: ../wxui/main.py:225 msgid "Info" msgstr "" @@ -1268,7 +1268,7 @@ msgstr "Regel hierboven invoegen" msgid "Install desktop icon?" msgstr "" -#: ../wxui/main.py:848 +#: ../wxui/main.py:883 msgid "Interact with driver" msgstr "" @@ -1281,12 +1281,12 @@ msgstr "Ongeldige waarde. Het moet een integer zijn." msgid "Invalid ZIP code" msgstr "" -#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2120 +#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2124 #, python-format msgid "Invalid edit: %s" msgstr "" -#: ../wxui/main.py:1510 +#: ../wxui/main.py:1550 msgid "Invalid or unsupported module file" msgstr "" @@ -1299,7 +1299,7 @@ msgstr "Ongeldige waarde voor dit veld" msgid "Issue number:" msgstr "" -#: ../wxui/main.py:335 +#: ../wxui/main.py:343 msgid "LIVE" msgstr "" @@ -1324,17 +1324,17 @@ msgstr "" msgid "Limit results to this distance (km) from coordinates" msgstr "" -#: ../wxui/main.py:678 +#: ../wxui/main.py:712 #, fuzzy msgid "Load Module" msgstr "Toonmodus" -#: ../wxui/main.py:896 ../wxui/developer.py:487 +#: ../wxui/main.py:931 ../wxui/developer.py:487 #, fuzzy msgid "Load module from issue" msgstr "Toonmodus" -#: ../wxui/main.py:1517 +#: ../wxui/main.py:1557 msgid "" "Loading modules can be extremely dangerous, leading to damage to your " "computer, radio, or both. NEVER load a module from a source you do not " @@ -1352,7 +1352,7 @@ msgstr "" msgid "Longitude" msgstr "" -#: ../wxui/main.py:196 +#: ../wxui/main.py:204 msgid "Memories" msgstr "Kanalen" @@ -1375,7 +1375,7 @@ msgstr "" msgid "Mode" msgstr "Mode" -#: ../wxui/clone.py:246 +#: ../wxui/clone.py:247 msgid "Model" msgstr "Model" @@ -1384,19 +1384,19 @@ msgstr "Model" msgid "Modes" msgstr "Mode" -#: ../wxui/main.py:1514 +#: ../wxui/main.py:1554 msgid "Module" msgstr "" -#: ../wxui/main.py:1486 +#: ../wxui/main.py:1526 msgid "Module Loaded" msgstr "" -#: ../wxui/main.py:1617 +#: ../wxui/main.py:1651 msgid "Module loaded successfully" msgstr "" -#: ../wxui/clone.py:374 +#: ../wxui/clone.py:375 #, python-format msgid "More than one port found: %s" msgstr "" @@ -1411,11 +1411,11 @@ msgstr "Verplaats omlaa_g" msgid "Move Up" msgstr "Verplaats om_hoog" -#: ../wxui/main.py:613 +#: ../wxui/main.py:647 msgid "New Window" msgstr "" -#: ../wxui/main.py:1687 +#: ../wxui/main.py:1721 msgid "New version available" msgstr "" @@ -1453,40 +1453,45 @@ msgstr "" msgid "Only certain modes" msgstr "" -#: ../wxui/main.py:317 +#: ../wxui/main.py:325 msgid "Only memory tabs may be exported" msgstr "" -#: ../wxui/main.py:933 ../wxui/main.py:1278 +#: ../wxui/main.py:968 ../wxui/main.py:1318 msgid "Open" msgstr "" -#: ../wxui/main.py:653 +#: ../wxui/main.py:687 #, fuzzy msgid "Open Recent" msgstr "_Recent" -#: ../wxui/main.py:624 +#: ../wxui/main.py:658 #, fuzzy msgid "Open Stock Config" msgstr "Openen aanwezige configuratie" -#: ../wxui/main.py:934 ../wxui/main.py:1157 +#: ../wxui/main.py:969 ../wxui/main.py:1192 msgid "Open a file" msgstr "" -#: ../wxui/main.py:1532 +#: ../wxui/main.py:1572 msgid "Open a module" msgstr "" -#: ../wxui/main.py:885 +#: ../wxui/main.py:920 msgid "Open debug log" msgstr "" -#: ../wxui/main.py:504 +#: ../wxui/main.py:512 msgid "Open in new window" msgstr "" +#: ../wxui/main.py:604 +#, fuzzy +msgid "Open stock config directory" +msgstr "Openen van aanwezige configuratie {name}" + #: ../wxui/query_sources.py:298 msgid "Optional: -122.0000" msgstr "" @@ -1504,7 +1509,7 @@ msgstr "" msgid "Optional: County, Hospital, etc" msgstr "" -#: ../wxui/memedit.py:1742 +#: ../wxui/memedit.py:1746 #, fuzzy msgid "Overwrite memories?" msgstr "Overschrijven?" @@ -1520,27 +1525,32 @@ msgstr "" msgid "Paste" msgstr "Plakken" -#: ../wxui/memedit.py:1736 +#: ../wxui/memedit.py:1740 #, python-format msgid "Pasted memories will overwrite %i existing memories" msgstr "" -#: ../wxui/memedit.py:1739 +#: ../wxui/memedit.py:1743 #, python-format msgid "Pasted memories will overwrite memories %s" msgstr "" -#: ../wxui/memedit.py:1733 +#: ../wxui/memedit.py:1737 #, python-format msgid "Pasted memories will overwrite memory %i" msgstr "" -#: ../wxui/memedit.py:1730 +#: ../wxui/memedit.py:1734 #, python-format msgid "Pasted memory will overwrite memory %i" msgstr "" -#: ../wxui/main.py:1691 +#: ../wxui/common.py:564 +#, python-format +msgid "Path %s does not exist" +msgstr "" + +#: ../wxui/main.py:1725 msgid "Please be sure to quit CHIRP before installing the new version!" msgstr "" @@ -1570,7 +1580,7 @@ msgid "" " (At the end radio will beep)\n" msgstr "" -#: ../wxui/main.py:1555 +#: ../wxui/main.py:1595 msgid "" "Please note that developer mode is intended for use by developers of the " "CHIRP project, or under the direction of a developer. It enables behaviors " @@ -1578,15 +1588,15 @@ msgid "" "EXTREME care. You have been warned! Proceed anyway?" msgstr "" -#: ../wxui/common.py:181 +#: ../wxui/common.py:183 msgid "Please wait" msgstr "" -#: ../wxui/clone.py:351 +#: ../wxui/clone.py:352 msgid "Plug in your cable and then click OK" msgstr "" -#: ../wxui/clone.py:239 +#: ../wxui/clone.py:240 msgid "Port" msgstr "Poort" @@ -1599,7 +1609,7 @@ msgstr "Vermogen" msgid "Press enter to set this in memory" msgstr "Fout bij het instellen van het geheugen" -#: ../wxui/main.py:689 +#: ../wxui/main.py:723 msgid "Print Preview" msgstr "" @@ -1611,12 +1621,12 @@ msgstr "" msgid "Properties" msgstr "" -#: ../wxui/main.py:1645 +#: ../wxui/main.py:1679 #, python-format msgid "Query %s" msgstr "" -#: ../wxui/main.py:790 +#: ../wxui/main.py:825 msgid "Query Source" msgstr "" @@ -1624,7 +1634,7 @@ msgstr "" msgid "RX DTCS" msgstr "" -#: ../wxui/main.py:904 +#: ../wxui/main.py:939 msgid "Radio" msgstr "Radio" @@ -1633,7 +1643,7 @@ msgstr "Radio" msgid "Radio did not ack block %i" msgstr "" -#: ../wxui/clone.py:504 ../wxui/clone.py:569 +#: ../wxui/clone.py:505 ../wxui/clone.py:570 #, fuzzy msgid "Radio information" msgstr "Informatie van de bank ophalen" @@ -1649,16 +1659,16 @@ msgstr "" msgid "RadioReference Canada requires a login before you can query" msgstr "" -#: ../wxui/common.py:308 +#: ../wxui/common.py:310 #, python-format msgid "Refreshed memory %s" msgstr "" -#: ../wxui/main.py:825 +#: ../wxui/main.py:860 msgid "Reload Driver" msgstr "" -#: ../wxui/main.py:834 +#: ../wxui/main.py:869 msgid "Reload Driver and File" msgstr "" @@ -1667,48 +1677,48 @@ msgstr "" msgid "Rename bank" msgstr "Naam van de bank instellen" -#: ../wxui/main.py:873 +#: ../wxui/main.py:908 #, fuzzy msgid "Reporting enabled" msgstr "Rapportering is uitgeschakeld" -#: ../wxui/main.py:1574 +#: ../wxui/main.py:1614 msgid "" "Reporting helps the CHIRP project know which radio models and OS platforms " "to spend our limited efforts on. We would really appreciate if you left it " "enabled. Really disable reporting?" msgstr "" -#: ../wxui/main.py:1569 +#: ../wxui/main.py:1609 msgid "Restart Required" msgstr "" -#: ../wxui/main.py:634 +#: ../wxui/main.py:668 #, python-format msgid "Restore %i tabs" msgstr "" -#: ../wxui/common.py:312 +#: ../wxui/common.py:314 msgid "Retrieved settings" msgstr "" -#: ../wxui/main.py:935 +#: ../wxui/main.py:970 msgid "Save" msgstr "" -#: ../wxui/main.py:1309 +#: ../wxui/main.py:1349 msgid "Save before closing?" msgstr "" -#: ../wxui/main.py:936 ../wxui/main.py:1237 +#: ../wxui/main.py:971 ../wxui/main.py:1276 msgid "Save file" msgstr "" -#: ../wxui/common.py:314 +#: ../wxui/common.py:316 msgid "Saved settings" msgstr "" -#: ../wxui/main.py:815 +#: ../wxui/main.py:850 #, fuzzy msgid "Select Bandplan" msgstr "Kolommen selecteren" @@ -1723,7 +1733,7 @@ msgstr "Kolommen selecteren" msgid "Select Modes" msgstr "Kolommen selecteren" -#: ../wxui/main.py:1630 +#: ../wxui/main.py:1664 msgid "Select a bandplan" msgstr "" @@ -1731,7 +1741,7 @@ msgstr "" msgid "Service" msgstr "" -#: ../wxui/main.py:209 +#: ../wxui/main.py:217 msgid "Settings" msgstr "" @@ -1739,7 +1749,7 @@ msgstr "" msgid "Show Raw Memory" msgstr "Toon ruw kanaal" -#: ../wxui/main.py:891 +#: ../wxui/main.py:926 msgid "Show debug log location" msgstr "" @@ -1747,12 +1757,12 @@ msgstr "" msgid "Show extra fields" msgstr "" -#: ../wxui/memedit.py:1791 +#: ../wxui/memedit.py:1795 #, fuzzy msgid "Some memories are incompatible with this radio" msgstr "Geplakt kanaal {number} is niet compatibel met deze radio omdat:" -#: ../wxui/memedit.py:1686 +#: ../wxui/memedit.py:1687 msgid "Some memories are not deletable" msgstr "" @@ -1788,7 +1798,7 @@ msgstr "" msgid "State/Province" msgstr "" -#: ../wxui/main.py:1618 +#: ../wxui/main.py:1652 msgid "Success" msgstr "" @@ -1815,7 +1825,7 @@ msgid "" "download to a CHIRP Radio Images (*.img) file.\n" msgstr "" -#: ../wxui/main.py:1269 +#: ../wxui/main.py:1309 #, python-format msgid "" "The recommended procedure for importing memories is to open the source file " @@ -1894,12 +1904,12 @@ msgstr "Toon squelch" msgid "Tuning Step" msgstr "Kanaal-afstand" -#: ../wxui/clone.py:345 ../wxui/clone.py:352 ../wxui/clone.py:363 -#: ../wxui/clone.py:371 ../wxui/clone.py:375 +#: ../wxui/clone.py:346 ../wxui/clone.py:353 ../wxui/clone.py:364 +#: ../wxui/clone.py:372 ../wxui/clone.py:376 msgid "USB Port Finder" msgstr "" -#: ../wxui/clone.py:361 +#: ../wxui/clone.py:362 msgid "" "Unable to determine port for your cable. Check your drivers and connections." msgstr "" @@ -1908,12 +1918,12 @@ msgstr "" msgid "Unable to edit memory before radio is loaded" msgstr "" -#: ../wxui/main.py:1195 +#: ../wxui/main.py:1234 #, fuzzy, python-format msgid "Unable to find stock config %r" msgstr "Openen aanwezige configuratie" -#: ../wxui/common.py:214 +#: ../wxui/common.py:216 #, fuzzy msgid "Unable to open the clipboard" msgstr "Niet in staat om de radio op {port} te detecteren" @@ -1925,7 +1935,7 @@ msgid "" "model and try again." msgstr "" -#: ../wxui/main.py:1610 +#: ../wxui/common.py:571 #, fuzzy, python-format msgid "Unable to reveal %s on this system" msgstr "Niet in staat om wijzigingen voor dit model te maken" @@ -1939,29 +1949,29 @@ msgstr "Niet in staat om wijzigingen voor dit model te maken" msgid "United States" msgstr "" -#: ../wxui/clone.py:344 +#: ../wxui/clone.py:345 msgid "Unplug your cable (if needed) and then click OK" msgstr "" -#: ../wxui/clone.py:584 +#: ../wxui/clone.py:585 msgid "Upload instructions" msgstr "" -#: ../wxui/main.py:784 ../wxui/main.py:942 +#: ../wxui/main.py:819 ../wxui/main.py:977 #, fuzzy msgid "Upload to radio" msgstr "Naar radio uploaden" -#: ../wxui/common.py:310 +#: ../wxui/common.py:312 #, python-format msgid "Uploaded memory %s" msgstr "" -#: ../wxui/main.py:752 +#: ../wxui/main.py:787 msgid "Use fixed-width font" msgstr "" -#: ../wxui/main.py:760 +#: ../wxui/main.py:795 msgid "Use larger font" msgstr "" @@ -1970,12 +1980,12 @@ msgstr "" msgid "Value does not fit in %i bits" msgstr "" -#: ../wxui/common.py:420 +#: ../wxui/common.py:422 #, python-format msgid "Value must be at least %.4f" msgstr "" -#: ../wxui/common.py:424 +#: ../wxui/common.py:426 #, python-format msgid "Value must be at most %.4f" msgstr "" @@ -1989,11 +1999,11 @@ msgstr "" msgid "Value must be zero or greater" msgstr "" -#: ../wxui/clone.py:242 +#: ../wxui/clone.py:243 msgid "Vendor" msgstr "Merk" -#: ../wxui/main.py:903 +#: ../wxui/main.py:938 #, fuzzy msgid "View" msgstr "Bee_ld" @@ -2007,7 +2017,7 @@ msgstr "" msgid "Warning: %s" msgstr "" -#: ../wxui/main.py:421 +#: ../wxui/main.py:429 msgid "Welcome" msgstr "" @@ -2015,7 +2025,7 @@ msgstr "" msgid "Would you like CHIRP to install a desktop icon for you?" msgstr "" -#: ../wxui/clone.py:369 +#: ../wxui/clone.py:370 msgid "Your cable appears to be on port:" msgstr "" @@ -2031,11 +2041,11 @@ msgstr "" msgid "bytes each" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "disabled" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "enabled" msgstr "" @@ -2321,9 +2331,6 @@ msgstr "" #~ msgid "Open recent file {name}" #~ msgstr "Recent geopend bestand {name}" -#~ msgid "Open stock configuration {name}" -#~ msgstr "Openen van aanwezige configuratie {name}" - #~ msgid "Overwrite" #~ msgstr "Overschrijven" diff --git a/chirp/locale/pl.po b/chirp/locale/pl.po index c2574e9c9..939a1daf2 100644 --- a/chirp/locale/pl.po +++ b/chirp/locale/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: CHIRP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 18:46-0700\n" +"POT-Creation-Date: 2023-06-28 16:31-0700\n" "PO-Revision-Date: 2011-12-07 11:35+0100\n" "Last-Translator: Grzegorz Błoński-Kubiak \n" "Language-Team: Polish\n" @@ -49,7 +49,7 @@ msgstr "Skasuj (i skocz wyżej)" msgid "%i Memories and shift block up" msgstr "Skasuj (i skocz wyżej)" -#: ../wxui/main.py:1307 +#: ../wxui/main.py:1347 #, fuzzy, python-format msgid "%s has not been saved. Save before closing?" msgstr "Plik został zmodyfikowany, zapisać przed zakończeniem?" @@ -58,7 +58,7 @@ msgstr "Plik został zmodyfikowany, zapisać przed zakończeniem?" msgid "(none)" msgstr "" -#: ../wxui/memedit.py:1787 +#: ../wxui/memedit.py:1791 #, python-format msgid "...and %i more" msgstr "" @@ -595,7 +595,7 @@ msgid "" " click Then" msgstr "" -#: ../drivers/uvk5.py:636 +#: ../drivers/uvk5.py:633 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -606,7 +606,7 @@ msgid "" "attached\n" msgstr "" -#: ../drivers/uvk5.py:643 +#: ../drivers/uvk5.py:640 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -616,17 +616,17 @@ msgid "" "It will may not work if you turn on the radio with the cable already attached" msgstr "" -#: ../wxui/main.py:1685 +#: ../wxui/main.py:1719 msgid "" "A new CHIRP version is available. Please visit the website as soon as " "possible to download it!" msgstr "" -#: ../wxui/main.py:859 +#: ../wxui/main.py:894 msgid "About" msgstr "" -#: ../wxui/main.py:1547 +#: ../wxui/main.py:1587 msgid "About CHIRP" msgstr "" @@ -634,12 +634,12 @@ msgstr "" msgid "All" msgstr "Wszystkie" -#: ../wxui/main.py:1143 +#: ../wxui/main.py:1178 #, fuzzy msgid "All Files" msgstr "Pliki CSV" -#: ../wxui/main.py:1154 +#: ../wxui/main.py:1189 msgid "All supported formats|" msgstr "" @@ -647,7 +647,7 @@ msgstr "" msgid "Amateur" msgstr "" -#: ../wxui/common.py:497 ../wxui/common.py:523 +#: ../wxui/common.py:499 ../wxui/common.py:525 msgid "An error has occurred" msgstr "Wystąpił błąd" @@ -659,7 +659,7 @@ msgstr "" msgid "Available modules" msgstr "" -#: ../wxui/main.py:1631 +#: ../wxui/main.py:1665 msgid "Bandplan" msgstr "" @@ -667,7 +667,7 @@ msgstr "" msgid "Bands" msgstr "" -#: ../wxui/main.py:204 +#: ../wxui/main.py:212 #, fuzzy msgid "Banks" msgstr "Bank" @@ -676,7 +676,7 @@ msgstr "Bank" msgid "Bin" msgstr "" -#: ../wxui/main.py:215 +#: ../wxui/main.py:223 msgid "Browser" msgstr "" @@ -694,7 +694,7 @@ msgid "" "Channels with equivalent TX and RX %s are represented by tone mode of \"%s\"" msgstr "" -#: ../wxui/main.py:1142 +#: ../wxui/main.py:1177 msgid "Chirp Image Files" msgstr "" @@ -744,7 +744,7 @@ msgstr "" msgid "Clone completed, checking for spurious bytes" msgstr "" -#: ../wxui/common.py:108 +#: ../wxui/common.py:110 msgid "Cloning" msgstr "Klonowanie" @@ -758,11 +758,11 @@ msgstr "Pobierz z urządzenia" msgid "Cloning to radio" msgstr "Wyślij do urządzenia" -#: ../wxui/main.py:937 +#: ../wxui/main.py:972 msgid "Close" msgstr "" -#: ../wxui/main.py:938 +#: ../wxui/main.py:973 msgid "Close file" msgstr "" @@ -825,11 +825,11 @@ msgid "" "Polarity" msgstr "Polaryzacja DTCS" -#: ../wxui/memedit.py:2040 +#: ../wxui/memedit.py:2044 msgid "DV Memory" msgstr "" -#: ../wxui/main.py:1561 +#: ../wxui/main.py:1601 msgid "Danger Ahead" msgstr "" @@ -843,12 +843,12 @@ msgstr "Wykryj" msgid "Delete" msgstr "_Usuń" -#: ../wxui/main.py:864 +#: ../wxui/main.py:899 #, fuzzy msgid "Developer Mode" msgstr "Deweloper" -#: ../wxui/main.py:1567 +#: ../wxui/main.py:1607 #, python-format msgid "Developer state is now %s. CHIRP must be restarted to take effect" msgstr "" @@ -858,11 +858,11 @@ msgstr "" msgid "Diff Raw Memories" msgstr "Porównaj surowe pamięci" -#: ../wxui/memedit.py:1965 +#: ../wxui/memedit.py:1969 msgid "Digital Code" msgstr "" -#: ../wxui/main.py:1578 +#: ../wxui/main.py:1618 msgid "Disable reporting" msgstr "" @@ -883,16 +883,16 @@ msgstr "" msgid "Double-click to change bank name" msgstr "" -#: ../wxui/main.py:939 +#: ../wxui/main.py:974 msgid "Download" msgstr "" -#: ../wxui/main.py:776 ../wxui/main.py:940 +#: ../wxui/main.py:811 ../wxui/main.py:975 #, fuzzy msgid "Download from radio" msgstr "Pobierz z urządzenia" -#: ../wxui/clone.py:512 +#: ../wxui/clone.py:513 #, fuzzy msgid "Download instructions" msgstr "Pobierz z urządzenia" @@ -901,17 +901,17 @@ msgstr "Pobierz z urządzenia" msgid "Duplex" msgstr "Dupleks" -#: ../wxui/memedit.py:1995 +#: ../wxui/memedit.py:1999 #, python-format msgid "Edit details for %i memories" msgstr "" -#: ../wxui/memedit.py:1993 +#: ../wxui/memedit.py:1997 #, python-format msgid "Edit details for memory %i" msgstr "" -#: ../wxui/main.py:808 +#: ../wxui/main.py:843 msgid "Enable Automatic Edits" msgstr "" @@ -937,11 +937,11 @@ msgstr "" msgid "Enter a new name for bank %s:" msgstr "" -#: ../wxui/clone.py:405 +#: ../wxui/clone.py:406 msgid "Enter custom port:" msgstr "" -#: ../wxui/common.py:316 +#: ../wxui/common.py:318 #, fuzzy, python-format msgid "Erased memory %s" msgstr "Kasowanie pamięci {loc}" @@ -951,24 +951,24 @@ msgstr "Kasowanie pamięci {loc}" msgid "Error applying settings" msgstr "Błąd ustawiania pamięci" -#: ../wxui/clone.py:449 +#: ../wxui/clone.py:450 msgid "Error communicating with radio" msgstr "" -#: ../wxui/clone.py:480 +#: ../wxui/clone.py:481 msgid "Experimental driver" msgstr "" -#: ../wxui/memedit.py:1925 +#: ../wxui/memedit.py:1929 msgid "Export can only write CSV files" msgstr "" -#: ../wxui/main.py:672 ../wxui/main.py:1292 +#: ../wxui/main.py:706 ../wxui/main.py:1332 #, fuzzy msgid "Export to CSV" msgstr "Importuj z RFinder" -#: ../wxui/memedit.py:2029 +#: ../wxui/memedit.py:2033 msgid "Extra" msgstr "" @@ -980,13 +980,13 @@ msgstr "" msgid "Features" msgstr "" -#: ../wxui/main.py:534 +#: ../wxui/main.py:542 #, python-format msgid "File does not exist: %s" msgstr "" -#: ../wxui/main.py:1146 ../wxui/main.py:1223 ../wxui/main.py:1233 -#: ../wxui/main.py:1288 ../wxui/main.py:1513 ../wxui/main.py:1514 +#: ../wxui/main.py:1181 ../wxui/main.py:1262 ../wxui/main.py:1272 +#: ../wxui/main.py:1328 ../wxui/main.py:1553 ../wxui/main.py:1554 #, fuzzy msgid "Files" msgstr "_Plik" @@ -999,15 +999,15 @@ msgstr "" msgid "Filter results with location matching this string" msgstr "" -#: ../wxui/main.py:1362 +#: ../wxui/main.py:1402 msgid "Find" msgstr "" -#: ../wxui/main.py:730 +#: ../wxui/main.py:765 msgid "Find Next" msgstr "" -#: ../wxui/common.py:318 +#: ../wxui/common.py:320 #, python-format msgid "Finished radio job %s" msgstr "" @@ -1238,16 +1238,16 @@ msgstr "" msgid "If set, sort results by distance from these coordinates" msgstr "" -#: ../wxui/main.py:1278 +#: ../wxui/main.py:1318 msgid "Import" msgstr "Importuj" -#: ../wxui/main.py:666 +#: ../wxui/main.py:700 #, fuzzy msgid "Import from file" msgstr "Importuj z RFinder" -#: ../wxui/main.py:1276 +#: ../wxui/main.py:1316 #, fuzzy msgid "Import not recommended" msgstr "Importuj z RFinder" @@ -1257,7 +1257,7 @@ msgstr "Importuj z RFinder" msgid "Index" msgstr "Indeks banków" -#: ../wxui/main.py:217 +#: ../wxui/main.py:225 msgid "Info" msgstr "" @@ -1275,7 +1275,7 @@ msgstr "Umieść wiersz wyżej" msgid "Install desktop icon?" msgstr "" -#: ../wxui/main.py:848 +#: ../wxui/main.py:883 msgid "Interact with driver" msgstr "" @@ -1288,12 +1288,12 @@ msgstr "Błąd.Wartość musi być liczbą." msgid "Invalid ZIP code" msgstr "" -#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2120 +#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2124 #, python-format msgid "Invalid edit: %s" msgstr "" -#: ../wxui/main.py:1510 +#: ../wxui/main.py:1550 msgid "Invalid or unsupported module file" msgstr "" @@ -1306,7 +1306,7 @@ msgstr "Niewłaściwa wartość" msgid "Issue number:" msgstr "" -#: ../wxui/main.py:335 +#: ../wxui/main.py:343 msgid "LIVE" msgstr "" @@ -1331,17 +1331,17 @@ msgstr "" msgid "Limit results to this distance (km) from coordinates" msgstr "" -#: ../wxui/main.py:678 +#: ../wxui/main.py:712 #, fuzzy msgid "Load Module" msgstr "Tryb tonu" -#: ../wxui/main.py:896 ../wxui/developer.py:487 +#: ../wxui/main.py:931 ../wxui/developer.py:487 #, fuzzy msgid "Load module from issue" msgstr "Tryb tonu" -#: ../wxui/main.py:1517 +#: ../wxui/main.py:1557 msgid "" "Loading modules can be extremely dangerous, leading to damage to your " "computer, radio, or both. NEVER load a module from a source you do not " @@ -1359,7 +1359,7 @@ msgstr "" msgid "Longitude" msgstr "" -#: ../wxui/main.py:196 +#: ../wxui/main.py:204 #, fuzzy msgid "Memories" msgstr "Porównaj surowe pamięci" @@ -1383,7 +1383,7 @@ msgstr "" msgid "Mode" msgstr "Tryb" -#: ../wxui/clone.py:246 +#: ../wxui/clone.py:247 #, fuzzy msgid "Model" msgstr "Tryb" @@ -1393,19 +1393,19 @@ msgstr "Tryb" msgid "Modes" msgstr "Tryb" -#: ../wxui/main.py:1514 +#: ../wxui/main.py:1554 msgid "Module" msgstr "" -#: ../wxui/main.py:1486 +#: ../wxui/main.py:1526 msgid "Module Loaded" msgstr "" -#: ../wxui/main.py:1617 +#: ../wxui/main.py:1651 msgid "Module loaded successfully" msgstr "" -#: ../wxui/clone.py:374 +#: ../wxui/clone.py:375 #, python-format msgid "More than one port found: %s" msgstr "" @@ -1420,11 +1420,11 @@ msgstr "W dół" msgid "Move Up" msgstr "W górę" -#: ../wxui/main.py:613 +#: ../wxui/main.py:647 msgid "New Window" msgstr "" -#: ../wxui/main.py:1687 +#: ../wxui/main.py:1721 msgid "New version available" msgstr "" @@ -1462,39 +1462,43 @@ msgstr "" msgid "Only certain modes" msgstr "" -#: ../wxui/main.py:317 +#: ../wxui/main.py:325 msgid "Only memory tabs may be exported" msgstr "" -#: ../wxui/main.py:933 ../wxui/main.py:1278 +#: ../wxui/main.py:968 ../wxui/main.py:1318 msgid "Open" msgstr "" -#: ../wxui/main.py:653 +#: ../wxui/main.py:687 #, fuzzy msgid "Open Recent" msgstr "_Niedawny" -#: ../wxui/main.py:624 +#: ../wxui/main.py:658 msgid "Open Stock Config" msgstr "" -#: ../wxui/main.py:934 ../wxui/main.py:1157 +#: ../wxui/main.py:969 ../wxui/main.py:1192 msgid "Open a file" msgstr "" -#: ../wxui/main.py:1532 +#: ../wxui/main.py:1572 msgid "Open a module" msgstr "" -#: ../wxui/main.py:885 +#: ../wxui/main.py:920 msgid "Open debug log" msgstr "" -#: ../wxui/main.py:504 +#: ../wxui/main.py:512 msgid "Open in new window" msgstr "" +#: ../wxui/main.py:604 +msgid "Open stock config directory" +msgstr "" + #: ../wxui/query_sources.py:298 msgid "Optional: -122.0000" msgstr "" @@ -1512,7 +1516,7 @@ msgstr "" msgid "Optional: County, Hospital, etc" msgstr "" -#: ../wxui/memedit.py:1742 +#: ../wxui/memedit.py:1746 #, fuzzy msgid "Overwrite memories?" msgstr "Nadpisać ?" @@ -1529,27 +1533,32 @@ msgstr "" msgid "Paste" msgstr "_Wklej" -#: ../wxui/memedit.py:1736 +#: ../wxui/memedit.py:1740 #, python-format msgid "Pasted memories will overwrite %i existing memories" msgstr "" -#: ../wxui/memedit.py:1739 +#: ../wxui/memedit.py:1743 #, python-format msgid "Pasted memories will overwrite memories %s" msgstr "" -#: ../wxui/memedit.py:1733 +#: ../wxui/memedit.py:1737 #, python-format msgid "Pasted memories will overwrite memory %i" msgstr "" -#: ../wxui/memedit.py:1730 +#: ../wxui/memedit.py:1734 #, python-format msgid "Pasted memory will overwrite memory %i" msgstr "" -#: ../wxui/main.py:1691 +#: ../wxui/common.py:564 +#, python-format +msgid "Path %s does not exist" +msgstr "" + +#: ../wxui/main.py:1725 msgid "Please be sure to quit CHIRP before installing the new version!" msgstr "" @@ -1579,7 +1588,7 @@ msgid "" " (At the end radio will beep)\n" msgstr "" -#: ../wxui/main.py:1555 +#: ../wxui/main.py:1595 msgid "" "Please note that developer mode is intended for use by developers of the " "CHIRP project, or under the direction of a developer. It enables behaviors " @@ -1587,15 +1596,15 @@ msgid "" "EXTREME care. You have been warned! Proceed anyway?" msgstr "" -#: ../wxui/common.py:181 +#: ../wxui/common.py:183 msgid "Please wait" msgstr "" -#: ../wxui/clone.py:351 +#: ../wxui/clone.py:352 msgid "Plug in your cable and then click OK" msgstr "" -#: ../wxui/clone.py:239 +#: ../wxui/clone.py:240 msgid "Port" msgstr "Port" @@ -1608,7 +1617,7 @@ msgstr "Moc" msgid "Press enter to set this in memory" msgstr "Błąd ustawiania pamięci" -#: ../wxui/main.py:689 +#: ../wxui/main.py:723 msgid "Print Preview" msgstr "" @@ -1620,12 +1629,12 @@ msgstr "" msgid "Properties" msgstr "" -#: ../wxui/main.py:1645 +#: ../wxui/main.py:1679 #, python-format msgid "Query %s" msgstr "" -#: ../wxui/main.py:790 +#: ../wxui/main.py:825 msgid "Query Source" msgstr "" @@ -1633,7 +1642,7 @@ msgstr "" msgid "RX DTCS" msgstr "" -#: ../wxui/main.py:904 +#: ../wxui/main.py:939 #, fuzzy msgid "Radio" msgstr "_Urządzenie" @@ -1643,7 +1652,7 @@ msgstr "_Urządzenie" msgid "Radio did not ack block %i" msgstr "" -#: ../wxui/clone.py:504 ../wxui/clone.py:569 +#: ../wxui/clone.py:505 ../wxui/clone.py:570 #, fuzzy msgid "Radio information" msgstr "Pobieranie listy banków pamięci" @@ -1659,16 +1668,16 @@ msgstr "" msgid "RadioReference Canada requires a login before you can query" msgstr "" -#: ../wxui/common.py:308 +#: ../wxui/common.py:310 #, python-format msgid "Refreshed memory %s" msgstr "" -#: ../wxui/main.py:825 +#: ../wxui/main.py:860 msgid "Reload Driver" msgstr "" -#: ../wxui/main.py:834 +#: ../wxui/main.py:869 msgid "Reload Driver and File" msgstr "" @@ -1677,48 +1686,48 @@ msgstr "" msgid "Rename bank" msgstr "Pobieranie listy banków pamięci" -#: ../wxui/main.py:873 +#: ../wxui/main.py:908 #, fuzzy msgid "Reporting enabled" msgstr "Raportowanie jest wyłączone" -#: ../wxui/main.py:1574 +#: ../wxui/main.py:1614 msgid "" "Reporting helps the CHIRP project know which radio models and OS platforms " "to spend our limited efforts on. We would really appreciate if you left it " "enabled. Really disable reporting?" msgstr "" -#: ../wxui/main.py:1569 +#: ../wxui/main.py:1609 msgid "Restart Required" msgstr "" -#: ../wxui/main.py:634 +#: ../wxui/main.py:668 #, python-format msgid "Restore %i tabs" msgstr "" -#: ../wxui/common.py:312 +#: ../wxui/common.py:314 msgid "Retrieved settings" msgstr "" -#: ../wxui/main.py:935 +#: ../wxui/main.py:970 msgid "Save" msgstr "" -#: ../wxui/main.py:1309 +#: ../wxui/main.py:1349 msgid "Save before closing?" msgstr "" -#: ../wxui/main.py:936 ../wxui/main.py:1237 +#: ../wxui/main.py:971 ../wxui/main.py:1276 msgid "Save file" msgstr "" -#: ../wxui/common.py:314 +#: ../wxui/common.py:316 msgid "Saved settings" msgstr "" -#: ../wxui/main.py:815 +#: ../wxui/main.py:850 #, fuzzy msgid "Select Bandplan" msgstr "Wybierz kolumny" @@ -1733,7 +1742,7 @@ msgstr "Wybierz kolumny" msgid "Select Modes" msgstr "Wybierz kolumny" -#: ../wxui/main.py:1630 +#: ../wxui/main.py:1664 msgid "Select a bandplan" msgstr "" @@ -1741,7 +1750,7 @@ msgstr "" msgid "Service" msgstr "" -#: ../wxui/main.py:209 +#: ../wxui/main.py:217 msgid "Settings" msgstr "" @@ -1750,7 +1759,7 @@ msgstr "" msgid "Show Raw Memory" msgstr "Pokaż surową pamięć" -#: ../wxui/main.py:891 +#: ../wxui/main.py:926 msgid "Show debug log location" msgstr "" @@ -1758,13 +1767,13 @@ msgstr "" msgid "Show extra fields" msgstr "" -#: ../wxui/memedit.py:1791 +#: ../wxui/memedit.py:1795 #, fuzzy msgid "Some memories are incompatible with this radio" msgstr "" "Wklejona komórka pamięci {number} jest nie kompatybilna z tym urządzeniem:" -#: ../wxui/memedit.py:1686 +#: ../wxui/memedit.py:1687 msgid "Some memories are not deletable" msgstr "" @@ -1800,7 +1809,7 @@ msgstr "" msgid "State/Province" msgstr "" -#: ../wxui/main.py:1618 +#: ../wxui/main.py:1652 msgid "Success" msgstr "" @@ -1827,7 +1836,7 @@ msgid "" "download to a CHIRP Radio Images (*.img) file.\n" msgstr "" -#: ../wxui/main.py:1269 +#: ../wxui/main.py:1309 #, python-format msgid "" "The recommended procedure for importing memories is to open the source file " @@ -1906,12 +1915,12 @@ msgstr "Blokada tonu" msgid "Tuning Step" msgstr "Krok strojenia" -#: ../wxui/clone.py:345 ../wxui/clone.py:352 ../wxui/clone.py:363 -#: ../wxui/clone.py:371 ../wxui/clone.py:375 +#: ../wxui/clone.py:346 ../wxui/clone.py:353 ../wxui/clone.py:364 +#: ../wxui/clone.py:372 ../wxui/clone.py:376 msgid "USB Port Finder" msgstr "" -#: ../wxui/clone.py:361 +#: ../wxui/clone.py:362 msgid "" "Unable to determine port for your cable. Check your drivers and connections." msgstr "" @@ -1920,12 +1929,12 @@ msgstr "" msgid "Unable to edit memory before radio is loaded" msgstr "" -#: ../wxui/main.py:1195 +#: ../wxui/main.py:1234 #, python-format msgid "Unable to find stock config %r" msgstr "" -#: ../wxui/common.py:214 +#: ../wxui/common.py:216 #, fuzzy msgid "Unable to open the clipboard" msgstr "Nie mogę wykryć urządzenia na porcie {port}" @@ -1937,7 +1946,7 @@ msgid "" "model and try again." msgstr "" -#: ../wxui/main.py:1610 +#: ../wxui/common.py:571 #, fuzzy, python-format msgid "Unable to reveal %s on this system" msgstr "Nie potrafię wprowadzić zmian w tym modelu" @@ -1951,29 +1960,29 @@ msgstr "Nie potrafię wprowadzić zmian w tym modelu" msgid "United States" msgstr "" -#: ../wxui/clone.py:344 +#: ../wxui/clone.py:345 msgid "Unplug your cable (if needed) and then click OK" msgstr "" -#: ../wxui/clone.py:584 +#: ../wxui/clone.py:585 msgid "Upload instructions" msgstr "" -#: ../wxui/main.py:784 ../wxui/main.py:942 +#: ../wxui/main.py:819 ../wxui/main.py:977 #, fuzzy msgid "Upload to radio" msgstr "Wyślij do urządzenia" -#: ../wxui/common.py:310 +#: ../wxui/common.py:312 #, python-format msgid "Uploaded memory %s" msgstr "" -#: ../wxui/main.py:752 +#: ../wxui/main.py:787 msgid "Use fixed-width font" msgstr "" -#: ../wxui/main.py:760 +#: ../wxui/main.py:795 msgid "Use larger font" msgstr "" @@ -1982,12 +1991,12 @@ msgstr "" msgid "Value does not fit in %i bits" msgstr "" -#: ../wxui/common.py:420 +#: ../wxui/common.py:422 #, python-format msgid "Value must be at least %.4f" msgstr "" -#: ../wxui/common.py:424 +#: ../wxui/common.py:426 #, python-format msgid "Value must be at most %.4f" msgstr "" @@ -2001,11 +2010,11 @@ msgstr "" msgid "Value must be zero or greater" msgstr "" -#: ../wxui/clone.py:242 +#: ../wxui/clone.py:243 msgid "Vendor" msgstr "Producent" -#: ../wxui/main.py:903 +#: ../wxui/main.py:938 #, fuzzy msgid "View" msgstr "_Podgląd" @@ -2019,7 +2028,7 @@ msgstr "" msgid "Warning: %s" msgstr "" -#: ../wxui/main.py:421 +#: ../wxui/main.py:429 msgid "Welcome" msgstr "" @@ -2027,7 +2036,7 @@ msgstr "" msgid "Would you like CHIRP to install a desktop icon for you?" msgstr "" -#: ../wxui/clone.py:369 +#: ../wxui/clone.py:370 msgid "Your cable appears to be on port:" msgstr "" @@ -2043,11 +2052,11 @@ msgstr "" msgid "bytes each" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "disabled" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "enabled" msgstr "" diff --git a/chirp/locale/pt_BR.po b/chirp/locale/pt_BR.po index a5430a948..edd48e253 100644 --- a/chirp/locale/pt_BR.po +++ b/chirp/locale/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: CHIRP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 18:46-0700\n" +"POT-Creation-Date: 2023-06-28 16:31-0700\n" "PO-Revision-Date: 2013-03-30 22:04-0300\n" "Last-Translator: Crezivando \n" "Language-Team: Language pt-BR\n" @@ -48,7 +48,7 @@ msgstr "Apagar (e deslocar)" msgid "%i Memories and shift block up" msgstr "Apagar (e deslocar)" -#: ../wxui/main.py:1307 +#: ../wxui/main.py:1347 #, fuzzy, python-format msgid "%s has not been saved. Save before closing?" msgstr "Arquivo modificado, salvar alteraes antes de fechar?" @@ -57,7 +57,7 @@ msgstr "Arquivo modificado, salvar altera msgid "(none)" msgstr "" -#: ../wxui/memedit.py:1787 +#: ../wxui/memedit.py:1791 #, python-format msgid "...and %i more" msgstr "" @@ -594,7 +594,7 @@ msgid "" " click Then" msgstr "" -#: ../drivers/uvk5.py:636 +#: ../drivers/uvk5.py:633 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -605,7 +605,7 @@ msgid "" "attached\n" msgstr "" -#: ../drivers/uvk5.py:643 +#: ../drivers/uvk5.py:640 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -615,17 +615,17 @@ msgid "" "It will may not work if you turn on the radio with the cable already attached" msgstr "" -#: ../wxui/main.py:1685 +#: ../wxui/main.py:1719 msgid "" "A new CHIRP version is available. Please visit the website as soon as " "possible to download it!" msgstr "" -#: ../wxui/main.py:859 +#: ../wxui/main.py:894 msgid "About" msgstr "" -#: ../wxui/main.py:1547 +#: ../wxui/main.py:1587 msgid "About CHIRP" msgstr "" @@ -633,12 +633,12 @@ msgstr "" msgid "All" msgstr "Tudo" -#: ../wxui/main.py:1143 +#: ../wxui/main.py:1178 #, fuzzy msgid "All Files" msgstr "Arquivos CSV" -#: ../wxui/main.py:1154 +#: ../wxui/main.py:1189 msgid "All supported formats|" msgstr "" @@ -646,7 +646,7 @@ msgstr "" msgid "Amateur" msgstr "" -#: ../wxui/common.py:497 ../wxui/common.py:523 +#: ../wxui/common.py:499 ../wxui/common.py:525 msgid "An error has occurred" msgstr "Ocorreu um erro" @@ -658,7 +658,7 @@ msgstr "" msgid "Available modules" msgstr "" -#: ../wxui/main.py:1631 +#: ../wxui/main.py:1665 msgid "Bandplan" msgstr "" @@ -666,7 +666,7 @@ msgstr "" msgid "Bands" msgstr "" -#: ../wxui/main.py:204 +#: ../wxui/main.py:212 msgid "Banks" msgstr "Bancos" @@ -674,7 +674,7 @@ msgstr "Bancos" msgid "Bin" msgstr "" -#: ../wxui/main.py:215 +#: ../wxui/main.py:223 msgid "Browser" msgstr "" @@ -692,7 +692,7 @@ msgid "" "Channels with equivalent TX and RX %s are represented by tone mode of \"%s\"" msgstr "" -#: ../wxui/main.py:1142 +#: ../wxui/main.py:1177 msgid "Chirp Image Files" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "Clone completed, checking for spurious bytes" msgstr "" -#: ../wxui/common.py:108 +#: ../wxui/common.py:110 msgid "Cloning" msgstr "Clonando" @@ -756,11 +756,11 @@ msgstr "Descarregar a partir do R msgid "Cloning to radio" msgstr "Carregar para o Rdio" -#: ../wxui/main.py:937 +#: ../wxui/main.py:972 msgid "Close" msgstr "" -#: ../wxui/main.py:938 +#: ../wxui/main.py:973 msgid "Close file" msgstr "" @@ -821,11 +821,11 @@ msgid "" "Polarity" msgstr "DTCS Pol" -#: ../wxui/memedit.py:2040 +#: ../wxui/memedit.py:2044 msgid "DV Memory" msgstr "" -#: ../wxui/main.py:1561 +#: ../wxui/main.py:1601 msgid "Danger Ahead" msgstr "" @@ -838,12 +838,12 @@ msgstr "Detectar" msgid "Delete" msgstr "Apagar" -#: ../wxui/main.py:864 +#: ../wxui/main.py:899 #, fuzzy msgid "Developer Mode" msgstr "Desenvolvedor" -#: ../wxui/main.py:1567 +#: ../wxui/main.py:1607 #, python-format msgid "Developer state is now %s. CHIRP must be restarted to take effect" msgstr "" @@ -852,11 +852,11 @@ msgstr "" msgid "Diff Raw Memories" msgstr "Diff Memrias Raw" -#: ../wxui/memedit.py:1965 +#: ../wxui/memedit.py:1969 msgid "Digital Code" msgstr "Cdigo Digital" -#: ../wxui/main.py:1578 +#: ../wxui/main.py:1618 msgid "Disable reporting" msgstr "" @@ -877,16 +877,16 @@ msgstr "" msgid "Double-click to change bank name" msgstr "" -#: ../wxui/main.py:939 +#: ../wxui/main.py:974 msgid "Download" msgstr "" -#: ../wxui/main.py:776 ../wxui/main.py:940 +#: ../wxui/main.py:811 ../wxui/main.py:975 #, fuzzy msgid "Download from radio" msgstr "Descarregar a partir do Rdio" -#: ../wxui/clone.py:512 +#: ../wxui/clone.py:513 #, fuzzy msgid "Download instructions" msgstr "Descarregar a partir do Rdio" @@ -895,17 +895,17 @@ msgstr "Descarregar a partir do R msgid "Duplex" msgstr "Duplex" -#: ../wxui/memedit.py:1995 +#: ../wxui/memedit.py:1999 #, python-format msgid "Edit details for %i memories" msgstr "" -#: ../wxui/memedit.py:1993 +#: ../wxui/memedit.py:1997 #, python-format msgid "Edit details for memory %i" msgstr "" -#: ../wxui/main.py:808 +#: ../wxui/main.py:843 msgid "Enable Automatic Edits" msgstr "" @@ -931,11 +931,11 @@ msgstr "" msgid "Enter a new name for bank %s:" msgstr "" -#: ../wxui/clone.py:405 +#: ../wxui/clone.py:406 msgid "Enter custom port:" msgstr "" -#: ../wxui/common.py:316 +#: ../wxui/common.py:318 #, fuzzy, python-format msgid "Erased memory %s" msgstr "Apagando memria {loc}" @@ -945,24 +945,24 @@ msgstr "Apagando mem msgid "Error applying settings" msgstr "Erro gravando memria" -#: ../wxui/clone.py:449 +#: ../wxui/clone.py:450 msgid "Error communicating with radio" msgstr "" -#: ../wxui/clone.py:480 +#: ../wxui/clone.py:481 msgid "Experimental driver" msgstr "" -#: ../wxui/memedit.py:1925 +#: ../wxui/memedit.py:1929 msgid "Export can only write CSV files" msgstr "" -#: ../wxui/main.py:672 ../wxui/main.py:1292 +#: ../wxui/main.py:706 ../wxui/main.py:1332 #, fuzzy msgid "Export to CSV" msgstr "Exportar Para Arquivo" -#: ../wxui/memedit.py:2029 +#: ../wxui/memedit.py:2033 msgid "Extra" msgstr "" @@ -974,13 +974,13 @@ msgstr "" msgid "Features" msgstr "" -#: ../wxui/main.py:534 +#: ../wxui/main.py:542 #, python-format msgid "File does not exist: %s" msgstr "" -#: ../wxui/main.py:1146 ../wxui/main.py:1223 ../wxui/main.py:1233 -#: ../wxui/main.py:1288 ../wxui/main.py:1513 ../wxui/main.py:1514 +#: ../wxui/main.py:1181 ../wxui/main.py:1262 ../wxui/main.py:1272 +#: ../wxui/main.py:1328 ../wxui/main.py:1553 ../wxui/main.py:1554 #, fuzzy msgid "Files" msgstr "_Arquivo" @@ -993,15 +993,15 @@ msgstr "" msgid "Filter results with location matching this string" msgstr "" -#: ../wxui/main.py:1362 +#: ../wxui/main.py:1402 msgid "Find" msgstr "" -#: ../wxui/main.py:730 +#: ../wxui/main.py:765 msgid "Find Next" msgstr "" -#: ../wxui/common.py:318 +#: ../wxui/common.py:320 #, python-format msgid "Finished radio job %s" msgstr "" @@ -1232,16 +1232,16 @@ msgstr "" msgid "If set, sort results by distance from these coordinates" msgstr "" -#: ../wxui/main.py:1278 +#: ../wxui/main.py:1318 msgid "Import" msgstr "Importar" -#: ../wxui/main.py:666 +#: ../wxui/main.py:700 #, fuzzy msgid "Import from file" msgstr "Importar do Arquivo" -#: ../wxui/main.py:1276 +#: ../wxui/main.py:1316 #, fuzzy msgid "Import not recommended" msgstr "Importar de RFinder" @@ -1250,7 +1250,7 @@ msgstr "Importar de RFinder" msgid "Index" msgstr "ndice" -#: ../wxui/main.py:217 +#: ../wxui/main.py:225 msgid "Info" msgstr "" @@ -1267,7 +1267,7 @@ msgstr "Inserir row acima" msgid "Install desktop icon?" msgstr "" -#: ../wxui/main.py:848 +#: ../wxui/main.py:883 msgid "Interact with driver" msgstr "" @@ -1280,12 +1280,12 @@ msgstr "Valor inv msgid "Invalid ZIP code" msgstr "" -#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2120 +#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2124 #, python-format msgid "Invalid edit: %s" msgstr "" -#: ../wxui/main.py:1510 +#: ../wxui/main.py:1550 msgid "Invalid or unsupported module file" msgstr "" @@ -1298,7 +1298,7 @@ msgstr "Valor Inv msgid "Issue number:" msgstr "" -#: ../wxui/main.py:335 +#: ../wxui/main.py:343 msgid "LIVE" msgstr "" @@ -1323,17 +1323,17 @@ msgstr "" msgid "Limit results to this distance (km) from coordinates" msgstr "" -#: ../wxui/main.py:678 +#: ../wxui/main.py:712 #, fuzzy msgid "Load Module" msgstr "Modo Tom" -#: ../wxui/main.py:896 ../wxui/developer.py:487 +#: ../wxui/main.py:931 ../wxui/developer.py:487 #, fuzzy msgid "Load module from issue" msgstr "Modo Tom" -#: ../wxui/main.py:1517 +#: ../wxui/main.py:1557 msgid "" "Loading modules can be extremely dangerous, leading to damage to your " "computer, radio, or both. NEVER load a module from a source you do not " @@ -1351,7 +1351,7 @@ msgstr "" msgid "Longitude" msgstr "" -#: ../wxui/main.py:196 +#: ../wxui/main.py:204 msgid "Memories" msgstr "Memrias" @@ -1374,7 +1374,7 @@ msgstr "" msgid "Mode" msgstr "Modo" -#: ../wxui/clone.py:246 +#: ../wxui/clone.py:247 msgid "Model" msgstr "Modelo" @@ -1383,19 +1383,19 @@ msgstr "Modelo" msgid "Modes" msgstr "Modo" -#: ../wxui/main.py:1514 +#: ../wxui/main.py:1554 msgid "Module" msgstr "" -#: ../wxui/main.py:1486 +#: ../wxui/main.py:1526 msgid "Module Loaded" msgstr "" -#: ../wxui/main.py:1617 +#: ../wxui/main.py:1651 msgid "Module loaded successfully" msgstr "" -#: ../wxui/clone.py:374 +#: ../wxui/clone.py:375 #, python-format msgid "More than one port found: %s" msgstr "" @@ -1410,11 +1410,11 @@ msgstr "Mover Abaix_o" msgid "Move Up" msgstr "Mover _Acima" -#: ../wxui/main.py:613 +#: ../wxui/main.py:647 msgid "New Window" msgstr "" -#: ../wxui/main.py:1687 +#: ../wxui/main.py:1721 msgid "New version available" msgstr "" @@ -1452,40 +1452,45 @@ msgstr "" msgid "Only certain modes" msgstr "" -#: ../wxui/main.py:317 +#: ../wxui/main.py:325 msgid "Only memory tabs may be exported" msgstr "" -#: ../wxui/main.py:933 ../wxui/main.py:1278 +#: ../wxui/main.py:968 ../wxui/main.py:1318 msgid "Open" msgstr "" -#: ../wxui/main.py:653 +#: ../wxui/main.py:687 #, fuzzy msgid "Open Recent" msgstr "_Recente" -#: ../wxui/main.py:624 +#: ../wxui/main.py:658 #, fuzzy msgid "Open Stock Config" msgstr "Abrir config do estoque" -#: ../wxui/main.py:934 ../wxui/main.py:1157 +#: ../wxui/main.py:969 ../wxui/main.py:1192 msgid "Open a file" msgstr "" -#: ../wxui/main.py:1532 +#: ../wxui/main.py:1572 msgid "Open a module" msgstr "" -#: ../wxui/main.py:885 +#: ../wxui/main.py:920 msgid "Open debug log" msgstr "" -#: ../wxui/main.py:504 +#: ../wxui/main.py:512 msgid "Open in new window" msgstr "" +#: ../wxui/main.py:604 +#, fuzzy +msgid "Open stock config directory" +msgstr "Abrir configurao de estoque {name}" + #: ../wxui/query_sources.py:298 msgid "Optional: -122.0000" msgstr "" @@ -1503,7 +1508,7 @@ msgstr "" msgid "Optional: County, Hospital, etc" msgstr "" -#: ../wxui/memedit.py:1742 +#: ../wxui/memedit.py:1746 #, fuzzy msgid "Overwrite memories?" msgstr "Sobrescrever?" @@ -1519,27 +1524,32 @@ msgstr "" msgid "Paste" msgstr "Colar" -#: ../wxui/memedit.py:1736 +#: ../wxui/memedit.py:1740 #, python-format msgid "Pasted memories will overwrite %i existing memories" msgstr "" -#: ../wxui/memedit.py:1739 +#: ../wxui/memedit.py:1743 #, python-format msgid "Pasted memories will overwrite memories %s" msgstr "" -#: ../wxui/memedit.py:1733 +#: ../wxui/memedit.py:1737 #, python-format msgid "Pasted memories will overwrite memory %i" msgstr "" -#: ../wxui/memedit.py:1730 +#: ../wxui/memedit.py:1734 #, python-format msgid "Pasted memory will overwrite memory %i" msgstr "" -#: ../wxui/main.py:1691 +#: ../wxui/common.py:564 +#, python-format +msgid "Path %s does not exist" +msgstr "" + +#: ../wxui/main.py:1725 msgid "Please be sure to quit CHIRP before installing the new version!" msgstr "" @@ -1569,7 +1579,7 @@ msgid "" " (At the end radio will beep)\n" msgstr "" -#: ../wxui/main.py:1555 +#: ../wxui/main.py:1595 msgid "" "Please note that developer mode is intended for use by developers of the " "CHIRP project, or under the direction of a developer. It enables behaviors " @@ -1577,15 +1587,15 @@ msgid "" "EXTREME care. You have been warned! Proceed anyway?" msgstr "" -#: ../wxui/common.py:181 +#: ../wxui/common.py:183 msgid "Please wait" msgstr "" -#: ../wxui/clone.py:351 +#: ../wxui/clone.py:352 msgid "Plug in your cable and then click OK" msgstr "" -#: ../wxui/clone.py:239 +#: ../wxui/clone.py:240 msgid "Port" msgstr "Porta" @@ -1598,7 +1608,7 @@ msgstr "Power" msgid "Press enter to set this in memory" msgstr "Erro gravando memria" -#: ../wxui/main.py:689 +#: ../wxui/main.py:723 msgid "Print Preview" msgstr "" @@ -1610,12 +1620,12 @@ msgstr "" msgid "Properties" msgstr "" -#: ../wxui/main.py:1645 +#: ../wxui/main.py:1679 #, python-format msgid "Query %s" msgstr "" -#: ../wxui/main.py:790 +#: ../wxui/main.py:825 msgid "Query Source" msgstr "" @@ -1623,7 +1633,7 @@ msgstr "" msgid "RX DTCS" msgstr "" -#: ../wxui/main.py:904 +#: ../wxui/main.py:939 msgid "Radio" msgstr "Rdio" @@ -1632,7 +1642,7 @@ msgstr "R msgid "Radio did not ack block %i" msgstr "" -#: ../wxui/clone.py:504 ../wxui/clone.py:569 +#: ../wxui/clone.py:505 ../wxui/clone.py:570 #, fuzzy msgid "Radio information" msgstr "Recuperando informaes do banco" @@ -1648,16 +1658,16 @@ msgstr "" msgid "RadioReference Canada requires a login before you can query" msgstr "" -#: ../wxui/common.py:308 +#: ../wxui/common.py:310 #, python-format msgid "Refreshed memory %s" msgstr "" -#: ../wxui/main.py:825 +#: ../wxui/main.py:860 msgid "Reload Driver" msgstr "" -#: ../wxui/main.py:834 +#: ../wxui/main.py:869 msgid "Reload Driver and File" msgstr "" @@ -1666,48 +1676,48 @@ msgstr "" msgid "Rename bank" msgstr "Configurando nome no banco" -#: ../wxui/main.py:873 +#: ../wxui/main.py:908 #, fuzzy msgid "Reporting enabled" msgstr "Emisso de Relatrios desabilitada" -#: ../wxui/main.py:1574 +#: ../wxui/main.py:1614 msgid "" "Reporting helps the CHIRP project know which radio models and OS platforms " "to spend our limited efforts on. We would really appreciate if you left it " "enabled. Really disable reporting?" msgstr "" -#: ../wxui/main.py:1569 +#: ../wxui/main.py:1609 msgid "Restart Required" msgstr "" -#: ../wxui/main.py:634 +#: ../wxui/main.py:668 #, python-format msgid "Restore %i tabs" msgstr "" -#: ../wxui/common.py:312 +#: ../wxui/common.py:314 msgid "Retrieved settings" msgstr "" -#: ../wxui/main.py:935 +#: ../wxui/main.py:970 msgid "Save" msgstr "" -#: ../wxui/main.py:1309 +#: ../wxui/main.py:1349 msgid "Save before closing?" msgstr "" -#: ../wxui/main.py:936 ../wxui/main.py:1237 +#: ../wxui/main.py:971 ../wxui/main.py:1276 msgid "Save file" msgstr "" -#: ../wxui/common.py:314 +#: ../wxui/common.py:316 msgid "Saved settings" msgstr "" -#: ../wxui/main.py:815 +#: ../wxui/main.py:850 #, fuzzy msgid "Select Bandplan" msgstr "Selecionar Colunas" @@ -1722,7 +1732,7 @@ msgstr "Selecionar Colunas" msgid "Select Modes" msgstr "Selecionar Colunas" -#: ../wxui/main.py:1630 +#: ../wxui/main.py:1664 msgid "Select a bandplan" msgstr "" @@ -1730,7 +1740,7 @@ msgstr "" msgid "Service" msgstr "" -#: ../wxui/main.py:209 +#: ../wxui/main.py:217 msgid "Settings" msgstr "" @@ -1738,7 +1748,7 @@ msgstr "" msgid "Show Raw Memory" msgstr "Mostrar Memria Raw" -#: ../wxui/main.py:891 +#: ../wxui/main.py:926 msgid "Show debug log location" msgstr "" @@ -1746,12 +1756,12 @@ msgstr "" msgid "Show extra fields" msgstr "" -#: ../wxui/memedit.py:1791 +#: ../wxui/memedit.py:1795 #, fuzzy msgid "Some memories are incompatible with this radio" msgstr "Memria colada {number} no compatvel com este rdio porque:" -#: ../wxui/memedit.py:1686 +#: ../wxui/memedit.py:1687 msgid "Some memories are not deletable" msgstr "" @@ -1787,7 +1797,7 @@ msgstr "" msgid "State/Province" msgstr "" -#: ../wxui/main.py:1618 +#: ../wxui/main.py:1652 msgid "Success" msgstr "" @@ -1814,7 +1824,7 @@ msgid "" "download to a CHIRP Radio Images (*.img) file.\n" msgstr "" -#: ../wxui/main.py:1269 +#: ../wxui/main.py:1309 #, python-format msgid "" "The recommended procedure for importing memories is to open the source file " @@ -1893,12 +1903,12 @@ msgstr "TomSql" msgid "Tuning Step" msgstr "Tune Step" -#: ../wxui/clone.py:345 ../wxui/clone.py:352 ../wxui/clone.py:363 -#: ../wxui/clone.py:371 ../wxui/clone.py:375 +#: ../wxui/clone.py:346 ../wxui/clone.py:353 ../wxui/clone.py:364 +#: ../wxui/clone.py:372 ../wxui/clone.py:376 msgid "USB Port Finder" msgstr "" -#: ../wxui/clone.py:361 +#: ../wxui/clone.py:362 msgid "" "Unable to determine port for your cable. Check your drivers and connections." msgstr "" @@ -1907,12 +1917,12 @@ msgstr "" msgid "Unable to edit memory before radio is loaded" msgstr "" -#: ../wxui/main.py:1195 +#: ../wxui/main.py:1234 #, fuzzy, python-format msgid "Unable to find stock config %r" msgstr "Abrir config do estoque" -#: ../wxui/common.py:214 +#: ../wxui/common.py:216 #, fuzzy msgid "Unable to open the clipboard" msgstr "Incapaz de detectar rdio na {port}" @@ -1924,7 +1934,7 @@ msgid "" "model and try again." msgstr "" -#: ../wxui/main.py:1610 +#: ../wxui/common.py:571 #, fuzzy, python-format msgid "Unable to reveal %s on this system" msgstr "Incapaz de efetuar alteraes para este modelo" @@ -1938,29 +1948,29 @@ msgstr "Incapaz de efetuar altera msgid "United States" msgstr "" -#: ../wxui/clone.py:344 +#: ../wxui/clone.py:345 msgid "Unplug your cable (if needed) and then click OK" msgstr "" -#: ../wxui/clone.py:584 +#: ../wxui/clone.py:585 msgid "Upload instructions" msgstr "" -#: ../wxui/main.py:784 ../wxui/main.py:942 +#: ../wxui/main.py:819 ../wxui/main.py:977 #, fuzzy msgid "Upload to radio" msgstr "Carregar para o Rdio" -#: ../wxui/common.py:310 +#: ../wxui/common.py:312 #, python-format msgid "Uploaded memory %s" msgstr "" -#: ../wxui/main.py:752 +#: ../wxui/main.py:787 msgid "Use fixed-width font" msgstr "" -#: ../wxui/main.py:760 +#: ../wxui/main.py:795 msgid "Use larger font" msgstr "" @@ -1969,12 +1979,12 @@ msgstr "" msgid "Value does not fit in %i bits" msgstr "" -#: ../wxui/common.py:420 +#: ../wxui/common.py:422 #, python-format msgid "Value must be at least %.4f" msgstr "" -#: ../wxui/common.py:424 +#: ../wxui/common.py:426 #, python-format msgid "Value must be at most %.4f" msgstr "" @@ -1988,11 +1998,11 @@ msgstr "" msgid "Value must be zero or greater" msgstr "" -#: ../wxui/clone.py:242 +#: ../wxui/clone.py:243 msgid "Vendor" msgstr "Fornecedor" -#: ../wxui/main.py:903 +#: ../wxui/main.py:938 #, fuzzy msgid "View" msgstr "_Visualizar" @@ -2006,7 +2016,7 @@ msgstr "" msgid "Warning: %s" msgstr "" -#: ../wxui/main.py:421 +#: ../wxui/main.py:429 msgid "Welcome" msgstr "" @@ -2014,7 +2024,7 @@ msgstr "" msgid "Would you like CHIRP to install a desktop icon for you?" msgstr "" -#: ../wxui/clone.py:369 +#: ../wxui/clone.py:370 msgid "Your cable appears to be on port:" msgstr "" @@ -2030,11 +2040,11 @@ msgstr "" msgid "bytes each" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "disabled" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "enabled" msgstr "" @@ -2318,9 +2328,6 @@ msgstr "" #~ msgid "Open recent file {name}" #~ msgstr "Abrir arquivo recente {name}" -#~ msgid "Open stock configuration {name}" -#~ msgstr "Abrir configurao de estoque {name}" - #~ msgid "Overwrite" #~ msgstr "Sobrescrever" diff --git a/chirp/locale/ru.po b/chirp/locale/ru.po index a7d8dfaba..2e9430e20 100644 --- a/chirp/locale/ru.po +++ b/chirp/locale/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: CHIRP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 18:46-0700\n" +"POT-Creation-Date: 2023-06-28 16:31-0700\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,7 +40,7 @@ msgstr "Удалить (и сдвинуть вверх)" msgid "%i Memories and shift block up" msgstr "Удалить (и сдвинуть вверх)" -#: ../wxui/main.py:1307 +#: ../wxui/main.py:1347 #, fuzzy, python-format msgid "%s has not been saved. Save before closing?" msgstr "Файл изменён, сохранить изменения?" @@ -49,7 +49,7 @@ msgstr "Файл изменён, сохранить изменения?" msgid "(none)" msgstr "" -#: ../wxui/memedit.py:1787 +#: ../wxui/memedit.py:1791 #, python-format msgid "...and %i more" msgstr "" @@ -586,7 +586,7 @@ msgid "" " click Then" msgstr "" -#: ../drivers/uvk5.py:636 +#: ../drivers/uvk5.py:633 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -597,7 +597,7 @@ msgid "" "attached\n" msgstr "" -#: ../drivers/uvk5.py:643 +#: ../drivers/uvk5.py:640 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -607,17 +607,17 @@ msgid "" "It will may not work if you turn on the radio with the cable already attached" msgstr "" -#: ../wxui/main.py:1685 +#: ../wxui/main.py:1719 msgid "" "A new CHIRP version is available. Please visit the website as soon as " "possible to download it!" msgstr "" -#: ../wxui/main.py:859 +#: ../wxui/main.py:894 msgid "About" msgstr "" -#: ../wxui/main.py:1547 +#: ../wxui/main.py:1587 msgid "About CHIRP" msgstr "" @@ -625,12 +625,12 @@ msgstr "" msgid "All" msgstr "Все" -#: ../wxui/main.py:1143 +#: ../wxui/main.py:1178 #, fuzzy msgid "All Files" msgstr "CSV" -#: ../wxui/main.py:1154 +#: ../wxui/main.py:1189 msgid "All supported formats|" msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "Amateur" msgstr "" -#: ../wxui/common.py:497 ../wxui/common.py:523 +#: ../wxui/common.py:499 ../wxui/common.py:525 msgid "An error has occurred" msgstr "Ошибка" @@ -650,7 +650,7 @@ msgstr "" msgid "Available modules" msgstr "" -#: ../wxui/main.py:1631 +#: ../wxui/main.py:1665 msgid "Bandplan" msgstr "" @@ -658,7 +658,7 @@ msgstr "" msgid "Bands" msgstr "" -#: ../wxui/main.py:204 +#: ../wxui/main.py:212 msgid "Banks" msgstr "Банки" @@ -666,7 +666,7 @@ msgstr "Банки" msgid "Bin" msgstr "" -#: ../wxui/main.py:215 +#: ../wxui/main.py:223 msgid "Browser" msgstr "" @@ -684,7 +684,7 @@ msgid "" "Channels with equivalent TX and RX %s are represented by tone mode of \"%s\"" msgstr "" -#: ../wxui/main.py:1142 +#: ../wxui/main.py:1177 msgid "Chirp Image Files" msgstr "" @@ -734,7 +734,7 @@ msgstr "" msgid "Clone completed, checking for spurious bytes" msgstr "" -#: ../wxui/common.py:108 +#: ../wxui/common.py:110 msgid "Cloning" msgstr "Загрузка" @@ -748,11 +748,11 @@ msgstr "Чтение из станции" msgid "Cloning to radio" msgstr "Запись в станцию" -#: ../wxui/main.py:937 +#: ../wxui/main.py:972 msgid "Close" msgstr "" -#: ../wxui/main.py:938 +#: ../wxui/main.py:973 msgid "Close file" msgstr "" @@ -815,11 +815,11 @@ msgid "" "Polarity" msgstr "DTCS Pol" -#: ../wxui/memedit.py:2040 +#: ../wxui/memedit.py:2044 msgid "DV Memory" msgstr "" -#: ../wxui/main.py:1561 +#: ../wxui/main.py:1601 msgid "Danger Ahead" msgstr "" @@ -833,12 +833,12 @@ msgstr "Проверка" msgid "Delete" msgstr "_Удалить" -#: ../wxui/main.py:864 +#: ../wxui/main.py:899 #, fuzzy msgid "Developer Mode" msgstr "Разработчик" -#: ../wxui/main.py:1567 +#: ../wxui/main.py:1607 #, python-format msgid "Developer state is now %s. CHIRP must be restarted to take effect" msgstr "" @@ -848,11 +848,11 @@ msgstr "" msgid "Diff Raw Memories" msgstr "Diff raw memories" -#: ../wxui/memedit.py:1965 +#: ../wxui/memedit.py:1969 msgid "Digital Code" msgstr "Цифровой код" -#: ../wxui/main.py:1578 +#: ../wxui/main.py:1618 msgid "Disable reporting" msgstr "" @@ -873,16 +873,16 @@ msgstr "" msgid "Double-click to change bank name" msgstr "" -#: ../wxui/main.py:939 +#: ../wxui/main.py:974 msgid "Download" msgstr "" -#: ../wxui/main.py:776 ../wxui/main.py:940 +#: ../wxui/main.py:811 ../wxui/main.py:975 #, fuzzy msgid "Download from radio" msgstr "Чтение из станции" -#: ../wxui/clone.py:512 +#: ../wxui/clone.py:513 #, fuzzy msgid "Download instructions" msgstr "Чтение из станции" @@ -891,17 +891,17 @@ msgstr "Чтение из станции" msgid "Duplex" msgstr "Дуплекс" -#: ../wxui/memedit.py:1995 +#: ../wxui/memedit.py:1999 #, python-format msgid "Edit details for %i memories" msgstr "" -#: ../wxui/memedit.py:1993 +#: ../wxui/memedit.py:1997 #, python-format msgid "Edit details for memory %i" msgstr "" -#: ../wxui/main.py:808 +#: ../wxui/main.py:843 msgid "Enable Automatic Edits" msgstr "" @@ -927,11 +927,11 @@ msgstr "" msgid "Enter a new name for bank %s:" msgstr "" -#: ../wxui/clone.py:405 +#: ../wxui/clone.py:406 msgid "Enter custom port:" msgstr "" -#: ../wxui/common.py:316 +#: ../wxui/common.py:318 #, fuzzy, python-format msgid "Erased memory %s" msgstr "Стирание памяти {loc}" @@ -941,24 +941,24 @@ msgstr "Стирание памяти {loc}" msgid "Error applying settings" msgstr "Ошибка установки памяти" -#: ../wxui/clone.py:449 +#: ../wxui/clone.py:450 msgid "Error communicating with radio" msgstr "" -#: ../wxui/clone.py:480 +#: ../wxui/clone.py:481 msgid "Experimental driver" msgstr "" -#: ../wxui/memedit.py:1925 +#: ../wxui/memedit.py:1929 msgid "Export can only write CSV files" msgstr "" -#: ../wxui/main.py:672 ../wxui/main.py:1292 +#: ../wxui/main.py:706 ../wxui/main.py:1332 #, fuzzy msgid "Export to CSV" msgstr "Экспорт в файл" -#: ../wxui/memedit.py:2029 +#: ../wxui/memedit.py:2033 msgid "Extra" msgstr "" @@ -970,13 +970,13 @@ msgstr "" msgid "Features" msgstr "" -#: ../wxui/main.py:534 +#: ../wxui/main.py:542 #, python-format msgid "File does not exist: %s" msgstr "" -#: ../wxui/main.py:1146 ../wxui/main.py:1223 ../wxui/main.py:1233 -#: ../wxui/main.py:1288 ../wxui/main.py:1513 ../wxui/main.py:1514 +#: ../wxui/main.py:1181 ../wxui/main.py:1262 ../wxui/main.py:1272 +#: ../wxui/main.py:1328 ../wxui/main.py:1553 ../wxui/main.py:1554 #, fuzzy msgid "Files" msgstr "_Файл" @@ -989,15 +989,15 @@ msgstr "" msgid "Filter results with location matching this string" msgstr "" -#: ../wxui/main.py:1362 +#: ../wxui/main.py:1402 msgid "Find" msgstr "" -#: ../wxui/main.py:730 +#: ../wxui/main.py:765 msgid "Find Next" msgstr "" -#: ../wxui/common.py:318 +#: ../wxui/common.py:320 #, python-format msgid "Finished radio job %s" msgstr "" @@ -1228,16 +1228,16 @@ msgstr "" msgid "If set, sort results by distance from these coordinates" msgstr "" -#: ../wxui/main.py:1278 +#: ../wxui/main.py:1318 msgid "Import" msgstr "Импорт" -#: ../wxui/main.py:666 +#: ../wxui/main.py:700 #, fuzzy msgid "Import from file" msgstr "Импорт из файла" -#: ../wxui/main.py:1276 +#: ../wxui/main.py:1316 #, fuzzy msgid "Import not recommended" msgstr "Импорт из RFinder" @@ -1246,7 +1246,7 @@ msgstr "Импорт из RFinder" msgid "Index" msgstr "Индекс" -#: ../wxui/main.py:217 +#: ../wxui/main.py:225 msgid "Info" msgstr "" @@ -1263,7 +1263,7 @@ msgstr "Вставка строки выше" msgid "Install desktop icon?" msgstr "" -#: ../wxui/main.py:848 +#: ../wxui/main.py:883 msgid "Interact with driver" msgstr "" @@ -1276,12 +1276,12 @@ msgstr "Неверное значение. Должно быть целое чи msgid "Invalid ZIP code" msgstr "" -#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2120 +#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2124 #, python-format msgid "Invalid edit: %s" msgstr "" -#: ../wxui/main.py:1510 +#: ../wxui/main.py:1550 msgid "Invalid or unsupported module file" msgstr "" @@ -1294,7 +1294,7 @@ msgstr "Неверное значение для этого поля" msgid "Issue number:" msgstr "" -#: ../wxui/main.py:335 +#: ../wxui/main.py:343 msgid "LIVE" msgstr "" @@ -1319,17 +1319,17 @@ msgstr "" msgid "Limit results to this distance (km) from coordinates" msgstr "" -#: ../wxui/main.py:678 +#: ../wxui/main.py:712 #, fuzzy msgid "Load Module" msgstr "Вид субтона" -#: ../wxui/main.py:896 ../wxui/developer.py:487 +#: ../wxui/main.py:931 ../wxui/developer.py:487 #, fuzzy msgid "Load module from issue" msgstr "Вид субтона" -#: ../wxui/main.py:1517 +#: ../wxui/main.py:1557 msgid "" "Loading modules can be extremely dangerous, leading to damage to your " "computer, radio, or both. NEVER load a module from a source you do not " @@ -1347,7 +1347,7 @@ msgstr "" msgid "Longitude" msgstr "" -#: ../wxui/main.py:196 +#: ../wxui/main.py:204 #, fuzzy msgid "Memories" msgstr "Память" @@ -1371,7 +1371,7 @@ msgstr "" msgid "Mode" msgstr "Режим" -#: ../wxui/clone.py:246 +#: ../wxui/clone.py:247 msgid "Model" msgstr "Модель" @@ -1380,19 +1380,19 @@ msgstr "Модель" msgid "Modes" msgstr "Режим" -#: ../wxui/main.py:1514 +#: ../wxui/main.py:1554 msgid "Module" msgstr "" -#: ../wxui/main.py:1486 +#: ../wxui/main.py:1526 msgid "Module Loaded" msgstr "" -#: ../wxui/main.py:1617 +#: ../wxui/main.py:1651 msgid "Module loaded successfully" msgstr "" -#: ../wxui/clone.py:374 +#: ../wxui/clone.py:375 #, python-format msgid "More than one port found: %s" msgstr "" @@ -1407,11 +1407,11 @@ msgstr "Вниз_" msgid "Move Up" msgstr "Вверх_" -#: ../wxui/main.py:613 +#: ../wxui/main.py:647 msgid "New Window" msgstr "" -#: ../wxui/main.py:1687 +#: ../wxui/main.py:1721 msgid "New version available" msgstr "" @@ -1449,40 +1449,45 @@ msgstr "" msgid "Only certain modes" msgstr "" -#: ../wxui/main.py:317 +#: ../wxui/main.py:325 msgid "Only memory tabs may be exported" msgstr "" -#: ../wxui/main.py:933 ../wxui/main.py:1278 +#: ../wxui/main.py:968 ../wxui/main.py:1318 msgid "Open" msgstr "" -#: ../wxui/main.py:653 +#: ../wxui/main.py:687 #, fuzzy msgid "Open Recent" msgstr "_Недавние" -#: ../wxui/main.py:624 +#: ../wxui/main.py:658 #, fuzzy msgid "Open Stock Config" msgstr "Открыть предустановленные конфигурации" -#: ../wxui/main.py:934 ../wxui/main.py:1157 +#: ../wxui/main.py:969 ../wxui/main.py:1192 msgid "Open a file" msgstr "" -#: ../wxui/main.py:1532 +#: ../wxui/main.py:1572 msgid "Open a module" msgstr "" -#: ../wxui/main.py:885 +#: ../wxui/main.py:920 msgid "Open debug log" msgstr "" -#: ../wxui/main.py:504 +#: ../wxui/main.py:512 msgid "Open in new window" msgstr "" +#: ../wxui/main.py:604 +#, fuzzy +msgid "Open stock config directory" +msgstr "Открыть предустановленную конфигурацию {name}" + #: ../wxui/query_sources.py:298 msgid "Optional: -122.0000" msgstr "" @@ -1500,7 +1505,7 @@ msgstr "" msgid "Optional: County, Hospital, etc" msgstr "" -#: ../wxui/memedit.py:1742 +#: ../wxui/memedit.py:1746 #, fuzzy msgid "Overwrite memories?" msgstr "Перезаписать?" @@ -1517,27 +1522,32 @@ msgstr "" msgid "Paste" msgstr "Вставить" -#: ../wxui/memedit.py:1736 +#: ../wxui/memedit.py:1740 #, python-format msgid "Pasted memories will overwrite %i existing memories" msgstr "" -#: ../wxui/memedit.py:1739 +#: ../wxui/memedit.py:1743 #, python-format msgid "Pasted memories will overwrite memories %s" msgstr "" -#: ../wxui/memedit.py:1733 +#: ../wxui/memedit.py:1737 #, python-format msgid "Pasted memories will overwrite memory %i" msgstr "" -#: ../wxui/memedit.py:1730 +#: ../wxui/memedit.py:1734 #, python-format msgid "Pasted memory will overwrite memory %i" msgstr "" -#: ../wxui/main.py:1691 +#: ../wxui/common.py:564 +#, python-format +msgid "Path %s does not exist" +msgstr "" + +#: ../wxui/main.py:1725 msgid "Please be sure to quit CHIRP before installing the new version!" msgstr "" @@ -1567,7 +1577,7 @@ msgid "" " (At the end radio will beep)\n" msgstr "" -#: ../wxui/main.py:1555 +#: ../wxui/main.py:1595 msgid "" "Please note that developer mode is intended for use by developers of the " "CHIRP project, or under the direction of a developer. It enables behaviors " @@ -1575,15 +1585,15 @@ msgid "" "EXTREME care. You have been warned! Proceed anyway?" msgstr "" -#: ../wxui/common.py:181 +#: ../wxui/common.py:183 msgid "Please wait" msgstr "" -#: ../wxui/clone.py:351 +#: ../wxui/clone.py:352 msgid "Plug in your cable and then click OK" msgstr "" -#: ../wxui/clone.py:239 +#: ../wxui/clone.py:240 msgid "Port" msgstr "Порт" @@ -1596,7 +1606,7 @@ msgstr "Мощность" msgid "Press enter to set this in memory" msgstr "Ошибка установки памяти" -#: ../wxui/main.py:689 +#: ../wxui/main.py:723 msgid "Print Preview" msgstr "" @@ -1608,12 +1618,12 @@ msgstr "" msgid "Properties" msgstr "" -#: ../wxui/main.py:1645 +#: ../wxui/main.py:1679 #, python-format msgid "Query %s" msgstr "" -#: ../wxui/main.py:790 +#: ../wxui/main.py:825 msgid "Query Source" msgstr "" @@ -1621,7 +1631,7 @@ msgstr "" msgid "RX DTCS" msgstr "" -#: ../wxui/main.py:904 +#: ../wxui/main.py:939 #, fuzzy msgid "Radio" msgstr "Станция" @@ -1631,7 +1641,7 @@ msgstr "Станция" msgid "Radio did not ack block %i" msgstr "" -#: ../wxui/clone.py:504 ../wxui/clone.py:569 +#: ../wxui/clone.py:505 ../wxui/clone.py:570 #, fuzzy msgid "Radio information" msgstr "Получение информации" @@ -1647,16 +1657,16 @@ msgstr "" msgid "RadioReference Canada requires a login before you can query" msgstr "" -#: ../wxui/common.py:308 +#: ../wxui/common.py:310 #, python-format msgid "Refreshed memory %s" msgstr "" -#: ../wxui/main.py:825 +#: ../wxui/main.py:860 msgid "Reload Driver" msgstr "" -#: ../wxui/main.py:834 +#: ../wxui/main.py:869 msgid "Reload Driver and File" msgstr "" @@ -1665,48 +1675,48 @@ msgstr "" msgid "Rename bank" msgstr "Установка имени банка" -#: ../wxui/main.py:873 +#: ../wxui/main.py:908 #, fuzzy msgid "Reporting enabled" msgstr "Отчёты отключены" -#: ../wxui/main.py:1574 +#: ../wxui/main.py:1614 msgid "" "Reporting helps the CHIRP project know which radio models and OS platforms " "to spend our limited efforts on. We would really appreciate if you left it " "enabled. Really disable reporting?" msgstr "" -#: ../wxui/main.py:1569 +#: ../wxui/main.py:1609 msgid "Restart Required" msgstr "" -#: ../wxui/main.py:634 +#: ../wxui/main.py:668 #, python-format msgid "Restore %i tabs" msgstr "" -#: ../wxui/common.py:312 +#: ../wxui/common.py:314 msgid "Retrieved settings" msgstr "" -#: ../wxui/main.py:935 +#: ../wxui/main.py:970 msgid "Save" msgstr "" -#: ../wxui/main.py:1309 +#: ../wxui/main.py:1349 msgid "Save before closing?" msgstr "" -#: ../wxui/main.py:936 ../wxui/main.py:1237 +#: ../wxui/main.py:971 ../wxui/main.py:1276 msgid "Save file" msgstr "" -#: ../wxui/common.py:314 +#: ../wxui/common.py:316 msgid "Saved settings" msgstr "" -#: ../wxui/main.py:815 +#: ../wxui/main.py:850 #, fuzzy msgid "Select Bandplan" msgstr "Выбрать столбцы" @@ -1721,7 +1731,7 @@ msgstr "Выбрать столбцы" msgid "Select Modes" msgstr "Выбрать столбцы" -#: ../wxui/main.py:1630 +#: ../wxui/main.py:1664 msgid "Select a bandplan" msgstr "" @@ -1729,7 +1739,7 @@ msgstr "" msgid "Service" msgstr "" -#: ../wxui/main.py:209 +#: ../wxui/main.py:217 msgid "Settings" msgstr "" @@ -1738,7 +1748,7 @@ msgstr "" msgid "Show Raw Memory" msgstr "Show Raw Memory\t" -#: ../wxui/main.py:891 +#: ../wxui/main.py:926 msgid "Show debug log location" msgstr "" @@ -1746,12 +1756,12 @@ msgstr "" msgid "Show extra fields" msgstr "" -#: ../wxui/memedit.py:1791 +#: ../wxui/memedit.py:1795 #, fuzzy msgid "Some memories are incompatible with this radio" msgstr "Вставленная память {number} не совместима с этой станцией, потому что:" -#: ../wxui/memedit.py:1686 +#: ../wxui/memedit.py:1687 msgid "Some memories are not deletable" msgstr "" @@ -1787,7 +1797,7 @@ msgstr "" msgid "State/Province" msgstr "" -#: ../wxui/main.py:1618 +#: ../wxui/main.py:1652 msgid "Success" msgstr "" @@ -1814,7 +1824,7 @@ msgid "" "download to a CHIRP Radio Images (*.img) file.\n" msgstr "" -#: ../wxui/main.py:1269 +#: ../wxui/main.py:1309 #, python-format msgid "" "The recommended procedure for importing memories is to open the source file " @@ -1893,12 +1903,12 @@ msgstr "ТонШПД" msgid "Tuning Step" msgstr "Шаг" -#: ../wxui/clone.py:345 ../wxui/clone.py:352 ../wxui/clone.py:363 -#: ../wxui/clone.py:371 ../wxui/clone.py:375 +#: ../wxui/clone.py:346 ../wxui/clone.py:353 ../wxui/clone.py:364 +#: ../wxui/clone.py:372 ../wxui/clone.py:376 msgid "USB Port Finder" msgstr "" -#: ../wxui/clone.py:361 +#: ../wxui/clone.py:362 msgid "" "Unable to determine port for your cable. Check your drivers and connections." msgstr "" @@ -1907,12 +1917,12 @@ msgstr "" msgid "Unable to edit memory before radio is loaded" msgstr "" -#: ../wxui/main.py:1195 +#: ../wxui/main.py:1234 #, fuzzy, python-format msgid "Unable to find stock config %r" msgstr "Открыть предустановленные конфигурации" -#: ../wxui/common.py:214 +#: ../wxui/common.py:216 #, fuzzy msgid "Unable to open the clipboard" msgstr "Станция не обнаружена на {port}" @@ -1924,7 +1934,7 @@ msgid "" "model and try again." msgstr "" -#: ../wxui/main.py:1610 +#: ../wxui/common.py:571 #, fuzzy, python-format msgid "Unable to reveal %s on this system" msgstr "Невозможно внести изменения в эту модель" @@ -1938,29 +1948,29 @@ msgstr "Невозможно внести изменения в эту моде msgid "United States" msgstr "" -#: ../wxui/clone.py:344 +#: ../wxui/clone.py:345 msgid "Unplug your cable (if needed) and then click OK" msgstr "" -#: ../wxui/clone.py:584 +#: ../wxui/clone.py:585 msgid "Upload instructions" msgstr "" -#: ../wxui/main.py:784 ../wxui/main.py:942 +#: ../wxui/main.py:819 ../wxui/main.py:977 #, fuzzy msgid "Upload to radio" msgstr "Запись в станцию" -#: ../wxui/common.py:310 +#: ../wxui/common.py:312 #, python-format msgid "Uploaded memory %s" msgstr "" -#: ../wxui/main.py:752 +#: ../wxui/main.py:787 msgid "Use fixed-width font" msgstr "" -#: ../wxui/main.py:760 +#: ../wxui/main.py:795 msgid "Use larger font" msgstr "" @@ -1969,12 +1979,12 @@ msgstr "" msgid "Value does not fit in %i bits" msgstr "" -#: ../wxui/common.py:420 +#: ../wxui/common.py:422 #, python-format msgid "Value must be at least %.4f" msgstr "" -#: ../wxui/common.py:424 +#: ../wxui/common.py:426 #, python-format msgid "Value must be at most %.4f" msgstr "" @@ -1988,11 +1998,11 @@ msgstr "" msgid "Value must be zero or greater" msgstr "" -#: ../wxui/clone.py:242 +#: ../wxui/clone.py:243 msgid "Vendor" msgstr "Изготовитель" -#: ../wxui/main.py:903 +#: ../wxui/main.py:938 #, fuzzy msgid "View" msgstr "Вид_" @@ -2006,7 +2016,7 @@ msgstr "" msgid "Warning: %s" msgstr "" -#: ../wxui/main.py:421 +#: ../wxui/main.py:429 msgid "Welcome" msgstr "" @@ -2014,7 +2024,7 @@ msgstr "" msgid "Would you like CHIRP to install a desktop icon for you?" msgstr "" -#: ../wxui/clone.py:369 +#: ../wxui/clone.py:370 msgid "Your cable appears to be on port:" msgstr "" @@ -2030,11 +2040,11 @@ msgstr "" msgid "bytes each" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "disabled" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "enabled" msgstr "" @@ -2322,9 +2332,6 @@ msgstr "" #~ msgid "Open recent file {name}" #~ msgstr "Открыть недавний файл {name}" -#~ msgid "Open stock configuration {name}" -#~ msgstr "Открыть предустановленную конфигурацию {name}" - #~ msgid "Overwrite" #~ msgstr "Перезаписать" diff --git a/chirp/locale/tr_TR.po b/chirp/locale/tr_TR.po index 1a7e5f8be..849251628 100644 --- a/chirp/locale/tr_TR.po +++ b/chirp/locale/tr_TR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: CHIRP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 18:46-0700\n" +"POT-Creation-Date: 2023-06-28 16:31-0700\n" "PO-Revision-Date: 2023-03-11 18:37+0300\n" "Last-Translator: Abdullah YILMAZ (TA1AUB) \n" "Language-Team: TURKISH\n" @@ -57,7 +57,7 @@ msgstr "%i Kaydı ve hepsini yukarı kaydır" msgid "%i Memories and shift block up" msgstr "%i Kaydı ve bloğu yukarı kaydır" -#: ../wxui/main.py:1307 +#: ../wxui/main.py:1347 #, python-format msgid "%s has not been saved. Save before closing?" msgstr "%s kaydedilmedi. Kapanmadan önce kaydedilsin mi?" @@ -66,7 +66,7 @@ msgstr "%s kaydedilmedi. Kapanmadan önce kaydedilsin mi?" msgid "(none)" msgstr "(hiçbiri)" -#: ../wxui/memedit.py:1787 +#: ../wxui/memedit.py:1791 #, python-format msgid "...and %i more" msgstr "" @@ -921,7 +921,7 @@ msgstr "" "5. [MODE] tuşuna basın (LCD'de \"-WAIT-\" görünecektir). Sonra TAMAM " " tıklayın" -#: ../drivers/uvk5.py:636 +#: ../drivers/uvk5.py:633 #, fuzzy msgid "" "1. Turn radio on.\n" @@ -939,7 +939,7 @@ msgstr "" "5. Telsizin etkin olmayan kanala ayarlandığından emin olun.\n" "6. İmajı cihaza yüklemek için TAMAM'a tıklayın.\n" -#: ../drivers/uvk5.py:643 +#: ../drivers/uvk5.py:640 #, fuzzy msgid "" "1. Turn radio on.\n" @@ -956,7 +956,7 @@ msgstr "" "5. Telsizin etkin olmayan kanala ayarlandığından emin olun.\n" "6. İmajı cihaza yüklemek için TAMAM'a tıklayın.\n" -#: ../wxui/main.py:1685 +#: ../wxui/main.py:1719 msgid "" "A new CHIRP version is available. Please visit the website as soon as " "possible to download it!" @@ -964,11 +964,11 @@ msgstr "" "Yeni bir CHIRP sürümü mevcuttur. İndirmek için lütfen en kısa zamanda web " "sitesini ziyaret edin!" -#: ../wxui/main.py:859 +#: ../wxui/main.py:894 msgid "About" msgstr "Hakkında" -#: ../wxui/main.py:1547 +#: ../wxui/main.py:1587 msgid "About CHIRP" msgstr "CHIRP Hakkında" @@ -976,11 +976,11 @@ msgstr "CHIRP Hakkında" msgid "All" msgstr "Tümü" -#: ../wxui/main.py:1143 +#: ../wxui/main.py:1178 msgid "All Files" msgstr "Tüm Dosyalar" -#: ../wxui/main.py:1154 +#: ../wxui/main.py:1189 msgid "All supported formats|" msgstr "Desteklenen tüm biçimler|" @@ -988,7 +988,7 @@ msgstr "Desteklenen tüm biçimler|" msgid "Amateur" msgstr "Amatör" -#: ../wxui/common.py:497 ../wxui/common.py:523 +#: ../wxui/common.py:499 ../wxui/common.py:525 msgid "An error has occurred" msgstr "Bir hata oluştu" @@ -1000,7 +1000,7 @@ msgstr "Ayarlar uygulanıyor" msgid "Available modules" msgstr "Mevcut modüller" -#: ../wxui/main.py:1631 +#: ../wxui/main.py:1665 msgid "Bandplan" msgstr "Bant planı" @@ -1008,7 +1008,7 @@ msgstr "Bant planı" msgid "Bands" msgstr "Bantlar" -#: ../wxui/main.py:204 +#: ../wxui/main.py:212 msgid "Banks" msgstr "Bankalar" @@ -1016,7 +1016,7 @@ msgstr "Bankalar" msgid "Bin" msgstr "Bin" -#: ../wxui/main.py:215 +#: ../wxui/main.py:223 msgid "Browser" msgstr "Tarayıcı" @@ -1035,7 +1035,7 @@ msgid "" msgstr "" "Eşdeğer TX ve RX %s'ye sahip kanallar, \"%s\" ton modu ile temsil edilir" -#: ../wxui/main.py:1142 +#: ../wxui/main.py:1177 msgid "Chirp Image Files" msgstr "Chirp İmaj Dosyaları" @@ -1090,7 +1090,7 @@ msgstr "" msgid "Clone completed, checking for spurious bytes" msgstr "Klon tamamlandı, sahte baytlar kontrol ediliyor" -#: ../wxui/common.py:108 +#: ../wxui/common.py:110 msgid "Cloning" msgstr "Klonlanıyor" @@ -1102,11 +1102,11 @@ msgstr "Telsizden klonlama" msgid "Cloning to radio" msgstr "Telsize klonlama" -#: ../wxui/main.py:937 +#: ../wxui/main.py:972 msgid "Close" msgstr "Kapat" -#: ../wxui/main.py:938 +#: ../wxui/main.py:973 msgid "Close file" msgstr "Dosyayı kapat" @@ -1169,11 +1169,11 @@ msgstr "" "DTCS\n" "Polarite" -#: ../wxui/memedit.py:2040 +#: ../wxui/memedit.py:2044 msgid "DV Memory" msgstr "DV Kaydı" -#: ../wxui/main.py:1561 +#: ../wxui/main.py:1601 msgid "Danger Ahead" msgstr "İleride Tehlike" @@ -1185,11 +1185,11 @@ msgstr "Dec" msgid "Delete" msgstr "Sil" -#: ../wxui/main.py:864 +#: ../wxui/main.py:899 msgid "Developer Mode" msgstr "Geliştirici Modu" -#: ../wxui/main.py:1567 +#: ../wxui/main.py:1607 #, python-format msgid "Developer state is now %s. CHIRP must be restarted to take effect" msgstr "" @@ -1199,11 +1199,11 @@ msgstr "" msgid "Diff Raw Memories" msgstr "Farklı Ham Kayıtlar" -#: ../wxui/memedit.py:1965 +#: ../wxui/memedit.py:1969 msgid "Digital Code" msgstr "Dijital Kod" -#: ../wxui/main.py:1578 +#: ../wxui/main.py:1618 msgid "Disable reporting" msgstr "Raporlamayı devre dışı bırak" @@ -1225,15 +1225,15 @@ msgstr "%s için tekrar sorma" msgid "Double-click to change bank name" msgstr "Banka adını değiştirmek için çift tıklayın" -#: ../wxui/main.py:939 +#: ../wxui/main.py:974 msgid "Download" msgstr "İndir" -#: ../wxui/main.py:776 ../wxui/main.py:940 +#: ../wxui/main.py:811 ../wxui/main.py:975 msgid "Download from radio" msgstr "Telsizden indir" -#: ../wxui/clone.py:512 +#: ../wxui/clone.py:513 msgid "Download instructions" msgstr "İndirme talimatları" @@ -1241,17 +1241,17 @@ msgstr "İndirme talimatları" msgid "Duplex" msgstr "Duplex" -#: ../wxui/memedit.py:1995 +#: ../wxui/memedit.py:1999 #, python-format msgid "Edit details for %i memories" msgstr "%i kaydı için ayrıntıları düzenle" -#: ../wxui/memedit.py:1993 +#: ../wxui/memedit.py:1997 #, python-format msgid "Edit details for memory %i" msgstr "%i kaydı için ayrıntıları düzenle" -#: ../wxui/main.py:808 +#: ../wxui/main.py:843 msgid "Enable Automatic Edits" msgstr "Otomatik Düzenlemeleri Etkinleştir" @@ -1277,11 +1277,11 @@ msgstr "TX Frekansını girin (MHz)" msgid "Enter a new name for bank %s:" msgstr "Banka %s için yeni bir ad girin:" -#: ../wxui/clone.py:405 +#: ../wxui/clone.py:406 msgid "Enter custom port:" msgstr "Özel bağlantı noktasını girin:" -#: ../wxui/common.py:316 +#: ../wxui/common.py:318 #, python-format msgid "Erased memory %s" msgstr "%s kaydı silindi" @@ -1290,23 +1290,23 @@ msgstr "%s kaydı silindi" msgid "Error applying settings" msgstr "Ayarlar uygulanırken hata oluştu" -#: ../wxui/clone.py:449 +#: ../wxui/clone.py:450 msgid "Error communicating with radio" msgstr "Telsizle iletişim hatası" -#: ../wxui/clone.py:480 +#: ../wxui/clone.py:481 msgid "Experimental driver" msgstr "Deneysel sürücü" -#: ../wxui/memedit.py:1925 +#: ../wxui/memedit.py:1929 msgid "Export can only write CSV files" msgstr "Dışa aktarma yalnızca CSV dosyalarını yazabilir" -#: ../wxui/main.py:672 ../wxui/main.py:1292 +#: ../wxui/main.py:706 ../wxui/main.py:1332 msgid "Export to CSV" msgstr "CSV'ye aktar" -#: ../wxui/memedit.py:2029 +#: ../wxui/memedit.py:2033 msgid "Extra" msgstr "Ekstra" @@ -1318,13 +1318,13 @@ msgstr "Telsiz tarayıcısı yüklenemedi" msgid "Features" msgstr "Özellikler" -#: ../wxui/main.py:534 +#: ../wxui/main.py:542 #, python-format msgid "File does not exist: %s" msgstr "Dosya mevcut değil: %s" -#: ../wxui/main.py:1146 ../wxui/main.py:1223 ../wxui/main.py:1233 -#: ../wxui/main.py:1288 ../wxui/main.py:1513 ../wxui/main.py:1514 +#: ../wxui/main.py:1181 ../wxui/main.py:1262 ../wxui/main.py:1272 +#: ../wxui/main.py:1328 ../wxui/main.py:1553 ../wxui/main.py:1554 msgid "Files" msgstr "Dosyalar" @@ -1336,15 +1336,15 @@ msgstr "Filtre" msgid "Filter results with location matching this string" msgstr "Bu dizeyle eşleşen konuma sahip sonuçları filtrele" -#: ../wxui/main.py:1362 +#: ../wxui/main.py:1402 msgid "Find" msgstr "Bul" -#: ../wxui/main.py:730 +#: ../wxui/main.py:765 msgid "Find Next" msgstr "Sonraki Bul" -#: ../wxui/common.py:318 +#: ../wxui/common.py:320 #, python-format msgid "Finished radio job %s" msgstr "%s telsiz işleri tamamlandı" @@ -1663,16 +1663,16 @@ msgstr "" msgid "If set, sort results by distance from these coordinates" msgstr "Ayarlanırsa, sonuçları bu koordinatlardan uzaklığa göre sırala" -#: ../wxui/main.py:1278 +#: ../wxui/main.py:1318 msgid "Import" msgstr "İçe Aktar" -#: ../wxui/main.py:666 +#: ../wxui/main.py:700 #, fuzzy msgid "Import from file" msgstr "Dosyadan İçe Aktar" -#: ../wxui/main.py:1276 +#: ../wxui/main.py:1316 #, fuzzy msgid "Import not recommended" msgstr "RFinder'dan içe aktar" @@ -1681,7 +1681,7 @@ msgstr "RFinder'dan içe aktar" msgid "Index" msgstr "Dizin" -#: ../wxui/main.py:217 +#: ../wxui/main.py:225 msgid "Info" msgstr "Bilgi" @@ -1697,7 +1697,7 @@ msgstr "Yukarıya Satır Ekle" msgid "Install desktop icon?" msgstr "" -#: ../wxui/main.py:848 +#: ../wxui/main.py:883 msgid "Interact with driver" msgstr "Sürücü ile etkileşim" @@ -1710,12 +1710,12 @@ msgstr "Geçersiz %(value)s (ondalık basamak kullanın)" msgid "Invalid ZIP code" msgstr "Geçersiz Posta kodu" -#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2120 +#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2124 #, python-format msgid "Invalid edit: %s" msgstr "Geçersiz düzenleme: %s" -#: ../wxui/main.py:1510 +#: ../wxui/main.py:1550 msgid "Invalid or unsupported module file" msgstr "Geçersiz veya desteklenmeyen modül dosyası" @@ -1728,7 +1728,7 @@ msgstr "Geçersiz değer: %r" msgid "Issue number:" msgstr "Kayıt numarası:" -#: ../wxui/main.py:335 +#: ../wxui/main.py:343 msgid "LIVE" msgstr "CANLI" @@ -1753,15 +1753,15 @@ msgstr "Modları Sınırla" msgid "Limit results to this distance (km) from coordinates" msgstr "Sonuçları koordinatlardan bu mesafeye (km) sınırla" -#: ../wxui/main.py:678 +#: ../wxui/main.py:712 msgid "Load Module" msgstr "Modül Yükle" -#: ../wxui/main.py:896 ../wxui/developer.py:487 +#: ../wxui/main.py:931 ../wxui/developer.py:487 msgid "Load module from issue" msgstr "Kayıttan modül yükle" -#: ../wxui/main.py:1517 +#: ../wxui/main.py:1557 msgid "" "Loading modules can be extremely dangerous, leading to damage to your " "computer, radio, or both. NEVER load a module from a source you do not " @@ -1786,7 +1786,7 @@ msgstr "Ayarlar yükleniyor" msgid "Longitude" msgstr "Boylam" -#: ../wxui/main.py:196 +#: ../wxui/main.py:204 msgid "Memories" msgstr "Kayıtlar" @@ -1808,7 +1808,7 @@ msgstr "{num} kaydı {bank} bankasında değil" msgid "Mode" msgstr "Mod" -#: ../wxui/clone.py:246 +#: ../wxui/clone.py:247 msgid "Model" msgstr "Model" @@ -1816,19 +1816,19 @@ msgstr "Model" msgid "Modes" msgstr "Modlar" -#: ../wxui/main.py:1514 +#: ../wxui/main.py:1554 msgid "Module" msgstr "Modül" -#: ../wxui/main.py:1486 +#: ../wxui/main.py:1526 msgid "Module Loaded" msgstr "Modül Yüklendi" -#: ../wxui/main.py:1617 +#: ../wxui/main.py:1651 msgid "Module loaded successfully" msgstr "Modül başarıyla yüklendi" -#: ../wxui/clone.py:374 +#: ../wxui/clone.py:375 #, python-format msgid "More than one port found: %s" msgstr "Birden fazla bağlantı noktası bulundu: %s" @@ -1843,11 +1843,11 @@ msgstr "Aşağı Taş_ı" msgid "Move Up" msgstr "Yukarı _Taşı" -#: ../wxui/main.py:613 +#: ../wxui/main.py:647 msgid "New Window" msgstr "" -#: ../wxui/main.py:1687 +#: ../wxui/main.py:1721 msgid "New version available" msgstr "Yeni sürüm mevcut" @@ -1884,38 +1884,43 @@ msgstr "Sadece belirli gruplar" msgid "Only certain modes" msgstr "Yalnızca belirli modlar" -#: ../wxui/main.py:317 +#: ../wxui/main.py:325 msgid "Only memory tabs may be exported" msgstr "Yalnızca kayıt sekmeleri dışa aktarılabilir" -#: ../wxui/main.py:933 ../wxui/main.py:1278 +#: ../wxui/main.py:968 ../wxui/main.py:1318 msgid "Open" msgstr "Aç" -#: ../wxui/main.py:653 +#: ../wxui/main.py:687 msgid "Open Recent" msgstr "Son Kullanılanları Aç" -#: ../wxui/main.py:624 +#: ../wxui/main.py:658 msgid "Open Stock Config" msgstr "Hazır Yapılandırma Aç" -#: ../wxui/main.py:934 ../wxui/main.py:1157 +#: ../wxui/main.py:969 ../wxui/main.py:1192 msgid "Open a file" msgstr "Bir dosya aç" -#: ../wxui/main.py:1532 +#: ../wxui/main.py:1572 msgid "Open a module" msgstr "Bir modül aç" -#: ../wxui/main.py:885 +#: ../wxui/main.py:920 msgid "Open debug log" msgstr "Hata ayıklama günlüğünü aç" -#: ../wxui/main.py:504 +#: ../wxui/main.py:512 msgid "Open in new window" msgstr "" +#: ../wxui/main.py:604 +#, fuzzy +msgid "Open stock config directory" +msgstr "Hazır Yapılandırma Aç" + #: ../wxui/query_sources.py:298 msgid "Optional: -122.0000" msgstr "İsteğe bağlı: -122.0000" @@ -1932,7 +1937,7 @@ msgstr "İsteğe bağlı: 45.0000" msgid "Optional: County, Hospital, etc" msgstr "İsteğe bağlı: İlçe, Hastane vb." -#: ../wxui/memedit.py:1742 +#: ../wxui/memedit.py:1746 msgid "Overwrite memories?" msgstr "Kayıtların üzerine yazılsın mı?" @@ -1951,27 +1956,32 @@ msgstr "" msgid "Paste" msgstr "Yapıştır" -#: ../wxui/memedit.py:1736 +#: ../wxui/memedit.py:1740 #, python-format msgid "Pasted memories will overwrite %i existing memories" msgstr "Yapıştırılan kayıtlar, mevcut %i kaydının üzerine yazılacak" -#: ../wxui/memedit.py:1739 +#: ../wxui/memedit.py:1743 #, python-format msgid "Pasted memories will overwrite memories %s" msgstr "Yapıştırılan kayıtlar %s kayıtlarının üzerine yazılacak" -#: ../wxui/memedit.py:1733 +#: ../wxui/memedit.py:1737 #, python-format msgid "Pasted memories will overwrite memory %i" msgstr "Yapıştırılan kayıtlar, %i kaydının üzerine yazılacak" -#: ../wxui/memedit.py:1730 +#: ../wxui/memedit.py:1734 #, python-format msgid "Pasted memory will overwrite memory %i" msgstr "Yapıştırılan kayıt, %i kaydının üzerine yazacak" -#: ../wxui/main.py:1691 +#: ../wxui/common.py:564 +#, fuzzy, python-format +msgid "Path %s does not exist" +msgstr "Dosya mevcut değil: %s" + +#: ../wxui/main.py:1725 msgid "Please be sure to quit CHIRP before installing the new version!" msgstr "Lütfen yeni sürümü yüklemeden önce CHIRP'den çıktığınızdan emin olun!" @@ -2019,7 +2029,7 @@ msgstr "" "4 - Ardından klonlamaya başlamak için telsizinizdeki \"A\" tuşuna basın.\n" " (Sonunda telsiz bip sesi çıkaracaktır)\n" -#: ../wxui/main.py:1555 +#: ../wxui/main.py:1595 msgid "" "Please note that developer mode is intended for use by developers of the " "CHIRP project, or under the direction of a developer. It enables behaviors " @@ -2032,15 +2042,15 @@ msgstr "" "telsizinize zarar verebilecek davranış ve işlevleri mümkün kılar. Uyarıldın! " "Yine de devam edilsin mi?" -#: ../wxui/common.py:181 +#: ../wxui/common.py:183 msgid "Please wait" msgstr "Lütfen bekleyin" -#: ../wxui/clone.py:351 +#: ../wxui/clone.py:352 msgid "Plug in your cable and then click OK" msgstr "Kablonuzu takın ve ardından Tamam'a tıklayın" -#: ../wxui/clone.py:239 +#: ../wxui/clone.py:240 msgid "Port" msgstr "Port" @@ -2052,7 +2062,7 @@ msgstr "Güç" msgid "Press enter to set this in memory" msgstr "Bu kayda almak için enter tuşuna basın" -#: ../wxui/main.py:689 +#: ../wxui/main.py:723 msgid "Print Preview" msgstr "Baskı Önizleme" @@ -2064,12 +2074,12 @@ msgstr "Baskı" msgid "Properties" msgstr "Özellikler" -#: ../wxui/main.py:1645 +#: ../wxui/main.py:1679 #, python-format msgid "Query %s" msgstr "%s sorgusu" -#: ../wxui/main.py:790 +#: ../wxui/main.py:825 msgid "Query Source" msgstr "Kaynaktan Sorgula" @@ -2077,7 +2087,7 @@ msgstr "Kaynaktan Sorgula" msgid "RX DTCS" msgstr "RX DTCS" -#: ../wxui/main.py:904 +#: ../wxui/main.py:939 msgid "Radio" msgstr "Telsiz" @@ -2086,7 +2096,7 @@ msgstr "Telsiz" msgid "Radio did not ack block %i" msgstr "Telsiz %i bloğunu onaylamadı" -#: ../wxui/clone.py:504 ../wxui/clone.py:569 +#: ../wxui/clone.py:505 ../wxui/clone.py:570 msgid "Radio information" msgstr "Telsiz bilgisi" @@ -2105,16 +2115,16 @@ msgid "RadioReference Canada requires a login before you can query" msgstr "" "RadioReference Kanada, sorgulayabilmeniz için önce oturum açmanız gerekir" -#: ../wxui/common.py:308 +#: ../wxui/common.py:310 #, python-format msgid "Refreshed memory %s" msgstr "Yenilenmiş %s kaydı" -#: ../wxui/main.py:825 +#: ../wxui/main.py:860 msgid "Reload Driver" msgstr "Sürücüyü Yeniden Yükle" -#: ../wxui/main.py:834 +#: ../wxui/main.py:869 msgid "Reload Driver and File" msgstr "Sürücüyü ve Dosyayı Yeniden Yükle" @@ -2122,11 +2132,11 @@ msgstr "Sürücüyü ve Dosyayı Yeniden Yükle" msgid "Rename bank" msgstr "Bankayı yeniden adlandır" -#: ../wxui/main.py:873 +#: ../wxui/main.py:908 msgid "Reporting enabled" msgstr "Raporlama etkinleştirildi" -#: ../wxui/main.py:1574 +#: ../wxui/main.py:1614 msgid "" "Reporting helps the CHIRP project know which radio models and OS platforms " "to spend our limited efforts on. We would really appreciate if you left it " @@ -2137,36 +2147,36 @@ msgstr "" "bırakırsanız gerçekten minnettar oluruz. Raporlama gerçekten devre dışı " "bırakılsın mı?" -#: ../wxui/main.py:1569 +#: ../wxui/main.py:1609 msgid "Restart Required" msgstr "Yeniden Başlatma Gerekiyor" -#: ../wxui/main.py:634 +#: ../wxui/main.py:668 #, python-format msgid "Restore %i tabs" msgstr "%i sekmesini geri yükle" -#: ../wxui/common.py:312 +#: ../wxui/common.py:314 msgid "Retrieved settings" msgstr "Alınan ayarlar" -#: ../wxui/main.py:935 +#: ../wxui/main.py:970 msgid "Save" msgstr "Kaydet" -#: ../wxui/main.py:1309 +#: ../wxui/main.py:1349 msgid "Save before closing?" msgstr "Kapanmadan önce kaydedilsin mi?" -#: ../wxui/main.py:936 ../wxui/main.py:1237 +#: ../wxui/main.py:971 ../wxui/main.py:1276 msgid "Save file" msgstr "Dosyayı kaydet" -#: ../wxui/common.py:314 +#: ../wxui/common.py:316 msgid "Saved settings" msgstr "Kaydedilmiş ayarlar" -#: ../wxui/main.py:815 +#: ../wxui/main.py:850 msgid "Select Bandplan" msgstr "Bant Planı Seç" @@ -2178,7 +2188,7 @@ msgstr "Bantları Seç" msgid "Select Modes" msgstr "Modları Seç" -#: ../wxui/main.py:1630 +#: ../wxui/main.py:1664 msgid "Select a bandplan" msgstr "Bir bant planı seçin" @@ -2186,7 +2196,7 @@ msgstr "Bir bant planı seçin" msgid "Service" msgstr "Servis" -#: ../wxui/main.py:209 +#: ../wxui/main.py:217 msgid "Settings" msgstr "Ayarlar" @@ -2194,7 +2204,7 @@ msgstr "Ayarlar" msgid "Show Raw Memory" msgstr "Ham Kaydı Göster" -#: ../wxui/main.py:891 +#: ../wxui/main.py:926 msgid "Show debug log location" msgstr "Hata ayıklama günlüğü konumunu göster" @@ -2202,11 +2212,11 @@ msgstr "Hata ayıklama günlüğü konumunu göster" msgid "Show extra fields" msgstr "" -#: ../wxui/memedit.py:1791 +#: ../wxui/memedit.py:1795 msgid "Some memories are incompatible with this radio" msgstr "Bazı kayıtlar bu telsizle uyumlu değil" -#: ../wxui/memedit.py:1686 +#: ../wxui/memedit.py:1687 msgid "Some memories are not deletable" msgstr "Bazı anılar silinemez" @@ -2241,7 +2251,7 @@ msgstr "Devlet" msgid "State/Province" msgstr "Eyalet/İl" -#: ../wxui/main.py:1618 +#: ../wxui/main.py:1652 msgid "Success" msgstr "Başarılı" @@ -2282,7 +2292,7 @@ msgstr "" "Lütfen ilk başarılı indirmenizin düzenlenmemiş bir kopyasını\n" "bir CHIRP Radio Images (*.img) dosyasına kaydedin.\n" -#: ../wxui/main.py:1269 +#: ../wxui/main.py:1309 #, python-format msgid "" "The recommended procedure for importing memories is to open the source file " @@ -2368,12 +2378,12 @@ msgstr "Ton Susturucu" msgid "Tuning Step" msgstr "Ayarlama Adımı" -#: ../wxui/clone.py:345 ../wxui/clone.py:352 ../wxui/clone.py:363 -#: ../wxui/clone.py:371 ../wxui/clone.py:375 +#: ../wxui/clone.py:346 ../wxui/clone.py:353 ../wxui/clone.py:364 +#: ../wxui/clone.py:372 ../wxui/clone.py:376 msgid "USB Port Finder" msgstr "USB Portu Bulucu" -#: ../wxui/clone.py:361 +#: ../wxui/clone.py:362 msgid "" "Unable to determine port for your cable. Check your drivers and connections." msgstr "" @@ -2384,12 +2394,12 @@ msgstr "" msgid "Unable to edit memory before radio is loaded" msgstr "Radyo yüklenmeden önce kayıt düzenlenemiyor" -#: ../wxui/main.py:1195 +#: ../wxui/main.py:1234 #, python-format msgid "Unable to find stock config %r" msgstr "%r stok yapılandırması bulunamadı" -#: ../wxui/common.py:214 +#: ../wxui/common.py:216 msgid "Unable to open the clipboard" msgstr "Pano açılamıyor" @@ -2403,7 +2413,7 @@ msgstr "" "telsiz ABD dışı bir telsizdir (veya geniş bantlıdır). Lütfen doğru modeli " "seçin ve tekrar deneyin." -#: ../wxui/main.py:1610 +#: ../wxui/common.py:571 #, python-format msgid "Unable to reveal %s on this system" msgstr "%s bu sistemde gösterilemiyor" @@ -2417,28 +2427,28 @@ msgstr "%s bu sistemde gösterilemiyor" msgid "United States" msgstr "Amerika Birleşik Devletleri" -#: ../wxui/clone.py:344 +#: ../wxui/clone.py:345 msgid "Unplug your cable (if needed) and then click OK" msgstr "(gerekirse) Kablonuzu çıkarın ve ardından Tamam'ı tıklayın" -#: ../wxui/clone.py:584 +#: ../wxui/clone.py:585 msgid "Upload instructions" msgstr "Yükleme talimatları" -#: ../wxui/main.py:784 ../wxui/main.py:942 +#: ../wxui/main.py:819 ../wxui/main.py:977 msgid "Upload to radio" msgstr "Telsize yükle" -#: ../wxui/common.py:310 +#: ../wxui/common.py:312 #, python-format msgid "Uploaded memory %s" msgstr "Yüklenen kayıt %s" -#: ../wxui/main.py:752 +#: ../wxui/main.py:787 msgid "Use fixed-width font" msgstr "Sabit genişlikte yazı tipi kullan" -#: ../wxui/main.py:760 +#: ../wxui/main.py:795 msgid "Use larger font" msgstr "Daha büyük yazı tipi kullan" @@ -2447,12 +2457,12 @@ msgstr "Daha büyük yazı tipi kullan" msgid "Value does not fit in %i bits" msgstr "Değer %i bit'e sığmıyor" -#: ../wxui/common.py:420 +#: ../wxui/common.py:422 #, python-format msgid "Value must be at least %.4f" msgstr "Değer en az %.4f olmalıdır" -#: ../wxui/common.py:424 +#: ../wxui/common.py:426 #, python-format msgid "Value must be at most %.4f" msgstr "Değer en fazla %.4f olmalıdır" @@ -2466,11 +2476,11 @@ msgstr "Değer tam olarak %i ondalık basamak olmalıdır" msgid "Value must be zero or greater" msgstr "Değer sıfır veya daha büyük olmalıdır" -#: ../wxui/clone.py:242 +#: ../wxui/clone.py:243 msgid "Vendor" msgstr "Tedarikçi" -#: ../wxui/main.py:903 +#: ../wxui/main.py:938 msgid "View" msgstr "Göster" @@ -2483,7 +2493,7 @@ msgstr "Uyarı" msgid "Warning: %s" msgstr "Uyarı: %s" -#: ../wxui/main.py:421 +#: ../wxui/main.py:429 msgid "Welcome" msgstr "Hoşgeldiniz" @@ -2491,7 +2501,7 @@ msgstr "Hoşgeldiniz" msgid "Would you like CHIRP to install a desktop icon for you?" msgstr "" -#: ../wxui/clone.py:369 +#: ../wxui/clone.py:370 msgid "Your cable appears to be on port:" msgstr "Kablonuz bağlantı noktasında görünüyor:" @@ -2507,11 +2517,11 @@ msgstr "bytes" msgid "bytes each" msgstr "her biri bayt" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "disabled" msgstr "devre dışı bırakıldı" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "enabled" msgstr "etkinleştirildi" diff --git a/chirp/locale/uk_UA.po b/chirp/locale/uk_UA.po index ea8f09578..2b23a5c34 100644 --- a/chirp/locale/uk_UA.po +++ b/chirp/locale/uk_UA.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: CHIRP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 18:46-0700\n" +"POT-Creation-Date: 2023-06-28 16:31-0700\n" "PO-Revision-Date: 2015-11-30 10:36+0200\n" "Last-Translator: laser \n" "Language-Team: laser \n" @@ -48,7 +48,7 @@ msgstr "Видалити (та зсунути вгору)" msgid "%i Memories and shift block up" msgstr "Видалити (та зсунути вгору)" -#: ../wxui/main.py:1307 +#: ../wxui/main.py:1347 #, fuzzy, python-format msgid "%s has not been saved. Save before closing?" msgstr "Файл змінено, зберегти зміни перед закриттям?" @@ -57,7 +57,7 @@ msgstr "Файл змінено, зберегти зміни перед закр msgid "(none)" msgstr "" -#: ../wxui/memedit.py:1787 +#: ../wxui/memedit.py:1791 #, python-format msgid "...and %i more" msgstr "" @@ -594,7 +594,7 @@ msgid "" " click Then" msgstr "" -#: ../drivers/uvk5.py:636 +#: ../drivers/uvk5.py:633 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -605,7 +605,7 @@ msgid "" "attached\n" msgstr "" -#: ../drivers/uvk5.py:643 +#: ../drivers/uvk5.py:640 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -615,17 +615,17 @@ msgid "" "It will may not work if you turn on the radio with the cable already attached" msgstr "" -#: ../wxui/main.py:1685 +#: ../wxui/main.py:1719 msgid "" "A new CHIRP version is available. Please visit the website as soon as " "possible to download it!" msgstr "" -#: ../wxui/main.py:859 +#: ../wxui/main.py:894 msgid "About" msgstr "" -#: ../wxui/main.py:1547 +#: ../wxui/main.py:1587 msgid "About CHIRP" msgstr "" @@ -633,12 +633,12 @@ msgstr "" msgid "All" msgstr "Все" -#: ../wxui/main.py:1143 +#: ../wxui/main.py:1178 #, fuzzy msgid "All Files" msgstr "CSV-файли" -#: ../wxui/main.py:1154 +#: ../wxui/main.py:1189 msgid "All supported formats|" msgstr "" @@ -646,7 +646,7 @@ msgstr "" msgid "Amateur" msgstr "" -#: ../wxui/common.py:497 ../wxui/common.py:523 +#: ../wxui/common.py:499 ../wxui/common.py:525 msgid "An error has occurred" msgstr "Сталася помилка" @@ -658,7 +658,7 @@ msgstr "" msgid "Available modules" msgstr "" -#: ../wxui/main.py:1631 +#: ../wxui/main.py:1665 msgid "Bandplan" msgstr "" @@ -666,7 +666,7 @@ msgstr "" msgid "Bands" msgstr "" -#: ../wxui/main.py:204 +#: ../wxui/main.py:212 msgid "Banks" msgstr "Банки" @@ -674,7 +674,7 @@ msgstr "Банки" msgid "Bin" msgstr "" -#: ../wxui/main.py:215 +#: ../wxui/main.py:223 msgid "Browser" msgstr "" @@ -692,7 +692,7 @@ msgid "" "Channels with equivalent TX and RX %s are represented by tone mode of \"%s\"" msgstr "" -#: ../wxui/main.py:1142 +#: ../wxui/main.py:1177 msgid "Chirp Image Files" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "Clone completed, checking for spurious bytes" msgstr "" -#: ../wxui/common.py:108 +#: ../wxui/common.py:110 msgid "Cloning" msgstr "Клонування" @@ -756,11 +756,11 @@ msgstr "Скопіювати з радіостанції" msgid "Cloning to radio" msgstr "Записати в радіостанцію" -#: ../wxui/main.py:937 +#: ../wxui/main.py:972 msgid "Close" msgstr "" -#: ../wxui/main.py:938 +#: ../wxui/main.py:973 msgid "Close file" msgstr "" @@ -823,11 +823,11 @@ msgid "" "Polarity" msgstr "DTCS Pol" -#: ../wxui/memedit.py:2040 +#: ../wxui/memedit.py:2044 msgid "DV Memory" msgstr "" -#: ../wxui/main.py:1561 +#: ../wxui/main.py:1601 msgid "Danger Ahead" msgstr "" @@ -841,12 +841,12 @@ msgstr "Визначити" msgid "Delete" msgstr "Видалити" -#: ../wxui/main.py:864 +#: ../wxui/main.py:899 #, fuzzy msgid "Developer Mode" msgstr "Розробник" -#: ../wxui/main.py:1567 +#: ../wxui/main.py:1607 #, python-format msgid "Developer state is now %s. CHIRP must be restarted to take effect" msgstr "" @@ -856,11 +856,11 @@ msgstr "" msgid "Diff Raw Memories" msgstr "Порівняти Raw пам'ять" -#: ../wxui/memedit.py:1965 +#: ../wxui/memedit.py:1969 msgid "Digital Code" msgstr "Цифровий код" -#: ../wxui/main.py:1578 +#: ../wxui/main.py:1618 msgid "Disable reporting" msgstr "" @@ -881,16 +881,16 @@ msgstr "" msgid "Double-click to change bank name" msgstr "" -#: ../wxui/main.py:939 +#: ../wxui/main.py:974 msgid "Download" msgstr "" -#: ../wxui/main.py:776 ../wxui/main.py:940 +#: ../wxui/main.py:811 ../wxui/main.py:975 #, fuzzy msgid "Download from radio" msgstr "Скопіювати з радіостанції" -#: ../wxui/clone.py:512 +#: ../wxui/clone.py:513 #, fuzzy msgid "Download instructions" msgstr "Скопіювати з радіостанції" @@ -899,17 +899,17 @@ msgstr "Скопіювати з радіостанції" msgid "Duplex" msgstr "Дуплекс" -#: ../wxui/memedit.py:1995 +#: ../wxui/memedit.py:1999 #, python-format msgid "Edit details for %i memories" msgstr "" -#: ../wxui/memedit.py:1993 +#: ../wxui/memedit.py:1997 #, python-format msgid "Edit details for memory %i" msgstr "" -#: ../wxui/main.py:808 +#: ../wxui/main.py:843 msgid "Enable Automatic Edits" msgstr "" @@ -935,11 +935,11 @@ msgstr "" msgid "Enter a new name for bank %s:" msgstr "" -#: ../wxui/clone.py:405 +#: ../wxui/clone.py:406 msgid "Enter custom port:" msgstr "" -#: ../wxui/common.py:316 +#: ../wxui/common.py:318 #, fuzzy, python-format msgid "Erased memory %s" msgstr "Стирання пам'яті {loc}" @@ -949,24 +949,24 @@ msgstr "Стирання пам'яті {loc}" msgid "Error applying settings" msgstr "Помилка настройки пам'яті" -#: ../wxui/clone.py:449 +#: ../wxui/clone.py:450 msgid "Error communicating with radio" msgstr "" -#: ../wxui/clone.py:480 +#: ../wxui/clone.py:481 msgid "Experimental driver" msgstr "" -#: ../wxui/memedit.py:1925 +#: ../wxui/memedit.py:1929 msgid "Export can only write CSV files" msgstr "" -#: ../wxui/main.py:672 ../wxui/main.py:1292 +#: ../wxui/main.py:706 ../wxui/main.py:1332 #, fuzzy msgid "Export to CSV" msgstr "Експорт до файлу" -#: ../wxui/memedit.py:2029 +#: ../wxui/memedit.py:2033 msgid "Extra" msgstr "" @@ -978,13 +978,13 @@ msgstr "" msgid "Features" msgstr "" -#: ../wxui/main.py:534 +#: ../wxui/main.py:542 #, python-format msgid "File does not exist: %s" msgstr "" -#: ../wxui/main.py:1146 ../wxui/main.py:1223 ../wxui/main.py:1233 -#: ../wxui/main.py:1288 ../wxui/main.py:1513 ../wxui/main.py:1514 +#: ../wxui/main.py:1181 ../wxui/main.py:1262 ../wxui/main.py:1272 +#: ../wxui/main.py:1328 ../wxui/main.py:1553 ../wxui/main.py:1554 #, fuzzy msgid "Files" msgstr "_Файл" @@ -997,15 +997,15 @@ msgstr "" msgid "Filter results with location matching this string" msgstr "" -#: ../wxui/main.py:1362 +#: ../wxui/main.py:1402 msgid "Find" msgstr "" -#: ../wxui/main.py:730 +#: ../wxui/main.py:765 msgid "Find Next" msgstr "" -#: ../wxui/common.py:318 +#: ../wxui/common.py:320 #, python-format msgid "Finished radio job %s" msgstr "" @@ -1236,16 +1236,16 @@ msgstr "" msgid "If set, sort results by distance from these coordinates" msgstr "" -#: ../wxui/main.py:1278 +#: ../wxui/main.py:1318 msgid "Import" msgstr "Імпорт" -#: ../wxui/main.py:666 +#: ../wxui/main.py:700 #, fuzzy msgid "Import from file" msgstr "Імпортувати з файлу" -#: ../wxui/main.py:1276 +#: ../wxui/main.py:1316 #, fuzzy msgid "Import not recommended" msgstr "Імпорт з RFinder" @@ -1254,7 +1254,7 @@ msgstr "Імпорт з RFinder" msgid "Index" msgstr "Зміст" -#: ../wxui/main.py:217 +#: ../wxui/main.py:225 msgid "Info" msgstr "" @@ -1271,7 +1271,7 @@ msgstr "Додати рядок зверху" msgid "Install desktop icon?" msgstr "" -#: ../wxui/main.py:848 +#: ../wxui/main.py:883 msgid "Interact with driver" msgstr "" @@ -1284,12 +1284,12 @@ msgstr "Неприпустиме значення. Повинно бути ці msgid "Invalid ZIP code" msgstr "" -#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2120 +#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2124 #, python-format msgid "Invalid edit: %s" msgstr "" -#: ../wxui/main.py:1510 +#: ../wxui/main.py:1550 msgid "Invalid or unsupported module file" msgstr "" @@ -1302,7 +1302,7 @@ msgstr "Неприпустиме значення для цього поля" msgid "Issue number:" msgstr "" -#: ../wxui/main.py:335 +#: ../wxui/main.py:343 msgid "LIVE" msgstr "" @@ -1327,17 +1327,17 @@ msgstr "" msgid "Limit results to this distance (km) from coordinates" msgstr "" -#: ../wxui/main.py:678 +#: ../wxui/main.py:712 #, fuzzy msgid "Load Module" msgstr "Тоновий режим" -#: ../wxui/main.py:896 ../wxui/developer.py:487 +#: ../wxui/main.py:931 ../wxui/developer.py:487 #, fuzzy msgid "Load module from issue" msgstr "Тоновий режим" -#: ../wxui/main.py:1517 +#: ../wxui/main.py:1557 msgid "" "Loading modules can be extremely dangerous, leading to damage to your " "computer, radio, or both. NEVER load a module from a source you do not " @@ -1355,7 +1355,7 @@ msgstr "" msgid "Longitude" msgstr "" -#: ../wxui/main.py:196 +#: ../wxui/main.py:204 #, fuzzy msgid "Memories" msgstr "Пам'ять" @@ -1379,7 +1379,7 @@ msgstr "" msgid "Mode" msgstr "Режим" -#: ../wxui/clone.py:246 +#: ../wxui/clone.py:247 msgid "Model" msgstr "Модель" @@ -1388,19 +1388,19 @@ msgstr "Модель" msgid "Modes" msgstr "Режим" -#: ../wxui/main.py:1514 +#: ../wxui/main.py:1554 msgid "Module" msgstr "" -#: ../wxui/main.py:1486 +#: ../wxui/main.py:1526 msgid "Module Loaded" msgstr "" -#: ../wxui/main.py:1617 +#: ../wxui/main.py:1651 msgid "Module loaded successfully" msgstr "" -#: ../wxui/clone.py:374 +#: ../wxui/clone.py:375 #, python-format msgid "More than one port found: %s" msgstr "" @@ -1415,11 +1415,11 @@ msgstr "Перемістити В_низ" msgid "Move Up" msgstr "Перемістити В_гору" -#: ../wxui/main.py:613 +#: ../wxui/main.py:647 msgid "New Window" msgstr "" -#: ../wxui/main.py:1687 +#: ../wxui/main.py:1721 msgid "New version available" msgstr "" @@ -1457,40 +1457,45 @@ msgstr "" msgid "Only certain modes" msgstr "" -#: ../wxui/main.py:317 +#: ../wxui/main.py:325 msgid "Only memory tabs may be exported" msgstr "" -#: ../wxui/main.py:933 ../wxui/main.py:1278 +#: ../wxui/main.py:968 ../wxui/main.py:1318 msgid "Open" msgstr "" -#: ../wxui/main.py:653 +#: ../wxui/main.py:687 #, fuzzy msgid "Open Recent" msgstr "Ос_танні" -#: ../wxui/main.py:624 +#: ../wxui/main.py:658 #, fuzzy msgid "Open Stock Config" msgstr "Відкрити заводські конфігурації" -#: ../wxui/main.py:934 ../wxui/main.py:1157 +#: ../wxui/main.py:969 ../wxui/main.py:1192 msgid "Open a file" msgstr "" -#: ../wxui/main.py:1532 +#: ../wxui/main.py:1572 msgid "Open a module" msgstr "" -#: ../wxui/main.py:885 +#: ../wxui/main.py:920 msgid "Open debug log" msgstr "" -#: ../wxui/main.py:504 +#: ../wxui/main.py:512 msgid "Open in new window" msgstr "" +#: ../wxui/main.py:604 +#, fuzzy +msgid "Open stock config directory" +msgstr "Відкрите заводські конфігурації {name}" + #: ../wxui/query_sources.py:298 msgid "Optional: -122.0000" msgstr "" @@ -1508,7 +1513,7 @@ msgstr "" msgid "Optional: County, Hospital, etc" msgstr "" -#: ../wxui/memedit.py:1742 +#: ../wxui/memedit.py:1746 #, fuzzy msgid "Overwrite memories?" msgstr "Перезаписати?" @@ -1525,27 +1530,32 @@ msgstr "" msgid "Paste" msgstr "Вставити" -#: ../wxui/memedit.py:1736 +#: ../wxui/memedit.py:1740 #, python-format msgid "Pasted memories will overwrite %i existing memories" msgstr "" -#: ../wxui/memedit.py:1739 +#: ../wxui/memedit.py:1743 #, python-format msgid "Pasted memories will overwrite memories %s" msgstr "" -#: ../wxui/memedit.py:1733 +#: ../wxui/memedit.py:1737 #, python-format msgid "Pasted memories will overwrite memory %i" msgstr "" -#: ../wxui/memedit.py:1730 +#: ../wxui/memedit.py:1734 #, python-format msgid "Pasted memory will overwrite memory %i" msgstr "" -#: ../wxui/main.py:1691 +#: ../wxui/common.py:564 +#, python-format +msgid "Path %s does not exist" +msgstr "" + +#: ../wxui/main.py:1725 msgid "Please be sure to quit CHIRP before installing the new version!" msgstr "" @@ -1575,7 +1585,7 @@ msgid "" " (At the end radio will beep)\n" msgstr "" -#: ../wxui/main.py:1555 +#: ../wxui/main.py:1595 msgid "" "Please note that developer mode is intended for use by developers of the " "CHIRP project, or under the direction of a developer. It enables behaviors " @@ -1583,15 +1593,15 @@ msgid "" "EXTREME care. You have been warned! Proceed anyway?" msgstr "" -#: ../wxui/common.py:181 +#: ../wxui/common.py:183 msgid "Please wait" msgstr "" -#: ../wxui/clone.py:351 +#: ../wxui/clone.py:352 msgid "Plug in your cable and then click OK" msgstr "" -#: ../wxui/clone.py:239 +#: ../wxui/clone.py:240 msgid "Port" msgstr "Порт" @@ -1604,7 +1614,7 @@ msgstr "Потужність" msgid "Press enter to set this in memory" msgstr "Помилка настройки пам'яті" -#: ../wxui/main.py:689 +#: ../wxui/main.py:723 msgid "Print Preview" msgstr "" @@ -1616,12 +1626,12 @@ msgstr "" msgid "Properties" msgstr "" -#: ../wxui/main.py:1645 +#: ../wxui/main.py:1679 #, python-format msgid "Query %s" msgstr "" -#: ../wxui/main.py:790 +#: ../wxui/main.py:825 msgid "Query Source" msgstr "" @@ -1629,7 +1639,7 @@ msgstr "" msgid "RX DTCS" msgstr "" -#: ../wxui/main.py:904 +#: ../wxui/main.py:939 #, fuzzy msgid "Radio" msgstr "Радіостанція" @@ -1639,7 +1649,7 @@ msgstr "Радіостанція" msgid "Radio did not ack block %i" msgstr "" -#: ../wxui/clone.py:504 ../wxui/clone.py:569 +#: ../wxui/clone.py:505 ../wxui/clone.py:570 #, fuzzy msgid "Radio information" msgstr "Отримання інформації банку" @@ -1655,16 +1665,16 @@ msgstr "" msgid "RadioReference Canada requires a login before you can query" msgstr "" -#: ../wxui/common.py:308 +#: ../wxui/common.py:310 #, python-format msgid "Refreshed memory %s" msgstr "" -#: ../wxui/main.py:825 +#: ../wxui/main.py:860 msgid "Reload Driver" msgstr "" -#: ../wxui/main.py:834 +#: ../wxui/main.py:869 msgid "Reload Driver and File" msgstr "" @@ -1673,48 +1683,48 @@ msgstr "" msgid "Rename bank" msgstr "Настройка назви бана" -#: ../wxui/main.py:873 +#: ../wxui/main.py:908 #, fuzzy msgid "Reporting enabled" msgstr "Звіти вимкнуто" -#: ../wxui/main.py:1574 +#: ../wxui/main.py:1614 msgid "" "Reporting helps the CHIRP project know which radio models and OS platforms " "to spend our limited efforts on. We would really appreciate if you left it " "enabled. Really disable reporting?" msgstr "" -#: ../wxui/main.py:1569 +#: ../wxui/main.py:1609 msgid "Restart Required" msgstr "" -#: ../wxui/main.py:634 +#: ../wxui/main.py:668 #, python-format msgid "Restore %i tabs" msgstr "" -#: ../wxui/common.py:312 +#: ../wxui/common.py:314 msgid "Retrieved settings" msgstr "" -#: ../wxui/main.py:935 +#: ../wxui/main.py:970 msgid "Save" msgstr "" -#: ../wxui/main.py:1309 +#: ../wxui/main.py:1349 msgid "Save before closing?" msgstr "" -#: ../wxui/main.py:936 ../wxui/main.py:1237 +#: ../wxui/main.py:971 ../wxui/main.py:1276 msgid "Save file" msgstr "" -#: ../wxui/common.py:314 +#: ../wxui/common.py:316 msgid "Saved settings" msgstr "" -#: ../wxui/main.py:815 +#: ../wxui/main.py:850 #, fuzzy msgid "Select Bandplan" msgstr "Виберіть Стовпці" @@ -1729,7 +1739,7 @@ msgstr "Виберіть Стовпці" msgid "Select Modes" msgstr "Виберіть Стовпці" -#: ../wxui/main.py:1630 +#: ../wxui/main.py:1664 msgid "Select a bandplan" msgstr "" @@ -1737,7 +1747,7 @@ msgstr "" msgid "Service" msgstr "" -#: ../wxui/main.py:209 +#: ../wxui/main.py:217 msgid "Settings" msgstr "" @@ -1746,7 +1756,7 @@ msgstr "" msgid "Show Raw Memory" msgstr "Показати Raw пам'ять" -#: ../wxui/main.py:891 +#: ../wxui/main.py:926 msgid "Show debug log location" msgstr "" @@ -1754,12 +1764,12 @@ msgstr "" msgid "Show extra fields" msgstr "" -#: ../wxui/memedit.py:1791 +#: ../wxui/memedit.py:1795 #, fuzzy msgid "Some memories are incompatible with this radio" msgstr "Вставлена пам'ять {number} несумісна із цією радіостанцією тому що:" -#: ../wxui/memedit.py:1686 +#: ../wxui/memedit.py:1687 msgid "Some memories are not deletable" msgstr "" @@ -1795,7 +1805,7 @@ msgstr "" msgid "State/Province" msgstr "" -#: ../wxui/main.py:1618 +#: ../wxui/main.py:1652 msgid "Success" msgstr "" @@ -1822,7 +1832,7 @@ msgid "" "download to a CHIRP Radio Images (*.img) file.\n" msgstr "" -#: ../wxui/main.py:1269 +#: ../wxui/main.py:1309 #, python-format msgid "" "The recommended procedure for importing memories is to open the source file " @@ -1901,12 +1911,12 @@ msgstr "ToneSql" msgid "Tuning Step" msgstr "Крок настройки" -#: ../wxui/clone.py:345 ../wxui/clone.py:352 ../wxui/clone.py:363 -#: ../wxui/clone.py:371 ../wxui/clone.py:375 +#: ../wxui/clone.py:346 ../wxui/clone.py:353 ../wxui/clone.py:364 +#: ../wxui/clone.py:372 ../wxui/clone.py:376 msgid "USB Port Finder" msgstr "" -#: ../wxui/clone.py:361 +#: ../wxui/clone.py:362 msgid "" "Unable to determine port for your cable. Check your drivers and connections." msgstr "" @@ -1915,12 +1925,12 @@ msgstr "" msgid "Unable to edit memory before radio is loaded" msgstr "" -#: ../wxui/main.py:1195 +#: ../wxui/main.py:1234 #, fuzzy, python-format msgid "Unable to find stock config %r" msgstr "Відкрити заводські конфігурації" -#: ../wxui/common.py:214 +#: ../wxui/common.py:216 #, fuzzy msgid "Unable to open the clipboard" msgstr "Не вдалося виявити радіо на {port}" @@ -1932,7 +1942,7 @@ msgid "" "model and try again." msgstr "" -#: ../wxui/main.py:1610 +#: ../wxui/common.py:571 #, fuzzy, python-format msgid "Unable to reveal %s on this system" msgstr "Не вдається внести зміни до цієї моделі" @@ -1946,29 +1956,29 @@ msgstr "Не вдається внести зміни до цієї моделі msgid "United States" msgstr "" -#: ../wxui/clone.py:344 +#: ../wxui/clone.py:345 msgid "Unplug your cable (if needed) and then click OK" msgstr "" -#: ../wxui/clone.py:584 +#: ../wxui/clone.py:585 msgid "Upload instructions" msgstr "" -#: ../wxui/main.py:784 ../wxui/main.py:942 +#: ../wxui/main.py:819 ../wxui/main.py:977 #, fuzzy msgid "Upload to radio" msgstr "Записати в радіостанцію" -#: ../wxui/common.py:310 +#: ../wxui/common.py:312 #, python-format msgid "Uploaded memory %s" msgstr "" -#: ../wxui/main.py:752 +#: ../wxui/main.py:787 msgid "Use fixed-width font" msgstr "" -#: ../wxui/main.py:760 +#: ../wxui/main.py:795 msgid "Use larger font" msgstr "" @@ -1977,12 +1987,12 @@ msgstr "" msgid "Value does not fit in %i bits" msgstr "" -#: ../wxui/common.py:420 +#: ../wxui/common.py:422 #, python-format msgid "Value must be at least %.4f" msgstr "" -#: ../wxui/common.py:424 +#: ../wxui/common.py:426 #, python-format msgid "Value must be at most %.4f" msgstr "" @@ -1996,11 +2006,11 @@ msgstr "" msgid "Value must be zero or greater" msgstr "" -#: ../wxui/clone.py:242 +#: ../wxui/clone.py:243 msgid "Vendor" msgstr "Виробник" -#: ../wxui/main.py:903 +#: ../wxui/main.py:938 #, fuzzy msgid "View" msgstr "В_игляд" @@ -2014,7 +2024,7 @@ msgstr "" msgid "Warning: %s" msgstr "" -#: ../wxui/main.py:421 +#: ../wxui/main.py:429 msgid "Welcome" msgstr "" @@ -2022,7 +2032,7 @@ msgstr "" msgid "Would you like CHIRP to install a desktop icon for you?" msgstr "" -#: ../wxui/clone.py:369 +#: ../wxui/clone.py:370 msgid "Your cable appears to be on port:" msgstr "" @@ -2038,11 +2048,11 @@ msgstr "" msgid "bytes each" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "disabled" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 msgid "enabled" msgstr "" @@ -2335,9 +2345,6 @@ msgstr "" #~ msgid "Open recent file {name}" #~ msgstr "Відкриті останній файл {name}" -#~ msgid "Open stock configuration {name}" -#~ msgstr "Відкрите заводські конфігурації {name}" - #~ msgid "Overwrite" #~ msgstr "Перезаписати" diff --git a/chirp/locale/zh_CN.po b/chirp/locale/zh_CN.po index 7b3e84c8f..866c5c6f9 100644 --- a/chirp/locale/zh_CN.po +++ b/chirp/locale/zh_CN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: CHIRP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 18:46-0700\n" +"POT-Creation-Date: 2023-06-28 16:31-0700\n" "PO-Revision-Date: 2022-06-04 02:01+0800\n" "Last-Translator: DuckSoft, BH2UEP \n" "Language: zh_CN\n" @@ -47,7 +47,7 @@ msgstr "...并将区块上移" msgid "%i Memories and shift block up" msgstr "...并将区块上移" -#: ../wxui/main.py:1307 +#: ../wxui/main.py:1347 #, fuzzy, python-format msgid "%s has not been saved. Save before closing?" msgstr "文件已更改,关闭前要保存变更吗?" @@ -56,7 +56,7 @@ msgstr "文件已更改,关闭前要保存变更吗?" msgid "(none)" msgstr "" -#: ../wxui/memedit.py:1787 +#: ../wxui/memedit.py:1791 #, fuzzy, python-format msgid "...and %i more" msgstr "...并将所有存储上移" @@ -593,7 +593,7 @@ msgid "" " click Then" msgstr "" -#: ../drivers/uvk5.py:636 +#: ../drivers/uvk5.py:633 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -604,7 +604,7 @@ msgid "" "attached\n" msgstr "" -#: ../drivers/uvk5.py:643 +#: ../drivers/uvk5.py:640 msgid "" "1. Turn radio on.\n" "2. Connect cable to mic/spkr connector.\n" @@ -614,17 +614,17 @@ msgid "" "It will may not work if you turn on the radio with the cable already attached" msgstr "" -#: ../wxui/main.py:1685 +#: ../wxui/main.py:1719 msgid "" "A new CHIRP version is available. Please visit the website as soon as " "possible to download it!" msgstr "" -#: ../wxui/main.py:859 +#: ../wxui/main.py:894 msgid "About" msgstr "" -#: ../wxui/main.py:1547 +#: ../wxui/main.py:1587 msgid "About CHIRP" msgstr "" @@ -632,12 +632,12 @@ msgstr "" msgid "All" msgstr "全选" -#: ../wxui/main.py:1143 +#: ../wxui/main.py:1178 #, fuzzy msgid "All Files" msgstr "全部文件" -#: ../wxui/main.py:1154 +#: ../wxui/main.py:1189 msgid "All supported formats|" msgstr "" @@ -645,7 +645,7 @@ msgstr "" msgid "Amateur" msgstr "" -#: ../wxui/common.py:497 ../wxui/common.py:523 +#: ../wxui/common.py:499 ../wxui/common.py:525 msgid "An error has occurred" msgstr "发生错误" @@ -657,7 +657,7 @@ msgstr "" msgid "Available modules" msgstr "" -#: ../wxui/main.py:1631 +#: ../wxui/main.py:1665 msgid "Bandplan" msgstr "" @@ -665,7 +665,7 @@ msgstr "" msgid "Bands" msgstr "" -#: ../wxui/main.py:204 +#: ../wxui/main.py:212 msgid "Banks" msgstr "" @@ -673,7 +673,7 @@ msgstr "" msgid "Bin" msgstr "" -#: ../wxui/main.py:215 +#: ../wxui/main.py:223 msgid "Browser" msgstr "浏览器" @@ -691,7 +691,7 @@ msgid "" "Channels with equivalent TX and RX %s are represented by tone mode of \"%s\"" msgstr "" -#: ../wxui/main.py:1142 +#: ../wxui/main.py:1177 msgid "Chirp Image Files" msgstr "" @@ -741,7 +741,7 @@ msgstr "" msgid "Clone completed, checking for spurious bytes" msgstr "" -#: ../wxui/common.py:108 +#: ../wxui/common.py:110 msgid "Cloning" msgstr "正在复制" @@ -755,11 +755,11 @@ msgstr "从电台下载" msgid "Cloning to radio" msgstr "上传到电台" -#: ../wxui/main.py:937 +#: ../wxui/main.py:972 msgid "Close" msgstr "" -#: ../wxui/main.py:938 +#: ../wxui/main.py:973 #, fuzzy msgid "Close file" msgstr "全部文件" @@ -820,12 +820,12 @@ msgid "" "Polarity" msgstr "DTCS 策略" -#: ../wxui/memedit.py:2040 +#: ../wxui/memedit.py:2044 #, fuzzy msgid "DV Memory" msgstr "该存储" -#: ../wxui/main.py:1561 +#: ../wxui/main.py:1601 msgid "Danger Ahead" msgstr "" @@ -838,12 +838,12 @@ msgstr "探测" msgid "Delete" msgstr "删除" -#: ../wxui/main.py:864 +#: ../wxui/main.py:899 #, fuzzy msgid "Developer Mode" msgstr "开发者" -#: ../wxui/main.py:1567 +#: ../wxui/main.py:1607 #, python-format msgid "Developer state is now %s. CHIRP must be restarted to take effect" msgstr "" @@ -852,12 +852,12 @@ msgstr "" msgid "Diff Raw Memories" msgstr "对比原始存储" -#: ../wxui/memedit.py:1965 +#: ../wxui/memedit.py:1969 #, fuzzy msgid "Digital Code" msgstr "数字代码" -#: ../wxui/main.py:1578 +#: ../wxui/main.py:1618 msgid "Disable reporting" msgstr "" @@ -879,16 +879,16 @@ msgstr "" msgid "Double-click to change bank name" msgstr "" -#: ../wxui/main.py:939 +#: ../wxui/main.py:974 msgid "Download" msgstr "" -#: ../wxui/main.py:776 ../wxui/main.py:940 +#: ../wxui/main.py:811 ../wxui/main.py:975 #, fuzzy msgid "Download from radio" msgstr "从电台下载" -#: ../wxui/clone.py:512 +#: ../wxui/clone.py:513 #, fuzzy msgid "Download instructions" msgstr "显示指引" @@ -897,17 +897,17 @@ msgstr "显示指引" msgid "Duplex" msgstr "差频方向" -#: ../wxui/memedit.py:1995 +#: ../wxui/memedit.py:1999 #, python-format msgid "Edit details for %i memories" msgstr "" -#: ../wxui/memedit.py:1993 +#: ../wxui/memedit.py:1997 #, python-format msgid "Edit details for memory %i" msgstr "" -#: ../wxui/main.py:808 +#: ../wxui/main.py:843 msgid "Enable Automatic Edits" msgstr "" @@ -934,11 +934,11 @@ msgstr "" msgid "Enter a new name for bank %s:" msgstr "" -#: ../wxui/clone.py:405 +#: ../wxui/clone.py:406 msgid "Enter custom port:" msgstr "" -#: ../wxui/common.py:316 +#: ../wxui/common.py:318 #, fuzzy, python-format msgid "Erased memory %s" msgstr "正在擦除存储 {loc}" @@ -948,25 +948,25 @@ msgstr "正在擦除存储 {loc}" msgid "Error applying settings" msgstr "设置值有误:%s" -#: ../wxui/clone.py:449 +#: ../wxui/clone.py:450 msgid "Error communicating with radio" msgstr "" -#: ../wxui/clone.py:480 +#: ../wxui/clone.py:481 #, fuzzy msgid "Experimental driver" msgstr "继续使用不稳定的驱动?" -#: ../wxui/memedit.py:1925 +#: ../wxui/memedit.py:1929 msgid "Export can only write CSV files" msgstr "" -#: ../wxui/main.py:672 ../wxui/main.py:1292 +#: ../wxui/main.py:706 ../wxui/main.py:1332 #, fuzzy msgid "Export to CSV" msgstr "导出到文件" -#: ../wxui/memedit.py:2029 +#: ../wxui/memedit.py:2033 msgid "Extra" msgstr "" @@ -978,13 +978,13 @@ msgstr "" msgid "Features" msgstr "" -#: ../wxui/main.py:534 +#: ../wxui/main.py:542 #, python-format msgid "File does not exist: %s" msgstr "" -#: ../wxui/main.py:1146 ../wxui/main.py:1223 ../wxui/main.py:1233 -#: ../wxui/main.py:1288 ../wxui/main.py:1513 ../wxui/main.py:1514 +#: ../wxui/main.py:1181 ../wxui/main.py:1262 ../wxui/main.py:1272 +#: ../wxui/main.py:1328 ../wxui/main.py:1553 ../wxui/main.py:1554 #, fuzzy msgid "Files" msgstr "文件 (_F)" @@ -997,17 +997,17 @@ msgstr "" msgid "Filter results with location matching this string" msgstr "" -#: ../wxui/main.py:1362 +#: ../wxui/main.py:1402 #, fuzzy msgid "Find" msgstr "RFinder" -#: ../wxui/main.py:730 +#: ../wxui/main.py:765 #, fuzzy msgid "Find Next" msgstr "RFinder" -#: ../wxui/common.py:318 +#: ../wxui/common.py:320 #, python-format msgid "Finished radio job %s" msgstr "" @@ -1241,16 +1241,16 @@ msgstr "" msgid "If set, sort results by distance from these coordinates" msgstr "" -#: ../wxui/main.py:1278 +#: ../wxui/main.py:1318 msgid "Import" msgstr "导入" -#: ../wxui/main.py:666 +#: ../wxui/main.py:700 #, fuzzy msgid "Import from file" msgstr "导入自文件" -#: ../wxui/main.py:1276 +#: ../wxui/main.py:1316 msgid "Import not recommended" msgstr "" @@ -1258,7 +1258,7 @@ msgstr "" msgid "Index" msgstr "索引" -#: ../wxui/main.py:217 +#: ../wxui/main.py:225 msgid "Info" msgstr "" @@ -1276,7 +1276,7 @@ msgstr "上方插入一行" msgid "Install desktop icon?" msgstr "" -#: ../wxui/main.py:848 +#: ../wxui/main.py:883 msgid "Interact with driver" msgstr "" @@ -1289,12 +1289,12 @@ msgstr "无效值。必须为整数。" msgid "Invalid ZIP code" msgstr "" -#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2120 +#: ../wxui/memedit.py:1313 ../wxui/memedit.py:2124 #, fuzzy, python-format msgid "Invalid edit: %s" msgstr "设置值无效:%s" -#: ../wxui/main.py:1510 +#: ../wxui/main.py:1550 msgid "Invalid or unsupported module file" msgstr "" @@ -1307,7 +1307,7 @@ msgstr "%s 值无效" msgid "Issue number:" msgstr "" -#: ../wxui/main.py:335 +#: ../wxui/main.py:343 msgid "LIVE" msgstr "" @@ -1332,16 +1332,16 @@ msgstr "" msgid "Limit results to this distance (km) from coordinates" msgstr "" -#: ../wxui/main.py:678 +#: ../wxui/main.py:712 msgid "Load Module" msgstr "加载模块" -#: ../wxui/main.py:896 ../wxui/developer.py:487 +#: ../wxui/main.py:931 ../wxui/developer.py:487 #, fuzzy msgid "Load module from issue" msgstr "加载模块" -#: ../wxui/main.py:1517 +#: ../wxui/main.py:1557 msgid "" "Loading modules can be extremely dangerous, leading to damage to your " "computer, radio, or both. NEVER load a module from a source you do not " @@ -1359,7 +1359,7 @@ msgstr "" msgid "Longitude" msgstr "" -#: ../wxui/main.py:196 +#: ../wxui/main.py:204 msgid "Memories" msgstr "存储" @@ -1382,7 +1382,7 @@ msgstr "" msgid "Mode" msgstr "制式" -#: ../wxui/clone.py:246 +#: ../wxui/clone.py:247 msgid "Model" msgstr "型号" @@ -1391,21 +1391,21 @@ msgstr "型号" msgid "Modes" msgstr "制式" -#: ../wxui/main.py:1514 +#: ../wxui/main.py:1554 #, fuzzy msgid "Module" msgstr "模块" -#: ../wxui/main.py:1486 +#: ../wxui/main.py:1526 #, fuzzy msgid "Module Loaded" msgstr "模块" -#: ../wxui/main.py:1617 +#: ../wxui/main.py:1651 msgid "Module loaded successfully" msgstr "" -#: ../wxui/clone.py:374 +#: ../wxui/clone.py:375 #, python-format msgid "More than one port found: %s" msgstr "" @@ -1420,11 +1420,11 @@ msgstr "下移 (_N)" msgid "Move Up" msgstr "上移 (_U)" -#: ../wxui/main.py:613 +#: ../wxui/main.py:647 msgid "New Window" msgstr "" -#: ../wxui/main.py:1687 +#: ../wxui/main.py:1721 #, fuzzy msgid "New version available" msgstr "CHIRP 新版本可用:{ver}。" @@ -1463,40 +1463,45 @@ msgstr "" msgid "Only certain modes" msgstr "" -#: ../wxui/main.py:317 +#: ../wxui/main.py:325 msgid "Only memory tabs may be exported" msgstr "" -#: ../wxui/main.py:933 ../wxui/main.py:1278 +#: ../wxui/main.py:968 ../wxui/main.py:1318 msgid "Open" msgstr "" -#: ../wxui/main.py:653 +#: ../wxui/main.py:687 #, fuzzy msgid "Open Recent" msgstr "打开最近 (_R)" -#: ../wxui/main.py:624 +#: ../wxui/main.py:658 msgid "Open Stock Config" msgstr "打开库存配置" -#: ../wxui/main.py:934 ../wxui/main.py:1157 +#: ../wxui/main.py:969 ../wxui/main.py:1192 #, fuzzy msgid "Open a file" msgstr "打开最近的文件" -#: ../wxui/main.py:1532 +#: ../wxui/main.py:1572 msgid "Open a module" msgstr "" -#: ../wxui/main.py:885 +#: ../wxui/main.py:920 msgid "Open debug log" msgstr "" -#: ../wxui/main.py:504 +#: ../wxui/main.py:512 msgid "Open in new window" msgstr "" +#: ../wxui/main.py:604 +#, fuzzy +msgid "Open stock config directory" +msgstr "打开库存配置 {name}" + #: ../wxui/query_sources.py:298 msgid "Optional: -122.0000" msgstr "" @@ -1514,7 +1519,7 @@ msgstr "" msgid "Optional: County, Hospital, etc" msgstr "" -#: ../wxui/memedit.py:1742 +#: ../wxui/memedit.py:1746 #, fuzzy msgid "Overwrite memories?" msgstr "要覆盖吗?" @@ -1530,27 +1535,32 @@ msgstr "" msgid "Paste" msgstr "粘贴" -#: ../wxui/memedit.py:1736 +#: ../wxui/memedit.py:1740 #, python-format msgid "Pasted memories will overwrite %i existing memories" msgstr "" -#: ../wxui/memedit.py:1739 +#: ../wxui/memedit.py:1743 #, python-format msgid "Pasted memories will overwrite memories %s" msgstr "" -#: ../wxui/memedit.py:1733 +#: ../wxui/memedit.py:1737 #, python-format msgid "Pasted memories will overwrite memory %i" msgstr "" -#: ../wxui/memedit.py:1730 +#: ../wxui/memedit.py:1734 #, python-format msgid "Pasted memory will overwrite memory %i" msgstr "" -#: ../wxui/main.py:1691 +#: ../wxui/common.py:564 +#, python-format +msgid "Path %s does not exist" +msgstr "" + +#: ../wxui/main.py:1725 msgid "Please be sure to quit CHIRP before installing the new version!" msgstr "" @@ -1580,7 +1590,7 @@ msgid "" " (At the end radio will beep)\n" msgstr "" -#: ../wxui/main.py:1555 +#: ../wxui/main.py:1595 msgid "" "Please note that developer mode is intended for use by developers of the " "CHIRP project, or under the direction of a developer. It enables behaviors " @@ -1588,15 +1598,15 @@ msgid "" "EXTREME care. You have been warned! Proceed anyway?" msgstr "" -#: ../wxui/common.py:181 +#: ../wxui/common.py:183 msgid "Please wait" msgstr "" -#: ../wxui/clone.py:351 +#: ../wxui/clone.py:352 msgid "Plug in your cable and then click OK" msgstr "" -#: ../wxui/clone.py:239 +#: ../wxui/clone.py:240 msgid "Port" msgstr "端口" @@ -1609,7 +1619,7 @@ msgstr "功率" msgid "Press enter to set this in memory" msgstr "设置存储时出错" -#: ../wxui/main.py:689 +#: ../wxui/main.py:723 msgid "Print Preview" msgstr "" @@ -1621,12 +1631,12 @@ msgstr "" msgid "Properties" msgstr "属性" -#: ../wxui/main.py:1645 +#: ../wxui/main.py:1679 #, fuzzy, python-format msgid "Query %s" msgstr "查询失败" -#: ../wxui/main.py:790 +#: ../wxui/main.py:825 #, fuzzy msgid "Query Source" msgstr "查询数据源" @@ -1636,7 +1646,7 @@ msgstr "查询数据源" msgid "RX DTCS" msgstr "DTCS 接收代码" -#: ../wxui/main.py:904 +#: ../wxui/main.py:939 msgid "Radio" msgstr "电台" @@ -1645,7 +1655,7 @@ msgstr "电台" msgid "Radio did not ack block %i" msgstr "" -#: ../wxui/clone.py:504 ../wxui/clone.py:569 +#: ../wxui/clone.py:505 ../wxui/clone.py:570 #, fuzzy msgid "Radio information" msgstr "{information}" @@ -1661,16 +1671,16 @@ msgstr "" msgid "RadioReference Canada requires a login before you can query" msgstr "" -#: ../wxui/common.py:308 +#: ../wxui/common.py:310 #, fuzzy, python-format msgid "Refreshed memory %s" msgstr "这些存储" -#: ../wxui/main.py:825 +#: ../wxui/main.py:860 msgid "Reload Driver" msgstr "" -#: ../wxui/main.py:834 +#: ../wxui/main.py:869 msgid "Reload Driver and File" msgstr "" @@ -1678,49 +1688,49 @@ msgstr "" msgid "Rename bank" msgstr "" -#: ../wxui/main.py:873 +#: ../wxui/main.py:908 #, fuzzy msgid "Reporting enabled" msgstr "报告已禁用" -#: ../wxui/main.py:1574 +#: ../wxui/main.py:1614 msgid "" "Reporting helps the CHIRP project know which radio models and OS platforms " "to spend our limited efforts on. We would really appreciate if you left it " "enabled. Really disable reporting?" msgstr "" -#: ../wxui/main.py:1569 +#: ../wxui/main.py:1609 msgid "Restart Required" msgstr "" -#: ../wxui/main.py:634 +#: ../wxui/main.py:668 #, python-format msgid "Restore %i tabs" msgstr "" -#: ../wxui/common.py:312 +#: ../wxui/common.py:314 msgid "Retrieved settings" msgstr "" -#: ../wxui/main.py:935 +#: ../wxui/main.py:970 msgid "Save" msgstr "" -#: ../wxui/main.py:1309 +#: ../wxui/main.py:1349 msgid "Save before closing?" msgstr "" -#: ../wxui/main.py:936 ../wxui/main.py:1237 +#: ../wxui/main.py:971 ../wxui/main.py:1276 msgid "Save file" msgstr "" -#: ../wxui/common.py:314 +#: ../wxui/common.py:316 #, fuzzy msgid "Saved settings" msgstr "设置" -#: ../wxui/main.py:815 +#: ../wxui/main.py:850 #, fuzzy msgid "Select Bandplan" msgstr "全选" @@ -1735,7 +1745,7 @@ msgstr "选择列" msgid "Select Modes" msgstr "选择列" -#: ../wxui/main.py:1630 +#: ../wxui/main.py:1664 msgid "Select a bandplan" msgstr "" @@ -1743,7 +1753,7 @@ msgstr "" msgid "Service" msgstr "" -#: ../wxui/main.py:209 +#: ../wxui/main.py:217 msgid "Settings" msgstr "设置" @@ -1751,7 +1761,7 @@ msgstr "设置" msgid "Show Raw Memory" msgstr "显示原始存储" -#: ../wxui/main.py:891 +#: ../wxui/main.py:926 msgid "Show debug log location" msgstr "" @@ -1759,12 +1769,12 @@ msgstr "" msgid "Show extra fields" msgstr "" -#: ../wxui/memedit.py:1791 +#: ../wxui/memedit.py:1795 #, fuzzy msgid "Some memories are incompatible with this radio" msgstr "粘贴的存储 {number} 与此电台不兼容,原因:" -#: ../wxui/memedit.py:1686 +#: ../wxui/memedit.py:1687 msgid "Some memories are not deletable" msgstr "" @@ -1800,7 +1810,7 @@ msgstr "" msgid "State/Province" msgstr "" -#: ../wxui/main.py:1618 +#: ../wxui/main.py:1652 msgid "Success" msgstr "" @@ -1827,7 +1837,7 @@ msgid "" "download to a CHIRP Radio Images (*.img) file.\n" msgstr "" -#: ../wxui/main.py:1269 +#: ../wxui/main.py:1309 #, python-format msgid "" "The recommended procedure for importing memories is to open the source file " @@ -1906,12 +1916,12 @@ msgstr "接收亚音频" msgid "Tuning Step" msgstr "调谐间隔" -#: ../wxui/clone.py:345 ../wxui/clone.py:352 ../wxui/clone.py:363 -#: ../wxui/clone.py:371 ../wxui/clone.py:375 +#: ../wxui/clone.py:346 ../wxui/clone.py:353 ../wxui/clone.py:364 +#: ../wxui/clone.py:372 ../wxui/clone.py:376 msgid "USB Port Finder" msgstr "" -#: ../wxui/clone.py:361 +#: ../wxui/clone.py:362 msgid "" "Unable to determine port for your cable. Check your drivers and connections." msgstr "" @@ -1920,12 +1930,12 @@ msgstr "" msgid "Unable to edit memory before radio is loaded" msgstr "" -#: ../wxui/main.py:1195 +#: ../wxui/main.py:1234 #, python-format msgid "Unable to find stock config %r" msgstr "" -#: ../wxui/common.py:214 +#: ../wxui/common.py:216 #, fuzzy msgid "Unable to open the clipboard" msgstr "无法打开此镜像:型号不支持" @@ -1937,7 +1947,7 @@ msgid "" "model and try again." msgstr "" -#: ../wxui/main.py:1610 +#: ../wxui/common.py:571 #, fuzzy, python-format msgid "Unable to reveal %s on this system" msgstr "无法变更此型号电台" @@ -1951,30 +1961,30 @@ msgstr "无法变更此型号电台" msgid "United States" msgstr "" -#: ../wxui/clone.py:344 +#: ../wxui/clone.py:345 msgid "Unplug your cable (if needed) and then click OK" msgstr "" -#: ../wxui/clone.py:584 +#: ../wxui/clone.py:585 #, fuzzy msgid "Upload instructions" msgstr "{instructions}" -#: ../wxui/main.py:784 ../wxui/main.py:942 +#: ../wxui/main.py:819 ../wxui/main.py:977 #, fuzzy msgid "Upload to radio" msgstr "上传到电台" -#: ../wxui/common.py:310 +#: ../wxui/common.py:312 #, python-format msgid "Uploaded memory %s" msgstr "" -#: ../wxui/main.py:752 +#: ../wxui/main.py:787 msgid "Use fixed-width font" msgstr "" -#: ../wxui/main.py:760 +#: ../wxui/main.py:795 msgid "Use larger font" msgstr "" @@ -1983,12 +1993,12 @@ msgstr "" msgid "Value does not fit in %i bits" msgstr "" -#: ../wxui/common.py:420 +#: ../wxui/common.py:422 #, python-format msgid "Value must be at least %.4f" msgstr "" -#: ../wxui/common.py:424 +#: ../wxui/common.py:426 #, python-format msgid "Value must be at most %.4f" msgstr "" @@ -2002,11 +2012,11 @@ msgstr "" msgid "Value must be zero or greater" msgstr "" -#: ../wxui/clone.py:242 +#: ../wxui/clone.py:243 msgid "Vendor" msgstr "厂商" -#: ../wxui/main.py:903 +#: ../wxui/main.py:938 #, fuzzy msgid "View" msgstr "查看 (_V)" @@ -2020,7 +2030,7 @@ msgstr "" msgid "Warning: %s" msgstr "" -#: ../wxui/main.py:421 +#: ../wxui/main.py:429 msgid "Welcome" msgstr "" @@ -2028,7 +2038,7 @@ msgstr "" msgid "Would you like CHIRP to install a desktop icon for you?" msgstr "" -#: ../wxui/clone.py:369 +#: ../wxui/clone.py:370 msgid "Your cable appears to be on port:" msgstr "" @@ -2044,12 +2054,12 @@ msgstr "" msgid "bytes each" msgstr "" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 #, fuzzy msgid "disabled" msgstr "已启用" -#: ../wxui/main.py:1552 +#: ../wxui/main.py:1592 #, fuzzy msgid "enabled" msgstr "已启用" @@ -2379,10 +2389,6 @@ msgstr "" #~ msgid "Note:" #~ msgstr "注意:" -#, python-brace-format -#~ msgid "Open stock configuration {name}" -#~ msgstr "打开库存配置 {name}" - #~ msgid "Other" #~ msgstr "其他"