diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-04-30 17:01:32 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-05-02 13:18:57 +0200 |
commit | 34f7e618ddd3399d9e7f3998e25545256255d02d (patch) | |
tree | fd946f8f2ab8386db89f531d49fae1718a21e943 /sd/inc | |
parent | c881756fcfdc1fa63ff534bf4538d551b2139515 (diff) |
untranslated strings are just strings
removes starmaths InsertCommand in favour of InsertCommandText
Change-Id: I5659adcaa28e5b5861d1a1cc5d2afa84009490f6
Reviewed-on: https://gerrit.libreoffice.org/37113
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd/inc')
-rw-r--r-- | sd/inc/glob.hrc | 7 | ||||
-rw-r--r-- | sd/inc/strings.hxx | 23 |
2 files changed, 24 insertions, 6 deletions
diff --git a/sd/inc/glob.hrc b/sd/inc/glob.hrc index 7b89fe57a994..6a89ca2d647b 100644 --- a/sd/inc/glob.hrc +++ b/sd/inc/glob.hrc @@ -38,11 +38,6 @@ #define STR_PRESOBJ_ORGCHART RID_GLOB_START+11 #define STR_PRESOBJ_TABLE RID_GLOB_START+12 -#define STR_LAYOUT_TITLE RID_GLOB_START+27 -#define STR_LAYOUT_OUTLINE RID_GLOB_START+28 -#define STR_LAYOUT_BACKGROUNDOBJECTS RID_GLOB_START+29 -#define STR_LAYOUT_BACKGROUND RID_GLOB_START+30 -#define STR_LAYOUT_NOTES RID_GLOB_START+31 #define STR_PRESOBJ_MPTITLE RID_GLOB_START+32 #define STR_PRESOBJ_MPOUTLINE RID_GLOB_START+33 #define STR_PRESOBJ_MPOUTLLAYER2 RID_GLOB_START+34 @@ -60,7 +55,7 @@ #define STR_HANDOUT RID_GLOB_START+48 #define STR_UNDO_MOVEPAGES RID_GLOB_START+52 -#define STR_LAYOUT_SUBTITLE RID_GLOB_START+54 +//free #define STR_POOLSHEET_OBJWITHARROW RID_GLOB_START+55 #define STR_POOLSHEET_OBJWITHSHADOW RID_GLOB_START+56 #define STR_POOLSHEET_OBJWITHOUTFILL RID_GLOB_START+57 diff --git a/sd/inc/strings.hxx b/sd/inc/strings.hxx new file mode 100644 index 000000000000..3a5a9ef86ce9 --- /dev/null +++ b/sd/inc/strings.hxx @@ -0,0 +1,23 @@ +/* -*- 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_STRINGS_HRC +#define INCLUDED_SD_INC_STRINGS_HRC + +/* do not translate */ +#define STR_LAYOUT_TITLE "Titel" +#define STR_LAYOUT_OUTLINE "Gliederung" +#define STR_LAYOUT_BACKGROUND "Hintergrund" +#define STR_LAYOUT_BACKGROUNDOBJECTS "Hintergrundobjekte" +#define STR_LAYOUT_NOTES "Notizen" +#define STR_LAYOUT_SUBTITLE "Untertitel" +#define STR_HTMLEXP_DEFAULT_EXTENSION ".html" +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ |