Skip to content

Commit

Permalink
Updated the localization files
Browse files Browse the repository at this point in the history
  • Loading branch information
SNeicer committed Jan 10, 2024
1 parent a1c6ae4 commit 38b3d07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Localization/English.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ UI:
combox_stopType_free : "Free stop"
combox_stopType_strict : "Strict stop"
combox_stopType_password : "Password stop"
gbox_passwordStop_na : "Password (Currently: N/A)"
gbox_passwordStop_na : "Password (Currently: No)"
gbox_passwordStop_set : "Password (Currently: Set!)"
btn_stopPasswordSet : "Set"

Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ def updateGroupStates(self) -> None: # Enables or disables certain ui groups aft
self.gbox_adv_refreshRate.setEnabled(self.rbtn_fixedRefreshRate.isChecked())
self.ledit_customRedirect.setText(config['PREFERENCES_WEBSITE_REDIR']['custom_url'])

if config['ADVANCED_STOP_MODE']['stop_password'] == "":
if config['ADVANCED_STOP_MODE']['stop_password'] == "None":
self.gbox_passwordStop.setTitle(self.loc_file['UI']['gbox_passwordStop_na'])
else:
self.gbox_passwordStop.setTitle(self.loc_file['UI']['gbox_passwordStop_set'])
Expand Down

0 comments on commit 38b3d07

Please sign in to comment.