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
923934d0
Kaydet (Commit)
923934d0
authored
Ock 18, 2012
tarafından
Eike Rathke
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
nitpick, it's i18n, not l18n
üst
ef08c381
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
37 additions
and
37 deletions
+37
-37
calendarwrapper.cxx
unotools/source/i18n/calendarwrapper.cxx
+25
-25
charclass.cxx
unotools/source/i18n/charclass.cxx
+2
-2
instance.hxx
unotools/source/i18n/instance.hxx
+1
-1
localedatawrapper.cxx
unotools/source/i18n/localedatawrapper.cxx
+9
-9
No files found.
unotools/source/i18n/calendarwrapper.cxx
Dosyayı görüntüle @
923934d0
...
...
@@ -70,7 +70,7 @@ void CalendarWrapper::loadDefaultCalendar( const ::com::sun::star::lang::Locale&
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"loadDefaultCalendar: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"loadDefaultCalendar: Exception caught "
<<
e
.
Message
);
}
}
...
...
@@ -84,7 +84,7 @@ void CalendarWrapper::loadCalendar( const ::rtl::OUString& rUniqueID, const ::co
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"loadCalendar: Exception caught requested: "
SAL_WARN
(
"unotools.
i
18n"
,
"loadCalendar: Exception caught requested: "
<<
rUniqueID
<<
" Locale: "
<<
rLocale
.
Language
<<
"_"
<<
rLocale
.
Country
<<
" "
<<
e
.
Message
);
}
}
...
...
@@ -99,7 +99,7 @@ void CalendarWrapper::loadCalendar( const ::rtl::OUString& rUniqueID, const ::co
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getAllCalendars: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getAllCalendars: Exception caught "
<<
e
.
Message
);
}
return
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>
(
0
);
...
...
@@ -115,7 +115,7 @@ void CalendarWrapper::loadCalendar( const ::rtl::OUString& rUniqueID, const ::co
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getUniqueID: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getUniqueID: Exception caught "
<<
e
.
Message
);
}
return
::
rtl
::
OUString
();
}
...
...
@@ -130,7 +130,7 @@ void CalendarWrapper::setDateTime( double nTimeInDays )
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"setDateTime: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"setDateTime: Exception caught "
<<
e
.
Message
);
}
}
...
...
@@ -144,7 +144,7 @@ double CalendarWrapper::getDateTime() const
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getDateTime: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getDateTime: Exception caught "
<<
e
.
Message
);
}
return
0.0
;
}
...
...
@@ -168,7 +168,7 @@ sal_Int32 CalendarWrapper::getCombinedOffsetInMillis(
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"setLocalDateTime: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"setLocalDateTime: Exception caught "
<<
e
.
Message
);
}
return
nOffset
;
}
...
...
@@ -234,7 +234,7 @@ void CalendarWrapper::setLocalDateTime( double nTimeInDays )
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"setLocalDateTime: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"setLocalDateTime: Exception caught "
<<
e
.
Message
);
}
}
...
...
@@ -254,7 +254,7 @@ double CalendarWrapper::getLocalDateTime() const
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getLocalDateTime: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getLocalDateTime: Exception caught "
<<
e
.
Message
);
}
return
0.0
;
}
...
...
@@ -269,7 +269,7 @@ void CalendarWrapper::setValue( sal_Int16 nFieldIndex, sal_Int16 nValue )
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"setValue: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"setValue: Exception caught "
<<
e
.
Message
);
}
}
...
...
@@ -283,7 +283,7 @@ sal_Bool CalendarWrapper::isValid() const
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"isValue: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"isValue: Exception caught "
<<
e
.
Message
);
}
return
sal_False
;
}
...
...
@@ -298,7 +298,7 @@ sal_Int16 CalendarWrapper::getValue( sal_Int16 nFieldIndex ) const
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getValue: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getValue: Exception caught "
<<
e
.
Message
);
}
return
0
;
}
...
...
@@ -313,7 +313,7 @@ void CalendarWrapper::addValue( sal_Int16 nFieldIndex, sal_Int32 nAmount )
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"addValue: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"addValue: Exception caught "
<<
e
.
Message
);
}
}
...
...
@@ -327,7 +327,7 @@ sal_Int16 CalendarWrapper::getFirstDayOfWeek() const
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getFirstDayOfWeek: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getFirstDayOfWeek: Exception caught "
<<
e
.
Message
);
}
return
0
;
}
...
...
@@ -342,7 +342,7 @@ void CalendarWrapper::setFirstDayOfWeek( sal_Int16 nDay )
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"setFirstDayOfWeek: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"setFirstDayOfWeek: Exception caught "
<<
e
.
Message
);
}
}
...
...
@@ -356,7 +356,7 @@ void CalendarWrapper::setMinimumNumberOfDaysForFirstWeek( sal_Int16 nDays )
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"setMinimumNumberOfDaysForFirstWeek: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"setMinimumNumberOfDaysForFirstWeek: Exception caught "
<<
e
.
Message
);
}
}
...
...
@@ -370,7 +370,7 @@ sal_Int16 CalendarWrapper::getNumberOfMonthsInYear() const
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getNumberOfMonthsInYear: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getNumberOfMonthsInYear: Exception caught "
<<
e
.
Message
);
}
return
0
;
}
...
...
@@ -385,7 +385,7 @@ sal_Int16 CalendarWrapper::getNumberOfDaysInWeek() const
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getNumberOfDaysInWeek: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getNumberOfDaysInWeek: Exception caught "
<<
e
.
Message
);
}
return
0
;
}
...
...
@@ -400,7 +400,7 @@ sal_Int16 CalendarWrapper::getNumberOfDaysInWeek() const
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getMonths: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getMonths: Exception caught "
<<
e
.
Message
);
}
return
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
i18n
::
CalendarItem2
>
(
0
);
}
...
...
@@ -415,7 +415,7 @@ sal_Int16 CalendarWrapper::getNumberOfDaysInWeek() const
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getDays: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getDays: Exception caught "
<<
e
.
Message
);
}
return
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
i18n
::
CalendarItem2
>
(
0
);
}
...
...
@@ -430,7 +430,7 @@ String CalendarWrapper::getDisplayName( sal_Int16 nCalendarDisplayIndex, sal_Int
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getDisplayName: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getDisplayName: Exception caught "
<<
e
.
Message
);
}
return
String
();
}
...
...
@@ -447,7 +447,7 @@ String CalendarWrapper::getDisplayString( sal_Int32 nCalendarDisplayCode, sal_In
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getDisplayString: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getDisplayString: Exception caught "
<<
e
.
Message
);
}
return
String
();
}
...
...
@@ -464,7 +464,7 @@ String CalendarWrapper::getDisplayString( sal_Int32 nCalendarDisplayCode, sal_In
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getLoadedCalendar2: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getLoadedCalendar2: Exception caught "
<<
e
.
Message
);
}
return
::
com
::
sun
::
star
::
i18n
::
Calendar2
();
}
...
...
@@ -479,7 +479,7 @@ String CalendarWrapper::getDisplayString( sal_Int32 nCalendarDisplayCode, sal_In
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getGenitiveMonths: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getGenitiveMonths: Exception caught "
<<
e
.
Message
);
}
return
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
i18n
::
CalendarItem2
>
(
0
);
}
...
...
@@ -494,7 +494,7 @@ String CalendarWrapper::getDisplayString( sal_Int32 nCalendarDisplayCode, sal_In
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getPartitiveMonths: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getPartitiveMonths: Exception caught "
<<
e
.
Message
);
}
return
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
i18n
::
CalendarItem2
>
(
0
);
}
...
...
unotools/source/i18n/charclass.cxx
Dosyayı görüntüle @
923934d0
...
...
@@ -428,7 +428,7 @@ sal_Int32 CharClass::getStringType( const String& rStr, xub_StrLen nPos, xub_Str
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"parseAnyToken: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"parseAnyToken: Exception caught "
<<
e
.
Message
);
return
ParseResult
();
}
}
...
...
@@ -454,7 +454,7 @@ sal_Int32 CharClass::getStringType( const String& rStr, xub_StrLen nPos, xub_Str
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"parsePredefinedToken: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"parsePredefinedToken: Exception caught "
<<
e
.
Message
);
return
ParseResult
();
}
}
...
...
unotools/source/i18n/instance.hxx
Dosyayı görüntüle @
923934d0
...
...
@@ -53,7 +53,7 @@ inline css::uno::Reference<css::uno::XInterface>
}
catch
(
const
css
::
uno
::
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
context
<<
"ctor:Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
context
<<
"ctor:Exception caught "
<<
e
.
Message
);
xRet
=
css
::
uno
::
Reference
<
css
::
uno
::
XInterface
>
();
}
return
xRet
;
...
...
unotools/source/i18n/localedatawrapper.cxx
Dosyayı görüntüle @
923934d0
...
...
@@ -162,7 +162,7 @@ void LocaleDataWrapper::invalidateData()
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getLocaleItem: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getLocaleItem: Exception caught "
<<
e
.
Message
);
}
return
::
com
::
sun
::
star
::
i18n
::
LocaleDataItem
();
}
...
...
@@ -177,7 +177,7 @@ void LocaleDataWrapper::invalidateData()
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getAllCurrencies: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getAllCurrencies: Exception caught "
<<
e
.
Message
);
}
return
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
i18n
::
Currency2
>
(
0
);
}
...
...
@@ -192,7 +192,7 @@ void LocaleDataWrapper::invalidateData()
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getAllFormats: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getAllFormats: Exception caught "
<<
e
.
Message
);
}
return
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
i18n
::
FormatElement
>
(
0
);
}
...
...
@@ -207,7 +207,7 @@ void LocaleDataWrapper::invalidateData()
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getCollatorImplementations: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getCollatorImplementations: Exception caught "
<<
e
.
Message
);
}
return
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
i18n
::
Implementation
>
(
0
);
}
...
...
@@ -222,7 +222,7 @@ void LocaleDataWrapper::invalidateData()
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getTransliterations: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getTransliterations: Exception caught "
<<
e
.
Message
);
}
return
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>
(
0
);
}
...
...
@@ -237,7 +237,7 @@ void LocaleDataWrapper::invalidateData()
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getForbiddenCharacters: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getForbiddenCharacters: Exception caught "
<<
e
.
Message
);
}
return
::
com
::
sun
::
star
::
i18n
::
ForbiddenCharacters
();
}
...
...
@@ -252,7 +252,7 @@ void LocaleDataWrapper::invalidateData()
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getReservedWord: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getReservedWord: Exception caught "
<<
e
.
Message
);
}
return
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>
(
0
);
}
...
...
@@ -272,7 +272,7 @@ void LocaleDataWrapper::invalidateData()
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getAllInstalledLocaleNames: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getAllInstalledLocaleNames: Exception caught "
<<
e
.
Message
);
}
return
rInstalledLocales
;
}
...
...
@@ -1885,7 +1885,7 @@ void LocaleDataWrapper::evaluateLocaleDataChecking()
}
catch
(
const
Exception
&
e
)
{
SAL_WARN
(
"unotools.
l
18n"
,
"getAllCalendars: Exception caught "
<<
e
.
Message
);
SAL_WARN
(
"unotools.
i
18n"
,
"getAllCalendars: Exception caught "
<<
e
.
Message
);
}
return
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
i18n
::
Calendar2
>
(
0
);
}
...
...
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