summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2018-02-25 13:18:53 +0100
committerMichael Stahl <mstahl@redhat.com>2018-02-26 12:11:47 +0100
commitca6089161ad9c24ee3c2eb5c82f4a039107c5313 (patch)
tree6e22972d77cb2b53790789e3714fb7cb320f4dbc /editeng
parent43bb03c5b17b1a583d77747bba604b17487d2723 (diff)
Translate German variable names
Translated the enum values in editeng, but kept the their translation references in editrids.hrc, to prevent a need to update translations. "UPPERCASE" was used instead of "CAPS", in alignment to style::CaseMap. The values in svxitems.sdi don't seem to be used anywhere, but translated anyway. Change-Id: I1b3a9a68ce814841819b361ce5767764e3b1968c Reviewed-on: https://gerrit.libreoffice.org/50305 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/items/textitem.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/editeng/source/items/textitem.cxx b/editeng/source/items/textitem.cxx
index d528a36b5229..515125461713 100644
--- a/editeng/source/items/textitem.cxx
+++ b/editeng/source/items/textitem.cxx
@@ -1911,10 +1911,10 @@ OUString SvxCaseMapItem::GetValueTextByPos( sal_uInt16 nPos ) const
static const char* RID_SVXITEMS_CASEMAP[] =
{
RID_SVXITEMS_CASEMAP_NONE,
- RID_SVXITEMS_CASEMAP_VERSALIEN,
- RID_SVXITEMS_CASEMAP_GEMEINE,
- RID_SVXITEMS_CASEMAP_TITEL,
- RID_SVXITEMS_CASEMAP_KAPITAELCHEN
+ RID_SVXITEMS_CASEMAP_UPPERCASE,
+ RID_SVXITEMS_CASEMAP_LOWERCASE,
+ RID_SVXITEMS_CASEMAP_TITLE,
+ RID_SVXITEMS_CASEMAP_SMALLCAPS
};
static_assert(SAL_N_ELEMENTS(RID_SVXITEMS_CASEMAP) == size_t(SvxCaseMap::End), "must match");