include/svx/strings.hrc       |    2 +-
 svx/source/dialog/charmap.cxx |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 3bfd7ae3d414cae3bb4e582c2a2562d7b08887cb
Author:     Taichi Haradaguchi <20001...@ymail.ne.jp>
AuthorDate: Thu Apr 18 19:59:41 2024 +0900
Commit:     Eike Rathke <er...@redhat.com>
CommitDate: Sat Apr 20 21:23:44 2024 +0200

    Fix Unicode block name
    
    See https://unicode.org/charts/PDF/U0080.pdf
    
    Change-Id: I6bc3117abb486cc2cc38870ed91185c62eaa9361
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166243
    Reviewed-by: Eike Rathke <er...@redhat.com>
    Tested-by: Jenkins

diff --git a/include/svx/strings.hrc b/include/svx/strings.hrc
index f26dbe3bd558..13f896f04eeb 100644
--- a/include/svx/strings.hrc
+++ b/include/svx/strings.hrc
@@ -1464,7 +1464,7 @@
 #define RID_SVXSTR_SAVE_MODIFIED_IMAGE                      
NC_("RID_SVXSTR_SAVE_MODIFIED_IMAGE", "The image has been modified. By default 
the original image will be saved.
Do you want to save the modified version instead?")
 
 #define RID_SUBSETSTR_BASIC_LATIN                           
NC_("RID_SUBSETMAP", "Basic Latin")
-#define RID_SUBSETSTR_LATIN_1                               
NC_("RID_SUBSETMAP", "Latin-1")
+#define RID_SUBSETSTR_LATIN_1_SUPPLEMENT                    
NC_("RID_SUBSETMAP", "C1 Controls and Latin-1 Supplement")
 #define RID_SUBSETSTR_LATIN_EXTENDED_A                      
NC_("RID_SUBSETMAP", "Latin Extended-A")
 #define RID_SUBSETSTR_LATIN_EXTENDED_B                      
NC_("RID_SUBSETMAP", "Latin Extended-B")
 #define RID_SUBSETSTR_IPA_EXTENSIONS                        
NC_("RID_SUBSETMAP", "IPA Extensions")
diff --git a/svx/source/dialog/charmap.cxx b/svx/source/dialog/charmap.cxx
index dcb1205584d7..9b87fe3666a7 100644
--- a/svx/source/dialog/charmap.cxx
+++ b/svx/source/dialog/charmap.cxx
@@ -952,7 +952,7 @@ void SubsetMap::InitList()
                     aAllSubsets.emplace_back( 0x0000, 0x007F, 
SvxResId(RID_SUBSETSTR_BASIC_LATIN) );
                     break;
                 case UBLOCK_LATIN_1_SUPPLEMENT:
-                    aAllSubsets.emplace_back( 0x0080, 0x00FF, 
SvxResId(RID_SUBSETSTR_LATIN_1) );
+                    aAllSubsets.emplace_back( 0x0080, 0x00FF, 
SvxResId(RID_SUBSETSTR_LATIN_1_SUPPLEMENT) );
                     break;
                 case UBLOCK_LATIN_EXTENDED_A:
                     aAllSubsets.emplace_back( 0x0100, 0x017F, 
SvxResId(RID_SUBSETSTR_LATIN_EXTENDED_A) );

Reply via email to