This repository has been archived by the owner on Jul 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
strings_en.pl
47 lines (45 loc) · 1.8 KB
/
strings_en.pl
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
use constant S_LANG => 'en';
use constant S_ADMIN => 'Admin interface for %s';
use constant S_ALLTHR => 'All threads';
use constant S_BANLABEL => 'Ban:';
use constant S_BAN => 'Ban';
use constant S_CLOSED => 'This thread is closed. You cannot post in it any longer.';
use constant S_COMMENT => 'Comment:';
use constant S_CREATETHR => 'Create thread';
use constant S_DBERR => 'database error';
use constant S_DELBYIP => 'Delete posts by IP:';
use constant S_DELETE => 'Delete';
use constant S_DELETED => 'deleted';
use constant S_DELETEFILE => 'Delete file';
use constant S_DELETEDPOST => 'Post deleted by moderator.';
use constant S_DLIMAGE => 'Download image';
use constant S_ENTIRE => 'Entire thread';
use constant S_FIRST100 => 'First 100 posts';
use constant S_HAX => 'wtf hax';
use constant S_ID => 'ID:';
use constant S_IMAGE => 'Image:';
use constant S_LAST50 => 'Last 50 posts';
use constant S_LINK => 'Link:';
use constant S_LOGIN => 'Login';
use constant S_MOBILE => 'Mobile version';
use constant S_NAME => 'Name:';
use constant S_NOTEXT => 'no comment entered';
use constant S_NOTHR => 'thread does not exist';
use constant S_NOTHUMB => 'No thumbnail';
use constant S_NOTITLE => 'no title entered';
use constant S_NOWRITE => 'could not write to file';
use constant S_NEWTHR => 'New thread';
use constant S_PASSWORD => 'Password:';
use constant S_PERMASAGE => 'Permasage';
use constant S_PERMASAGED => 'permasaged';
use constant S_POWERED => 'Powered by %s and %s';
use constant S_REPLY => 'Reply';
use constant S_RESET => 'Delete all threads';
use constant S_RETURN => 'Return';
use constant S_SPAM => 'spam';
use constant S_SQLCONF => 'could not connect to database';
use constant S_TITLE => 'Title:';
use constant S_TOOBIG => 'file is too big';
use constant S_UNDELETE => 'Restore';
use constant S_UNPERMASAGE => 'Unpermasage';
1;