summaryrefslogtreecommitdiff
blob: 233cc47dad474437b4c84768b061cf20c637254a (plain)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
	"@metadata": {
		"authors": [
			"Jason Ji",
			"Cindy Cicalese"
		]
	},
	"commentstreams-desc": "Allows commenting on wiki pages",
	"commentstreams-error-prohibitedaction": "Action $1 is not allowed on comment pages.",
	"commentstreams-error-comment-on-deleted-page": "The page with which this comment is associated has been deleted.",
	"commentstreams-author-anonymous": "anonymous",
	"apihelp-csquerycomment-description": "Return the title, user, creation timestamp, and wikitext of a comment. Either pageid or title must be provided.",
	"apihelp-csquerycomment-summary": "Return the title, user, creation timestamp, and wikitext of a comment. Either pageid or title must be provided.",
	"apihelp-csquerycomment-param-pageid": "page ID of the page which holds the comment to query",
	"apihelp-csquerycomment-param-title": "title of the page which holds the comment to query",
	"apihelp-csquerycomment-pageid-example": "query comment with page ID 3 in wikitext",
	"apihelp-csquerycomment-title-example": "query comment with page title CommentStreams:3 in wikitext",
	"apihelp-csdeletecomment-description": "Delete a comment. Either pageid or title must be provided.",
	"apihelp-csdeletecomment-summary": "Delete a comment. Either pageid or title must be provided.",
	"apihelp-csdeletecomment-param-pageid": "page ID of the page which holds the comment to delete",
	"apihelp-csdeletecomment-param-title": "title of the page which holds the comment to delete",
	"apihelp-csdeletecomment-pageid-example": "delete comment with page ID 3",
	"apihelp-csdeletecomment-title-example": "delete comment with page title CommentStreams:3",
	"apihelp-cspostcomment-description": "Post a new comment.",
	"apihelp-cspostcomment-summary": "Post a new comment.",
	"apihelp-cspostcomment-param-commenttitle": "optional title for comment.",
	"apihelp-cspostcomment-param-wikitext": "wikitext for comment.",
	"apihelp-cspostcomment-param-associatedid": "page with which this comment is associated.",
	"apihelp-cspostcomment-param-parentid": "page ID of parent comment if this is a reply.",
	"apihelp-cseditcomment-description": "Edit an existing comment. Either pageid or title must be provided.",
	"apihelp-cseditcomment-summary": "Edit an existing comment. Either pageid or title must be provided.",
	"apihelp-cseditcomment-param-pageid": "page ID of the page which holds the comment to edit",
	"apihelp-cseditcomment-param-title": "title of the page which holds the comment to edit",
	"apihelp-cseditcomment-param-commenttitle": "optional title for comment.",
	"apihelp-cseditcomment-param-wikitext": "wikitext for comment.",
	"apihelp-csvote-description": "Vote (up, down, or neutral) on a comment.",
	"apihelp-csvote-summary": "Vote (up, down, or neutral) on a comment.",
	"apihelp-csvote-param-pageid": "page ID of the page which holds the comment to be voted on",
	"apihelp-csvote-param-title": "title of the page which holds the comment to be voted on",
	"apihelp-csvote-param-vote": "vote (1, -1, or 0).",
	"apihelp-csvote-pageid-example": "vote on comment with page ID 3",
	"apihelp-csvote-title-example": "vote on comment with page title CommentStreams:3",
	"apihelp-cswatch-description": "Watch a comment to be notified when it receives replies",
	"apihelp-cswatch-summary": "Watch a comment to be notified when it receives replies",
	"apihelp-cswatch-param-pageid": "page ID of the page which holds the comment to be watched",
	"apihelp-cswatch-param-title": "title of the page which holds the comment to be watched",
	"apihelp-cswatch-pageid-example": "watch comment with page ID 3",
	"apihelp-cswatch-title-example": "watch comment with page title CommentStreams:3",
	"apihelp-csunwatch-description": "Unwatch a comment to no longer be notified when it receives replies",
	"apihelp-csunwatch-summary": "Unwatch a comment to no longer be notified when it receives replies",
	"apihelp-csunwatch-param-pageid": "page ID of the page which holds the comment to be unwatched",
	"apihelp-csunwatch-param-title": "title of the page which holds the comment to be unwatched",
	"apihelp-csunwatch-pageid-example": "unwatch comment with page ID 3",
	"apihelp-csunwatch-title-example": "unwatch comment with page title CommentStreams:3",
	"commentstreams-api-error-invalid": "Invalid API response.",
	"commentstreams-api-error-notloggedin": "You must be logged in.",
	"commentstreams-api-error-commentnotfound": "The requested comment was not found.",
	"commentstreams-api-error-notacomment": "The supplied page ID does not refer to a valid comment.",
	"commentstreams-api-error-missingcommenttitle": "A comment title must be supplied for comments that are not replies.",
	"commentstreams-api-error-post-permissions": "User does not have permission to post a comment.",
	"commentstreams-api-error-post-parentandtitle": "You may not specify both the parent id and the comment title.",
	"commentstreams-api-error-post-parentpagedoesnotexist": "The comment being replied to does not exist.",
	"commentstreams-api-error-post-associatedpageidmismatch": "The page being commented on does not match the page the parent comment is commenting on.",
	"commentstreams-api-error-post-associatedpagedoesnotexist": "The page being commented on does not exist.",
	"commentstreams-api-error-post": "Error adding comment.",
	"commentstreams-api-error-edit-notloggedin": "You must be logged in to edit.",
	"commentstreams-api-error-edit-permissions": "User does not have permission to edit the comment.",
	"commentstreams-api-error-edit": "Error editing comment.",
	"commentstreams-api-error-delete-notloggedin": "You must be logged in to delete.",
	"commentstreams-api-error-delete-permissions": "User does not have permission to delete the comment.",
	"commentstreams-api-error-delete-haschildren": "Cannot delete a topic that has replies. Please refresh the page to see updated comment stream.",
	"commentstreams-api-error-delete": "Error deleting comment.",
	"commentstreams-api-error-vote-notloggedin": "You must be logged in to vote.",
	"commentstreams-api-error-vote-novoteonreply": "Voting on replies is not allowed.",
	"commentstreams-api-error-vote": "Error voting on comment.",
	"commentstreams-api-error-watch-notloggedin": "You must be logged in to watch a comment.",
	"commentstreams-api-error-watch-nowatchreply": "Watching replies is not allowed.",
	"commentstreams-api-error-watch": "Error watching comment.",
	"commentstreams-api-error-unwatch-notloggedin": "You must be logged in to unwatch a comment.",
	"commentstreams-api-error-unwatch-nounwatchreply": "Unwatching replies is not allowed.",
	"commentstreams-api-error-unwatch": "Error unwatching comment.",
	"commentstreams-validation-error-nocommenttitle": "You must enter a comment title.",
	"commentstreams-validation-error-nocommenttext": "You must enter comment text.",
	"commentstreams-buttontext-add": "Add comment",
	"commentstreams-buttontext-reply": "Reply",
	"commentstreams-buttontooltip-add": "add comment",
	"commentstreams-buttontooltip-reply": "reply",
	"commentstreams-buttontooltip-edit": "edit",
	"commentstreams-buttontooltip-moderator-edit": "moderator edit",
	"commentstreams-buttontooltip-delete": "delete",
	"commentstreams-buttontooltip-moderator-delete": "moderator delete",
	"commentstreams-buttontooltip-permalink": "permalink",
	"commentstreams-buttontooltip-collapse": "collapse",
	"commentstreams-buttontooltip-expand": "expand",
	"commentstreams-buttontooltip-upvote": "up vote",
	"commentstreams-buttontooltip-downvote": "down vote",
	"commentstreams-buttontooltip-watch": "watch",
	"commentstreams-buttontooltip-unwatch": "unwatch",
	"commentstreams-buttontooltip-submit": "submit",
	"commentstreams-buttontooltip-cancel": "cancel",
	"commentstreams-dialog-delete-message": "Are you sure you want to delete this comment?",
	"commentstreams-dialog-anonymous-message": "You are not logged in. If you proceed to save this comment, your IP address will be recorded, and you will not be able to edit or delete this comment.",
	"commentstreams-dialog-buttontext-ok": "OK",
	"commentstreams-dialog-buttontext-cancel": "Cancel",
	"commentstreams-dialog-buttontext-yes": "Yes",
	"commentstreams-dialog-buttontext-no": "No",
	"commentstreams-urldialog-instructions": "Copy and paste the URL below to share a permalink to this comment. Press escape to dismiss this dialog.",
	"commentstreams-datetext-postedon": "Posted on",
	"commentstreams-datetext-lasteditedon": "Last edited on",
	"commentstreams-datetext-moderated": "moderated",
	"commentstreams-title-field-placeholder": "Enter title...",
	"commentstreams-body-field-placeholder": "Enter new comment text...",
	"echo-category-title-commentstreams-notification-category": "New comments and replies",
	"notification-header-commentstreams-comment-on-watched-page": "$1 {{GENDER:$4|commented}} \"<i>$2</i>\" on page \"<i>$3</i>\", which {{GENDER:$6|you}} are watching.",
	"notification-header-commentstreams-reply-on-watched-page": "$1 {{GENDER:$4|replied}} to comment \"<i>$2</i>\" on page \"<i>$3</i>\", which {{GENDER:$6|you}} are watching.",
	"notification-header-commentstreams-reply-to-watched-comment": "$1 {{GENDER:$4|replied}} to comment \"<i>$2</i>\", which {{GENDER:$6|you}} are watching, on page \"<i>$3</i>\".",
	"notification-subject-commentstreams-comment-on-watched-page": "Somebody has commented on a page that you are watching",
	"notification-subject-commentstreams-reply-on-watched-page": "Somebody has replied to a comment on a page that you are watching",
	"notification-subject-commentstreams-reply-to-watched-comment": "Somebody has replied to a comment that you are watching",
	"notification-body-commentstreams-comment-on-watched-page": "The comment is:\n\n\n$5",
	"notification-body-commentstreams-reply-on-watched-page": "The reply is:\n\n\n$5",
	"notification-body-commentstreams-reply-to-watched-comment": "The reply is:\n\n\n$5",
	"notification-link-label-commentstreams-comment-on-watched-page": "Visit comment",
	"notification-link-label-commentstreams-reply-on-watched-page": "Visit reply",
	"notification-link-label-commentstreams-reply-to-watched-comment": "Visit reply",
	"group-csmoderator": "Moderators (CommentStreams)",
	"group-csmoderator-member": "{{GENDER:$1|moderator (CommentStreams)}}",
	"grouppage-csmoderator": "{{ns:project}}:Moderators (CommentStreams)",
	"right-cs-comment": "Post, edit, and delete user's own comments",
	"action-cs-comment": "post, edit, or delete comments",
	"right-cs-moderator-edit": "Edit comments by any user",
	"action-cs-moderator-edit": "edit comments by other users",
	"right-cs-moderator-delete": "Delete comments by any user",
	"action-cs-moderator-delete": "delete comments by other users",
	"log-name-commentstreams": "CommentStreams log",
	"log-description-commentstreams": "These events track when CommentStreams events happen.",
	"logentry-commentstreams-comment-create": "$1 {{GENDER:$2|created}} comment $3",
	"logentry-commentstreams-reply-create": "$1 {{GENDER:$2|created}} reply $3",
	"logentry-commentstreams-comment-edit": "$1 {{GENDER:$2|edited}} comment $3",
	"logentry-commentstreams-comment-moderator-edit": "$1 {{GENDER:$2|(moderator) edited}} comment $3",
	"logentry-commentstreams-reply-edit": "$1 {{GENDER:$2|edited}} reply $3",
	"logentry-commentstreams-reply-moderator-edit": "$1 {{GENDER:$2|(moderator) edited}} reply $3",
	"logentry-commentstreams-comment-delete": "$1 {{GENDER:$2|deleted}} comment $3",
	"logentry-commentstreams-comment-moderator-delete": "$1 {{GENDER:$2|(moderator) deleted}} comment $3",
	"logentry-commentstreams-reply-delete": "$1 {{GENDER:$2|deleted}} reply $3",
	"logentry-commentstreams-reply-moderator-delete": "$1 {{GENDER:$2|(moderator) deleted}} reply $3",
	"commentstreamsallcomments": "All Comments",
	"commentstreams-allcomments-nocommentsfound": "No comments found.",
	"commentstreams-allcomments-label-page": "Comment Page",
	"commentstreams-allcomments-label-associatedpage": "Associated Page",
	"commentstreams-allcomments-label-commenttitle": "Comment Title",
	"commentstreams-allcomments-label-wikitext": "Comment",
	"commentstreams-allcomments-label-author": "Author",
	"commentstreams-allcomments-label-created": "Created",
	"commentstreams-allcomments-label-lasteditor": "Last Editor",
	"commentstreams-allcomments-label-lastedited": "Last Edited",
	"commentstreams-allcomments-label-blockid": "Block Id",
	"commentstreams-allcomments-button-next": "Next",
	"commentstreams-allcomments-button-previous": "Previous",
	"commentstreams-ve-conversion-error": "Error converting between wikitext and HTML for VisualEditor"
}