forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			577 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			577 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import {UIElement} from "../../UI/UIElement";
 | 
						|
import Translations from "../../UI/i18n/Translations";
 | 
						|
import {TagRenderingOptions} from "../TagRenderingOptions";
 | 
						|
 | 
						|
 | 
						|
export default class Website extends TagRenderingOptions {
 | 
						|
    constructor(category: string | UIElement) {
 | 
						|
        super({
 | 
						|
            question: Translations.t.general.questions.websiteOf.Subs({category: category}),
 | 
						|
            freeform: {
 | 
						|
                renderTemplate: Translations.t.general.questions.websiteIs,
 | 
						|
                template: "$$$",
 | 
						|
                key: "website"
 | 
						|
            }
 | 
						|
        });
 | 
						|
    }
 | 
						|
}
 |