Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dforsi committed Aug 24, 2024
1 parent 02f2d72 commit 3493e5c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion chirp/drivers/ksun_m6.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def get_settings(self):

led = settings.led
rsv = RadioSettingValueList(LED_LIST, LED_LIST[led])
rs = RadioSetting("led", "LED brighness", rsv)
rs = RadioSetting("led", "LED brightness", rsv)
basic.append(rs)

led_timeout = settings.led_timeout
Expand Down
2 changes: 1 addition & 1 deletion chirp/drivers/radioddity_r2.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def _r2_enter_programming_mode(radio):
raise errors.RadioError("Error communicating with radio 2")

# The latest Retevis RT24 (and likely the RT24V and H777S) models no
# longer acknowlege the CMD_ACK above so the 'ack' will be empty and
# longer acknowledge the CMD_ACK above so the 'ack' will be empty and
# fail the check causing cloning to fail.
#
# The factory CPS continues with or without an ack so CHIRP will
Expand Down
2 changes: 1 addition & 1 deletion chirp/drivers/retevis_ra87.py
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@ def get_settings(self):
# menu 17 - APO
options = ["Off", "30", "60", "90", "120", "180"]
rs = RadioSettingValueList(options, options[_settings.apo])
rset = RadioSetting("apo", "Automaitc Power Off [min]", rs)
rset = RadioSetting("apo", "Automatic Power Off [min]", rs)
rset.set_doc("Menu 17")
basic.append(rset)

Expand Down
4 changes: 2 additions & 2 deletions chirp/drivers/th_uv88.py
Original file line number Diff line number Diff line change
Expand Up @@ -1010,7 +1010,7 @@ def get_settings(self):
def _name_apply(setting, obj1, atrb1, obj2, atrb2):
# Store a trunctaded version avec the first line
# in basicsettings.intrScreen1. The original
# do this for an unkown reason
# do this for an unknown reason
setattr(obj1, atrb1, str(setting.value)[:12])
setattr(obj2, atrb2, setting.value)
return
Expand All @@ -1036,7 +1036,7 @@ def _char_to_name(name):
rx.set_validate_callback(_name_validate)
rset = RadioSetting("openradioname.name1", "Intro Line 1", rx)

# On model others than RA89 store a trunctated name1 into
# On model others than RA89 store a truncated name1 into
# basicsettings
if self.MODEL != "RA89":
rset.set_apply_callback(_name_apply, _settings, "introScreen1",
Expand Down
2 changes: 1 addition & 1 deletion chirp/wxui/bugreport.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def _build(self, vbox):
self,
_('The debug log file is not available when CHIRP is run '
'interactively from the command-line. Thus, this tool will '
'not upload what you expect. It is recomended that you '
'not upload what you expect. It is recommended that you '
'quit now and run CHIRP non-interactively (or with stdin '
'redirected to /dev/null)'),
_('Warning'),
Expand Down

0 comments on commit 3493e5c

Please sign in to comment.