blob: 0ed222a5817414843e3093f4931830b2d0bdfc06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
// Language definitions used in index.php
$lang_index = array(
'Topics' => 'Topics',
'Link to' => 'Link to:', // As in "Link to: http://fluxbb.org/"
'Empty board' => 'Board is empty.',
'Newest user' => 'Newest registered user: %s',
'Users online' => 'Registered users online: %s',
'Guests online' => 'Guests online: %s',
'No of users' => 'Total number of registered users: %s',
'No of topics' => 'Total number of topics: %s',
'No of posts' => 'Total number of posts: %s',
'Online' => 'Online:', // As in "Online: User A, User B etc."
'Board info' => 'Board information',
'Board stats' => 'Board statistics',
'User info' => 'User information'
);
|