Translated using Weblate (Interlingua)
[phpmyadmin.git] / scripts / advisor2po
blobb7f73b394df900872567b135cd2838518e564d3a
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4 ft=php: */
3 /**
4  * Script to parse advisor rules and output them as PHP code which can be used 
5  * by gettext for generating po(t) files.
6  */
8 function format_string($str) {
9     return addcslashes(Advisor::escapePercent($str), '"\\');
12 $messages = array();
13 $locations = array();
15 function add_message($rules, $idx, $type) {
16     global $messages, $locations;
17     // Get message text
18     if ($type == 'justification') {
19         $msgs = Advisor::splitJustification($rules['rules'][$idx]);
20         $msg = $msgs[0];
21     } else {
22         $msg = $rules['rules'][$idx][$type];
23     }
24     $line = 'libraries/advisory_rules.txt:' . $rules['lines'][$idx][$type];
25     // Avoid duplicate mesages
26     $pos = array_search($msg, $messages);
27     if ($pos === false) {
28         $messages[] = $msg;
29         $locations[] = array($line);
30     } else {
31         $locations[$pos][] = $line;
32     }
35 function print_message($idx) {
36     global $messages, $locations;
37     echo "\n";
38     echo '#: ' . implode(' ', $locations[$idx]);
39     echo "\n";
40     if (strstr($messages[$idx], '%') !== false) {
41         echo '#, php-format';
42         echo "\n";
43     }
44     echo 'msgid "' . addcslashes(Advisor::escapePercent($messages[$idx]), '"\\') . '"';
45     echo "\n";
46     echo 'msgstr ""';
47     echo "\n";
50 define('PHPMYADMIN', 1);
51 if (!file_exists('./libraries/Advisor.class.php')) {
52     chdir('..');
54 include './libraries/Advisor.class.php';
56 $rules = Advisor::parseRulesFile();
58 foreach($rules['rules'] as $idx => $rule) {
59     add_message($rules, $idx, 'name');
60     add_message($rules, $idx, 'issue');
61     add_message($rules, $idx, 'recommendation');
62     add_message($rules, $idx, 'justification');
65 foreach($messages as $idx => $rule) {
66     print_message($idx);