1 /*
2   This file is part of Lokalize
3 
4   SPDX-FileCopyrightText: 2009 Nick Shaforostoff <shafff@ukr.net>
5   SPDX-FileCopyrightText: 2018-2019 Simon Depiets <sdepiets@gmail.com>
6 
7   SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
8 */
9 
10 #ifndef CATALOGCAPABILITIES_H
11 #define CATALOGCAPABILITIES_H
12 
13 enum CatalogCapabilities {
14     KeepsNoteAuthors = 1,
15     MultipleNotes = 2,
16     Phases = 4,
17     ExtendedStates = 8,
18     Tags = 16
19 };
20 
21 enum CatalogType {
22     Gettext,
23     Xliff,
24     Ts
25 };
26 
27 #endif
28