cbae4ec3c9
"Thousands Separator" and "Engineering notation" used the same checkbox, so help tips texts were the same. This commit creates a second checkbox which is hiden/shown according to category selected Change-Id: I804c2c7b4625497da8e423a952b357fbd8bbfa19 Reviewed-on: https://gerrit.libreoffice.org/24173 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
58 lines
1.8 KiB
Makefile
58 lines
1.8 KiB
Makefile
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
#
|
|
# 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/.
|
|
#
|
|
|
|
|
|
$(eval $(call gb_AllLangResTarget_AllLangResTarget,sc))
|
|
|
|
$(eval $(call gb_AllLangResTarget_add_srs,sc,\
|
|
sc/res \
|
|
))
|
|
|
|
$(eval $(call gb_SrsTarget_SrsTarget,sc/res))
|
|
|
|
$(eval $(call gb_SrsTarget_set_include,sc/res,\
|
|
$$(INCLUDE) \
|
|
-I$(SRCDIR)/sc/inc \
|
|
-I$(SRCDIR)/sc/source/ui/inc \
|
|
-I$(SRCDIR)/sc/source/ui/navipi \
|
|
-I$(SRCDIR)/sc/source/ui/docshell \
|
|
-I$(SRCDIR)/sc/source/ui/pagedlg \
|
|
-I$(SRCDIR)/sc/source/ui/dbgui \
|
|
-I$(SRCDIR)/sc/source/ui/formdlg \
|
|
))
|
|
|
|
$(eval $(call gb_SrsTarget_add_files,sc/res,\
|
|
sc/source/ui/src/globstr.src \
|
|
sc/source/ui/src/toolbox.src \
|
|
sc/source/ui/src/scfuncs.src \
|
|
sc/source/ui/src/sc.src \
|
|
sc/source/ui/src/scerrors.src \
|
|
sc/source/ui/src/scstring.src \
|
|
sc/source/ui/src/filter.src \
|
|
sc/source/ui/src/condformatdlg.src \
|
|
sc/source/ui/cctrl/checklistmenu.src \
|
|
sc/source/ui/navipi/navipi.src \
|
|
sc/source/ui/styleui/scstyles.src \
|
|
sc/source/ui/dbgui/pvfundlg.src \
|
|
sc/source/ui/miscdlgs/retypepassdlg.src \
|
|
sc/source/ui/miscdlgs/conflictsdlg.src \
|
|
sc/source/ui/miscdlgs/acredlin.src \
|
|
sc/source/ui/formdlg/dwfunctr.src \
|
|
sc/source/ui/sidebar/CellAppearancePropertyPanel.src \
|
|
sc/source/ui/StatisticsDialogs/StatisticsDialogs.src \
|
|
sc/source/core/src/compiler.src \
|
|
))
|
|
|
|
$(eval $(call gb_SrsTarget_add_nonlocalizable_files,sc/res,\
|
|
sc/source/ui/src/iconsets.src \
|
|
sc/source/ui/pagedlg/pagedlg.src \
|
|
sc/source/ui/dbgui/outline.src \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|