@@ -258,7 +258,11 @@ class LibraryItemComponent extends React.PureComponent {
258258 { this . props . twDeveloper ? (
259259 < div className = { styles . smallBottomMargin } >
260260 < div >
261- Originally for TurboWarp by
261+ < FormattedMessage
262+ defaultMessage = "Originally for TurboWarp by"
263+ description = "Text for crediting that an extension was originally made for turbowarp, and who has made it."
264+ id = "pm.libraryItem.turbowarpDeveloperCredits"
265+ />
262266 </ div >
263267 < div
264268 className = { styles . featuredExtensionMetadataDetail }
@@ -270,7 +274,11 @@ class LibraryItemComponent extends React.PureComponent {
270274 { this . props . extDeveloper ? (
271275 < div className = { styles . smallBottomMargin } >
272276 < div >
273- Created by
277+ < FormattedMessage
278+ defaultMessage = "created by"
279+ description = "Text for crediting an extensions creator."
280+ id = "pm.libraryItem.extensionCredits"
281+ />
274282 </ div >
275283 < div
276284 className = { styles . featuredExtensionMetadataDetail }
@@ -282,7 +290,11 @@ class LibraryItemComponent extends React.PureComponent {
282290 { this . props . eventSubmittor ? (
283291 < div className = { styles . smallBottomMargin } >
284292 < div >
285- Event Submission by
293+ < FormattedMessage
294+ defaultMessage = "event submission by"
295+ description = "Text for crediting who made a submission for an event."
296+ id = "pm.libraryItem.eventSubmissionCredits"
297+ />
286298 </ div >
287299 < div
288300 className = { styles . featuredExtensionMetadataDetail }
@@ -294,7 +306,11 @@ class LibraryItemComponent extends React.PureComponent {
294306 { this . props . credits ? (
295307 < div className = { styles . smallBottomMargin } >
296308 < div >
297- Credits
309+ < FormattedMessage
310+ defaultMessage = "Credits"
311+ description = "Text for put credits onto a library item."
312+ id = "pm.libraryItem.generalCredits"
313+ />
298314 </ div >
299315 < div
300316 className = { styles . featuredExtensionMetadataDetail }
@@ -339,7 +355,11 @@ class LibraryItemComponent extends React.PureComponent {
339355 >
340356 { this . props . isNew && (
341357 < div className = { styles . libraryItemNewBadge } >
342- NEW
358+ < FormattedMessage
359+ defaultMessage = "NEW"
360+ description = "Badge text for new library items"
361+ id = "pm.libraryItem.newItemBadge"
362+ />
343363 </ div >
344364 ) }
345365 { /* Layers of wrapping is to prevent layout thrashing on animation */ }
0 commit comments