discourse/plugins/styleguide/config/locales
Keegan George d886c55f63
DEV: Reusable post-list component (#30312)
This update adds a  _new_ `<PostList />` component, along with it's child components (`<PostListItem/>` and `<PostListItemDetails />`). This new generic component can be used to show a list of posts.

It can be used like so:
```js
/**
 * A component that renders a list of posts
 *
 * @component PostList
 *
 * @args {Array<Object>} posts - The array of post objects to display
 * @args {Function} fetchMorePosts - A function that fetches more posts. Must return a Promise that resolves to an array of new posts.
 * @args {String} emptyText (optional) - Custom text to display when there are no posts
 * @args {String|Array} additionalItemClasses (optional) - Additional classes to add to each post list item
 * @args {String} titleAriaLabel (optional) - Custom Aria label for the post title
 * 
*/
```
```hbs
<PostList
    @posts={{this.posts}}
    @fetchMorePosts={{this.loadMorePosts}}
    @emptyText={{i18n "custom_identifier.empty"}}
    @additionalItemClasses="custom-class"
 />
```
2024-12-19 09:20:25 -08:00
..
client.ar.yml Update translations (#28115) 2024-07-29 15:16:40 +02:00
client.be.yml Update translations (#23627) 2023-09-27 11:03:00 +02:00
client.bg.yml Update translations (#23627) 2023-09-27 11:03:00 +02:00
client.bs_BA.yml Update translations (#23627) 2023-09-27 11:03:00 +02:00
client.ca.yml Update translations (#23627) 2023-09-27 11:03:00 +02:00
client.cs.yml Update translations (#27936) 2024-07-17 15:49:33 +02:00
client.da.yml Update translations (#27936) 2024-07-17 15:49:33 +02:00
client.de.yml Update translations (#27936) 2024-07-17 15:49:33 +02:00
client.el.yml Update translations (#23627) 2023-09-27 11:03:00 +02:00
client.en_GB.yml Update translations (#27936) 2024-07-17 15:49:33 +02:00
client.en.yml DEV: Reusable post-list component (#30312) 2024-12-19 09:20:25 -08:00
client.es.yml Update translations (#28041) 2024-07-23 15:23:42 +02:00
client.et.yml Update translations (#23627) 2023-09-27 11:03:00 +02:00
client.fa_IR.yml Update translations (#27936) 2024-07-17 15:49:33 +02:00
client.fi.yml Update translations (#28115) 2024-07-29 15:16:40 +02:00
client.fr.yml Update translations (#28115) 2024-07-29 15:16:40 +02:00
client.gl.yml Update translations (#27936) 2024-07-17 15:49:33 +02:00
client.he.yml Update translations (#28041) 2024-07-23 15:23:42 +02:00
client.hr.yml Update translations (#27936) 2024-07-17 15:49:33 +02:00
client.hu.yml Update translations (#28682) 2024-09-02 18:00:43 +02:00
client.hy.yml Update translations (#23627) 2023-09-27 11:03:00 +02:00
client.id.yml Update translations (#27936) 2024-07-17 15:49:33 +02:00
client.it.yml Update translations (#28115) 2024-07-29 15:16:40 +02:00
client.ja.yml Update translations (#28115) 2024-07-29 15:16:40 +02:00
client.ko.yml Update translations (#27936) 2024-07-17 15:49:33 +02:00
client.lt.yml Update translations (#27936) 2024-07-17 15:49:33 +02:00
client.lv.yml Update translations (#27936) 2024-07-17 15:49:33 +02:00
client.nb_NO.yml Update translations (#27936) 2024-07-17 15:49:33 +02:00
client.nl.yml Update translations (#28115) 2024-07-29 15:16:40 +02:00
client.pl_PL.yml Update translations 2024-10-02 08:55:44 +02:00
client.pt_BR.yml Update translations (#28115) 2024-07-29 15:16:40 +02:00
client.pt.yml Update translations (#27936) 2024-07-17 15:49:33 +02:00
client.ro.yml Update translations (#28682) 2024-09-02 18:00:43 +02:00
client.ru.yml Update translations (#28115) 2024-07-29 15:16:40 +02:00
client.sk.yml Update translations (#28041) 2024-07-23 15:23:42 +02:00
client.sl.yml Update translations (#23627) 2023-09-27 11:03:00 +02:00
client.sq.yml Update translations (#23627) 2023-09-27 11:03:00 +02:00
client.sr.yml Update translations (#27936) 2024-07-17 15:49:33 +02:00
client.sv.yml Update translations (#27936) 2024-07-17 15:49:33 +02:00
client.sw.yml Update translations (#23627) 2023-09-27 11:03:00 +02:00
client.te.yml Update translations 2024-10-02 08:55:44 +02:00
client.th.yml Update translations (#23627) 2023-09-27 11:03:00 +02:00
client.tr_TR.yml Update translations (#28115) 2024-07-29 15:16:40 +02:00
client.ug.yml Update translations (#28246) 2024-08-13 16:31:24 +02:00
client.uk.yml Update translations (#28041) 2024-07-23 15:23:42 +02:00
client.ur.yml Update translations (#27936) 2024-07-17 15:49:33 +02:00
client.vi.yml Update translations (#27936) 2024-07-17 15:49:33 +02:00
client.zh_CN.yml Update translations (#28115) 2024-07-29 15:16:40 +02:00
client.zh_TW.yml Update translations (#23627) 2023-09-27 11:03:00 +02:00
server.ar.yml Update translations (#25579) 2024-02-06 22:35:44 +01:00
server.be.yml
server.bg.yml
server.bs_BA.yml Update translations (#18183) 2022-09-13 16:04:18 +02:00
server.ca.yml
server.cs.yml Update translations (#23538) 2023-09-12 15:27:48 +02:00
server.da.yml
server.de.yml Update translations (#25386) 2024-01-23 18:29:34 +01:00
server.el.yml
server.en_GB.yml
server.en.yml DEV: Move core plugin TL -> group settings (#25355) 2024-01-23 11:35:14 +10:00
server.es.yml Update translations (#28041) 2024-07-23 15:23:42 +02:00
server.et.yml
server.fa_IR.yml
server.fi.yml Update translations (#28115) 2024-07-29 15:16:40 +02:00
server.fr.yml Update translations (#28115) 2024-07-29 15:16:40 +02:00
server.gl.yml
server.he.yml Update translations (#25476) 2024-01-30 17:05:37 +01:00
server.hr.yml
server.hu.yml Update translations (#28682) 2024-09-02 18:00:43 +02:00
server.hy.yml
server.id.yml
server.it.yml Update translations (#28115) 2024-07-29 15:16:40 +02:00
server.ja.yml Update translations (#28115) 2024-07-29 15:16:40 +02:00
server.ko.yml
server.lt.yml
server.lv.yml
server.nb_NO.yml
server.nl.yml Update translations (#25579) 2024-02-06 22:35:44 +01:00
server.pl_PL.yml Update translations (#26030) 2024-03-05 16:47:46 +01:00
server.pt_BR.yml Update translations (#25579) 2024-02-06 22:35:44 +01:00
server.pt.yml
server.ro.yml
server.ru.yml Update translations (#28115) 2024-07-29 15:16:40 +02:00
server.sk.yml Update translations (#26136) 2024-03-12 15:40:11 +01:00
server.sl.yml
server.sq.yml
server.sr.yml
server.sv.yml Update translations (#25476) 2024-01-30 17:05:37 +01:00
server.sw.yml
server.te.yml
server.th.yml
server.tr_TR.yml Update translations (#28115) 2024-07-29 15:16:40 +02:00
server.ug.yml FEATURE: Add Uyghur language (#27183) 2024-05-27 09:58:18 +02:00
server.uk.yml Update translations (#25476) 2024-01-30 17:05:37 +01:00
server.ur.yml
server.vi.yml
server.zh_CN.yml Update translations (#28115) 2024-07-29 15:16:40 +02:00
server.zh_TW.yml