Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #5

Merged
merged 1 commit into from
Aug 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [2.0.0] - 2023-06-17

**First** oficial version of **Cavasik**.
**First** official version of **Cavasik**.

### Added

Expand All @@ -28,7 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **FPS** configuration option.

### Changed
- Keyboard shorcuts (some removed, some added)
- Keyboard shortcuts (some removed, some added)

### Fixed
- No fixes
Expand Down
2 changes: 1 addition & 1 deletion SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Please **read** through the following **guidelines**.
## Issues [[↑][index]]

If you are facing a **issue** or bug with the **Cavasik** application, you can **report it** through the [issues page][issues].
In said page you can report from **bugs** to possible **enhacements**, so feel free to do so!
In said page you can report from **bugs** to possible **enhancements**, so feel free to do so!

## Discussions [[↑][index]]

Expand Down
2 changes: 1 addition & 1 deletion src/settings_import_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def import_settings(window, path):
subprocess.run(['gsettings', 'set', \
'io.github.TheWisker.Cavasik', line.split(' ')[0], \
line.replace(line.split(' ')[0], '').strip()])
toast_msg = _('Settings sucessfully imported')
toast_msg = _('Settings successfully imported')

except Exception as e:
print('Can\'t import settings from file: ' + path)
Expand Down
2 changes: 1 addition & 1 deletion utils/flatpak-pip-generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def fprint(string: str) -> None:
req_file.write('\n'.join(opts.packages))
requirements_file = req_file.name
else:
exit('Please specifiy either packages or requirements file argument')
exit('Please specify either packages or requirements file argument')

for i in packages:
if i["name"].lower().startswith("pyqt"):
Expand Down