mirrored from git://git.rockbox.org/translate.git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
problems.php
238 lines (221 loc) · 8.95 KB
/
problems.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<?php
/************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* Copyright (C) 2010 Jonas Häggqvist
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
**************************************************************************/
require_once('common.php');
print_head();
$languageinfo = languageinfo();
if (isset($_REQUEST['upload']) && is_uploaded_file($_FILES['langfile']['tmp_name'])) {
$lang = 'upload';
$phrases = parselangfile($_FILES['langfile']['tmp_name']);
$languageinfo[$lang]['name'] = $_FILES['langfile']['name'];
}
else {
$lang = isset($_GET['lang']) ? $_GET['lang'] : '';
$phrases = parselangfile(sprintf('rockbox/apps/lang/%s.lang', $lang));
}
if ($phrases === false) die("This language doesn't exist, you bad man!");
$english = parselangfile('rockbox/apps/lang/english.lang');
if ($lang == 'english') {
echo <<<MOO
<img class="flag" src="flags/150/{$languageinfo[$lang]['flag']}.png" />
<h1>Potential problems in {$languageinfo[$lang]['name']} language</h1>
<p>The English language file is perfect. Don't taunt it.</p>
<p>Go <a href=".">back</a>.</p>
MOO;
print_foot();
die();
}
echo <<<MOO
<img class="flag" src="flags/150/{$languageinfo[$lang]['flag']}.png" />
<h1>Potential problems in {$languageinfo[$lang]['name']} language</h1>
<p>Go <a href=".">back</a>.</p>
<p>This page will help identify potential problems in your language file. I
don't offer a way to fix this automatically, so you'll have to edit the language
file by hand. Hopefully this page will still be of some help. Note that not all
of these lines have to be actual problems, so pay attention to what you do.</p>
MOO;
$strings = array();
foreach($english as $id => $phrase) {
if (!isset($phrases[$id])) {
$strings[] = sprintf("<strong>%s</strong>: Missing translation entirely<br />\n",
$id
);
}
else {
foreach($phrase['source'] as $target => $value) {
if (!isset($phrases[$id]['dest'][$target]) && $value != 'none' && $value != '') {
$strings[] = sprintf("<strong>%s</strong>: Missing target \"%s\"<br />\n",
$id, $target
);
}
elseif (
($phrases[$id]['dest'][$target] == 'none' || $phrases[$id]['dest'][$target] == '')
&&
($value != 'none' && $value != '')) {
$strings[] = sprintf("<strong>%s:%s</strong>: Set to \"%s\", but English sets \"%s\"<br />\n",
$id, $target, $phrases[$id]['dest'][$target], $value
);
}
}
}
}
if (sizeof($strings) > 0) {
print("<h2>Missing strings/targets</h2>\n");
print("<p>This is an error that should be fixed</p>\n");
print(join('', $strings));
}
$strings = array();
foreach($phrases as $id => $phrase) {
foreach(array("dest", "voice") as $what) {
foreach($phrase[$what] as $target => $value) {
if (isset($english[$id][$what][$target])
&& ($english[$id][$what][$target] == '' || $english[$id][$what][$target] == "none")
&& trim($value) != trim($english[$id][$what][$target])
) {
$strings[] = sprintf("<strong>%s:%s - %s</strong>: Empty string doesn't match English (set to: '%s' - should be: '%s')<br />\n",
$id,
$target,
$what,
$value == '' ? '""' : $value,
$english[$id][$what][$target]
);
}
}
}
}
if (sizeof($strings) > 0) {
print("<h2>Wrong empty strings</h2>");
print("<p>When the English language is set to \"\" or none, the translation should follow. The strings below don't do this. This is an error and should be fixed.</p>\n");
print(join('', $strings));
}
$strings = array();
$ignoreidentical = explode("\n", file_get_contents("rockbox/tools/langignorelist.txt"));
foreach($phrases as $id => $phrase) {
if (in_array($id, $ignoreidentical)) {
continue;
}
foreach($phrase['source'] as $target => $value) {
if ($phrase['source'][$target] == $phrase['dest'][$target]
&& $phrase['source'][$target] != 'none'
&& $phrase['source'][$target] != ''
) {
$strings[] = sprintf("<strong>%s:%s</strong>: English and translation are the same (\"%s\")<br />\n",
$id,
$target,
$value
);
}
}
}
if (sizeof($strings) > 0) {
print("<h2>Identical English and translation</h2>");
printf("<p>Doesn't have to be a problem, if the string is valid in the %s language</p>\n", $languageinfo[$lang]['name']);
print(join('', $strings));
}
$strings = array();
foreach($english as $id => $phrase) {
foreach($phrase['source'] as $target => $value) {
if (isset($phrases[$id]) &&
($phrases[$id]['voice'][$target] == ''
|| $phrases[$id]['voice'][$target] == 'none')
&& $phrase['voice'][$target] != ''
&& $phrase['voice'][$target] != 'none'
) {
$strings[] = sprintf("<strong>%s:%s</strong>: Voice missing (english voice: \"%s\")<br />\n",
$id,
$target,
$phrase['voice'][$target]
);
}
}
}
if (sizeof($strings) > 0) {
print("<h2>Missing voice strings</h2>");
printf("<p>This is almost certainly a mistake unless the string does not make sense in the %s language, and should be fixed before it's possible to generate meaningful voicefiles for the %s language.</p>\n", $languageinfo[$lang]['name'], $languageinfo[$lang]['name']);
print(join('', $strings));
}
$strings = array();
foreach($phrases as $id => $phrase) {
if (in_array($id, $ignoreidentical)) {
continue;
}
foreach($phrase['source'] as $target => $value) {
if ($phrase['voice'][$target] == $value && $value != '' && $value != 'none') {
$strings[] = sprintf("<strong>%s:%s</strong>: Voice and source are the same (\"%s\")<br />\n",
$id,
$target,
$value
);
}
elseif ($english[$id]['voice'][$target] == $phrase['voice'][$target]
&& $english[$id]['voice'][$target] != 'none'
&& $english[$id]['voice'][$target] != ''
) {
$strings[] = sprintf("<strong>%s:%s</strong>: Voice and English voice are the same (\"%s\")<br />\n",
$id,
$target,
$english[$id]['voice'][$target]
);
}
}
}
if (sizeof($strings) > 0) {
print("<h2>Same voice and source</h2>");
printf("<p>Doesn't have to be a problem, if the string is valid in the %s language</p>\n", $languageinfo[$lang]['name']);
print(join('', $strings));
}
print("<!--\n");
print_r($english);
print("\n-->\n");
$strings = array();
foreach($phrases as $id => $phrase) {
foreach($phrase['voice'] as $target => $value) {
if (!isset($english[$id]['voice'][$target])
&& $value != ""
&& $value != "none"
) {
$strings[] = sprintf("<strong>%s:%s</strong>: Voice not defined for English (set to: \"%s\")<br />\n",
$id,
$target,
$value
);
}
}
}
if (sizeof($strings) > 0) {
print("<h2>Unnecessary voice strings</h2>");
print("<p>These strings are unnecessary, since they're not defined in the English language file. They should probably be removed</p>\n");
print(join('', $strings));
}
print "<h2>Other actions</h2>\n";
print "<p>Normally the translation edit page only allows flagged/problematic entries to be edited. To enable editing the entire translation, follow <a href='edit.php?lang=$lang&all=1'>this link</a></p>\n";
if (true || $_SERVER['REMOTE_ADDR'] == trim(file_get_contents($_SERVER['DOCUMENT_ROOT'].'/homeip'))) {
echo <<<MOO
<h2>Check your work in progress</h2>
<p>Using the form below, you can upload a work in progress and generate a report
similar to this one, for your language.</p>
<form enctype="multipart/form-data" action="problems.php" method="post">
<input type="hidden" name="upload" value="true" />
<input type="file" name="langfile" />
<input type="submit" value="send" />
</form>
MOO;
}
print_foot();
?>