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

Feature/e #4031

Closed
wants to merge 2 commits into from
Closed
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 Browser/entry/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def cli(ctx, silent):

transform will run Robotidy with Browser library transformer and handle keyword deprecations.

translation will generate detaul tranlsation json file from library keywords.
translation will generate default translation json file from library keywords.

See each command argument help for more details what (optional) arguments that command supports.
"""
Expand Down Expand Up @@ -653,7 +653,7 @@ def convert_options_types(options: list[str], browser_lib: "Browser"):
default=False,
)
def transform(path: Path, wait_until_network_is_idle: bool):
"""Runs Robotidy with Browser library transofrormer.
"""Runs Robotidy with Browser library transformer.

This will help users to convert automatically deprecated to new ones. Conversion
is not allways possible and to perform automatically and always reguires human
Expand Down
2 changes: 1 addition & 1 deletion Browser/entry/translation.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
DOC_CHANGED = "Documentation update needed"
NO_LIB_KEYWORD = "Keyword not found from library"
MISSING_TRANSLATION = "Keyword is missing translation"
MISSING_CHECKSUM = "Keyword tranlsaton is missing checksum"
MISSING_CHECKSUM = "Keyword translation is missing checksum"
MAX_REASON_LEN = max(
len(DOC_CHANGED),
len(NO_LIB_KEYWORD),
Expand Down
Loading