Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
35fe6b95
Kaydet (Commit)
35fe6b95
authored
Mar 23, 2012
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Localize the group prefix for pivot table defult group names.
üst
3751ab69
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
globstr.hrc
sc/inc/globstr.hrc
+2
-1
globstr.src
sc/source/ui/src/globstr.src
+4
-0
dbfunc3.cxx
sc/source/ui/view/dbfunc3.cxx
+1
-2
No files found.
sc/inc/globstr.hrc
Dosyayı görüntüle @
35fe6b95
...
@@ -599,8 +599,9 @@
...
@@ -599,8 +599,9 @@
#define STR_UNSAVED_EXT_REF 465
#define STR_UNSAVED_EXT_REF 465
#define STR_CLOSE_WITH_UNSAVED_REFS 466
#define STR_CLOSE_WITH_UNSAVED_REFS 466
#define STR_PIVOT_GROUP 467
#define STR_COUNT 46
7
#define STR_COUNT 46
8
#endif
#endif
sc/source/ui/src/globstr.src
Dosyayı görüntüle @
35fe6b95
...
@@ -553,6 +553,10 @@ Resource RID_GLOBSTR
...
@@ -553,6 +553,10 @@ Resource RID_GLOBSTR
{
{
Text [ en-US ] = "Data" ;
Text [ en-US ] = "Data" ;
};
};
String STR_PIVOT_GROUP
{
Text [ en-US ] = "Group" ;
};
String STR_PIVOTFUNC_SUM
String STR_PIVOTFUNC_SUM
{
{
Text [ en-US ] = "SUM" ;
Text [ en-US ] = "SUM" ;
...
...
sc/source/ui/view/dbfunc3.cxx
Dosyayı görüntüle @
35fe6b95
...
@@ -1221,8 +1221,7 @@ void ScDBFunc::GroupDataPilot()
...
@@ -1221,8 +1221,7 @@ void ScDBFunc::GroupDataPilot()
}
}
rtl
::
OUString
aGroupDimName
=
pGroupDimension
->
GetGroupDimName
();
rtl
::
OUString
aGroupDimName
=
pGroupDimension
->
GetGroupDimName
();
//! localized prefix string
rtl
::
OUString
aGroupName
=
pGroupDimension
->
CreateGroupName
(
ScGlobal
::
GetRscString
(
STR_PIVOT_GROUP
));
rtl
::
OUString
aGroupName
=
pGroupDimension
->
CreateGroupName
(
String
::
CreateFromAscii
(
"Group"
)
);
ScDPSaveGroupItem
aGroup
(
aGroupName
);
ScDPSaveGroupItem
aGroup
(
aGroupName
);
ScDPUniqueStringSet
::
const_iterator
it
=
aEntries
.
begin
(),
itEnd
=
aEntries
.
end
();
ScDPUniqueStringSet
::
const_iterator
it
=
aEntries
.
begin
(),
itEnd
=
aEntries
.
end
();
for
(;
it
!=
itEnd
;
++
it
)
for
(;
it
!=
itEnd
;
++
it
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment