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
5390946c
Kaydet (Commit)
5390946c
authored
Eyl 09, 2014
tarafından
Andras Timar
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fdo#80098 make header of Search Result dialog localizable
Change-Id: I16ec29e4f35f00e39d88dd334284db7bf051a846
üst
c45be916
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
1 deletion
+23
-1
sc.hrc
sc/inc/sc.hrc
+6
-0
searchresults.cxx
sc/source/ui/dialogs/searchresults.cxx
+2
-1
scstring.src
sc/source/ui/src/scstring.src
+15
-0
No files found.
sc/inc/sc.hrc
Dosyayı görüntüle @
5390946c
...
...
@@ -915,6 +915,12 @@
#define SCSTR_PRINT_OPTIONS (STR_START + 216)
#define SCSTR_WARN_ME_IN_FUTURE_CHECK (STR_START + 217)
// header of search result dialog
#define STR_SHEET (STR_START + 218)
#define STR_CELL (STR_START + 219)
#define STR_CONTENT (STR_START + 220)
// navigator - in the same order as SC_CONTENT_...
#define SCSTR_CONTENT_ROOT (STR_START + 250)
#define SCSTR_CONTENT_TABLE (STR_START + 251)
...
...
sc/source/ui/dialogs/searchresults.cxx
Dosyayı görüntüle @
5390946c
...
...
@@ -18,6 +18,7 @@
#include "rangeutl.hxx"
#include "tabvwsh.hxx"
#include <sc.hrc>
#include "scresid.hxx"
namespace
sc
{
...
...
@@ -34,7 +35,7 @@ SearchResultsDlg::SearchResultsDlg( SfxBindings* _pBindings, Window* pParent, sa
mpList
=
new
SvSimpleTable
(
*
pContainer
);
long
nTabs
[]
=
{
3
,
0
,
40
,
60
};
mpList
->
SetTabs
(
&
nTabs
[
0
]);
mpList
->
InsertHeaderEntry
(
"Sheet
\t
Cell
\t
Content"
);
mpList
->
InsertHeaderEntry
(
SC_RESSTR
(
STR_SHEET
)
+
"
\t
"
+
SC_RESSTR
(
STR_CELL
)
+
"
\t
"
+
SC_RESSTR
(
STR_CONTENT
)
);
mpList
->
SetSelectHdl
(
LINK
(
this
,
SearchResultsDlg
,
ListSelectHdl
)
);
}
...
...
sc/source/ui/src/scstring.src
Dosyayı görüntüle @
5390946c
...
...
@@ -967,4 +967,19 @@ String STR_SUM
Text [ en-US ] = "Total" ;
};
String STR_SHEET
{
Text [ en-US ] = "Sheet" ;
};
String STR_CELL
{
Text [ en-US ] = "Cell" ;
};
String STR_CONTENT
{
Text [ en-US ] = "Content" ;
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
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