@apolitical/component-library 6.2.0 → 6.3.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/helpers/intl.d.ts +1 -0
- package/index.js +2 -2
- package/index.mjs +7 -1
- package/navigation/action-bar/action-bar.d.ts +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
package/index.mjs
CHANGED
|
@@ -1227,6 +1227,7 @@ Thank you for helping to protect the Apolitical community from abusive content.`
|
|
|
1227
1227
|
discussion_moreMenu_report: "Report",
|
|
1228
1228
|
discussion_comments_screenReader: "See {count, plural, =0 {0 comments} one {# comment} other {# comments}}",
|
|
1229
1229
|
discussion_comments: "{count, plural, =0 {0 comments} one {# comment} other {# comments}}",
|
|
1230
|
+
discussion_comments_loading: "... comments",
|
|
1230
1231
|
discussion_responses_answer: "Answers",
|
|
1231
1232
|
discussion_responses_comment: "Comments",
|
|
1232
1233
|
discussion_responses_title: "{action} ({count})",
|
|
@@ -7429,7 +7430,12 @@ const Gn = "discussion_", Og = ({
|
|
|
7429
7430
|
{ id: `${Gn}comments_screenReader` },
|
|
7430
7431
|
{ count: a.count }
|
|
7431
7432
|
),
|
|
7432
|
-
children: l.formatMessage(
|
|
7433
|
+
children: l.formatMessage(
|
|
7434
|
+
{
|
|
7435
|
+
id: `${Gn}comments${a.count === null ? "_loading" : ""}`
|
|
7436
|
+
},
|
|
7437
|
+
{ count: a.count }
|
|
7438
|
+
)
|
|
7433
7439
|
}
|
|
7434
7440
|
) }) : /* @__PURE__ */ c.jsx(c.Fragment, {}),
|
|
7435
7441
|
i ? /* @__PURE__ */ c.jsx("li", { children: /* @__PURE__ */ c.jsx(
|