-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnFlow.i18n.php
54 lines (50 loc) · 2.54 KB
/
UnFlow.i18n.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
<?php
$messages = array();
$messages['en'] = array(
'unflow-posted-by' => 'Posted by $1 at $2 ($3)',
'unflow-thread-posted-by' => 'Thread started by $1 at $2 ($3)',
'unflow-reply' => 'Reply',
'unflow-newreply-replyto' => 'Post Id to reply to',
'unflow-newreply-text' => 'Reply text',
'newreply' => 'Leave a new reply',
'newreply-legend' => 'Leave a new reply',
'newtopic' => 'Create a new thread',
'newtopic-legend' => 'Create a new thread',
'unflow-submit-reply' => 'Reply',
'unflow-submit-cancel' => 'Cancel',
'unflow-newtopic-page' => 'Page title',
'unflow-newtopic-topic' => 'Topic',
'unflow-newtopic-text' => 'Body text',
'unflow-newtopic-invalidtitle' => 'Invalid title provided',
'unflow-toc-by' => 'by $1 on $2',
'unflow-toc-replies' => '$1 {{PLURAL:$1|reply|replies}}',
'unflow-toc-by-no-ts' => 'by $1',
'unflow-toc-header-topic' => 'Topic',
'unflow-toc-header-replies' => 'Replies',
'unflow-toc-header-lastedit' => 'Last edit', // @fixme "edit" isn't right
'unflow-diff-new-reply' => 'New reply by $1:',
'unflow-diff-edit' => 'Reply by $1:',
);
$messages['qqq'] = array(
'unflow-posted-by' => '$1 is the user who posted the message, $2 is when they did it.',
'unflow-newreply-replyto' => 'Form label on special page',
'unflow-reply' => 'Link text to open the reply interface',
'unflow-newreply-text' => 'Form label on special page',
'newreply' => 'Label for special page',
'newreply-legend' => 'Label for fieldset on a special page',
'newtopic' => 'Label for special page',
'newtopic-legend' => 'Label for fieldset on a special page',
'unflow-submit-reply' => 'Text used on button to submit reply form',
'unflow-submit-cancel' => 'Text used on button to cancel submission',
'unflow-newtopic-page' => 'Form label on special page',
'unflow-newtopic-topic' => 'Form label on special page',
'unflow-newtopic-text' => 'Form label on special page',
'unflow-toc-by' => 'Used below the topic link in the table of contents. $1 is a link to the user\'s userpage, $2 is a formatted date.',
'unflow-toc-replies' => '$1 is the number of replies the post has',
'unflow-toc-by-no-ts' => '$1 is a link to the user\'s userpage',
'unflow-toc-header-topic' => 'Header label for column on table',
'unflow-toc-header-replies' => 'Header label for column on table',
'unflow-toc-header-lastedit' => 'Header label for column on table', // @fixme "edit" isn't right
'unflow-diff-new-reply' => 'Header used for diff, $1 is the name of the user who posted it.',
'unflow-diff-edit' => 'Header used for diff, $1 is the name of the user who\'s post is being edited'
);