// SPDX-License-Identifier: GPL-2.0-or-later /* * Contain internal sizes of paper which can be used in various * functions to make and size pages. * * Authors: * Martin Owens * * Copyright (C) 2022 Authors * * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "template-screen.h" #include "clear-n_.h" namespace Inkscape { namespace Extension { namespace Internal { void TemplateScreen::init() { // clang-format off Inkscape::Extension::build_from_mem( "" "org.inkscape.template.digital" "" N_("Screen Sizes") "" "" N_("Document formats using common screen resolutions") "" "" NC_("TemplateCategory", "Screen") "" "px" "100.0" "100.0" "" "", new TemplateScreen()); // clang-format on } } // namespace Internal } // namespace Extension } // namespace Inkscape /* Local Variables: mode:c++ c-file-style:"stroustrup" c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) indent-tabs-mode:nil fill-column:99 End: */ // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :