14 lines
278 B
Bash
Executable File
14 lines
278 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#
|
|
# Perform all tests for the translation files.
|
|
#
|
|
# Usage:
|
|
# ./scripts/checkTranslations.sh
|
|
#
|
|
|
|
|
|
# Test that keys used in Java files are present in English messages
|
|
find src/ -name "*.java" -exec ./scripts/verifyTranslationKeys.pl l10n/messages.properties {} +
|
|
|