diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2018-12-05 18:54:22 +0100 |
---|---|---|
committer | Xisco Faulí <xiscofauli@libreoffice.org> | 2018-12-06 13:19:42 +0100 |
commit | cc797cd31e99d47db5b2815a0a86c96204a65e62 (patch) | |
tree | 11f8af2e02689dc493b66bf4b63d5d1b0f65d138 /sd/inc/pageformatpanel.hrc | |
parent | 6c42acfa8ffd749777801af7a432b9796ab9d87c (diff) |
tdf#121926: Take metrics into account
Similar to 6d9a2557a0f0366fff169f3c3581414b3cec80bd
Change-Id: Ifecc3f86a3da8fdd4b0535cb67c6315e0d418f5a
Reviewed-on: https://gerrit.libreoffice.org/64645
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Jenkins
Reviewed-by: Xisco Faulí <xiscofauli@libreoffice.org>
Diffstat (limited to 'sd/inc/pageformatpanel.hrc')
-rw-r--r-- | sd/inc/pageformatpanel.hrc | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/sd/inc/pageformatpanel.hrc b/sd/inc/pageformatpanel.hrc new file mode 100644 index 000000000000..23325e26ac2f --- /dev/null +++ b/sd/inc/pageformatpanel.hrc @@ -0,0 +1,41 @@ +/* -*- 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/. + */ + +#ifndef INCLUDED_SD_INC_PAGEFORMATPANEL_HRC +#define INCLUDED_SD_INC_PAGEFORMATPANEL_HRC + +#define NC_(Context, String) reinterpret_cast<char const *>(Context "\004" u8##String) + +// To translators: this is a listbox labelled by "Margins:", inch units +const char* RID_PAGEFORMATPANEL_MARGINS_INCH[] = +{ + NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "None"), + NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Narrow"), + NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Moderate"), + NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Normal (0.75\")"), + NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Normal (1\")"), + NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Normal (1.25\")"), + NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Wide"), +}; + +// To translators: this is a listbox labelled by "Margins:", cm units +const char* RID_PAGEFORMATPANEL_MARGINS_CM[] = +{ + NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "None"), + NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Narrow"), + NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Moderate"), + NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Normal (1.9cm)"), + NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Normal (2.54cm)"), + NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Normal (3.18cm)"), + NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Wide"), +}; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ |