Added option to do data and attachment directory hashing, up to four levels. Will...
[squirrelmail.git] / functions / gettext.php
CommitLineData
bb48d62e 1<?PHP
2
35586184 3/**
4 * gettext.php
5 *
6 * Copyright (c) 1999-2001 The SquirrelMail Development Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Alternate to the system's built-in gettext.
10 * relies on .po files (can't read .mo easily).
11 * Uses the session for caching (speed increase)
12 * Possible use in other PHP scripts? The only SM-specific thing is
13 * $sm_language, I think
14 *
15 * $Id$
16 */
2ba13803 17
35586184 18/*****************************************************************/
19/*** THIS FILE NEEDS TO HAVE ITS FORMATTING FIXED!!! ***/
20/*** PLEASE DO SO AND REMOVE THIS COMMENT SECTION. ***/
21/*** + Base level indent should begin at left margin, as ***/
22/*** the global definition below. ***/
23/*** + All identation should consist of four space blocks ***/
24/*** + Tab characters are evil. ***/
25/*** + all comments should use "slash-star ... star-slash" ***/
26/*** style -- no pound characters, no slash-slash style ***/
27/*** + FLOW CONTROL STATEMENTS (if, while, etc) SHOULD ***/
28/*** ALWAYS USE { AND } CHARACTERS!!! ***/
29/*** + Please use ' instead of ", when possible. Note " ***/
30/*** should always be used in _( ) function calls. ***/
31/*** Thank you for your help making the SM code more readable. ***/
32/*****************************************************************/
33
34global $gettext_php_domain, $gettext_php_dir, $gettext_php_loaded,
35 $gettext_php_translateStrings, $gettext_php_loaded_language,
36 $gettext_php_short_circuit;
bb48d62e 37
38 if (! isset($gettext_php_loaded)) {
39 $gettext_php_loaded = false;
40 session_register('gettext_php_loaded');
41 }
829a33b6 42 if (! isset($gettext_php_domain)) {
43 $gettext_php_domain = '';
55c10992 44 session_register('gettext_php_domain');
829a33b6 45 }
46 if (! isset($gettext_php_dir)) {
47 $gettext_php_dir = '';
55c10992 48 session_register('gettext_php_dir');
829a33b6 49 }
50 if (! isset($gettext_php_translateStrings)) {
51 $gettext_php_translateStrings = array();
52 session_register('gettext_php_translateStrings');
53 }
55c10992 54 if (! isset($gettext_php_loaded_language)) {
55 $gettext_php_loaded_language = '';
56 session_register('gettext_php_loaded_language');
57 }
be921d7a 58 if (! isset($gettext_php_short_circuit)) {
59 $gettext_php_short_circuit = false;
60 session_register('gettext_php_short_circuit');
61 }
829a33b6 62
bb48d62e 63 function gettext_php_load_strings() {
55c10992 64 global $squirrelmail_language, $gettext_php_translateStrings,
65 $gettext_php_domain, $gettext_php_dir, $gettext_php_loaded,
48581a4d 66 $gettext_php_loaded_language, $gettext_php_short_circuit;
bb48d62e 67
55c10992 68 // $squirrelmail_language gives 'en' for English, 'de' for German,
69 // etc. I didn't wanna use getenv or similar, but you easily could
70 // change my code to do that.
bb48d62e 71
72 $gettext_php_translateStrings = array();
48581a4d 73
74 $gettext_php_short_circuit = false; // initialization
55c10992 75
bb48d62e 76 $filename = $gettext_php_dir;
77 if (substr($filename, -1) != '/')
78 $filename .= '/';
55c10992 79 $filename .= $squirrelmail_language . '/LC_MESSAGES/' .
80 $gettext_php_domain . '.po';
bb48d62e 81
55c10992 82 $file = @fopen($filename, 'r');
b771345a 83 if ($file == false) {
a68fb657 84 // Uh-ho -- we can't load the file. Just fake it. :-)
85 // This is also for English, which doesn't use translations
55c10992 86 $gettext_php_loaded = true;
a68fb657 87 $gettext_php_loaded_language = $squirrelmail_language;
48581a4d 88 $gettext_php_short_circuit = true; // Avoid fuzzy matching when we
89 // didn't load strings
bb48d62e 90 return;
55c10992 91 }
bb48d62e 92
93 $key = '';
94 $SkipRead = false;
95 while (! feof($file)) {
96 if (! $SkipRead)
97 $line = trim(fgets($file, 4096));
98 else
99 $SkipRead = false;
100
101 if (ereg('^msgid "(.*)"$', $line, $match)) {
102 if ($match[1] == '') {
103 // Potential multi-line
829a33b6 104 // msgid ""
105 // "string string "
106 // "string string"
bb48d62e 107 $key = '';
108 $line = trim(fgets($file, 4096));
109 while (ereg('^[ ]*"(.*)"[ ]*$', $line, $match)) {
110 $key .= $match[1];
111 $line = trim(fgets($file, 4096));
112 }
55c10992 113 $SkipRead = true;
bb48d62e 114 } else {
829a33b6 115 // msgid "string string"
bb48d62e 116 $key = $match[1];
117 }
118 } elseif (ereg('^msgstr "(.*)"$', $line, $match)) {
119 if ($match[1] == '') {
120 // Potential multi-line
829a33b6 121 // msgstr ""
122 // "string string "
123 // "string string"
bb48d62e 124 $gettext_php_translateStrings[$key] = '';
125 $line = trim(fgets($file, 4096));
126 while (ereg('^[ ]*"(.*)"[ ]*$', $line, $match)) {
127 $gettext_php_translateStrings[$key] .= $match[1];
128 $line = trim(fgets($file, 4096));
129 }
55c10992 130 $SkipRead = true;
bb48d62e 131 } else {
829a33b6 132 // msgstr "string string"
bb48d62e 133 $gettext_php_translateStrings[$key] = $match[1];
134 }
55c10992 135 $gettext_php_translateStrings[$key] =
136 stripslashes($gettext_php_translateStrings[$key]);
bb48d62e 137 $key = '';
138 }
139 }
140 fclose($file);
55c10992 141
bb48d62e 142 $gettext_php_loaded = true;
55c10992 143 $gettext_php_loaded_language = $squirrelmail_language;
bb48d62e 144 }
55c10992 145
bb48d62e 146 function _($str) {
55c10992 147 global $gettext_php_loaded, $gettext_php_translateStrings,
48581a4d 148 $squirrelmail_language, $gettext_php_loaded_language,
149 $gettext_php_short_circuit;
bb48d62e 150
55c10992 151 if (! $gettext_php_loaded ||
152 $gettext_php_loaded_language != $squirrelmail_language)
bb48d62e 153 gettext_php_load_strings();
55c10992 154
155 // Try finding the exact string
bb48d62e 156 if (isset($gettext_php_translateStrings[$str]))
157 return $gettext_php_translateStrings[$str];
48581a4d 158
159 // See if we should short-circuit
160 if ($gettext_php_short_circuit) {
161 $gettext_php_translateStrings[$str] = $str;
162 return $str;
163 }
164
55c10992 165 // Look for a string that is very close to the one we want
166 // Very computationally expensive
167 $oldPercent = 0;
168 $oldStr = '';
169 $newPercent = 0;
170 foreach ($gettext_php_translateStrings as $k => $v) {
0fb42fee 171 similar_text($str, $k, $newPercent);
55c10992 172 if ($newPercent > $oldPercent) {
173 $oldStr = $v;
174 $oldPercent = $newPercent;
175 }
176 }
177 // Require 80% match or better
178 // Adjust to suit your needs
179 if ($oldPercent > 80) {
180 // Remember this so we don't need to search again
181 $gettext_php_translateStrings[$str] = $oldStr;
182 return $oldStr;
183 }
bb48d62e 184
55c10992 185 // Remember this so we don't need to search again
186 $gettext_php_translateStrings[$str] = $str;
bb48d62e 187 return $str;
188 }
189
190 function bindtextdomain($name, $dir) {
55c10992 191 global $gettext_php_domain, $gettext_php_dir, $gettext_php_loaded;
192
193 if ($gettext_php_domain != $name) {
194 $gettext_php_domain = $name;
195 $gettext_php_loaded = false;
196 }
197 if ($gettext_php_dir != $dir) {
198 $gettext_php_dir = $dir;
199 $gettext_php_loaded = false;
200 }
bb48d62e 201
202 return $dir;
203 }
204
205 function textdomain($name = false) {
55c10992 206 global $gettext_php_domain, $gettext_php_loaded;
207
208 if ($name != false && $gettext_php_domain != $name) {
bb48d62e 209 $gettext_php_domain = $name;
210 $gettext_php_loaded = false;
211 }
212 return $gettext_php_domain;
213 }
214