#96110# Fontname of textcontrol localized

This commit is contained in:
Behrend Cornelius 2002-01-16 14:38:28 +00:00
parent e7de289160
commit fccb771fc5
4 changed files with 11 additions and 7 deletions

View file

@ -90,14 +90,18 @@ Dim iThisMonth as Integer
Select Case sCurLangLocale Select Case sCurLangLocale
Case "ja" Case "ja"
.lstOwnData.FontName = "HG Mincho Light J" .lstOwnData.FontName = "HG Mincho Light J"
.txtEvent.FontName = "HG Mincho Light J"
Case "zh" Case "zh"
If oDocument.CharLocale.Country = "CN" Then If oDocument.CharLocale.Country = "CN" Then
.lstOwnData.FontName = "HG MSung Light SC" .lstOwnData.FontName = "HG MSung Light SC"
.txtEvent.FontName = "HG MSung Light SC"
Else Else
.lstOwnData.FontName = "HG MSung Light TC" .lstOwnData.FontName = "HG MSung Light TC"
.txtEvent.FontName = "HG MSung Light TC"
End If End If
Case "ko" Case "ko"
.lstOwnData.FontName = "HG MyeongJo Light K" .lstOwnData.FontName = "HG MyeongJo Light K"
.txtEvent.FontName = "HG MyeongJo Light K"
End Select End Select
.lstOwnEventMonth.StringItemList() = cCalShortMonthNames() .lstOwnEventMonth.StringItemList() = cCalShortMonthNames()
.optYear.State = 1 .optYear.State = 1

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE dlg:window PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "dialog.dtd"> <!DOCTYPE dlg:window PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "dialog.dtd">
<dlg:window xmlns:dlg="http://openoffice.org/2000/dialog" xmlns:script="http://openoffice.org/2000/script" dlg:id="Dialog1" dlg:left="160" dlg:top="81" dlg:width="208" dlg:height="156" dlg:page="1" dlg:help-url="HID:34700"> <dlg:window xmlns:dlg="http://openoffice.org/2000/dialog" xmlns:script="http://openoffice.org/2000/script" dlg:id="Dialog1" dlg:left="160" dlg:top="81" dlg:width="208" dlg:height="156" dlg:page="2" dlg:help-url="HID:34700">
<dlg:styles> <dlg:styles>
<dlg:style dlg:style-id="0" dlg:border="none"/> <dlg:style dlg:style-id="0" dlg:border="none"/>
<dlg:style dlg:style-id="1" dlg:font-name="Cumberland" dlg:font-stylename="Standard" dlg:font-family="modern" dlg:font-charset="ansi"/> <dlg:style dlg:style-id="1" dlg:font-name="Cumberland" dlg:font-stylename="Standard" dlg:font-family="modern" dlg:font-charset="ansi"/>

View file

@ -409,13 +409,13 @@ End Function
Sub FindWholeYearHolidays_CN(YearInt as Integer) Sub FindWholeYearHolidays_CN(YearInt as Integer)
CalculateChineseNewYear(YearInt) CalculateChineseNewYear(YearInt)
CalInsertBankholiday(DateSerial(YearInt, 1, 1), &quot;元旦&quot;, cHolidayType_Full) &apos; New Year CalInsertBankholiday(DateSerial(YearInt, 1, 1), &quot;元旦&quot;, cHolidayType_Full) &apos; New Year
CalInsertBankholiday(DateSerial(YearInt, 5, 8), &quot;妇女节&quot;, cHolidayType_Half) &apos; Women&apos;s Day CalInsertBankholiday(DateSerial(YearInt, 5, 8), &quot;妇女节&quot;, cHolidayType_Half) &apos; Women&apos;s Day
CalInsertBankholiday(DateSerial(YearInt, 4, 5), &quot;清明节&quot;, cHolidayType_Half) &apos; Day of the deads CalInsertBankholiday(DateSerial(YearInt, 4, 5), &quot;清明节&quot;, cHolidayType_Half) &apos; Day of the deads
CalInsertBankholiday(DateSerial(YearInt, 5, 1), &quot;劳动节&quot;, cHolidayType_Full) &apos; International Labour Day CalInsertBankholiday(DateSerial(YearInt, 5, 1), &quot;劳动节&quot;, cHolidayType_Full) &apos; International Labour Day
CalInsertBankholiday(DateSerial(YearInt, 6, 1), &quot;儿童节&quot;, cHolidayType_Half) &apos; Children&apos;s Day CalInsertBankholiday(DateSerial(YearInt, 6, 1), &quot;儿童节&quot;, cHolidayType_Half) &apos; Children&apos;s Day
CalInsertBankholiday(DateSerial(YearInt, 8, 1), &quot;建军节&quot;, cHolidayType_Half) &apos; Foundation of military CalInsertBankholiday(DateSerial(YearInt, 8, 1), &quot;建军节&quot;, cHolidayType_Half) &apos; Foundation of military
CalInsertBankholiday(DateSerial(YearInt, 10, 1), &quot;国庆节&quot;, cHolidayType_Full) &apos; National festival day CalInsertBankholiday(DateSerial(YearInt, 10, 1), &quot;国庆节&quot;, cHolidayType_Full) &apos; National festival day
End Sub End Sub
@ -478,8 +478,8 @@ Dim lDate as Long
Case Else Case Else
Exit Sub Exit Sub
End Select End Select
Select Case sCurLangLocale Select Case sCurCountryLocale
Case &quot;zh&quot; Case &quot;CN&quot;
CalInsertBankholiday(lDate-1, &quot;春节&quot;, cHolidayType_Full) CalInsertBankholiday(lDate-1, &quot;春节&quot;, cHolidayType_Full)
CalInsertBankholiday(lDate, &quot;春节&quot;, cHolidayType_Full) CalInsertBankholiday(lDate, &quot;春节&quot;, cHolidayType_Full)
CalInsertBankholiday(lDate+1, &quot;春节&quot;, cHolidayType_Full) CalInsertBankholiday(lDate+1, &quot;春节&quot;, cHolidayType_Full)

View file

@ -15,7 +15,7 @@ Dim FileName as String
Dim FileChannel as Integer Dim FileChannel as Integer
Dim i as Integer Dim i as Integer
If bCalOwnDataChanged Then If bCalOwnDataChanged Then
FileName = GetPathSettings(&quot;Config&quot;, False) &amp; &quot;/&quot; &amp; &quot;DATE.DAT&quot; FileName = GetPathSettings(&quot;UserConfig&quot;, False) &amp; &quot;/&quot; &amp; &quot;DATE.DAT&quot;
SaveDataToFile(FileName, DlgCalModel.lstOwnData.StringItemList()) SaveDataToFile(FileName, DlgCalModel.lstOwnData.StringItemList())
End If End If
End Sub End Sub
@ -24,7 +24,7 @@ End Sub
Sub CalLoadOwnData() Sub CalLoadOwnData()
Dim FileName as String Dim FileName as String
Dim LocList() as String Dim LocList() as String
FileName = GetPathSettings(&quot;Config&quot;, False) &amp; &quot;/DATE.DAT&quot; FileName = GetPathSettings(&quot;UserConfig&quot;, False) &amp; &quot;/DATE.DAT&quot;
If LoadDataFromFile(FileName, LocList()) Then If LoadDataFromFile(FileName, LocList()) Then
DlgCalModel.lstOwnData.StringItemList() = LocList() DlgCalModel.lstOwnData.StringItemList() = LocList()
End If End If