Skip to content

Commit

Permalink
Fix typo about previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustry committed Oct 25, 2023
1 parent 0066030 commit 31daedf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lizmap/dialogs/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ def fix_project_estimated_md(self):
def fix_project_trust(self):
""" Fix the current project trust metadata. """
project_trust_layer_metadata(self.project, True)
self.display_message_bar(tr("Trust metadata"), tr('Trust metadata is enabled'), Qgis.Success)
self.display_message_bar(tr("Trust project"), tr('Trust project is enabled'), Qgis.Success)

def fix_simplify_geom_provider(self):
""" Fix the current layers simplify geom. """
Expand Down
4 changes: 2 additions & 2 deletions lizmap/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -3035,10 +3035,10 @@ def project_config_file(
if with_gui and error_cfg_saving and not ignore_error:
self.dlg.log_panel.append(tr('Issues which can be fixed automatically'), Html.H2)
self.dlg.log_panel.append(tr(
'You have issue(s) listed above, and there is a wizard to auto fix your project. Saving the'
'You have issue(s) listed above, and there is a wizard to auto fix your project. Saving the '
'configuration file is stopping.'), Html.Strong)
self.dlg.display_message_bar(
"Error", tr('You must fix some issues about the project'), Qgis.Critical)
"Error", tr('You must fix some issues about this project'), Qgis.Critical)
return None

metadata = {
Expand Down

0 comments on commit 31daedf

Please sign in to comment.