forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			No EOL
		
	
	
		
			675 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			No EOL
		
	
	
		
			675 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import {Layout} from "../Customizations/Layout";
 | 
						|
import Translations from "../UI/i18n/Translations";
 | 
						|
 | 
						|
export class PersonalLayout extends Layout {
 | 
						|
 | 
						|
    public static NAME: string = "personal";
 | 
						|
 | 
						|
    constructor() {
 | 
						|
        super(
 | 
						|
            PersonalLayout.NAME,
 | 
						|
            ["en"],
 | 
						|
            Translations.t.favourite.title,
 | 
						|
            [],
 | 
						|
            12,
 | 
						|
            0,
 | 
						|
            0,
 | 
						|
            Translations.t.favourite.description,
 | 
						|
        );
 | 
						|
        this.maintainer = "MapComplete"
 | 
						|
        this.description = "The personal theme allows to select one or more layers from all the layouts, creating a truly personal editor"
 | 
						|
        this.icon = "./assets/add.svg"
 | 
						|
    }
 | 
						|
 | 
						|
} |