Skip to content

Latest commit

 

History

History
74 lines (60 loc) · 2.33 KB

CHANGELOG.md

File metadata and controls

74 lines (60 loc) · 2.33 KB

Changelog

v0.1.0 (24.09.2022)

Documenting:

  • Documented new functionality
  • Updated the README.md

Enhancements:

  • Rewritten functionality:
    • def get_doc()
    • def optimize_origin_doc()
    • def optimize_translated_doc()
    • def split_doc()
    • def join_docs()
    • def translate_docs(translatable_docs: str) -> str
  • Renamed:
    • optimize_origin_doc() on optimize_doc()
    • optimize_translated_doc() on restoration_doc()
    • translate_docs() on translate_doc_segment()
  • Implemented new functionality:
    • def tagging()
    • def untagging()
    • def translate_docs()
    • def start_global_translate() -> bool
  • Combined all functionality into a single class - DoxDocsTranslator

v0.0.1 (18.09.2022)

Release

  • A script has been released that has the basic functionality of bringing the documentation to the translation form, and the functionality of translating the documentation itself. The script is semi-automatic, as it does not collect the given translated documentation into its original form. List of implemented functions:
    • def get_doc(name_file: str) -> str
    • optimize_origin_doc(doc: str) -> str
    • def split_doc(doc: str) -> list[str]
    • def translate_docs(origin_docs: list[str], from_lang: str, to_lang: str) -> list[str]
    • def join_docs(translated_docs: list[str]) -> str
    • def optimize_translated_doc(doc: str) -> str
    • def save_doc(doc: str, name_file: str)