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
1005caba
Kaydet (Commit)
1005caba
authored
Ock 22, 2011
tarafından
Malte Timmermann [mt]
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
accfixes: global resources need id greater 256, moved global resources to access.hrc
üst
6ec0a79f
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
35 additions
and
40 deletions
+35
-40
access.hrc
sw/inc/access.hrc
+7
-2
column.cxx
sw/source/ui/frmdlg/column.cxx
+6
-4
column.hrc
sw/source/ui/frmdlg/column.hrc
+0
-7
column.src
sw/source/ui/frmdlg/column.src
+4
-2
glossary.cxx
sw/source/ui/misc/glossary.cxx
+3
-1
glossary.hrc
sw/source/ui/misc/glossary.hrc
+1
-3
glossary.src
sw/source/ui/misc/glossary.src
+3
-1
tabledlg.cxx
sw/source/ui/table/tabledlg.cxx
+3
-1
tabledlg.hrc
sw/source/ui/table/tabledlg.hrc
+1
-3
tabledlg.src
sw/source/ui/table/tabledlg.src
+0
-7
navipi.cxx
sw/source/ui/utlui/navipi.cxx
+4
-2
navipi.hrc
sw/source/ui/utlui/navipi.hrc
+0
-5
navipi.src
sw/source/ui/utlui/navipi.src
+3
-2
No files found.
sw/inc/access.hrc
Dosyayı görüntüle @
1005caba
...
...
@@ -54,13 +54,18 @@
//IAccessibility2 Implementation 2009-----
#define STR_ACCESS_PREVIEW_DOC_NAME (RC_ACCESS_BEGIN + 22)
//#define STR_ACCESS_PREVIEW_DOC_DESC
(RC_ACCESS_BEGIN + 23)
//#define STR_ACCESS_PREVIEW_DOC_DESC (RC_ACCESS_BEGIN + 23)
#define STR_ACCESS_PREVIEW_DOC_SUFFIX (RC_ACCESS_BEGIN + 24)
#define STR_ACCESS_DOC_WORDPROCESSING (RC_ACCESS_BEGIN + 25)
#define STR_ACCESS_DOC_WORDPROCESSING_READONLY (RC_ACCESS_BEGIN + 26)
#define STR_ACCESS_COLUMN_WIDTH (RC_ACCESS_BEGIN + 27)
#define STR_ACCESS_PAGESETUP_SPACING (RC_ACCESS_BEGIN + 28)
#define STR_ACCESS_SW_CATEGORY (RC_ACCESS_BEGIN + 29)
#define STR_ACCESS_TL_GLOBAL (RC_ACCESS_BEGIN + 30)
#define STR_ACCESS_TL_CONTENT (RC_ACCESS_BEGIN + 31)
//-----IAccessibility2 Implementation 2009
#define ACCESS_ACT_END STR_ACCESS_
DOC_WORDPROCESSING_READONLY
#define ACCESS_ACT_END STR_ACCESS_
TL_CONTENT
#if ACCESS_ACT_END > RC_ACCESS_END
#error Resource-Id Ueberlauf in #file, #line
...
...
sw/source/ui/frmdlg/column.cxx
Dosyayı görüntüle @
1005caba
...
...
@@ -68,6 +68,8 @@
#include <docary.hxx>
#include <pagedesc.hxx>
#include "access.hrc"
#define FRAME_FORMAT_WIDTH 1000
// sw/inc/fmtclds.hxx
...
...
@@ -931,19 +933,19 @@ void SwColumnPage::SetLabels( USHORT nVis )
String
tmp3
(
sLbl2
);
sLbl2
.
Insert
(
sLbl
,
sLbl2
.
Len
()
-
1
);
aLbl3
.
SetText
(
sLbl2
);
String
sColumnWidth
=
SW_RESSTR
(
STR_COLUMN_WIDTH
)
;
String
sColumnWidth
=
SW_RESSTR
(
STR_
ACCESS_
COLUMN_WIDTH
)
;
sColumnWidth
.
SearchAndReplaceAscii
(
"%1"
,
tmp1
);
aEd1
.
SetAccessibleName
(
sColumnWidth
);
sColumnWidth
=
SW_RESSTR
(
STR_COLUMN_WIDTH
)
;
sColumnWidth
=
SW_RESSTR
(
STR_
ACCESS_
COLUMN_WIDTH
)
;
sColumnWidth
.
SearchAndReplaceAscii
(
"%1"
,
tmp2
);
aEd2
.
SetAccessibleName
(
sColumnWidth
);
sColumnWidth
=
SW_RESSTR
(
STR_COLUMN_WIDTH
)
;
sColumnWidth
=
SW_RESSTR
(
STR_
ACCESS_
COLUMN_WIDTH
)
;
sColumnWidth
.
SearchAndReplaceAscii
(
"%1"
,
tmp3
);
aEd3
.
SetAccessibleName
(
sColumnWidth
);
String
sDist
=
SW_RESSTR
(
STR_PAGESETUP_SPACING
)
;
String
sDist
=
SW_RESSTR
(
STR_
ACCESS_
PAGESETUP_SPACING
)
;
String
sDist1
=
sDist
;
sDist1
.
SearchAndReplaceAscii
(
"%1"
,
tmp1
);
sDist1
.
SearchAndReplaceAscii
(
"%2"
,
tmp2
);
...
...
sw/source/ui/frmdlg/column.hrc
Dosyayı görüntüle @
1005caba
...
...
@@ -79,15 +79,8 @@
#define FT_TEXTDIRECTION 60
#define LB_TEXTDIRECTION 61
#define FL_VERT 62
//IAccessibility2 Impplementaton 2009-----
#define STR_PAGESETUP_SPACING 32765
//-----IAccessibility2 Impplementaton 2009
#define LISTBOX_SELECTION 0
#define LISTBOX_SECTION 1
#define LISTBOX_SECTIONS 2
#define LISTBOX_PAGE 3
#define LISTBOX_FRAME 4
//IAccessibility2 Impplementaton 2009-----
#define STR_COLUMN_WIDTH 63
//-----IAccessibility2 Impplementaton 2009
sw/source/ui/frmdlg/column.src
Dosyayı görüntüle @
1005caba
...
...
@@ -30,6 +30,8 @@
#include "frmui.hrc"
#include "cmdid.h"
#include "helpid.h"
#include "access.hrc"
// #define TP_COLUMN 256
TabPage TP_COLUMN
{
...
...
@@ -417,12 +419,12 @@ ModalDialog DLG_COLUMN
};
//IAccessibility2 Impplementaton 2009-----
String STR_PAGESETUP_SPACING
String STR_
ACCESS_
PAGESETUP_SPACING
{
Text [ en-US ] = "Spacing between %1 and %2";
};
String STR_COLUMN_WIDTH
String STR_
ACCESS_
COLUMN_WIDTH
{
Text [ en-US ] = "Column %1 Width";
};
...
...
sw/source/ui/misc/glossary.cxx
Dosyayı görüntüle @
1005caba
...
...
@@ -91,6 +91,8 @@
#include <swmodule.hxx>
#include <sfx2/filedlghelper.hxx>
#include "access.hrc"
#define LONG_LENGTH 60
#define SHORT_LENGTH 30
...
...
@@ -298,7 +300,7 @@ SwGlossaryDlg::SwGlossaryDlg(SfxViewFrame* pViewFrame,
aCategoryBox
.
GetModel
()
->
SetSortMode
(
SortAscending
);
aCategoryBox
.
SetHighlightRange
();
// ueber volle Breite selektieren
aCategoryBox
.
SetNodeDefaultImages
(
);
aCategoryBox
.
SetAccessibleName
(
SW_RES
(
STR_SW_CATEGORY
));
aCategoryBox
.
SetAccessibleName
(
SW_RES
(
STR_
ACCESS_
SW_CATEGORY
));
aCategoryBox
.
SetAccessibleRelationLabeledBy
(
&
aInsertTipCB
);
Init
();
...
...
sw/source/ui/misc/glossary.hrc
Dosyayı görüntüle @
1005caba
...
...
@@ -88,6 +88,4 @@
#define FL_NN 9
#define BT_CANCEL 10
#define BT_OKNEW 11
//IAccessibility2 Implementation 2009-----
#define STR_SW_CATEGORY 12
//-----IAccessibility2 Implementation 2009
sw/source/ui/misc/glossary.src
Dosyayı görüntüle @
1005caba
...
...
@@ -29,6 +29,8 @@
#include "glossary.hrc"
#include "cmdid.h"
#include "helpid.h"
#include "access.hrc"
// #define DLG_GLOSSARY 256
ModalDialog DLG_GLOSSARY
{
...
...
@@ -289,7 +291,7 @@ String STR_GLOSSARY
Text [ en-US ] = "AutoText :" ;
};
/*IAccessibility2 Implementation 2009-----*/
String STR_SW_CATEGORY
String STR_
ACCESS_
SW_CATEGORY
{
Text [ en-US ] = "Category" ;
};
...
...
sw/source/ui/table/tabledlg.cxx
Dosyayı görüntüle @
1005caba
...
...
@@ -53,6 +53,8 @@
#include <fmtrowsplt.hxx>
#include <svx/htmlmode.hxx>
#include "access.hrc"
#ifndef _DOCSH_HXX
#include <docsh.hxx>
#endif
...
...
@@ -994,7 +996,7 @@ IMPL_LINK( SwTableColumnPage, AutoClickHdl, CheckBox *, pBox )
pTextArr
[
i
]
->
SetText
(
sEntry
);
//IAccessibility2 Impplementaton 2009-----
//added by menghu for SODC_5143,12/12/2006
String
sColumnWidth
=
SW_RESSTR
(
STR_
COLUMN_WIDTH
);
String
sColumnWidth
=
SW_RESSTR
(
STR_
ACCESS_COLUMN_WIDTH
);
sColumnWidth
.
SearchAndReplace
(
DEFINE_CONST_UNICODE
(
"%1"
),
sIndex
);
pFieldArr
[
i
]
->
SetAccessibleName
(
sColumnWidth
);
//end of SODC_5143
...
...
sw/source/ui/table/tabledlg.hrc
Dosyayı görüntüle @
1005caba
...
...
@@ -106,8 +106,6 @@
#define FL_VERT_ORIENT 140
#define RB_FROM_LEFT 144
//IAccessibility2 Impplementaton 2009-----
#define STR_COLUMN_WIDTH 145
//-----IAccessibility2 Impplementaton 2009
#define FT_VERTORIENT 150
#define LB_VERTORIENT 151
sw/source/ui/table/tabledlg.src
Dosyayı görüntüle @
1005caba
...
...
@@ -786,10 +786,3 @@ InfoBox MSG_WRONG_TABLENAME
{
Message [ en-US ] = "The name of the table must not contain spaces." ;
};
//IAccessibility2 Impplementaton 2009-----
String STR_COLUMN_WIDTH
{
Text [ en-US ] = "Column %1 Width" ;
};
//-----IAccessibility2 Impplementaton 2009
sw/source/ui/utlui/navipi.cxx
Dosyayı görüntüle @
1005caba
...
...
@@ -80,6 +80,8 @@
#include <utlui.hrc>
#endif
#include "access.hrc"
#include <unomid.h>
...
...
@@ -934,8 +936,8 @@ SwNavigationPI::SwNavigationPI( SfxBindings* _pBindings,
aPageChgTimer
.
SetTimeoutHdl
(
LINK
(
this
,
SwNavigationPI
,
ChangePageHdl
));
aPageChgTimer
.
SetTimeout
(
PAGE_CHANGE_TIMEOUT
);
aContentTree
.
SetAccessibleName
(
SW_RESSTR
(
ST_TL_CONTENT
));
aGlobalTree
.
SetAccessibleName
(
SW_RESSTR
(
ST_TL_GLOBAL
));
aContentTree
.
SetAccessibleName
(
SW_RESSTR
(
ST
R_ACCESS
_TL_CONTENT
));
aGlobalTree
.
SetAccessibleName
(
SW_RESSTR
(
ST
R_ACCESS
_TL_GLOBAL
));
aDocListBox
.
SetAccessibleName
(
aStatusArr
[
3
]);
}
...
...
sw/source/ui/utlui/navipi.hrc
Dosyayı görüntüle @
1005caba
...
...
@@ -88,8 +88,3 @@
#define ST_POSTIT_SHOW (ST_GLOBAL_CONTEXT_FIRST +35)
#define ST_POSTIT_HIDE (ST_GLOBAL_CONTEXT_FIRST +36)
#define ST_POSTIT_DELETE (ST_GLOBAL_CONTEXT_FIRST +37)
//IAccessibility2 Implementation 2009-----
#define ST_TL_GLOBAL ST_GLOBAL_CONTEXT_FIRST +38
#define ST_TL_CONTENT ST_GLOBAL_CONTEXT_FIRST +39
//-----IAccessibility2 Implementation 2009
sw/source/ui/utlui/navipi.src
Dosyayı görüntüle @
1005caba
...
...
@@ -29,6 +29,7 @@
#include "utlui.hrc"
#include "navipi.hrc"
#include "helpid.h"
#include "access.hrc"
Window DLG_NAVIGATION_PI
{
...
...
@@ -536,11 +537,11 @@ ImageList IMG_NAVI_ENTRYBMPH
};
//IAccessibility2 Implementation 2009-----
String ST_TL_GLOBAL
String ST
R_ACCESS
_TL_GLOBAL
{
Text [ en-US ] = "Global View";
};
String ST_TL_CONTENT
String ST
R_ACCESS
_TL_CONTENT
{
Text [ en-US ] = "Content View";
};
...
...
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