Skip to content

Commit

Permalink
slugify fix
Browse files Browse the repository at this point in the history
  • Loading branch information
signedav committed Oct 9, 2023
1 parent c6f7053 commit f1fdbc0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/.utils/transifex_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def create_transifex_config():
# Get relative path of file
relative_path = os.path.relpath(file, start=root)

tx_slug = slugify(relative_path)
tx_slug = slugify(os.path.splitext(relative_path)[0])

if tx_slug:
print(f"Found file with tx_slug defined: {relative_path}, {tx_slug}")
Expand Down
2 changes: 1 addition & 1 deletion docs/background_info/extended_models_optimization.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
If a model or topic contains extended classes, the inclusive base classes are implemented in the physical database. The users only want to see, what is relevant for them and mostly work on the most extended instance of the topics/classes. Model Baker detects the ***irrelevant*** tables and offers optimization strategies to the users on ***smart1intehritance*** implementations.

In the [workflow wizard](../../user_guide/import_workflow/#optimize-qgis-project-if-extended) you can choose the optimization [strategy]([corresponding chapter](../../background_info/extended_models_optimization/#strategies) and receive a nicely prepared layertree and forms.
In the [workflow wizard](../../user_guide/import_workflow/#optimize-qgis-project-if-extended) you can choose the optimization [strategy](../../background_info/extended_models_optimization/#strategies) and receive a nicely prepared layertree and forms.

But what is done in the backend?

Expand Down

0 comments on commit f1fdbc0

Please sign in to comment.