mirror of
https://github.com/discourse/discourse.git
synced 2024-12-21 02:03:45 +08:00
32665cf9dd
Enables our new eslint rules which enforce consistent i18n imports. For more info, see 0d58b40cd7
19 lines
485 B
JavaScript
19 lines
485 B
JavaScript
import Component from "@glimmer/component";
|
|
import { tracked } from "@glimmer/tracking";
|
|
import { i18n } from "discourse-i18n";
|
|
|
|
export default class DeletePostsConfirmation extends Component {
|
|
@tracked value;
|
|
|
|
get text() {
|
|
return i18n("admin.user.delete_posts.confirmation.text", {
|
|
username: this.args.model.user.username,
|
|
post_count: this.args.model.user.post_count,
|
|
});
|
|
}
|
|
|
|
get deleteDisabled() {
|
|
return !this.value || this.text !== this.value;
|
|
}
|
|
}
|