90c978f839
filter, forms, fpicker, framework Change-Id: I55a25ad2dc3749e63465e638e8eeea3c322eabbf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112047 Tested-by: Jenkins Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
22 lines
1,021 B
C++
22 lines
1,021 B
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#define STR_APPL_NAME_WRITER "%PRODUCTNAME Writer (.sxw)"
|
|
#define STR_APPL_NAME_CALC "%PRODUCTNAME Calc (.sxc)"
|
|
#define STR_APPL_NAME_IMPRESS "%PRODUCTNAME Impress (.sxi)"
|
|
#define STR_APPL_NAME_DRAW "%PRODUCTNAME Draw (.sxd)"
|
|
#define STR_APPL_NAME_OASIS_WRITER "%PRODUCTNAME Writer (.odt)"
|
|
#define STR_APPL_NAME_OASIS_CALC "%PRODUCTNAME Calc (.ods)"
|
|
#define STR_APPL_NAME_OASIS_IMPRESS "%PRODUCTNAME Impress (.odp)"
|
|
#define STR_APPL_NAME_OASIS_DRAW "%PRODUCTNAME Draw (.odg)"
|
|
#define STR_DEFAULT_EXTENSION "xml"
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
|