nextcloud/build/translation-checker.php
Joas Schilling a33310f1b1
Add debug flag to the translation checker
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-06-07 17:09:46 +02:00

84 rindas
2.4 KiB
PHP
Neapstrādāts Vainot Vēsture

Šis fails satur neviennozīmīgus unikoda simbolus

Šis fails satur unikoda simbolus, kas var tikt sajauktas ar citām rakstzīmēm. Ja šķiet, ka tas ir ar nolūku, šo brīdinājumu var droši neņemt vērā. Jāizmanto atsoļa taustiņš (Esc), lai atklātu tās.

<?php
/**
* @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
$directories = [
__DIR__ . '/../core/l10n',
];
$isDebug = in_array('--debug', $argv, true) || in_array('-d', $argv, true);
$apps = new \DirectoryIterator(__DIR__ . '/../apps');
foreach ($apps as $app) {
if (!file_exists($app->getPathname() . '/l10n')) {
continue;
}
$directories[] = $app->getPathname() . '/l10n';
}
$errors = [];
$valid = 0;
foreach ($directories as $dir) {
if (!file_exists($dir)) {
continue;
}
$directory = new \DirectoryIterator($dir);
foreach ($directory as $file) {
if ($file->getExtension() !== 'json') {
continue;
}
$content = file_get_contents($file->getPathname());
$json = json_decode($content, true);
$translations = json_encode($json['translations']);
if (strpos($translations, '|') !== false) {
$errors[] = $file->getPathname() . "\n" . ' ' . 'Contains a | in the translations.' . "\n";
}
if (json_last_error() !== JSON_ERROR_NONE) {
$errors[] = $file->getPathname() . "\n" . ' ' . json_last_error_msg() . "\n";
} else {
$valid++;
}
if ($isDebug && $file->getFilename() === 'en_GB.json') {
$sourceStrings = json_encode(array_keys($json['translations']));
if (strpos($sourceStrings, '\u2019') !== false) {
$errors[] = $file->getPathname() . "\n"
. ' ' . 'Contains a unicode single quote "" in the english source string, please replace with normal single quotes.' . "\n"
. ' ' . 'Please note that this only updates after a sync to transifex.' . "\n";
}
}
}
}
if (count($errors) > 0) {
echo sprintf('ERROR: There were %d errors:', count($errors)) . "\n\n";
echo implode("\n", $errors);
exit(1);
}
echo 'OK: ' . $valid . ' files parse' . "\n";
exit(0);