mirror of
https://github.com/flarum/core.git
synced 2025-07-01 07:05:01 +02:00
- Changes all `app.trans` calls to `app.translator.trans` calls. - Changes existing keys to [three-tier namespace structure](https://github.com/flarum/english/pull/12). - Extracts additional strings for `lib:` namespace. - Extracts two previously missed strings for EditGroupModal.js.
20 lines
313 B
JavaScript
20 lines
313 B
JavaScript
import Modal from 'flarum/components/Modal';
|
|
|
|
export default class LoadingModal extends Modal {
|
|
isDismissible() {
|
|
return false;
|
|
}
|
|
|
|
className() {
|
|
return 'LoadingModal Modal--small';
|
|
}
|
|
|
|
title() {
|
|
return app.translator.trans('core.admin.loading.title');
|
|
}
|
|
|
|
content() {
|
|
return '';
|
|
}
|
|
}
|