Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVojtech Bubnik <bubnikv@gmail.com>2022-01-27 17:59:25 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2022-01-27 17:59:39 +0300
commit38af8c5563585d1b38def171733ab7b2c0c00149 (patch)
tree19e199012c439aa26159bf598ad616d8924d558c /CMakeLists.txt
parenta690f7825cb789c2c644ac39a506c3ced3310700 (diff)
Fixed wording inside a CMAke comment
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a37e7a1b9..8557ab0d7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -496,7 +496,7 @@ foreach(po_file ${L10N_PO_FILES})
add_custom_command(
TARGET gettext_merge_po_with_pot PRE_BUILD
COMMAND msgmerge -N -o ${po_file} ${po_file} "${L10N_DIR}/PrusaSlicer.pot"
- # delete obsolit lines from resulting PO to avoid conflicts after a merging of it with wxWidgets.po
+ # delete obsolete lines from resulting PO to avoid conflicts after a merging of it with wxWidgets.po
COMMAND msgattrib --no-obsolete -o ${po_file} ${po_file}
DEPENDS ${po_file}
)
@@ -516,7 +516,7 @@ foreach(po_file ${L10N_PO_FILES})
add_custom_command(
TARGET gettext_concat_wx_po_with_po PRE_BUILD
COMMAND msgcat --use-first -o ${po_file} ${po_file} ${wx_po_file}
- # delete obsolit lines from resulting PO
+ # delete obsolete lines from resulting PO
COMMAND msgattrib --no-obsolete -o ${po_file} ${po_file}
DEPENDS ${po_file}
)