@selfcommunity/react-i18n 0.1.2-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2021 Quentral Srl
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ @selfcommunity/react-i18n
2
+ =============
3
+
4
+ [![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/selfcommunity/community-js/blob/master/LICENSE)
5
+ [![npm latest package](https://img.shields.io/npm/v/@selfcommunity/react-i18n/latest.svg)](https://www.npmjs.com/package/@selfcommunity/react-i18n)
6
+ [![npm downloads](https://img.shields.io/npm/dm/@selfcommunity/react-i18n.svg)](https://www.npmjs.com/package/@selfcommunity/react-i18n)
7
+ [![Follow on Twitter URL](https://img.shields.io/twitter/url/https/twitter.com/community_self.svg?style=social&label=Follow%20%40SelfCommunity)](https://twitter.com/community_self)
8
+
9
+
10
+ ### Install
11
+
12
+ `npm install @selfcommunity/react-i18n`
@@ -0,0 +1,2 @@
1
+ /* eslint-disable global-require */
2
+ "use strict";
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+
6
+ var _en = _interopRequireDefault(require("./locales/en.json"));
7
+
8
+ var _it = _interopRequireDefault(require("./locales/it.json"));
9
+
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
+
12
+ var _default = {
13
+ en: _en.default,
14
+ it: _it.default
15
+ };
16
+ exports.default = _default;
@@ -0,0 +1,478 @@
1
+ {
2
+ "ui.common.yes": "Yes",
3
+ "ui.common.no": "No",
4
+ "ui.common.error": "Error",
5
+ "ui.common.error.url": "The url is not valid",
6
+ "ui.common.error.email": "Invalid email",
7
+ "ui.common.error.username": "Invalid username",
8
+ "ui.common.error.action": "An error has occurred. Try later!",
9
+ "ui.common.userBlocked": "We're sorry, you can't report a post because your account is blocked",
10
+ "ui.common.error.messageError": "Message could not be sent!",
11
+ "ui.common.discussionWithoutText": "View discussion",
12
+ "ui.common.postWithoutText": "View post",
13
+ "ui.common.statusWithoutText": "View status",
14
+ "ui.common.commentWithoutText": "View comment",
15
+ "ui.common.permanentLinkCopied": "Link copied!",
16
+
17
+ "ui.confirmDialog.title": "Are you sure you want to proceed?",
18
+ "ui.confirmDialog.btnConfirm": "Yes",
19
+ "ui.confirmDialog.btnCancel": "No",
20
+
21
+ "ui.baseDialog.button.close": "Close",
22
+
23
+ "ui.broadcastMessages.message.chip": "INFO",
24
+ "ui.broadcastMessages.loadMore": "Vedi altre info",
25
+
26
+ "ui.user.ignore": "Ignore",
27
+
28
+ "ui.peopleSuggestion.title": "People Suggestion",
29
+ "ui.peopleSuggestion.subtitle.noResults": "Nothing to show",
30
+ "ui.peopleSuggestion.button.showMore": "Show More",
31
+
32
+ "ui.pollSuggestion.title": "Suggested polls",
33
+ "ui.pollSuggestion.subtitle.noResults": "Nothing to show",
34
+ "ui.pollSuggestion.button.showMore": "Show More",
35
+ "ui.pollSuggestion.noMoreResults": "No more results",
36
+
37
+ "ui.pollSuggestion.pollSnippet.button.seeItem": "See",
38
+
39
+ "ui.trendingPeople.title": "Trending People",
40
+ "ui.trendingPeople.noResults": "Nothing to show",
41
+ "ui.trendingPeople.button.showAll": "Show All",
42
+ "ui.trendingPeople.noMoreResults": "No more results",
43
+
44
+ "ui.trendingFeed.title": "Trending Feed",
45
+ "ui.trendingFeed.noResults": "Nothing to show",
46
+ "ui.trendingFeed.button.showMore": "Show More",
47
+ "ui.trendingFeed.noMoreResults": "No more results",
48
+
49
+ "ui.relatedFeedObjects.title": "Related Posts",
50
+ "ui.relatedFeedObjects.noResults": "Nothing to show",
51
+ "ui.relatedFeedObjects.button.showMore": "Show More",
52
+ "ui.relatedFeedObjects.noMoreResults": "No more results",
53
+
54
+
55
+ "ui.category.categoryFollowers": "{total, plural, =0 {Followed by # people} one {Followed by # person} other {Followed by # people}}",
56
+
57
+
58
+ "ui.categoriesFollowed.title": "{total, plural, =0 {# Lifestyles followed} one {# Lifestyle followed} other {# Lifestyles followed}}",
59
+ "ui.categoriesFollowed.modal.title": "Followed Lifestyles",
60
+ "ui.categoriesFollowed.subtitle.noResults": "Nothing to show",
61
+ "ui.categoriesFollowed.button.showAll": "Show All",
62
+ "ui.categoriesFollowed.noMoreResults": "No more results",
63
+
64
+ "ui.categoriesPopular.title": "Popular Lifestyles",
65
+ "ui.categoriesPopular.noResults": "Nothing to show",
66
+ "ui.categoriesPopular.button.showAll": "Show All",
67
+ "ui.categoriesPopular.noMoreResults": "No more results",
68
+
69
+ "ui.categoriesSuggestion.title": "Explore Lifestyles",
70
+ "ui.categoriesSuggestion.noResults": "Nothing to show",
71
+ "ui.categoriesSuggestion.button.showMore": "Show More",
72
+
73
+ "ui.changeCover.button.change": "Change Cover",
74
+ "ui.changeCover.button.delete": "Delete Cover",
75
+ "ui.changeCover.button.upload": "Upload New Cover",
76
+ "ui.changeCover.button.uploadA": "Upload a new cover",
77
+ "ui.changeCover.listF": "Allowed formats: JPG, PNG, GIF(not animated)",
78
+ "ui.changeCover.listD": "Optimal dimensions: 1600 x 400 pixel",
79
+ "ui.changeCover.listW": "Weight: max 5MB",
80
+ "ui.changeCover.dialog.msg": "Are you sure you want to delete this cover?",
81
+
82
+ "ui.changePicture.title": "Change Profile Image",
83
+ "ui.changePicture.button.change": "Change Picture",
84
+ "ui.changePicture.button.upload": "Upload new Image",
85
+ "ui.changePicture.listF": "Allowed formats: gif,png,jpg,jpeg",
86
+ "ui.changePicture.listS": "Maximum size: 3 MB",
87
+ "ui.changePicture.button.finished": "Finished",
88
+ "ui.changePicture.dialog.msg": "Are you sure you want to delete this picture?",
89
+ "ui.changePicture.dialog.close": "Close",
90
+ "ui.changePicture.dialog.confirm": "Confirm",
91
+
92
+ "ui.platformAccess.title": "Platform Access",
93
+ "ui.platformAccess.adm": "Administration",
94
+ "ui.platformAccess.mod": "Moderation",
95
+ "ui.platformAccess.edt": "Editor",
96
+ "ui.platformAccess.hc": "Help Center",
97
+
98
+ "ui.loyaltyProgram.title":"Collecting Points",
99
+ "ui.loyaltyProgram.lp":"Loyalty Program",
100
+ "ui.loyaltyProgram.description":"Convert your participation into precious points. The loyalty program is simple and full of advantages.",
101
+ "ui.loyaltyProgram.points": "Your points: {total}",
102
+ "ui.loyaltyProgram.discover": "Discover more",
103
+
104
+ "ui.loyaltyProgramDetail.community": "Joining the Community Rewards you!",
105
+ "ui.loyaltyProgramDetail.description": "Your participation has a value. Every contribution gives value to the discussion and increases your score.",
106
+ "ui.loyaltyProgramDetail.listTitle": "How to earn points:",
107
+ "ui.loyaltyProgramDetail.list": "<li><b>Post published:</b> +2 points</li><li><b>Discussion published:</b> +2 points</li><li><b>Comment published:</b> +1 point</li><li><b>Like received:</b> +1 point</li><li><b>Follower:</b> +1 point</li><li><b>Share content on your social accounts:</b> +1 point</li><li><b>First App use:</b> +10 points</li><li><b>Daily Community visit:</b> +1 point</li>",
108
+ "ui.loyaltyProgramDetail.userPoints": "You Got {total, plural, =0 {# points} one {# point} other {# points}}",
109
+ "ui.loyaltyProgramDetail.points": "{total, plural, =0 {# points} one {# point} other {# points}}",
110
+ "ui.loyaltyProgramDetail.prizes": "Prizes for you.",
111
+ "ui.loyaltyProgramDetail.prizesIntro": "Earn points and redeem them for rewards.",
112
+ "ui.loyaltyProgramDetail.prizesContent": "Prize request involves the subtraction of the points corresponding to the selected prize.",
113
+ "ui.loyaltyProgramDetail.button.request": "Request Now",
114
+
115
+ "ui.composer.type.post": "Create Post",
116
+ "ui.composer.type.discussion": "Create Discussion",
117
+ "ui.composer.done": "done",
118
+ "ui.composer.delete": "Delete",
119
+ "ui.composer.title.label": "Write a good title...",
120
+ "ui.composer.title.error.maxlength": "the title cannot be more than 160 chars",
121
+ "ui.composer.audience.title": "Filter the audience",
122
+ "ui.composer.audience.all": "Everybody",
123
+ "ui.composer.audience.tag": "By tags",
124
+ "ui.composer.audience.all.message": "Your post will be visible to all users.",
125
+ "ui.composer.audience.tag.message": "Your post will be visible to those users with at least one of the selected tags.",
126
+ "ui.composer.audience.addressing.label": "Search Tag...",
127
+ "ui.composer.media.drop": "Drop Here",
128
+ "ui.composer.media.image.add": "Add Images",
129
+ "ui.composer.media.image.edit": "Edit Images",
130
+ "ui.composer.media.document.add": "Add Documents",
131
+ "ui.composer.media.document.edit": "Edit Documents",
132
+ "ui.composer.media.link.edit": "Edit Links",
133
+ "ui.composer.media.link.add.label": "Link url",
134
+ "ui.composer.media.link.add.help": "Insert a valid url (youtube, vimeo or web page).",
135
+ "ui.composer.audience.tags.empty": "No tags to address",
136
+ "ui.composer.audience.tags.label": "Tags",
137
+ "ui.composer.location.title": "Localize",
138
+ "ui.composer.location.label": "Insert a city",
139
+ "ui.composer.categories.label": "Category",
140
+ "ui.composer.categories.empty": "No category to assign",
141
+ "ui.composer.poll.title": "Poll's title",
142
+ "ui.composer.poll.choice.placeholder": "Add a choice",
143
+ "ui.composer.poll.choice.delete": "Delete the choice",
144
+ "ui.composer.poll.choice.delete.disabled": "You cannot have less than 2 choices",
145
+ "ui.composer.poll.choice.add": "Add another choice",
146
+ "ui.composer.poll.multiple": "Multiple choices are admitted",
147
+ "ui.composer.poll.expiration": "Close date",
148
+ "ui.composer.submit": "Publish",
149
+ "ui.composer.edit.error.title": "Error loading content",
150
+ "ui.composer.edit.error.content": "This contribution is unavailable for editing",
151
+
152
+ "ui.inlineComposer.label": "Create content...",
153
+ "ui.inlineComposer.success": "Creation succeed!",
154
+
155
+ "ui.editor.placeholder": "Write your text...",
156
+ "ui.editor.imagePluginResizer.width": "Width",
157
+ "ui.editor.imagePluginResizer.height": "Height",
158
+
159
+ "ui.feedObject.comment": "Comment",
160
+ "ui.feedObject.visibleToAll": "Visible to all",
161
+ "ui.feedObject.comment.comment": "Comment",
162
+ "ui.feedObject.comment.comments": "{total, plural, =0 {# Comments} one {# Comment} other {# Comments}}",
163
+ "ui.feedObject.vote.voteUp": "Like this contribute",
164
+ "ui.feedObject.vote.voteDown": "Unlike this contribute",
165
+ "ui.feedObject.vote.votes": "{total, plural, =0 {# Likes} one {# Like} other {# Likes}}",
166
+ "ui.feedObject.vote.votedByOnlyMe": "Only you",
167
+ "ui.feedObject.vote.votedByMe": "You + {total}",
168
+ "ui.feedObject.share.share": "Share this contribute",
169
+ "ui.feedObject.share.shareNow": "Share now",
170
+ "ui.feedObject.share.facebook": "Facebook",
171
+ "ui.feedObject.share.twitter": "Twitter",
172
+ "ui.feedObject.share.linkedin": "LinkedIn",
173
+ "ui.feedObject.share.shareInCategories": "Share in {categories}",
174
+ "ui.feedObject.share.shares": "{total, plural, =0 {# Shares} one {# Share} other {# Shares}}",
175
+ "ui.feedObject.votesDialog.title": "Votes",
176
+ "ui.feedObject.votesDialog.noOtherLikes": "No other votes.",
177
+ "ui.feedObject.sharesDialog.title": "Shares",
178
+ "ui.feedObject.sharesDialog.noOtherLikes": "No other shares.",
179
+ "ui.feedObject.contributors.title": "Contributors ({total})",
180
+ "ui.feedObject.contributors.noOtherContributors": "No other contributors.",
181
+ "ui.feedObject.follow": "Follow",
182
+ "ui.feedObject.unfollow": "Unfollow",
183
+
184
+ "ui.feedObject.poll.showPoll": "View Poll",
185
+ "ui.feedObject.poll.hidePoll": "Hide Poll",
186
+ "ui.feedObject.poll.expDate": "Vote one of the following choices by ",
187
+ "ui.feedObject.poll.closed": "Closed",
188
+ "ui.feedObject.poll.voters": "{total, plural, =0 {# voters} one {# voter} other {# voters}}",
189
+ "ui.feedObject.poll.votes": "{total, plural, =0 {# votes} one {# vote} other {# votes}}",
190
+ "ui.feedObject.poll.choice.vote": "Vote",
191
+
192
+ "ui.feedObject.relevantActivities.noResults": "There aren't relevant activities to show at the moment.",
193
+ "ui.feedObject.relevantActivities.showOthers": "Show more",
194
+ "ui.feedObject.relevantActivities.vote": "{username} appreciated you",
195
+ "ui.feedObject.relevantActivities.pollVote": "{username} voted the poll",
196
+ "ui.feedObject.relevantActivities.follow": "{username} follows the contribution",
197
+ "ui.feedObject.relevantActivities.comment": "{username} comment your contribution \"{comment}\"",
198
+
199
+ "ui.feedObject.activitiesMenu.tooltipTitle": "Select the type of activity",
200
+ "ui.feedObject.activitiesMenu.relevantActivities": "Relevant activities",
201
+ "ui.feedObject.activitiesMenu.relevantActivitiesDesc": "List of relevant activities.",
202
+ "ui.feedObject.activitiesMenu.recentComments": "Recent comments",
203
+ "ui.feedObject.activitiesMenu.recentCommentsDesc": "List of recent comments.",
204
+ "ui.feedObject.activitiesMenu.firstComments": "First comments",
205
+ "ui.feedObject.activitiesMenu.firstCommentsDesc": "List of old comments.",
206
+ "ui.feedObject.activitiesMenu.connectionsComments": "Comments from connected users",
207
+ "ui.feedObject.activitiesMenu.connectionsCommentsDesc": "List of comments made by users connected with you.",
208
+ "ui.feedObject.activitiesMenu.followedComments": "Comments from users followed",
209
+ "ui.feedObject.activitiesMenu.followedCommentsDesc": "List of comments made by users followed.",
210
+
211
+ "ui.feedObject.contributors.participants": "Participants",
212
+
213
+ "ui.feedUpdates.message": "There is an update for you!",
214
+ "ui.feedUpdates.reload": "Reload",
215
+
216
+ "ui.commentsObject.title": "{total, plural, =0 {Comments} one {# Comment} other {# Comments}}",
217
+ "ui.commentsObject.noComments": "No comments at the moment.",
218
+ "ui.commentsObject.noOtherComments": "No other comments.",
219
+ "ui.commentsObject.loadMoreComments": "See more comments",
220
+ "ui.commentsObject.loadPreviousComments": "See previous comments",
221
+ "ui.commentsObject.numberOfComments": "{loaded} of {total}",
222
+ "ui.commentsObject.commentNotFound": "Comment not found!",
223
+ "ui.commentsObject.nextComments": "Next comments",
224
+ "ui.commentsObject.previousComments": "Previous comments",
225
+
226
+ "ui.commentObject.reply": "Reply",
227
+ "ui.commentObject.voteUp": "Like",
228
+ "ui.commentObject.voteDown": "Dislike",
229
+ "ui.commentObject.votes": "{total, plural, =0 {# Likes} one {# Like} other {# Likes}}",
230
+ "ui.commentObject.viewLatestComment": "{total, plural, =0{No previous comments} one {View previous comment} other {View previous # comments}} ",
231
+
232
+ "ui.commentObject.replyComment.reply": "Reply",
233
+ "ui.commentObject.replyComment.save": "Save",
234
+ "ui.commentObject.replyComment.cancel": "Cancel",
235
+
236
+ "ui.commentObjectVotesDialog.title": "Votes",
237
+ "ui.commentObjectVotesDialog.noOtherVotes": "No other votes.",
238
+
239
+ "ui.feedObjectVotesDialog.title": "Votes",
240
+
241
+ "ui.followCategoryButton.follow": "Follow",
242
+ "ui.followCategoryButton.unfollow": "Unfollow",
243
+
244
+ "ui.followUserButton.follow": "Follow",
245
+ "ui.followUserButton.unfollow": "Unfollow",
246
+
247
+ "ui.user.userFollowers": "{total, plural, =0 {Followed by # people} one {Followed by # person} other {Followed by # people}}",
248
+
249
+ "ui.userProfileInfo.username": "Username",
250
+ "ui.userProfileInfo.realName": "Real name",
251
+ "ui.userProfileInfo.dateOfBirth": "Date of birth",
252
+ "ui.userProfileInfo.description": "Job",
253
+ "ui.userProfileInfo.dateJoined": "Date joined",
254
+ "ui.userProfileInfo.website": "Website",
255
+ "ui.userProfileInfo.bio": "Bio",
256
+ "ui.userProfileInfo.location": "Location",
257
+ "ui.userProfileInfo.gender": "Gender",
258
+
259
+ "ui.userProfileEditPublicInfo.genderMale": "Male",
260
+ "ui.userProfileEditPublicInfo.genderFemale": "Female",
261
+ "ui.userProfileEditPublicInfo.genderUnspecified": "Unspecified",
262
+
263
+ "ui.userProfileEditSettings.notification.title": "When receive a notification",
264
+ "ui.userProfileEditSettings.notification.label": "show a toast message in the bottom right corner:",
265
+ "ui.userProfileEditSettings.notificationSound.label": "emit a sound:",
266
+
267
+ "ui.userProfileEditSettings.interaction.title": "When someone interact with me",
268
+ "ui.userProfileEditSettings.interaction.label": "I want an email:",
269
+ "ui.userProfileEditSettings.interaction.immediatly": "Immediately",
270
+ "ui.userProfileEditSettings.interaction.daily": "One time per day",
271
+ "ui.userProfileEditSettings.interaction.never": "Never",
272
+
273
+ "ui.userProfileEditSettings.privateMessage.title": "When I receive a private message",
274
+ "ui.userProfileEditSettings.privateMessage.label": "I want to be advised:",
275
+ "ui.userProfileEditSettings.privateMessage.email": "Also via email",
276
+ "ui.userProfileEditSettings.privateMessage.frontend": "Only here",
277
+ "ui.userProfileEditSettings.saved": "Settings saved",
278
+
279
+ "ui.userProfileEdit.info": "Public informations",
280
+ "ui.userProfileEdit.notification": "Notification settings",
281
+
282
+ "ui.usersFollowed.title": "{total, plural, =0 {# users followed} one {# user followed} other {# users followed}}",
283
+ "ui.usersFollowed.modal.title": "Users Followed",
284
+ "ui.usersFollowed.subtitle.noResults": "Nothing to show",
285
+ "ui.usersFollowed.button.showAll": "Show All",
286
+ "ui.usersFollowed.noMoreResults": "No more results",
287
+
288
+ "ui.userFollowers.title": "{total, plural, =0 {# followers} one {# follower} other {# followers}}",
289
+ "ui.userFollowers.modal.title": "Followers",
290
+ "ui.userFollowers.subtitle.noResults": "Nothing to show",
291
+ "ui.userFollowers.button.showAll": "Show All",
292
+ "ui.userFollowers.noMoreResults": "No more results",
293
+
294
+ "ui.categoryHeader.followedBy": "{total, plural, =0 {Followed by # people} one {Followed by # person} other {Followed by # people}}",
295
+ "ui.categoryHeader.followers": "Followers",
296
+ "ui.categoryHeader.noOtherFollowers": "No other followers.",
297
+
298
+ "ui.feed.refreshRelease": "&#8593; Release to refresh the feed",
299
+ "ui.feed.noFeedObject": "At the moment there aren't any contribution to see",
300
+ "ui.feed.noOtherFeedObject": "No others contribution",
301
+
302
+ "ui.notification.showOthers": "Show more",
303
+ "ui.notification.notificationSuspended": "Suspended notifications. Click to reactivate.",
304
+ "ui.notification.notificationSuspend": "Active notifications. Click to disable.",
305
+ "ui.notification.receivePrivateMessage": "sent you {total, plural, =0 {# messages} one {a message} other {# messages}}",
306
+ "ui.notification.userFollow.followUser": "started following you",
307
+ "ui.notification.comment.comment": "commented on your content:< ",
308
+ "ui.notification.comment.nestedComment": "replied to your comment: ",
309
+ "ui.notification.comment.voteUp": "Like",
310
+ "ui.notification.comment.voteDown": "Dislike",
311
+ "ui.notification.userConnection.requestConnection": "sent you a connection request",
312
+ "ui.notification.userConnection.acceptConnection": "accepted your connection request",
313
+ "ui.notification.voteUp.appreciated": "appreciated you on:",
314
+ "ui.notification.contributionFollow.follow": "is following your contribution",
315
+ "ui.notification.userBlocked.accountBlocked": "Your account has been blocked",
316
+ "ui.notification.userBlocked.accountReactivated": "Your account has been reactivated",
317
+ "ui.notification.undeletedFor.restoredContent": "Your previously removed content has been restored",
318
+ "ui.notification.undeletedFor.restoredContentSnippet": "Your removed content has been restored",
319
+ "ui.notification.undeletedFor.youWrote": "Your contribution: ",
320
+ "ui.notification.privateMessage.btnReplyLabel": "Reply",
321
+ "ui.notification.mention.quotedYou": "quoted you on:",
322
+ "ui.notification.viewRules": "View website rules.",
323
+
324
+ "ui.notification.deletedFor.deletedForAdvertising": "A contribution of yours has been removed because several users have flagged it as \"spam\". View the website rules for more info.",
325
+ "ui.notification.deletedFor.deletedForAggressive": "A contribution of yours has been removed because several users have flagged it as \"aggressive\". View the website rules for more info.",
326
+ "ui.notification.deletedFor.deletedForVulgar": "A contribution of yours has been removed because several users have flagged it as \"vulgar\". View the website rules for more info.",
327
+ "ui.notification.deletedFor.deletedForPoor": "A contribution of yours has been removed because several users have flagged it as \"poor content\". View the website rules for more info.",
328
+ "ui.notification.deletedFor.deletedForOfftopic": "A contribution of yours has been removed because several users have flagged it as \"off-topic\". View the website rules for more info.",
329
+ "ui.notification.deletedFor.deletedForAdvertisingSnippet": "Contribution removed because flagged it as \"spam\"",
330
+ "ui.notification.deletedFor.deletedForAggressiveSnippet": "Contribution removed because flagged it as \"aggressive\"",
331
+ "ui.notification.deletedFor.deletedForVulgarSnippet": "Contribution removed because flagged it as \"vulgar\"",
332
+ "ui.notification.deletedFor.deletedForPoorSnippet": "Contribution removed because flagged it as \"poor content\"",
333
+ "ui.notification.deletedFor.deletedForOfftopicSnippet": "Contribution removed because flagged it as \"off-topic\"",
334
+ "ui.notification.deletedFor.youWrote": "Your contribution: ",
335
+
336
+ "ui.notification.collapsedFor.collapsedForAdvertising": "A contribution of yours has been hidden because several users have flagged it as \"spam\". View the website rules for more info.",
337
+ "ui.notification.collapsedFor.collapsedForAggressive": "A contribution of yours has been hidden because several users have flagged it as \"aggressive\". View the website rules for more info.",
338
+ "ui.notification.collapsedFor.collapsedForVulgar": "A contribution of yours has been hidden because several users have flagged it as \"vulgar\". View the website rules for more info.",
339
+ "ui.notification.collapsedFor.collapsedForPoor": "A contribution of yours has been hidden because several users have flagged it as \"poor content\". View the website rules for more info.",
340
+ "ui.notification.collapsedFor.collapsedForOfftopic": "A contribution of yours has been hidden because several users have flagged it as \"off-topic\". View the website rules for more info.",
341
+ "ui.notification.collapsedFor.collapsedForAdvertisingSnippet": "Contribution hidden because flagged it as \"spam\"",
342
+ "ui.notification.collapsedFor.collapsedForAggressiveSnippet": "Contribution hidden because flagged it as \"aggressive\"",
343
+ "ui.notification.collapsedFor.collapsedForVulgarSnippet": "Contribution hidden because flagged it as \"vulgar\"",
344
+ "ui.notification.collapsedFor.collapsedForPoorSnippet": "Contribution hidden because flagged it as \"poor content\"",
345
+ "ui.notification.collapsedFor.collapsedForOfftopicSnippet": "Contribution hidden because flagged it as \"off-topic\"",
346
+ "ui.notification.collapsedFor.youWrote": "Your contribution: ",
347
+
348
+ "ui.notification.kindlyNoticeFor.kindlyNoticeAdvertising": "Several users have flagged your contribution as \"spam\". Please, fix it according to website rules.",
349
+ "ui.notification.kindlyNoticeFor.kindlyNoticeAggressive": "Several users have flagged your contribution as \"aggressive\". Please, fix it according to website rules.",
350
+ "ui.notification.kindlyNoticeFor.kindlyNoticeVulgar": "Several users have flagged your contribution as \"vulgar\". Please, fix it according to website rules.",
351
+ "ui.notification.kindlyNoticeFor.kindlyNoticePoor": "Several users have flagged your contribution as \"poor content\". Please, fix it according to website rules.",
352
+ "ui.notification.kindlyNoticeFor.kindlyNoticeOfftopic": "Several users have flagged your contribution as \"off-topic\". Please, fix it according to website rules.",
353
+ "ui.notification.kindlyNoticeFor.kindlyNoticeAdvertisingSnippet": "Contribution flagged as \"spam\"",
354
+ "ui.notification.kindlyNoticeFor.kindlyNoticeAggressiveSnippet": "Contribution flagged as \"aggressive\"",
355
+ "ui.notification.kindlyNoticeFor.kindlyNoticeVulgarSnippet": "Contribution flagged as \"vulgar\"",
356
+ "ui.notification.kindlyNoticeFor.kindlyNoticePoorSnippet": "Contribution flagged as \"poor content\"",
357
+ "ui.notification.kindlyNoticeFor.kindlyNoticeOfftopicSnippet": "Contribution flagged as \"off-topic\"",
358
+ "ui.notification.kindlyNoticeFor.youWrote": "Your contribution: ",
359
+ "ui.notification.kindlyNoticeFlag.kindlyNoticeFlag": "You have flagged a contribution which is not irregular. Please read website rules before further flagging.",
360
+ "ui.notification.kindlyNoticeFlag.kindlyNoticeFlagSnippet": "You have flagged a contribution which is not irregular",
361
+ "ui.notification.newNotificationsLabel": "There are new notifications for you ({count}). Do you want to see them?",
362
+ "ui.notification.incubatorApproved.approved": "Your incubator <b>\"{name}\"</b> has been approved.",
363
+ "ui.notification.incubatorApproved.viewIncubator": "View category",
364
+ "ui.notification.notificationNewChip.label": "New",
365
+
366
+ "ui.userPopupNotification.viewOther": "View others",
367
+
368
+ "ui.userToastNotifications.dismiss": "Dismiss",
369
+ "ui.userToastNotifications.goToProfile": "Go to profile",
370
+ "ui.userToastNotifications.viewContribution": "View contribution",
371
+ "ui.userToastNotifications.replyMessage": "Reply",
372
+ "ui.userToastNotifications.privateMessage.sentMessage": "sent you a message",
373
+ "ui.userToastNotifications.mention.quotedYou": "quoted you on",
374
+ "ui.userToastNotifications.comment.addedComment": "added a comment",
375
+ "ui.userToastNotifications.contributionFollow.follow": "is following your contribution",
376
+ "ui.userToastNotifications.undeletedFor.restoredContent": "Your previously removed content has been restored",
377
+ "ui.userToastNotifications.undeletedFor.youWrote": "Your contribution: ",
378
+ "ui.userToastNotifications.incubatorApproved.approved": "Your incubator {name} has been <b>approved</b>.",
379
+ "ui.userToastNotifications.incubatorApproved.viewIncubator": "View category",
380
+ "ui.userToastNotifications.userBlocked.accountBlocked": "Your account has been <b>blocked</b>",
381
+ "ui.userToastNotifications.userBlocked.accountReactivated": "Your account has been <b>reactivated</b>",
382
+
383
+ "ui.snippetNotifications.noNotifications": "At the moment, you don't have any notifications to see",
384
+
385
+ "ui.messageEditor.button.send" : "send",
386
+
387
+ "ui.thread.message.dialog.msg": "Are you sure you want to delete this message?",
388
+ "ui.thread.message.dialog.confirm": "Yes",
389
+ "ui.thread.newMessage.to" : "To:",
390
+ "ui.thread.newMessage.autocomplete.placeholder" : "type username...",
391
+ "ui.thread.emptyBox.message" : "Select or compose a message",
392
+
393
+ "ui.accountSignin.username.label": "Username",
394
+ "ui.accountSignin.password.label": "Password",
395
+ "ui.accountSignin.submit": "Sign In",
396
+
397
+ "ui.accountSignup.email.label": "Email",
398
+ "ui.accountSignup.username.label": "Username",
399
+ "ui.accountSignup.password.label": "Password",
400
+ "ui.accountSignup.submit": "Register",
401
+
402
+ "ui.accountRecover.email.label": "Email",
403
+ "ui.accountRecover.submit": "Recover Account",
404
+
405
+ "ui.contributionActionMenu.permanentLink": "Permanent link",
406
+ "ui.contributionActionMenu.editContribution": "Edit",
407
+ "ui.contributionActionMenu.restoreContribution": "Restore",
408
+ "ui.contributionActionMenu.deleteContribution": "Delete",
409
+ "ui.contributionActionMenu.enableNotificationContribution": "Enable notifications",
410
+ "ui.contributionActionMenu.suspendNotificationContribution": "Suspend notifications",
411
+ "ui.contributionActionMenu.flagContributionWithMotivation": "Flag with motivation",
412
+ "ui.contributionActionMenu.hideContributionWithMotivation": "Hide with motivation",
413
+ "ui.contributionActionMenu.deleteContributionWithMotivation": "Delete with motivation",
414
+ "ui.contributionActionMenu.actionSuccess": "Operation successfully complete!",
415
+ "ui.contributionActionMenu.actionError": "There was a problem during the operation. Try later!",
416
+ "ui.contributionActionMenu.title": "This content is:",
417
+ "ui.contributionActionMenu.spam": "Spam",
418
+ "ui.contributionActionMenu.aggressive": "Aggressive",
419
+ "ui.contributionActionMenu.vulgar": "Vulgar",
420
+ "ui.contributionActionMenu.poorContent": "Poor content",
421
+ "ui.contributionActionMenu.offtopic": "Offtopic",
422
+ "ui.contributionActionMenu.footer": "Reporting is anonymous and must be compliant with rules.",
423
+ "ui.contributionActionMenu.restoreFromHidden": "Restore from hidden",
424
+ "ui.contributionActionMenu.restoreFromDeleted": "Restore from deleted",
425
+ "ui.contributionActionMenu.moderatedMotivation": "Motivation:",
426
+
427
+ "ui.lightbox.image": "Image",
428
+ "ui.lightbox.contentLabel": "Lightbox",
429
+ "ui.lightbox.closeLabel": "Close",
430
+ "ui.lightbox.nextLabel": "Next image",
431
+ "ui.lightbox.prevLabel": "Previous image",
432
+ "ui.lightbox.zoomInLabel": "Zoom in",
433
+ "ui.lightbox.zoomOutLabel": "Zoom out",
434
+ "ui.lightbox.imageLoadErrorMessage": "This image failed to load",
435
+
436
+
437
+ "ui.incubator.subscribeButton.button.subscribe": "Subscribe",
438
+ "ui.incubator.subscribeButton.button.subscribed": "Subscribed",
439
+
440
+ "ui.incubator.proposedBy": "Proposed by",
441
+ "ui.incubator.progressBar.proposal": "Proposal",
442
+ "ui.incubator.progressBar.collectingSubscribers": "Collecting subscribers",
443
+ "ui.incubator.progressBar.approved": "Approved",
444
+
445
+
446
+ "ui.incubatorDetail.intro": "I propose the creation of the interest \"{name}\".\n Support the initiative to meet the quota of approval.",
447
+ "ui.incubatorDetail.shareSection.title": "Support the cause",
448
+ "ui.incubatorDetail.shareSection.share": "Share this page",
449
+ "ui.incubatorDetail.shareSection.button.copy": "Copy",
450
+ "ui.incubatorDetail.shareSection.copied": "Copied!",
451
+ "ui.incubatorDetail.shareSection.invite": "Invite those you think might be interested",
452
+ "ui.incubatorDetail.subscribersSection.title": "Subscribers",
453
+ "ui.incubatorDetail.subscribersSection.noMoreSubscribers": "No more results",
454
+
455
+ "ui.incubatorsList.title": "Interests Incubator",
456
+ "ui.incubatorsList.popover": "Interest incubator is a proposal zone\n where users come together to generate\n new interests. New interests are\n approved depending on subscribers\n number and growth rate.",
457
+ "ui.incubatorsList.noResults": "Nothing to show",
458
+ "ui.incubatorsList.ShowAll": "View all",
459
+ "ui.incubatorsList.SuggestNewTopic": "Suggest a new topic",
460
+ "ui.incubatorsList.noMoreIncubators": "No more results",
461
+
462
+ "ui.incubatorsList.createIncubatorDialog.title": "Propose an interest",
463
+ "ui.incubatorsList.createIncubatorDialog.intro": "Interests incubator is a proposal zone where users come together to generate new interests.\n New interests are approved depending on subscribers number and growth rate.",
464
+ "ui.incubatorsList.createIncubatorDialog.formPlaceholder.name": "Name of the interest",
465
+ "ui.incubatorsList.createIncubatorDialog.formPlaceholder.slogan": "Description",
466
+ "ui.incubatorsList.createIncubatorDialog.button": "Propose",
467
+ "ui.incubatorsList.createIncubatorDialog.propose.success": "Thanks for your contribution, we will evaluate it as soon as possible. Your proposal will be accepted, modified or declined. Check the interests incubator.",
468
+
469
+ "ui.IncubatorSuggestion.title": "Suggested incubators",
470
+ "ui.IncubatorSuggestion.noResults": "Nothing to show",
471
+ "ui.IncubatorSuggestion.ShowAll": "View all",
472
+ "ui.IncubatorSuggestion.noMoreIncubators": "No more results",
473
+
474
+
475
+ "templates.userProfile.edit": "Edit",
476
+ "templates.privateMessages.button.new" : "New Message"
477
+
478
+ }