2020-07-05 18:59:47 +02:00
|
|
|
import {Layout} from "../Layout";
|
|
|
|
import * as Layer from "../Layers/Bookcases";
|
2020-07-26 02:01:34 +02:00
|
|
|
import Translations from "../../UI/i18n/Translations";
|
|
|
|
import Combine from "../../UI/Base/Combine";
|
2020-07-05 18:59:47 +02:00
|
|
|
|
2020-07-26 02:01:34 +02:00
|
|
|
export class Bookcases extends Layout {
|
2020-07-05 18:59:47 +02:00
|
|
|
constructor() {
|
2020-07-26 02:01:34 +02:00
|
|
|
super("bookcases",
|
|
|
|
["nl", "en"],
|
|
|
|
Translations.t.bookcases.title,
|
2020-07-05 18:59:47 +02:00
|
|
|
[new Layer.Bookcases()],
|
|
|
|
14,
|
|
|
|
51.2,
|
|
|
|
3.2,
|
|
|
|
|
2020-07-26 02:01:34 +02:00
|
|
|
new Combine(["<h3>",Translations.t.bookcases.title,"</h3>", Translations.t.bookcases.description])
|
|
|
|
);
|
|
|
|
this.icon = "assets/bookcase.svg"
|
2020-07-05 18:59:47 +02:00
|
|
|
}
|
|
|
|
}
|