Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustry committed Dec 7, 2023
1 parent 9570c9c commit 00a4fb7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lizmap/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -3138,9 +3138,9 @@ def project_config_file(
mode = tr('beginner') if beginner_mode else tr('normal')
if self.dlg.check_results.has_blocking():
msg = tr(
'You are using "{mode}" mode and you have some <strong>blocking</strong> checks.').format(mode=mode)
'You are using the "{mode}" mode and you have some <strong>blocking</strong> checks.').format(mode=mode)
else:
msg = tr('You are using "{mode}"').format(mode=mode)
msg = tr('You are using the "{mode}" mode.').format(mode=mode)
self.dlg.label_check_resume.setText(msg)

self.dlg.auto_fix_tooltip(is_lizmap_cloud(server_metadata))
Expand Down Expand Up @@ -3314,8 +3314,8 @@ def project_config_file(
'An error has been raised while saving table "{name}", maybe it was due to invalid layers ?'
).format(name=key) + '\n\n'
+ tr(
'If yes, saving CFG file with invalid layers in the legend is not currently supported by '
'the plugin.'
'If yes, saving the Lizmap configuration file with invalid layers in the legend is not '
'currently supported by the plugin.'
) + '\n\n'
+ tr(
'If not, it was a bug, please report it. The process is stopping.'
Expand Down

0 comments on commit 00a4fb7

Please sign in to comment.