diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-12-09 17:18:32 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-12-09 20:45:28 +0100 |
commit | 6552ce0f510da67be02a5102016bd14957a25a85 (patch) | |
tree | a0793119351eb5ed0b3870ee1d10588e2dcabfc4 /svx | |
parent | c50b4cb4b69597400a8325e0a200c95cf41c62f0 (diff) |
Related: tdf#129267 separate cm from value in built-in en_US strings
Change-Id: Ia3821d734ffda8e873473ac15e4a4dca5404f871
Reviewed-on: https://gerrit.libreoffice.org/84782
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/inc/spacing.hrc | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/svx/inc/spacing.hrc b/svx/inc/spacing.hrc index 3d4e93dc02b3..445484248a07 100644 --- a/svx/inc/spacing.hrc +++ b/svx/inc/spacing.hrc @@ -31,13 +31,13 @@ const std::pair<const char*, int> RID_SVXSTRARY_SPACING_INCH[] = const std::pair<const char*, int> RID_SVXSTRARY_SPACING_CM[] = { { NC_("RID_SVXSTRARY_SPACING_CM", "None"), 0 }, - { NC_("RID_SVXSTRARY_SPACING_CM", "Extra Small (0.16cm)"), 91 }, - { NC_("RID_SVXSTRARY_SPACING_CM", "Small (0.32cm)"), 181 }, - { NC_("RID_SVXSTRARY_SPACING_CM", "Small Medium (0.64cm)"), 363 }, - { NC_("RID_SVXSTRARY_SPACING_CM", "Medium (0.95cm)"), 539 }, - { NC_("RID_SVXSTRARY_SPACING_CM", "Medium Large (1.27cm)"), 720 }, - { NC_("RID_SVXSTRARY_SPACING_CM", "Large (1.9cm)"), 1077 }, - { NC_("RID_SVXSTRARY_SPACING_CM", "Extra Large (2.54cm)"), 1440 }, + { NC_("RID_SVXSTRARY_SPACING_CM", "Extra Small (0.16 cm)"), 91 }, + { NC_("RID_SVXSTRARY_SPACING_CM", "Small (0.32 cm)"), 181 }, + { NC_("RID_SVXSTRARY_SPACING_CM", "Small Medium (0.64 cm)"), 363 }, + { NC_("RID_SVXSTRARY_SPACING_CM", "Medium (0.95 cm)"), 539 }, + { NC_("RID_SVXSTRARY_SPACING_CM", "Medium Large (1.27 cm)"), 720 }, + { NC_("RID_SVXSTRARY_SPACING_CM", "Large (1.9 cm)"), 1077 }, + { NC_("RID_SVXSTRARY_SPACING_CM", "Extra Large (2.54 cm)"), 1440 }, { nullptr, 0 } }; @@ -59,13 +59,13 @@ const std::pair<const char*, int> RID_SVXSTRARY_MARGINS_INCH[] = const std::pair<const char*, int> RID_SVXSTRARY_MARGINS_CM[] = { { NC_("RID_SVXSTRARY_MARGINS_CM", "None"), 0 }, - { NC_("RID_SVXSTRARY_MARGINS_CM", "Extra Small (0.16cm)"), 91 }, - { NC_("RID_SVXSTRARY_MARGINS_CM", "Small (0.32cm)"), 181 }, - { NC_("RID_SVXSTRARY_MARGINS_CM", "Small Medium (0.64cm)"), 363 }, - { NC_("RID_SVXSTRARY_MARGINS_CM", "Medium (0.95cm)"), 539 }, - { NC_("RID_SVXSTRARY_MARGINS_CM", "Medium Large (1.27cm)"), 720 }, - { NC_("RID_SVXSTRARY_MARGINS_CM", "Large (1.9cm)"), 1077 }, - { NC_("RID_SVXSTRARY_MARGINS_CM", "Extra Large (2.54cm)"), 1440 }, + { NC_("RID_SVXSTRARY_MARGINS_CM", "Extra Small (0.16 cm)"), 91 }, + { NC_("RID_SVXSTRARY_MARGINS_CM", "Small (0.32 cm)"), 181 }, + { NC_("RID_SVXSTRARY_MARGINS_CM", "Small Medium (0.64 cm)"), 363 }, + { NC_("RID_SVXSTRARY_MARGINS_CM", "Medium (0.95 cm)"), 539 }, + { NC_("RID_SVXSTRARY_MARGINS_CM", "Medium Large (1.27 cm)"), 720 }, + { NC_("RID_SVXSTRARY_MARGINS_CM", "Large (1.9 cm)"), 1077 }, + { NC_("RID_SVXSTRARY_MARGINS_CM", "Extra Large (2.54 cm)"), 1440 }, { nullptr, 0 } }; |