diff --git a/lib/logitech_receiver/settings_templates.py b/lib/logitech_receiver/settings_templates.py index 6941c61660..c661e5b9af 100644 --- a/lib/logitech_receiver/settings_templates.py +++ b/lib/logitech_receiver/settings_templates.py @@ -327,8 +327,10 @@ class OnboardProfiles(_Setting): class ReportRate(_Setting): name = 'report_rate' - label = _('Polling Rate') - description = (_('Frequency of device polling') + '\n' + _('May need Onboard Profiles set to Disable to be effective.')) + label = _('Report Rate') + description = ( + _('Frequency of device movement reports') + '\n' + _('May need Onboard Profiles set to Disable to be effective.') + ) feature = _F.REPORT_RATE rw_options = {'read_fnid': 0x10, 'write_fnid': 0x20} choices_universe = _NamedInts() @@ -367,8 +369,10 @@ def build(cls, setting_class, device): class ExtendedReportRate(_Setting): name = 'report_rate_extended' - label = _('Polling Frequency') - description = (_('Frequency of device polling') + '\n' + _('May need Onboard Profiles set to Disable to be effective.')) + label = _('Report Rate') + description = ( + _('Frequency of device movement reports') + '\n' + _('May need Onboard Profiles set to Disable to be effective.') + ) feature = _F.EXTENDED_ADJUSTABLE_REPORT_RATE rw_options = {'read_fnid': 0x20, 'write_fnid': 0x30} choices_universe = _NamedInts() diff --git a/lib/solaar/cli/show.py b/lib/solaar/cli/show.py index 3b9eaee3fa..c8c0235411 100644 --- a/lib/solaar/cli/show.py +++ b/lib/solaar/cli/show.py @@ -102,7 +102,7 @@ def _print_device(dev, num=None): else: print(' Protocol : unknown (device is offline)') if dev.polling_rate: - print(' Polling rate :', dev.polling_rate) + print(' Report Rate :', dev.polling_rate) print(' Serial number:', dev.serial) if dev.modelId: print(' Model ID: ', dev.modelId) @@ -218,7 +218,7 @@ def _print_device(dev, num=None): unitId, modelId, tid_map = ids print(' Unit ID: %s Model ID: %s Transport IDs: %s' % (unitId, modelId, tid_map)) elif feature == _hidpp20.FEATURE.REPORT_RATE or feature == _hidpp20.FEATURE.EXTENDED_ADJUSTABLE_REPORT_RATE: - print(' Polling Rate: %s' % _hidpp20.get_polling_rate(dev)) + print(' Report Rate: %s' % _hidpp20.get_polling_rate(dev)) elif feature == _hidpp20.FEATURE.REMAINING_PAIRING: print(' Remaining Pairings: %d' % _hidpp20.get_remaining_pairing(dev)) elif feature == _hidpp20.FEATURE.ONBOARD_PROFILES: