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
3c5c43cf
Kaydet (Commit)
3c5c43cf
authored
Şub 23, 2013
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
add stock undo button text and map to gtk-undo
Change-Id: I9109dfc6293c9de399c25bea957712eb00d181be
üst
90a83191
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
1 deletion
+12
-1
spellingdialog.ui
cui/uiconfig/ui/spellingdialog.ui
+4
-1
svids.hrc
vcl/inc/svids.hrc
+1
-0
btntext.src
vcl/source/src/btntext.src
+5
-0
builder.cxx
vcl/source/window/builder.cxx
+2
-0
No files found.
cui/uiconfig/ui/spellingdialog.ui
Dosyayı görüntüle @
3c5c43cf
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<!-- interface-requires gtk+ 3.0 -->
<!-- interface-requires LibreOffice 1.0 -->
<object
class=
"GtkDialog"
id=
"SpellingDialog"
>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"border_width"
>
5
</property>
...
...
@@ -46,11 +47,12 @@
</child>
<child>
<object
class=
"GtkButton"
id=
"undo"
>
<property
name=
"label"
translatable=
"yes"
>
_U
ndo
</property>
<property
name=
"label"
>
gtk-u
ndo
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"receives_default"
>
True
</property>
<property
name=
"use_underline"
>
True
</property>
<property
name=
"use_stock"
>
True
</property>
</object>
<packing>
<property
name=
"expand"
>
False
</property>
...
...
@@ -93,6 +95,7 @@
<child>
<object
class=
"svxcorelo-SvxLanguageBox"
id=
"languagelb"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"halign"
>
end
</property>
</object>
<packing>
...
...
vcl/inc/svids.hrc
Dosyayı görüntüle @
3c5c43cf
...
...
@@ -159,6 +159,7 @@
#define SV_BUTTONTEXT_SAVE 10118
#define SV_BUTTONTEXT_OK_NOMNEMONIC 10119
#define SV_BUTTONTEXT_CANCEL_NOMNEMONIC 10120
#define SV_BUTTONTEXT_UNDO 10121
#define SV_STDTEXT_FIRST SV_STDTEXT_SERVICENOTAVAILABLE
#define SV_STDTEXT_SERVICENOTAVAILABLE 10210
...
...
vcl/source/src/btntext.src
Dosyayı görüntüle @
3c5c43cf
...
...
@@ -124,3 +124,8 @@ String SV_BUTTONTEXT_SAVE
{
Text [ en-US ] = "~Save";
};
String SV_BUTTONTEXT_UNDO
{
Text [ en-US ] = "~Undo " ;
};
vcl/source/window/builder.cxx
Dosyayı görüntüle @
3c5c43cf
...
...
@@ -579,6 +579,8 @@ namespace
return
(
VclResId
(
SV_BUTTONTEXT_APPLY
).
toString
());
else
if
(
rType
==
"gtk-save"
)
return
(
VclResId
(
SV_BUTTONTEXT_SAVE
).
toString
());
else
if
(
rType
==
"gtk-undo"
)
return
(
VclResId
(
SV_BUTTONTEXT_UNDO
).
toString
());
SAL_WARN
(
"vcl.layout"
,
"unknown stock type: "
<<
rType
.
getStr
());
return
OUString
();
}
...
...
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