7.0, another parameter,
$cfg['FilterLanguages'], is available. Suppose we want to shorten the list of
available languages to English and Fran?§ais??”French because those are the ones
used exclusively by our users. We build a regular expression indicating which
languages we want to display based on the ISO codes of these languages. To
continue with our example, we would use:
$cfg['FilterLanguages'] = '^(fr|en)';
In this expression, the caret (^) means starting with and the (|) means or. The
expression indicates that we are restricting the list to languages whose corresponding
ISO codes start with fr or en.
By default, this parameter is empty, meaning that no filter is applied to the list of
available languages.
Interface Overview
[ 48 ]
The small information icon beside Language gives access to phpMyAdmin's
translator page, which lists, by language, the official translator and the contact
information. This way we can reach the translator for corrections or to offer help on
untranslated messages.
On the Home page, we might also see a MySQL Charset selector or MySQL Charset
information (not in a selector). You can refer to Chapter 17, Character Sets and
Collations, for full details on this subject.
Themes
A theme system is available in phpMyAdmin starting with version 2.6.0. The color
parameters and the various icons are located in a directory structure under the
themes subdirectory.
Pages:
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