[Libreoffice-commits] .: sc/inc sc/source

Kohei Yoshida kohei at kemper.freedesktop.org
Fri Mar 23 07:36:49 PDT 2012


 sc/inc/globstr.hrc            |    3 ++-
 sc/source/ui/src/globstr.src  |    4 ++++
 sc/source/ui/view/dbfunc3.cxx |    3 +--
 3 files changed, 7 insertions(+), 3 deletions(-)

New commits:
commit 35fe6b9587a22e9faa669ebab05bf577f09a3438
Author: Kohei Yoshida <kohei.yoshida at gmail.com>
Date:   Fri Mar 23 10:36:32 2012 -0400

    Localize the group prefix for pivot table defult group names.

diff --git a/sc/inc/globstr.hrc b/sc/inc/globstr.hrc
index 5157eb6..b02d250 100644
--- a/sc/inc/globstr.hrc
+++ b/sc/inc/globstr.hrc
@@ -599,8 +599,9 @@
 
 #define STR_UNSAVED_EXT_REF         465
 #define STR_CLOSE_WITH_UNSAVED_REFS 466
+#define STR_PIVOT_GROUP             467
 
-#define STR_COUNT                   467
+#define STR_COUNT                   468
 
 
 #endif
diff --git a/sc/source/ui/src/globstr.src b/sc/source/ui/src/globstr.src
index 164e12d..dcc4adb 100644
--- a/sc/source/ui/src/globstr.src
+++ b/sc/source/ui/src/globstr.src
@@ -553,6 +553,10 @@ Resource RID_GLOBSTR
     {
         Text [ en-US ] = "Data" ;
     };
+    String STR_PIVOT_GROUP
+    {
+        Text [ en-US ] = "Group" ;
+    };
     String STR_PIVOTFUNC_SUM
     {
         Text [ en-US ] = "SUM" ;
diff --git a/sc/source/ui/view/dbfunc3.cxx b/sc/source/ui/view/dbfunc3.cxx
index f6eb887..6742928 100644
--- a/sc/source/ui/view/dbfunc3.cxx
+++ b/sc/source/ui/view/dbfunc3.cxx
@@ -1221,8 +1221,7 @@ void ScDBFunc::GroupDataPilot()
     }
     rtl::OUString aGroupDimName = pGroupDimension->GetGroupDimName();
 
-    //! localized prefix string
-    rtl::OUString aGroupName = pGroupDimension->CreateGroupName( String::CreateFromAscii("Group") );
+    rtl::OUString aGroupName = pGroupDimension->CreateGroupName(ScGlobal::GetRscString(STR_PIVOT_GROUP));
     ScDPSaveGroupItem aGroup( aGroupName );
     ScDPUniqueStringSet::const_iterator it = aEntries.begin(), itEnd = aEntries.end();
     for (; it != itEnd; ++it)


More information about the Libreoffice-commits mailing list