mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-04-26 00:01:59 +08:00
Introduces typos spell checker to pre-commit and fixes found issues. This also looks inside method or class names so provides better error checking than codespell. Besides method namings, this also discovered few real bugs (such as invalid validation error raised in the API).
11 lines
197 B
Bash
Executable file
11 lines
197 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Copyright © Michal Čihař <michal@weblate.org>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# Generates .mo files used for runtime translating Weblate
|
|
|
|
set -e
|
|
|
|
./setup.py build_mo
|