[ooo-build-commit] .: Branch 'ooo-build-3-2' - 4 commits - patches/dev300
René Engelhard
rene at kemper.freedesktop.org
Fri May 7 06:50:43 PDT 2010
patches/dev300/apply | 12
patches/dev300/branch_directly_to_cpp_vtable_call_on_arm.diff | 32
patches/dev300/fix-arm-eabi-bridge.diff | 464 ++++++++++
patches/dev300/reportdesign-mention-package-l10n.diff | 376 --------
patches/dev300/sw-64bit-Size-mismatch.diff | 15
5 files changed, 487 insertions(+), 412 deletions(-)
New commits:
commit 31fc88e6fc977bdc3771c1cbf691439de92604c2
Author: Rene Engelhard <rene at debian.org>
Date: Fri May 7 15:48:07 2010 +0200
remove broken .orig hunk
* patches/dev300/fix-arm-eabi-bridge.diff:
diff --git a/patches/dev300/fix-arm-eabi-bridge.diff b/patches/dev300/fix-arm-eabi-bridge.diff
index 11f5203..2310181 100644
--- a/patches/dev300/fix-arm-eabi-bridge.diff
+++ b/patches/dev300/fix-arm-eabi-bridge.diff
@@ -462,241 +462,3 @@ diff -r bdd775934f7f -r 36887d11c60f bridges/source/cpp_uno/gcc3_linux_arm/uno2c
VtableSlot aVtableSlot(
getVtableSlot(
-diff -urN bridges-old/source/cpp_uno/gcc3_linux_arm/uno2cpp.cxx.orig bridges/source/cpp_uno/gcc3_linux_arm/uno2cpp.cxx.orig
---- bridges-old/source/cpp_uno/gcc3_linux_arm/uno2cpp.cxx.orig 2010-05-04 18:35:23.000000000 +0200
-+++ bridges/source/cpp_uno/gcc3_linux_arm/uno2cpp.cxx.orig 2010-05-04 18:40:56.000000000 +0200
-@@ -42,7 +42,17 @@
- #include <stdio.h>
- #include <string.h>
-
--#if defined(__ARM_EABI__) && !defined(__SOFTFP__)
-+/*
-+ * Based on http://gcc.gnu.org/PR41443
-+ * References to __SOFTFP__ are incorrect for EABI; the __SOFTFP__ code
-+ * should be used for *soft-float ABI* whether or not VFP is enabled,
-+ * and __SOFTFP__ does specifically mean soft-float not soft-float ABI.
-+ *
-+ * Changing the conditionals to __SOFTFP__ || __ARM_EABI__ then
-+ * -mfloat-abi=softfp should work. -mfloat-abi=hard won't; that would
-+ * need both a new macro to identify the hard-VFP ABI.
-+ */
-+#if !defined(__ARM_EABI__) && !defined(__SOFTFP__)
- #error Not Implemented
-
- /*
-@@ -95,17 +105,58 @@
-
- namespace arm
- {
-- enum armlimits { MAX_GPR_REGS = 4 };
-+ bool is_complex_struct(const typelib_TypeDescription * type)
-+ {
-+ const typelib_CompoundTypeDescription * p
-+ = reinterpret_cast< const typelib_CompoundTypeDescription * >(type);
-+ for (sal_Int32 i = 0; i < p->nMembers; ++i)
-+ {
-+ if (p->ppTypeRefs[i]->eTypeClass == typelib_TypeClass_STRUCT ||
-+ p->ppTypeRefs[i]->eTypeClass == typelib_TypeClass_EXCEPTION)
-+ {
-+ typelib_TypeDescription * t = 0;
-+ TYPELIB_DANGER_GET(&t, p->ppTypeRefs[i]);
-+ bool b = is_complex_struct(t);
-+ TYPELIB_DANGER_RELEASE(t);
-+ if (b) {
-+ return true;
-+ }
-+ }
-+ else if (!bridges::cpp_uno::shared::isSimpleType(p->ppTypeRefs[i]->eTypeClass))
-+ return true;
-+ }
-+ if (p->pBaseTypeDescription != 0)
-+ return is_complex_struct(&p->pBaseTypeDescription->aBase);
-+ return false;
-+ }
-+
-+ bool return_in_hidden_param( typelib_TypeDescriptionReference *pTypeRef )
-+ {
-+ if (bridges::cpp_uno::shared::isSimpleType(pTypeRef))
-+ return false;
-+ else if (pTypeRef->eTypeClass == typelib_TypeClass_STRUCT || pTypeRef->eTypeClass == typelib_TypeClass_EXCEPTION)
-+ {
-+ typelib_TypeDescription * pTypeDescr = 0;
-+ TYPELIB_DANGER_GET( &pTypeDescr, pTypeRef );
-+
-+ //A Composite Type not larger than 4 bytes is returned in r0
-+ bool bRet = pTypeDescr->nSize > 4 || is_complex_struct(pTypeDescr);
-+
-+ TYPELIB_DANGER_RELEASE( pTypeDescr );
-+ return bRet;
-+ }
-+ return true;
-+ }
- }
-
--void MapReturn(long r0, long r1, typelib_TypeClass eReturnType, void *pRegisterReturn)
-+void MapReturn(long r0, long r1, typelib_TypeDescriptionReference * pReturnType, void *pRegisterReturn)
- {
--#ifndef __SOFTFP__
-+#if !defined(__ARM_EABI__) && !defined(__SOFTFP__)
- register float fret asm("f0");
- register double dret asm("f0");
- #endif
-
-- switch( eReturnType )
-+ switch( pReturnType->eTypeClass )
- {
- case typelib_TypeClass_HYPER:
- case typelib_TypeClass_UNSIGNED_HYPER:
-@@ -125,20 +176,27 @@
- *(unsigned char*)pRegisterReturn = (unsigned char)r0;
- break;
- case typelib_TypeClass_FLOAT:
--#ifdef __SOFTFP__
-+#if defined(__ARM_EABI__) || defined(__SOFTFP__)
- ((long*)pRegisterReturn)[0] = r0;
- #else
- *(float*)pRegisterReturn = fret;
- #endif
- break;
- case typelib_TypeClass_DOUBLE:
--#ifdef __SOFTFP__
-+#if defined(__ARM_EABI__) || defined(__SOFTFP__)
- ((long*)pRegisterReturn)[1] = r1;
- ((long*)pRegisterReturn)[0] = r0;
- #else
- *(double*)pRegisterReturn = dret;
- #endif
- break;
-+ case typelib_TypeClass_STRUCT:
-+ case typelib_TypeClass_EXCEPTION:
-+ {
-+ if (!arm::return_in_hidden_param(pReturnType))
-+ ((long*)pRegisterReturn)[0] = r0;
-+ break;
-+ }
- default:
- break;
- }
-@@ -152,7 +210,7 @@
- void * pThis,
- sal_Int32 nVtableIndex,
- void * pRegisterReturn,
-- typelib_TypeClass eReturnType,
-+ typelib_TypeDescriptionReference * pReturnType,
- sal_uInt32 *pStack,
- sal_uInt32 nStack,
- sal_uInt32 *pGPR,
-@@ -162,7 +220,7 @@
- void * pThis,
- sal_Int32 nVtableIndex,
- void * pRegisterReturn,
-- typelib_TypeClass eReturnType,
-+ typelib_TypeDescriptionReference * pReturnType,
- sal_uInt32 *pStack,
- sal_uInt32 nStack,
- sal_uInt32 *pGPR,
-@@ -191,23 +249,10 @@
- typedef void (*FunctionCall )( sal_uInt32, sal_uInt32, sal_uInt32, sal_uInt32);
- FunctionCall pFunc = (FunctionCall)pMethod;
-
-- // fill registers
-- __asm__ __volatile__ (
-- "ldr r0, [%0, #0]\n\t"
-- "ldr r1, [%0, #4]\n\t"
-- "ldr r2, [%0, #8]\n\t"
-- "ldr r3, [%0, #12]\n\t"
-- : : "r" (pGPR)
-- : "r0", "r1", "r2", "r3"
-- );
--
-- // tell gcc that r0 to r3 are not available to it
-- register sal_uInt32 r0 asm("r0");
-- register sal_uInt32 r1 asm("r1");
-- register sal_uInt32 r2 asm("r2");
-- register sal_uInt32 r3 asm("r3");
-+ (*pFunc)(pGPR[0], pGPR[1], pGPR[2], pGPR[3]);
-
-- (*pFunc)(r0, r1, r2, r3);
-+ sal_uInt32 r0;
-+ sal_uInt32 r1;
-
- // get return value
- __asm__ __volatile__ (
-@@ -215,7 +260,7 @@
- "mov %1, r1\n\t"
- : "=r" (r0), "=r" (r1) : );
-
-- MapReturn(r0, r1, eReturnType, pRegisterReturn);
-+ MapReturn(r0, r1, pReturnType, pRegisterReturn);
- }
- }
-
-@@ -302,14 +347,14 @@
- void * pCppReturn = 0; // if != 0 && != pUnoReturn, needs reconversion
-
- bool bOverFlow = false;
--
-+ bool bSimpleReturn = true;
- if (pReturnTypeDescr)
- {
-+ if (arm::return_in_hidden_param( pReturnTypeRef ) )
-+ bSimpleReturn = false;
-
-- if (bridges::cpp_uno::shared::isSimpleType( pReturnTypeDescr ))
-- {
-+ if (bSimpleReturn)
- pCppReturn = pUnoReturn; // direct way for simple types
-- }
- else
- {
- // complex return via ptr
-@@ -380,6 +425,8 @@
- case typelib_TypeClass_DOUBLE:
- INSERT_DOUBLE( pCppArgs[nPos], nGPR, pGPR, pStack, pStackStart, bOverFlow );
- break;
-+ default:
-+ break;
- }
- // no longer needed
- TYPELIB_DANGER_RELEASE( pParamTypeDescr );
-@@ -421,7 +468,7 @@
- {
- callVirtualMethod(
- pAdjustedThisPtr, aVtableSlot.index,
-- pCppReturn, pReturnTypeDescr->eTypeClass,
-+ pCppReturn, pReturnTypeRef,
- pStackStart,
- (pStack - pStackStart),
- pGPR, nGPR);
-@@ -494,15 +541,19 @@
- // is my surrogate
- bridges::cpp_uno::shared::UnoInterfaceProxy * pThis
- = static_cast< bridges::cpp_uno::shared::UnoInterfaceProxy * >(pUnoI);
-+#if OSL_DEBUG_LEVEL > 0
- typelib_InterfaceTypeDescription * pTypeDescr = pThis->pTypeDescr;
-+#endif
-
- switch (pMemberDescr->eTypeClass)
- {
- case typelib_TypeClass_INTERFACE_ATTRIBUTE:
- {
-+#if OSL_DEBUG_LEVEL > 0
- // determine vtable call index
- sal_Int32 nMemberPos = ((typelib_InterfaceMemberTypeDescription *)pMemberDescr)->nPosition;
- OSL_ENSURE( nMemberPos < pTypeDescr->nAllMembers, "### member pos out of range!" );
-+#endif
-
- VtableSlot aVtableSlot(
- getVtableSlot(
-@@ -547,9 +598,11 @@
- }
- case typelib_TypeClass_INTERFACE_METHOD:
- {
-+#if OSL_DEBUG_LEVEL > 0
- // determine vtable call index
- sal_Int32 nMemberPos = ((typelib_InterfaceMemberTypeDescription *)pMemberDescr)->nPosition;
- OSL_ENSURE( nMemberPos < pTypeDescr->nAllMembers, "### member pos out of range!" );
-+#endif
-
- VtableSlot aVtableSlot(
- getVtableSlot(
commit ef0ba80374941daf09754fe114d06c0faab4f69c
Author: Rene Engelhard <rene at debian.org>
Date: Fri May 7 15:46:59 2010 +0200
remove bogus dbumiscres.src resources deleting
* patches/dev300/reportdesign-mention-package-l10n.diff:
diff --git a/patches/dev300/reportdesign-mention-package-l10n.diff b/patches/dev300/reportdesign-mention-package-l10n.diff
index 8896d6e..119691a 100644
--- a/patches/dev300/reportdesign-mention-package-l10n.diff
+++ b/patches/dev300/reportdesign-mention-package-l10n.diff
@@ -22,14 +22,6 @@ Index: l10n/source/bg/localize.sdf
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 pushbutton RID_EXTENSION_NOT_PRESENT_DLG PB_DOWNLOAD 0 bg Ðз~ÑеглÑне... 2002-02-02 02:02:02
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 modaldialog RID_EXTENSION_NOT_PRESENT_DLG HID_EXTENSION_NOT_PRESENT_DLG 0 bg %PRODUCTNAME %PRODUCTVERSION 2002-02-02 02:02:02
dbaccess source\ui\dlg\indexdialog.src 0 toolboxitem DLG_INDEXDESIGN.TLB_ACTIONS ID_INDEX_NEW HID_DLGIDX_NEWINDEX 13691 bg Ðов Ð¸Ð½Ð´ÐµÐºÑ 2002-02-02 02:02:02
-@@ -73378,7 +73377,6 @@
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_FILE_DOES_NOT_EXIST 13691 bg ФайлÑÑ "$file$" не ÑÑÑеÑÑвÑва. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_WARNINGS_DURING_CONNECT 13691 bg ÐÑзникнали Ñа пÑедÑпÑÐµÐ¶Ð´ÐµÐ½Ð¸Ñ Ð¿Ð¾ вÑеме на ÑвÑÑзване кÑм изÑоÑника на данни. ÐаÑиÑнеÑе "$buttontext$", за да ги видиÑе. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 13691 bg ÐмеÑо "$#$" веÑе ÑÑÑеÑÑвÑва.\nÐолÑ, вÑведеÑе дÑÑго име. 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 13691 bg СпÑавкаÑа, "$file$", изиÑква ÑазÑиÑениеÑо Sun Report Builder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_COLUMN_SELECT_TITEL 13691 bg ÐзбиÑане на колони 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 13691 bg ФоÑмаÑиÑане на ÑиповеÑе 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 13691 bg СледниÑе полеÑа веÑе Ñа зададени каÑо пÑÑвиÑни клÑÑове:\n 2002-02-02 02:02:02
Index: l10n/source/ja/localize.sdf
===================================================================
--- l10n/source/ja/localize.sdf (Revision 277664)
@@ -42,14 +34,6 @@ Index: l10n/source/ja/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 ja åé¤ãªãã·ã§ã³ 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 ja æ´æ°ãªãã·ã§ã³ 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 ja å«ã¾ãããã£ã¼ã«ã 2002-02-02 02:02:02
-@@ -1708,7 +1707,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 ja 以ä¸ã®ãã£ã¼ã«ãã¯ãã§ã«ãã©ã¤ããªãã¼ã¨ãã¦è¨å®ããã¦ãã¾ãã\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 ja ãã¼ãã«ã®ã³ãã¼ 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 ja ã¿ã¤ãã®æ¸å¼è¨å® 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 ja ã¬ãã¼ã "$file$" ã«ã¯ Sun Report Builder æ¡å¼µãå¿
é ã§ãã 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 ja ã·ã¹ãã 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 ja ãã¹ã¦(~A) 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 ja ããã¥ã¡ã³ã "$file$" ãéããã¨ãã§ãã¾ããã§ããã 2002-02-02 02:02:02
Index: l10n/source/fi/localize.sdf
===================================================================
--- l10n/source/fi/localize.sdf (Revision 277664)
@@ -62,14 +46,6 @@ Index: l10n/source/fi/localize.sdf
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 pushbutton RID_EXTENSION_NOT_PRESENT_DLG PB_DOWNLOAD 0 fi Lataa... 2002-02-02 02:02:02
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 modaldialog RID_EXTENSION_NOT_PRESENT_DLG HID_EXTENSION_NOT_PRESENT_DLG 0 fi %PRODUCTNAME %PRODUCTVERSION 2002-02-02 02:02:02
dbaccess source\ui\dlg\UserAdmin.src 0 fixedline TAB_PAGE_USERADMIN FL_USER 0 fi Käyttäjän valinta 2002-02-02 02:02:02
-@@ -1896,7 +1895,6 @@
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_FILE_DOES_NOT_EXIST 0 fi Tiedostoa "$file$" ei ole olemassa. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_WARNINGS_DURING_CONNECT 0 fi Yhteydenoton aikana tietolähteeseen ilmeni varoituksia. Napsauta "$buttontext$" nähdäksesi ne. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 0 fi Nimi '$#$' on jo olemassa.\nAnna toinen nimi. 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 fi Raportti "$file$" vaatii Sun Report Builder -lisäosan. 2002-02-02 02:02:02
- dbaccess source\ui\querydesign\querydlg.src 0 fixedline DLG_QRY_JOIN.WND_JOIN_CONTROL FL_JOIN 191 fi Asetukset 2002-02-02 02:02:02
- dbaccess source\ui\querydesign\querydlg.src 0 fixedtext DLG_QRY_JOIN.WND_JOIN_CONTROL FT_LISTBOXTITLE 89 fi ~Tyyppi 2002-02-02 02:02:02
- dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 1 0 fi Sisäliitos 2002-02-02 02:02:02
Index: l10n/source/bn/localize.sdf
===================================================================
--- l10n/source/bn/localize.sdf (Revision 277664)
@@ -82,14 +58,6 @@ Index: l10n/source/bn/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 bn মà§à¦à§ ফà§à¦²à¦¾à¦° à¦
পশন 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 bn হালনাà¦à¦¾à¦¦ à¦
পশন 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 bn à¦à§à¦·à§à¦¤à§à¦°à¦¸à¦®à§à¦¹ সà¦à¦¶à§à¦²à¦¿à¦·à§à¦ 2002-02-02 02:02:02
-@@ -65042,7 +65041,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 bn নিমà§à¦¨à§à¦à§à¦¤ à¦à§à¦·à§à¦¤à§à¦°à¦¸à¦®à§à¦¹à¦à§ à¦à¦¤à§à¦®à¦§à§à¦¯à§ পà§à¦°à¦¾à¦¥à¦®à¦¿à¦ à¦à§ হিসà§à¦¬à§ নিরà§à¦§à¦¾à¦°à¦£ à¦à¦°à¦¾ হয়à§à¦à§:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 bn à¦à§à¦¬à¦¿à¦² à¦
নà§à¦²à¦¿à¦ªà¦¿ à¦à¦°à§à¦¨ 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 bn ধরণ বিনà§à¦¯à¦¾à¦¸ à¦à¦°à¦¾ হà¦à§à¦à§ 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 bn "$file$" রিপà§à¦°à§à¦à¦à¦¿à¦° Sun Report Builder à¦à¦à§à¦¸à¦à§à¦¨à¦¶à¦¨ পà§à¦°à§à§à¦à¦¨ 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 bn সিসà§à¦à§à¦® 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 bn সব (~A) 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 bn "$file$" নথি à¦à§à¦²à¦¾ যাবà§à¦¨à¦¾à¥¤ 2002-02-02 02:02:02
Index: l10n/source/nb/localize.sdf
===================================================================
--- l10n/source/nb/localize.sdf (Revision 277664)
@@ -102,14 +70,6 @@ Index: l10n/source/nb/localize.sdf
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 pushbutton RID_EXTENSION_NOT_PRESENT_DLG PB_DOWNLOAD 0 nb ~Last ned 2002-02-02 02:02:02
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 modaldialog RID_EXTENSION_NOT_PRESENT_DLG HID_EXTENSION_NOT_PRESENT_DLG 0 nb %PRODUCTNAME %PRODUCTVERSION 2002-02-02 02:02:02
dbaccess source\ui\dlg\indexdialog.src 0 toolboxitem DLG_INDEXDESIGN.TLB_ACTIONS ID_INDEX_NEW HID_DLGIDX_NEWINDEX 13691 nb Ny indeks 2002-02-02 02:02:02
-@@ -49278,7 +49277,6 @@
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_FILE_DOES_NOT_EXIST 13691 nb Fila «$file$» finnes ikke. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_WARNINGS_DURING_CONNECT 13691 nb Advarsler ble påtruffet ved tilkobling til datakilden. Trykk «$buttontext$» for å se advarslene. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 13691 nb Navnet «$#$» finnes allerede.\nSkriv inn et annet navn. 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 13691 nb Rapporten«$file$» krever utvidelsen «Sun Report Builder». 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_COLUMN_SELECT_TITEL 13691 nb Bruk kolonner 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 13691 nb Formateringstype 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 13691 nb Følgende felter er allerede satt opp som primærnøkler:\n 2002-02-02 02:02:02
Index: l10n/source/ne/localize.sdf
===================================================================
--- l10n/source/ne/localize.sdf (Revision 277664)
@@ -147,14 +107,6 @@ Index: l10n/source/fr/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 fr Options de suppression 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 fr Options de mise à jour 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 fr Champs impliqués 2002-02-02 02:02:02
-@@ -1708,7 +1708,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 fr Les champs suivants ont déjà été définis comme clés primaires :\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 fr Copier la table 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 fr Formatage de type 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 fr Le rapport, "$file$", nécessite l'extension Sun Report Builder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 fr Système 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 fr ~Tout 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 fr Impossible d'ouvrir le document "$file$" ! 2002-02-02 02:02:02
Index: l10n/source/kid/localize.sdf
===================================================================
--- l10n/source/kid/localize.sdf (Revision 277664)
@@ -167,14 +119,6 @@ Index: l10n/source/kid/localize.sdf
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 pushbutton RID_EXTENSION_NOT_PRESENT_DLG PB_DOWNLOAD 0 kid xcly18â~Download... 20091030 14:20:22
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 modaldialog RID_EXTENSION_NOT_PRESENT_DLG HID_EXTENSION_NOT_PRESENT_DLG 0 kid x+-7q4â%PRODUCTNAME %PRODUCTVERSION 20091030 14:20:22
dbaccess source\ui\dlg\advancedsettings.src 0 fixedline AUTO_DATAHANDLING(AUTO_Y) FL_DATAHANDLING 0 kid 8p1y3gâOptions 20091030 14:20:22
-@@ -1947,7 +1946,6 @@
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_FILE_DOES_NOT_EXIST 0 kid an-a57âThe file "$file$" does not exist. 20091030 14:20:22
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_WARNINGS_DURING_CONNECT 0 kid i3s7e<âWarnings were encountered while connecting to the data source. Press "$buttontext$" to view them. 20091030 14:20:22
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 0 kid 1dgzc2âThe name '$#$' already exists.\nPlease enter another name. 20091030 14:20:22
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 kid tp<7s8âThe report, "$file$", requires the extension Sun Report Builder. 20091030 14:20:22
- dbaccess source\ui\querydesign\query.src 0 string STR_QUERY_UNDO_TABWINSHOW 0 kid jmor61âAdd Table Window 20091030 14:20:22
- dbaccess source\ui\querydesign\query.src 0 string STR_QUERY_UNDO_MOVETABWIN 0 kid g<um+2âMove table window 20091030 14:20:22
- dbaccess source\ui\querydesign\query.src 0 string STR_QUERY_UNDO_INSERTCONNECTION 0 kid zbnxymâInsert Join 20091030 14:20:22
Index: l10n/source/nl/localize.sdf
===================================================================
--- l10n/source/nl/localize.sdf (Revision 277664)
@@ -187,14 +131,6 @@ Index: l10n/source/nl/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 nl Wisopties 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 nl Bijwerkopties 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 nl betrokken velden 2002-02-02 02:02:02
-@@ -1708,7 +1707,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 nl De volgende velden zijn reeds als primaire sleutel gedefinieerd:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 nl Tabel kopiëren 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 nl Opmaaktype 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 nl Het rapport, "$file$", vereist de extensie Sun Report Builder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 nl Systeem 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 nl ~Alles 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 nl Het document "$file$" kon niet worden geopend. 2002-02-02 02:02:02
Index: l10n/source/nn/localize.sdf
===================================================================
--- l10n/source/nn/localize.sdf (Revision 277664)
@@ -207,14 +143,6 @@ Index: l10n/source/nn/localize.sdf
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 pushbutton RID_EXTENSION_NOT_PRESENT_DLG PB_DOWNLOAD 0 nn ~Last ned ⦠2002-02-02 02:02:02
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 modaldialog RID_EXTENSION_NOT_PRESENT_DLG HID_EXTENSION_NOT_PRESENT_DLG 0 nn %PRODUCTNAME %PRODUCTVERSION 2002-02-02 02:02:02
dbaccess source\ui\dlg\indexdialog.src 0 toolboxitem DLG_INDEXDESIGN.TLB_ACTIONS ID_INDEX_NEW HID_DLGIDX_NEWINDEX 13691 nn Ny indeks 2002-02-02 02:02:02
-@@ -29105,7 +29104,6 @@
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_FILE_DOES_NOT_EXIST 13691 nn Fila «$file$» finst ikkje. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_WARNINGS_DURING_CONNECT 13691 nn Det kom åtvaringar ved tilkopling til datakjelda. Trykk «$buttontext$» for å sjå åtvaringane. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 13691 nn Namnet «$#$» finst frå før.\nVel eit anna namn. 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 13691 nn Rapporten «$file$» krev utvidinga «Sun rapportbyggjar». 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_COLUMN_SELECT_TITEL 13691 nn Bruk kolonnar 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 13691 nn Formateringstype 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 13691 nn Følgjande felt er alt sette opp som primærnøklar:\n 2002-02-02 02:02:02
Index: l10n/source/vi/localize.sdf
===================================================================
--- l10n/source/vi/localize.sdf (Revision 277664)
@@ -227,26 +155,10 @@ Index: l10n/source/vi/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 vi Xoá tùy chá»n 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 vi Cáºp nháºt tùy chá»n 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 vi TrÆ°á»ng liên quan 2002-02-02 02:02:02
-@@ -1645,7 +1644,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 vi NhÆ°ng trÆ°á»ng theo Äây Äã Äược Äặt là khoá chÃnh:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 vi Chép bảng 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 vi Äá»nh dạng kiá»u 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 vi Báo cáo "$file$" cần phần má» rá»ng Sun Report Builder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 vi Há» thá»ng 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 vi Tất ~cả 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 vi Tà i liá»u « $file$ » không thá» má» Äược. 2002-02-02 02:02:02
Index: l10n/source/ro/localize.sdf
===================================================================
--- l10n/source/ro/localize.sdf (Revision 277664)
+++ l10n/source/ro/localize.sdf (Arbeitskopie)
-@@ -6762,7 +6762,6 @@
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_FILE_DOES_NOT_EXIST 0 ro Nu existÄ fiÈierul â$file$â. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_WARNINGS_DURING_CONNECT 0 ro Au apÄrut avertismente la conectarea la sursa de date. ApÄsaÈi â$buttontext$â pentru a le vizualiza. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 0 ro Numele â$#$â existÄ deja.\nVÄ rugÄm sÄ introduceÈi un alt nume. 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 ro Raportul â$file$â necesitÄ extensia Sun Report Builder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_COLUMN_SELECT_TITEL 0 ro AplicÄ coloanele 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 ro Formatarea tipului 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 ro UrmÄtoarele câmpuri au fost deja setate ca Èi chei primare:\n 2002-02-02 02:02:02
@@ -7042,7 +7041,6 @@
dbaccess source\ui\dlg\dbfindex.src 0 fixedtext DLG_DBASE_INDEXES FT_TABLEINDEXES 0 ro IndecÈi de t~abel 2002-02-02 02:02:02
dbaccess source\ui\dlg\dbfindex.src 0 fixedtext DLG_DBASE_INDEXES FT_ALLINDEXES 0 ro ~IndecÈi liberi 2002-02-02 02:02:02
@@ -267,14 +179,6 @@ Index: l10n/source/ca/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 ca Opcions de supressió 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 ca Opcions d'actualització 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 ca Camps implicats 2002-02-02 02:02:02
-@@ -1708,7 +1707,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 ca Els camps següents s'han definit com a claus primà ries:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 ca Copia la taula 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 ca Formatació de tipus 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 ca L'informe "$file$" requereix l'extensió Constructor d'informes de Sun. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 ca Sistema 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 ca ~Tot 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 ca No s'ha pogut obrir el document "$file$". 2002-02-02 02:02:02
Index: l10n/source/pt-BR/localize.sdf
===================================================================
--- l10n/source/pt-BR/localize.sdf (Revision 277664)
@@ -287,14 +191,6 @@ Index: l10n/source/pt-BR/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 pt-BR Excluir opções 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 pt-BR Atualizar opções 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 pt-BR Campos envolvidos 2002-02-02 02:02:02
-@@ -1708,7 +1707,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 pt-BR Os seguintes campos foram configurados como chaves primárias:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 pt-BR Copiar tabela 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 pt-BR Formatação de tipo 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 pt-BR O relatório, "$file$", necessita a extensão Sun Report Builder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 pt-BR Sistema 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 pt-BR ~Todas 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 pt-BR Não foi possÃvel abrir o documento "$file$". 2002-02-02 02:02:02
Index: l10n/source/ru/localize.sdf
===================================================================
--- l10n/source/ru/localize.sdf (Revision 277664)
@@ -307,26 +203,10 @@ Index: l10n/source/ru/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 ru ÐÑи Ñдалении 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 ru ÐÑи обновлении 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 ru ÐÐ¾Ð»Ñ 2002-02-02 02:02:02
-@@ -1708,7 +1707,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 ru СледÑÑÑие Ð¿Ð¾Ð»Ñ Ñже ÑÑÑÐ°Ð½Ð¾Ð²Ð»ÐµÐ½Ñ ÐºÐ°Ðº пеÑвиÑнÑе клÑÑи:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 ru ÐопиÑование 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 ru Ð¢Ð¸Ð¿Ñ Ð¿Ð¾Ð»ÐµÐ¹ 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 ru ÐÑÑÐµÑ "$file$" ÑÑебÑÐµÑ Ð½Ð°Ð»Ð¸ÑÐ¸Ñ Sun Report Builder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 ru СиÑÑемнÑй 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 ru ÐÑе 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 ru ÐокÑÐ¼ÐµÐ½Ñ "$file$" не Ð¼Ð¾Ð¶ÐµÑ Ð±ÑÑÑ Ð¾ÑкÑÑÑ. 2002-02-02 02:02:02
Index: l10n/source/ga/localize.sdf
===================================================================
--- l10n/source/ga/localize.sdf (Revision 277664)
+++ l10n/source/ga/localize.sdf (Arbeitskopie)
-@@ -13570,7 +13570,6 @@
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_FILE_DOES_NOT_EXIST 13691 ga NÃl an comhad "$file$" ann. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_WARNINGS_DURING_CONNECT 13691 ga Fuarthas rabhaidh le linn ceangal leis an bhfoinse sonraÃ. Brúigh "$buttontext$" le hiad a fheiceáil. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 13691 ga Tá an t-ainm '$#$' ann cheana.\nIontráil ainm eile le do thoil. 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 13691 ga Tá an eisÃnteacht Sun Report Builder de dhÃth ar an tuairisc, "$file$". 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_COLUMN_SELECT_TITEL 13691 ga Cuir colúin i bhfeidhm 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 13691 ga Formáidiú cló 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 13691 ga Tá na réimsà seo a leanas socraithe mar phrÃomheochracha:\n 2002-02-02 02:02:02
@@ -13943,7 +13942,6 @@
dbaccess source\ui\dlg\dsselect.src 0 string DLG_DATASOURCE_SELECTION STR_LOCAL_DATASOURCES 50 ga Bunachair Shonraà Logánta 2002-02-02 02:02:02
dbaccess source\ui\dlg\dsselect.src 0 string DLG_DATASOURCE_SELECTION STR_DESCRIPTION2 50 ga Roghnaigh bunachar sonraà 2002-02-02 02:02:02
@@ -359,14 +239,6 @@ Index: l10n/source/oc/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 oc Opcions d'escafament 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 oc Opcions d'actualizacion 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 oc Camps implicats 2002-02-02 02:02:02
-@@ -1707,7 +1706,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 oc Los camps seguents son ja causits coma clau primà ria:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 oc Copiar la taula 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 oc Tipe de formatatge 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 oc Lo rapòrt, "$file$", a de besonh de l'extension Sun Report Builder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 oc Sistèma 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 oc ~Tot 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 oc Lo document "$file$" se pòt pas dobrir. 2002-02-02 02:02:02
Index: l10n/source/gl/localize.sdf
===================================================================
--- l10n/source/gl/localize.sdf (Revision 277664)
@@ -379,14 +251,6 @@ Index: l10n/source/gl/localize.sdf
dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_COLUMN_SELECT_TITEL 13691 gl Aplicar columnas 2002-02-02 02:02:02
dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 13691 gl Formatado do tipo 2002-02-02 02:02:02
dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 13691 gl Xa foron definidos os seguintes campos como chaves primarias:\n 2002-02-02 02:02:02
-@@ -16432,7 +16431,6 @@
- dbaccess source\ui\dlg\dsselect.src 0 string DLG_DATASOURCE_SELECTION STR_LOCAL_DATASOURCES 50 gl Bases de datos locais 2002-02-02 02:02:02
- dbaccess source\ui\dlg\dsselect.src 0 string DLG_DATASOURCE_SELECTION STR_DESCRIPTION2 50 gl Seleccione unha base de datos 2002-02-02 02:02:02
- dbaccess source\ui\dlg\dsselect.src 0 modaldialog DLG_DATASOURCE_SELECTION 218 gl Fonte de datos 2002-02-02 02:02:02
--dbaccess source\ui\dlg\ExtensionNotPresent.src 0 string RID_STR_EXTENSION_NOT_PRESENT 37035 gl Para abrir un informe necesita a extensión Sun⢠Report Builder.\n\nPrema 'Descargar...' para descargar e instalar a extensión. 2002-02-02 02:02:02
- dbaccess source\ui\dlg\ExtensionNotPresent.src 0 pushbutton RID_EXTENSION_NOT_PRESENT_DLG PB_DOWNLOAD 0 gl ~Descargar... 2002-02-02 02:02:02
- dbaccess source\ui\dlg\ExtensionNotPresent.src 0 modaldialog RID_EXTENSION_NOT_PRESENT_DLG HID_EXTENSION_NOT_PRESENT_DLG 0 gl %PRODUCTNAME %PRODUCTVERSION 2002-02-02 02:02:02
- dbaccess source\ui\dlg\indexdialog.src 0 toolboxitem DLG_INDEXDESIGN.TLB_ACTIONS ID_INDEX_NEW HID_DLGIDX_NEWINDEX 13691 gl Ãndice novo 2002-02-02 02:02:02
Index: l10n/source/cs/localize.sdf
===================================================================
--- l10n/source/cs/localize.sdf (Revision 277664)
@@ -401,26 +265,10 @@ Index: l10n/source/cs/localize.sdf
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 modaldialog RID_EXTENSION_NOT_PRESENT_DLG HID_EXTENSION_NOT_PRESENT_DLG 0 cs %PRODUCTNAME %PRODUCTVERSION 2002-02-02 02:02:02
dbaccess source\ui\dlg\indexdialog.src 0 toolboxitem DLG_INDEXDESIGN.TLB_ACTIONS ID_INDEX_NEW HID_DLGIDX_NEWINDEX 13691 cs Nový indexy 2002-02-02 02:02:02
dbaccess source\ui\dlg\indexdialog.src 0 toolboxitem DLG_INDEXDESIGN.TLB_ACTIONS ID_INDEX_DROP HID_DLGIDX_DROPINDEX 13691 cs Odstranit aktuálnà index 2002-02-02 02:02:02
-@@ -1953,7 +1953,6 @@
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_FILE_DOES_NOT_EXIST 13691 cs Soubor "$file$" neexistuje. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_WARNINGS_DURING_CONNECT 13691 cs PÅi pÅipojovánà ke zdroji dat byla zobrazena upozornÄnÃ. ZobrazÃte je stisknutÃm "$buttontext$". 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 13691 cs Název '$#$' již existuje.\nZvolte jiný název. 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 13691 cs Sestava "$file$" vyžaduje rozÅ¡ÃÅenà Sun Report Builder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_COLUMN_SELECT_TITEL 13691 cs PoužÃt sloupce 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 13691 cs Formátovánà typu 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 13691 cs NásledujÃcà pole již byla použita jako primárnà klÃÄ:\n 2002-02-02 02:02:02
Index: l10n/source/km/localize.sdf
===================================================================
--- l10n/source/km/localize.sdf (Revision 277664)
+++ l10n/source/km/localize.sdf (Arbeitskopie)
-@@ -70764,7 +70764,6 @@
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_FILE_DOES_NOT_EXIST 13691 km á¯ááá¶á "$file$" áá·áâáá¶áâá¡á¾á á 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_WARNINGS_DURING_CONNECT 13691 km áá¶áâááááá¶áâáááá¼áâáá¶áâáá½áâááááá áááâáááâááááá¶ááâáááááâáá·áááááá á á
á»á
"$buttontext$" áá¾áááá¸âáá¾áâáá½áâáá¶Â á 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 13691 km áá¶áâááááá '$#$' áá½á
á á¾á á\náá¼áâáááá
á¼áâáááááâáá½áâááá á 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 13691 km ááá¶ááá¶ááá "$file$" áááá¼ááá¶áâáááááááááááâááááâáááááá·áá¸ââááááá¾áââááá¶ááá¶áááâáááá Sun á 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_COLUMN_SELECT_TITEL 13691 km á¢áá»ááááâáá½ááá 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 13691 km áá¶áâáááá¾âáááááâáááá¶áâáááááá 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 13691 km áá¶áââáá¶áâáááááâ áááá¼áâáá¶áâáááááâáá¶âáá¼áâáááááá¶ááâáá½á
âá á¾á á \n 2002-02-02 02:02:02
@@ -71137,7 +71136,6 @@
dbaccess source\ui\dlg\dsselect.src 0 string DLG_DATASOURCE_SELECTION STR_LOCAL_DATASOURCES 50 km áá¼áâáááá¶áâáá·áááâááá áá¼áââáááá¶áâ 2002-02-02 02:02:02
dbaccess source\ui\dlg\dsselect.src 0 string DLG_DATASOURCE_SELECTION STR_DESCRIPTION2 50 km áááá¾áââáá¼ááááá¶áââáá·áááááá 2002-02-02 02:02:02
@@ -441,14 +289,6 @@ Index: l10n/source/kn/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 kn à²
ಳಿಸà³à²µ à²à²¯à³à²à³à²à²³à³ 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 kn à²
ಪà³âಡà³à²à³â à²à²¯à³à²à³à²à²³à³ 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 kn à²à²³à²à³à²à²¡à²¿à²°à³à²µ à²à³à²·à³à²¤à³à²°à²à²³à³ 2002-02-02 02:02:02
-@@ -1708,7 +1707,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 kn ಠà²à³à²³à²à²¿à²¨ à²à³à²·à³à²¤à³à²°à²à²³à²¨à³à²¨à³ à²à²à²¾à²à²²à³ ಪà³à²°à²¾à²¥à²®à²¿à² à²à³à²²à²¿à²¯à²¾à²à²¿ à²
ಣಿà²à³à²³à²¿à²¸à²²à²¾à²à²¿à²¦à³:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 kn à²à³à²·à³à²à²à²µà²¨à³à²¨à³ à²à²¾à²ªà²¿ ಮಾಡಿ 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 kn ಬà²à³à²¯à²¨à³à²¨à³ ಫಾರà³à²®à²¾à²à³â ಮಾಡà³à²µà²¿à²à³ 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 kn "$file$" à²à²à²¬ ವರದಿà²à²¾à²à²¿ ಸನೠರಿಪà³à²°à³à²à³ ಬಿಲà³à²¡à²°à³ à²à²à²¬ ವಿಸà³à²¤à²°à²£à³à² à²
à²à²¤à³à²¯à²µà²¿à²°à³à²¤à³à²¤à²¦à³. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 kn ವà³à²¯à²µà²¸à³à²¥à³ 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 kn à²à²²à³à²²à²µà³(~A) 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 kn "$file$" ದಸà³à²¤à²¾à²µà³à²à²¨à³à²¨à³ ತà³à²°à³à²¯à²²à³ ಸಾಧà³à²¯à²µà²¾à²à²¿à²²à³à²². 2002-02-02 02:02:02
Index: l10n/source/ko/localize.sdf
===================================================================
--- l10n/source/ko/localize.sdf (Revision 277664)
@@ -473,14 +313,6 @@ Index: l10n/source/sh/localize.sdf
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 pushbutton RID_EXTENSION_NOT_PRESENT_DLG PB_DOWNLOAD 0 sh ~Preuzmi... 2002-02-02 02:02:02
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 modaldialog RID_EXTENSION_NOT_PRESENT_DLG HID_EXTENSION_NOT_PRESENT_DLG 0 sh %PRODUCTNAME %PRODUCTVERSION 2002-02-02 02:02:02
dbaccess source\ui\dlg\indexdialog.src 0 toolboxitem DLG_INDEXDESIGN.TLB_ACTIONS ID_INDEX_NEW HID_DLGIDX_NEWINDEX 13691 sh Novi indeks 2002-02-02 02:02:02
-@@ -26454,7 +26453,6 @@
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_FILE_DOES_NOT_EXIST 13691 sh Datoteka â$file$â ne postoji. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_WARNINGS_DURING_CONNECT 13691 sh Pojavila su se upozorenja pri povezivanju na izvor baze podataka. Kliknite â$buttontext$â da biste ih pregledali. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 13691 sh Ime '$#$' veÄ postoji.\nUnesite drugo ime. 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 13691 sh ProÅ¡irenje Sun-ov Konstruktor izveÅ¡taja je neophodno za izveÅ¡taj â$file$â. 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_COLUMN_SELECT_TITEL 13691 sh Primeni kolone 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 13691 sh Vrsta formatiranja 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 13691 sh SledeÄa polja su veÄ postavljena kao primarni kljuÄevi:\n 2002-02-02 02:02:02
Index: l10n/source/om/localize.sdf
===================================================================
--- l10n/source/om/localize.sdf (Revision 277664)
@@ -493,14 +325,6 @@ Index: l10n/source/om/localize.sdf
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 pushbutton RID_EXTENSION_NOT_PRESENT_DLG PB_DOWNLOAD 0 om Buusi... 2002-02-02 02:02:02
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 modaldialog RID_EXTENSION_NOT_PRESENT_DLG HID_EXTENSION_NOT_PRESENT_DLG 0 om %PRODUCTNAME %PRODUCTVERSION 2002-02-02 02:02:02
dbaccess source\ui\dlg\indexdialog.src 0 toolboxitem DLG_INDEXDESIGN.TLB_ACTIONS ID_INDEX_NEW HID_DLGIDX_NEWINDEX 13691 om Kasaa Haaraa 2002-02-02 02:02:02
-@@ -1953,7 +1952,6 @@
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_FILE_DOES_NOT_EXIST 13691 om Faayiliin "$file$" hin jiru. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_WARNINGS_DURING_CONNECT 13691 om Osoo madda deetaatti walindhaa jiruu ofeeggannoowwan mul'atan. Ofeegggannoowwan kana ilaaluuf "$buttontext$" dhiibi. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 13691 om Maqaan '$#$' kanaan dura jira.\nMee maqaa biroo saagi. 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 13691 om Gabaasni, "$file$", dheertoo Ijaaraa Gabaasa Sun barbaada. 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_COLUMN_SELECT_TITEL 13691 om Tarjaalee fayyadami 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 13691 om Akaakuu dhangeessuu 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 13691 om Dirreewwan armaan gadii akka furtuu dursaatti qindeessamaniiru:\n 2002-02-02 02:02:02
Index: l10n/source/gu/localize.sdf
===================================================================
--- l10n/source/gu/localize.sdf (Revision 277664)
@@ -513,14 +337,6 @@ Index: l10n/source/gu/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 gu વિàªàª²à«àªªà«àª¨à« રદ àªàª°à« 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 gu વિàªàª²à«àªªà« બદલવા 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 gu સમાવિષà«àª àªàª°àª¾àª¯à«àª² àªà«àª·à«àª¤à«àª°à« 2002-02-02 02:02:02
-@@ -1694,7 +1693,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 gu નà«àªà«àª¨àª¾ àªà«àª·à«àª¤à«àª°à« પà«àª°àª¾àª¥àª®àª¿àª àªà«àª તરà«àªà« પહà«àª²àª¾àª¥à« ઠસà«àª¯à«àªàª¿àª¤ થઠàªàª¯à«àª² àªà«:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 gu àªà«àª·à«àªàªàª¨à« નàªàª² àªàª°à« 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 gu બàªàª§àª¾àª°àª£ àªàª°àªµàª¾àª¨à« પà«àª°àªàª¾àª° 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 gu àª
હà«àªµàª¾àª², "$file$", àªàªà«àª¸àªà«àª¨à«àª¶àª¨ Sun Report Builder નૠàªàª°à«àª° àªà«. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 gu સિસà«àªàª® 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 gu બધà«àª (~A) 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 gu દસà«àª¤àª¾àªµà«àª "$file$" àªà«àª²à« શàªà«àª¯àª¾ નહિàª. 2002-02-02 02:02:02
Index: l10n/source/sl/localize.sdf
===================================================================
--- l10n/source/sl/localize.sdf (Revision 277664)
@@ -533,14 +349,6 @@ Index: l10n/source/sl/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 sl Možnosti brisanja 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 sl Možnosti posodobitve 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 sl VkljuÄeni polji 2002-02-02 02:02:02
-@@ -1974,7 +1973,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 sl Naslednja polja so že bila nastavljena kot primarni kljuÄi:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 sl Kopiraj tabelo 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 sl Oblikovanje vrste 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 sl Za izdelavo poroÄila "$file$" potrebujete razÅ¡iritev Oblikovalec poroÄil podjetja Sun. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 sl Sistem 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 sl ~Vse 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 sl Dokumenta "$file$" ni mogoÄe odpreti. 2002-02-02 02:02:02
Index: l10n/source/zh-CN/localize.sdf
===================================================================
--- l10n/source/zh-CN/localize.sdf (Revision 277664)
@@ -565,14 +373,6 @@ Index: l10n/source/or/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 or ବିà¬à¬³àପସବàà¬à ବିଲàପ à¬à¬° 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 or ବିà¬à¬³àପà¬àଡିଠà¬
ପଡàଠà¬à¬° 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 or à¬àଷàତàରà¬àଡିଠସାମିଲହàà¬à¬¥à¬¿à¬¬à¬¾ 2002-02-02 02:02:02
-@@ -1690,7 +1689,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 or ପàରାଥମିଠà¬à¬¿à¬àଡିଠପରି ନିମàନ à¬àଷàତàରà¬àଡିଠପàରàବରà ସàଠହàà¬à¬
à¬à¬¿:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 or à¬àବàଲର ନà¬à¬² 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 or ପàରà¬à¬¾à¬° ଫରàମାà¬à¬¿à¬àଠ2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 or ବିବରଣà, "$file$", à¬
ନàଲà¬àନ Sun ବିବରଣà ନିରàମାତା à¬à¬¬à¬¶ààଠà¬à¬°à¬¿à¬¥à¬¾à¬à¥¤ 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 or ତନàତàର 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 or ସମସàତ 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 or ଦଲିଲ "$file$" à¬à à¬àଲାଯାà¬à¬ªà¬¾à¬°à¬¿à¬¬ ନାହିà¬à¥¤ 2002-02-02 02:02:02
Index: l10n/source/da/localize.sdf
===================================================================
--- l10n/source/da/localize.sdf (Revision 277664)
@@ -585,14 +385,6 @@ Index: l10n/source/da/localize.sdf
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 pushbutton RID_EXTENSION_NOT_PRESENT_DLG PB_DOWNLOAD 0 da ~Hent... 20070805 13:45:08
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 modaldialog RID_EXTENSION_NOT_PRESENT_DLG HID_EXTENSION_NOT_PRESENT_DLG 0 da %PRODUCTNAME %PRODUCTVERSION 20070723 05:45:37
dbaccess source\ui\dlg\indexdialog.src 0 toolboxitem DLG_INDEXDESIGN.TLB_ACTIONS ID_INDEX_NEW HID_DLGIDX_NEWINDEX 13691 da Nyt indeks 20050205 10:00:53
-@@ -1953,7 +1952,6 @@
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_FILE_DOES_NOT_EXIST 13691 da Filen "$file$" findes ikke. 20050415 18:04:11
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_WARNINGS_DURING_CONNECT 13691 da Advarsler forekom under etablering af forbindelse til datakilden. Tryk "$buttontext$" for at vise dem. 20061018 22:20:14
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 13691 da Navnet '$#$' findes allerede.\nIndtast et andet navn. 20060805 13:50:08
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 13691 da Rapporten, "$fil$", kræver udvidelsen Sun Report Builder. 20091003 13:03:10
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_COLUMN_SELECT_TITEL 13691 da Anvend kolonner 20050205 10:00:53
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 13691 da Typeformatering 20050205 10:00:53
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 13691 da Følgende felter er allerede valgt som primærnøgler:\n 20050205 10:00:53
Index: l10n/source/sr/localize.sdf
===================================================================
--- l10n/source/sr/localize.sdf (Revision 277664)
@@ -605,14 +397,6 @@ Index: l10n/source/sr/localize.sdf
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 pushbutton RID_EXTENSION_NOT_PRESENT_DLG PB_DOWNLOAD 0 sr ~ÐÑеÑзми... 2002-02-02 02:02:02
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 modaldialog RID_EXTENSION_NOT_PRESENT_DLG HID_EXTENSION_NOT_PRESENT_DLG 0 sr %PRODUCTNAME %PRODUCTVERSION 2002-02-02 02:02:02
dbaccess source\ui\dlg\indexdialog.src 0 toolboxitem DLG_INDEXDESIGN.TLB_ACTIONS ID_INDEX_NEW HID_DLGIDX_NEWINDEX 13691 sr Ðови Ð¸Ð½Ð´ÐµÐºÑ 2002-02-02 02:02:02
-@@ -26454,7 +26453,6 @@
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_FILE_DOES_NOT_EXIST 13691 sr ÐаÑоÑека â$file$â не поÑÑоÑи. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_WARNINGS_DURING_CONNECT 13691 sr ÐоÑавила ÑÑ Ñе ÑпозоÑеÑа пÑи повезиваÑÑ Ð½Ð° Ð¸Ð·Ð²Ð¾Ñ Ð±Ð°Ð·Ðµ подаÑака. ÐликниÑе â$buttontext$â да биÑÑе иÑ
пÑегледали. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 13691 sr Ðме '$#$' Ð²ÐµÑ Ð¿Ð¾ÑÑоÑи.\nУнеÑиÑе дÑÑго име. 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 13691 sr ÐÑоÑиÑеÑе Sun-ов ÐонÑÑÑÑкÑÐ¾Ñ Ð¸Ð·Ð²ÐµÑÑаÑа Ñе неопÑ
одно за извеÑÑÐ°Ñ â$file$â. 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_COLUMN_SELECT_TITEL 13691 sr ÐÑимени колоне 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 13691 sr ÐÑÑÑа ÑоÑмаÑиÑаÑа 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 13691 sr СледеÑа поÑа ÑÑ Ð²ÐµÑ Ð¿Ð¾ÑÑавÑена као пÑимаÑни кÑÑÑеви:\n 2002-02-02 02:02:02
Index: l10n/source/sv/localize.sdf
===================================================================
--- l10n/source/sv/localize.sdf (Revision 277664)
@@ -625,14 +409,6 @@ Index: l10n/source/sv/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 sv Raderingsalternativ 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 sv Uppdateringsalternativ 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 sv Inkluderade fält 2002-02-02 02:02:02
-@@ -1706,7 +1705,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 sv Följande fält är redan satta som primärnycklar:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 sv Kopiera tabell 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 sv Typformateringar 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 sv Rapporten "$file$" kräver paketet Sun Rapportdesign. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 sv System 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 sv ~Alla 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 sv Det gick inte att öppna dokumentet\n\n$file$\n\n. 2002-02-02 02:02:02
Index: l10n/source/de/localize.sdf
===================================================================
--- l10n/source/de/localize.sdf (Revision 277664)
@@ -646,14 +422,6 @@ Index: l10n/source/de/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 de Löschoptionen 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 de Update Optionen 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 de beteiligte Felder 2002-02-02 02:02:02
-@@ -1982,7 +1982,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 de Es sind bereits folgende Felder als Primärschlüssel gesetzt:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 de Tabelle kopieren 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 de Typformatierungen 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 de Der Bericht "$file$" benötigt die Extension Sun Report Builder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 de System 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 de ~Alle 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 de Das Dokument "$file$" konnte nicht geöffnet werden. 2002-02-02 02:02:02
Index: l10n/source/he/localize.sdf
===================================================================
--- l10n/source/he/localize.sdf (Revision 277664)
@@ -670,14 +438,6 @@ Index: l10n/source/hi-IN/localize.sdf
===================================================================
--- l10n/source/hi-IN/localize.sdf (Revision 277664)
+++ l10n/source/hi-IN/localize.sdf (Arbeitskopie)
-@@ -6376,7 +6376,6 @@
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_FILE_DOES_NOT_EXIST 13691 hi-IN फ़ाà¤à¤² "$file$" मà¥à¤à¥à¤¦ नहà¥à¤ हà¥. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_WARNINGS_DURING_CONNECT 13691 hi-IN à¤à¤à¤à¤¡à¤¼à¤¾ सà¥à¤°à¥à¤¤ सॠà¤à¥à¤¡à¤¼à¤¨à¥ à¤à¥ दà¥à¤°à¤¾à¤¨ à¤à¥à¤¤à¤¾à¤µà¤¨à¥ à¤à¤¾ सामना हà¥à¤. "$buttontext$" à¤à¥ à¤à¤¨à¥à¤¹à¥à¤ दà¥à¤à¤¨à¥ à¤à¥ लिठदबाà¤à¤. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 13691 hi-IN नाम '$#$' पहलॠसॠमà¥à¤à¥à¤¦ हà¥.\nà¤à¥à¤ªà¤¯à¤¾ à¤
ऩà¥à¤¯ नाम दà¥à¤. 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 13691 hi-IN रिपà¥à¤°à¥à¤, "$file$", à¤à¥ लिठविसà¥à¤¤à¤¾à¤° Sun रिपà¥à¤°à¥à¤ बिलà¥à¤¡à¤° à¤à¤°à¥à¤°à¥ हà¥. 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_COLUMN_SELECT_TITEL 13691 hi-IN सà¥à¤¤à¤à¤ लाà¤à¥ à¤à¤°à¥à¤ 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 13691 hi-IN वरà¥à¤ रà¤à¤¨à¤¾ 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 13691 hi-IN निमà¥à¤¨à¤²à¤¿à¤à¤¿à¤¤ à¤à¥à¤·à¥à¤¤à¥à¤°à¥à¤ à¤à¥ पहलॠसॠहॠपà¥à¤°à¤¾à¤¥à¤®à¤¿à¤ à¤à¥à¤à¤à¥ à¤à¥à¤¸à¥ सà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¿à¤¯à¤¾ हà¥:\n 2002-02-02 02:02:02
@@ -6716,7 +6715,6 @@
dbaccess source\ui\dlg\dsselect.src 0 string DLG_DATASOURCE_SELECTION STR_LOCAL_DATASOURCES 50 hi-IN सà¥à¤¥à¤¾à¤¨à¤¿à¤ à¤à¤à¤à¤¡à¤¼à¤¾ मà¥à¤² 2002-02-02 02:02:02
dbaccess source\ui\dlg\dsselect.src 0 string DLG_DATASOURCE_SELECTION STR_DESCRIPTION2 50 hi-IN à¤à¤ डà¥à¤à¤¾à¤¬à¥à¤¸ à¤à¥à¤¨à¥à¤ 2002-02-02 02:02:02
@@ -710,14 +470,6 @@ Index: l10n/source/ta/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 ta நà¯à®à¯à®à®¤à¯ தà¯à®°à¯à®µà¯à®à®³à¯ 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 ta தà¯à®°à¯à®µà¯à®à®³à¯à®ªà¯ பà¯à®¤à¯à®ªà¯à®ªà®¿ 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 ta à®à®à¯à®ªà®à¯à®à¯à®³à¯à®³ பà¯à®²à®®à®à¯à®à®³à¯ 2002-02-02 02:02:02
-@@ -1715,7 +1714,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 ta பினà¯à®µà®°à¯à®®à¯ பà¯à®²à®à¯à®à®³à¯ à®®à¯à®¤à®©à¯à®®à¯ விà®à¯à®à®³à®¾à® à®à®±à¯à®à®©à®µà¯ à®
à®®à¯à®à¯à®à®ªà¯à®ªà®à¯à®à¯à®³à¯à®³à®©:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 ta à®
à®à¯à®à®µà®£à¯à®¯à¯à®ªà¯ பà®à®¿à®¯à¯à®à¯ 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 ta வà®à¯ வà®à®¿à®µà®®à¯à®ªà¯à®ªà¯ 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 ta The report, "$file$", requires the extension Sun Report Builder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 ta à®®à¯à®±à¯à®®à¯ 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 ta ~à®
னà¯à®¤à¯à®¤à¯à®®à¯ 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 ta "$file$" à®à®µà®£à®¤à¯à®¤à¯à®¤à¯ திறà®à¯à® à®à®¯à®²à®µà®¿à®²à¯à®²à¯. 2002-02-02 02:02:02
Index: l10n/source/sa-IN/localize.sdf
===================================================================
--- l10n/source/sa-IN/localize.sdf (Revision 277664)
@@ -742,14 +494,6 @@ Index: l10n/source/te/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 te à°¤à±à°²à°à°¿à°à°à± à°à°à±à°à°¾à°ªà±à°°à±à°µà°à°¾à°²à± 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 te తాà°à°¾à°ªà°°à±à°à± à°à°à±à°à°¾à°ªà±à°°à±à°µà°à°¾à°²à± 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 te నిహితమà±à°¨ à°à±à°·à±à°¤à±à°°à°®à±à°²à± 2002-02-02 02:02:02
-@@ -1708,7 +1707,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 te à° à°à±à°·à±à°¤à±à°°à°®à±à°²à± à°
à°ªà±à°ªà°à°¿à°à± à°ªà±à°°à°¾à°¥à°®à°¿à°à°®à±à°à°²à±à°à°¾ à°
మరà±à°à°¬à°¡à°¿à°¨à°¦à°¿:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 te à°ªà°à±à°à°¿à°à°¨à± à°¨à°à°²à±à°¤à±à°¯à±à°®à± 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 te ఫారà±à°®à°à°¿à°à°à± à°°à°à° 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 te నివà±à°¦à°¿à°, "$file$",à°à± à°ªà±à°¡à°¿à°à°¿à°à°ªà± Sun Report Builder à°
వసరమà±. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 te à°µà±à°¯à°µà°¸à±à°¥ 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 te à°®à±à°¤à±à°¤à°®à± (~A) 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 te పతà±à°°à°®à± "$file$" యిపà±à°ªà±à°¡à± à°¨à°à°²à± à°¤à±à°¯à°¬à°¡à°²à±à°µà±. 2002-02-02 02:02:02
Index: l10n/source/hr/localize.sdf
===================================================================
--- l10n/source/hr/localize.sdf (Revision 277664)
@@ -774,14 +518,6 @@ Index: l10n/source/pl/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 pl Opcje usuwania 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 pl Opcje aktualizacji 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 pl ZÅÄ
czone pola 2002-02-02 02:02:02
-@@ -1708,7 +1707,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 pl NastÄpujÄ
ce pola już zostaÅy ustawione jako klucze gÅówne:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 pl Kopiuj tabelÄ 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 pl Formatowanie typu 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 pl Raport "$file$" wymaga rozszerzenia Sun Report Builder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 pl Systemowe 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 pl ~Wszystko 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 pl Otwarcie dokumentu "$file$" nie powiodÅo siÄ. 2002-02-02 02:02:02
Index: l10n/source/hu/localize.sdf
===================================================================
--- l10n/source/hu/localize.sdf (Revision 277664)
@@ -794,14 +530,6 @@ Index: l10n/source/hu/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 hu BeállÃtások törlése 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 hu BeállÃtások frissÃtése 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 hu Ãrintett mezÅk 2002-02-02 02:02:02
-@@ -1708,7 +1707,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 hu A következÅ mezÅk már elsÅdleges kulcsnak vannak beállÃtva:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 hu Tábla másolása 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 hu TÃpusformázás 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 hu A jelentéshez (â$file$â) a Sun Report Builder kiterjesztés szükséges. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 hu Rendszer 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 hu ~Minden szintre 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 hu A(z) â$file$â dokumentum nem nyitható meg. 2002-02-02 02:02:02
Index: l10n/source/dz/localize.sdf
===================================================================
--- l10n/source/dz/localize.sdf (Revision 277664)
@@ -838,14 +566,6 @@ Index: l10n/source/pt/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 pt Opções de eliminação 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 pt Opções de actualização 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 pt Campos considerados 2002-02-02 02:02:02
-@@ -1708,7 +1707,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 pt Já foram definidos como chaves principais os seguintes campos:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 pt Copiar tabela 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 pt Formatação de tipo 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 pt O relatório , "$file$", requer a extensão do Sun Report Builder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 pt Sistema 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 pt ~Tudo 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 pt Não foi possÃvel abrir o documento "$file$". 2002-02-02 02:02:02
Index: l10n/source/tr/localize.sdf
===================================================================
--- l10n/source/tr/localize.sdf (Revision 277664)
@@ -870,14 +590,6 @@ Index: l10n/source/ast/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 ast Quitar opciones 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 ast Anovar opciones... 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 ast Campos implicaos 2002-02-02 02:02:02
-@@ -1707,7 +1706,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 ast Yá se definieron los campos que vienen darréu como llaves primaries:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 ast Copiar tabla 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 ast Tipu formatu 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 ast L'informe, "$file$", requier la estensión Sun Report Builder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 ast Sistema 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 ast ~Too 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 ast Imposible abrir el documentu $file$ ! 2002-02-02 02:02:02
Index: l10n/source/en-GB/localize.sdf
===================================================================
--- l10n/source/en-GB/localize.sdf (Revision 277664)
@@ -890,14 +602,6 @@ Index: l10n/source/en-GB/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 en-GB Delete options 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 en-GB Update options 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 en-GB Fields involved 2002-02-02 02:02:02
-@@ -1974,7 +1973,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 en-GB The following fields have already been set as primary keys:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 en-GB Copy table 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 en-GB Type formatting 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 en-GB The report, "$file$", requires the extension Sun Report Builder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 en-GB System 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 en-GB ~All 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 en-GB The document "$file$" could not be opened. 2002-02-02 02:02:02
Index: l10n/source/id/localize.sdf
===================================================================
--- l10n/source/id/localize.sdf (Revision 277664)
@@ -910,14 +614,6 @@ Index: l10n/source/id/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 id Opsi penghapusan 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 id Opsi pembaharuan 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 id Kolom yang terlibat 2002-02-02 02:02:02
-@@ -1708,7 +1707,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 id Kolom berikut telah ditentukan sebagai kunci utama:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 id Salin tabel 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 id Jenis pemformatan 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 id Laporan "$file$" memerlukan ekstensi Pembuat Laporan Sun. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 id Sistem 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 id Semu~a 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 id Dokumen "$file$" tidak bisa dibuka. 2002-02-02 02:02:02
Index: l10n/source/be-BY/localize.sdf
===================================================================
--- l10n/source/be-BY/localize.sdf (Revision 277664)
@@ -934,14 +630,6 @@ Index: l10n/source/el/localize.sdf
===================================================================
--- l10n/source/el/localize.sdf (Revision 277664)
+++ l10n/source/el/localize.sdf (Arbeitskopie)
-@@ -1177,7 +1177,6 @@
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_FILE_DOES_NOT_EXIST 13691 el Το αÏÏείο "$file$" δεν Ï
ÏάÏÏει. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_WARNINGS_DURING_CONNECT 13691 el ΠαÏοÏ
ÏιάÏÏηκαν ÏÏοειδοÏοιήÏÎµÎ¹Ï ÎºÎ±Ïά Ïη ÏÏνδεÏη με Ïην ÏÏοÎλεÏ
Ïη ÏÏν δεδομÎνÏν. ΠαÏήÏÏε "$buttontext$" για να ÏÎ¹Ï Î´ÎµÎ¯Ïε. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 13691 el Το Ïνομα '$#$' Ï
ÏάÏÏει ήδη.\nΠαÏÎ±ÎºÎ±Î»Ï ÎµÏιλÎξÏε Îνα άλλο Ïνομα. 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 13691 el ΠαναÏοÏά, "$file$", αÏαιÏεί Ïην εÏÎκÏαÏη Sun Report Builder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_COLUMN_SELECT_TITEL 13691 el ÎÏαÏμογή ÏÏηλÏν 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 13691 el ÎοÏÏοÏοίηÏη ÏÏÏοÏ
2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 13691 el Τα ÏαÏακάÏÏ Ïεδία ÎÏοÏ
ν ήδη οÏιÏÏεί ÏÏ ÏÏÏÏεÏονÏα κλειδιά:\n 2002-02-02 02:02:02
@@ -1571,7 +1570,6 @@
dbaccess source\ui\dlg\dsselect.src 0 string DLG_DATASOURCE_SELECTION STR_LOCAL_DATASOURCES 50 el ΤοÏικÎÏ Î²Î¬ÏÎµÎ¹Ï Î´ÎµÎ´Î¿Î¼ÎνÏν 2002-02-02 02:02:02
dbaccess source\ui\dlg\dsselect.src 0 string DLG_DATASOURCE_SELECTION STR_DESCRIPTION2 50 el ÎÏιλÎξÏε μια βάÏη δεδομÎνÏν 2002-02-02 02:02:02
@@ -962,14 +650,6 @@ Index: l10n/source/ar/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 ar Ø®Ùارات اÙØØ°Ù 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 ar Ø®Ùارات اÙتØدÙØ« 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 ar اÙØÙÙ٠اÙÙ
عÙÙØ© 2002-02-02 02:02:02
-@@ -1708,7 +1707,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 ar تÙ
تعÙÙ٠اÙØÙÙ٠اÙتاÙÙØ© ÙÙ
ÙاتÙØ Ø£Ø³Ø§Ø³ÙØ© باÙÙعÙ:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 ar Ùسخ جدÙÙ 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 ar تÙسÙ٠اÙÙÙع 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 ar ÙتطÙب اÙتÙرÙر, "$file$", اÙاÙ
تداد Sun Report Builder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 ar اÙÙظاÙ
2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 ar اÙ~ÙÙ 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 ar تعذر ÙØªØ Ø§ÙÙ
ستÙد "$file$". 2002-02-02 02:02:02
Index: l10n/source/as/localize.sdf
===================================================================
--- l10n/source/as/localize.sdf (Revision 277664)
@@ -1006,14 +686,6 @@ Index: l10n/source/es/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 es Opciones de eliminación 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 es Opciones de actualización 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 es Campos implicados 2002-02-02 02:02:02
-@@ -1708,7 +1707,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 es Ya se han definido los siguientes campos como llaves primarias:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 es Copiar tabla 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 es Formateado de tipos 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 es El reporte, "$file$", requiere de extensiones Sun Report BUiilder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 es Sistema 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 es ~Todos 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 es No se pudo abrir el documento "$file$". 2002-02-02 02:02:02
Index: l10n/source/ml/localize.sdf
===================================================================
--- l10n/source/ml/localize.sdf (Revision 277664)
@@ -1026,26 +698,10 @@ Index: l10n/source/ml/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 ml à´à´àµà´à´¿à´à´ à´¨àµà´àµà´à´ à´àµà´¯àµà´¯àµà´ 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 ml à´à´àµà´à´¿à´à´ à´
à´ªàµà´¡àµà´±àµà´±àµ à´àµà´¯àµà´¯àµà´ 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 ml മണàµà´¡à´²à´ à´à´³àµà´ªàµà´ªàµà´àµà´ 2002-02-02 02:02:02
-@@ -1374,7 +1373,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 ml ഠമണàµà´¡à´²à´àµà´à´³àµ à´®àµà´àµà´¯ à´àµ à´à´¯à´¿ à´¸àµà´±àµà´±àµ à´àµà´¯àµà´¤à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 ml à´ªà´àµà´à´¿à´à´¯àµà´àµ à´ªà´à´°àµà´ªàµà´ªàµ 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 ml à´°àµà´ªà´°àµà´ വിà´à´¾à´à´ 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 ml "$file$" à´à´¨àµà´¨ റിപàµà´°àµâà´àµà´à´¿à´¨àµàµ സണàµâ റിപàµà´°àµâà´àµà´àµ ബിളàµâà´¡à´°àµâ à´à´àµà´¸àµà´±àµà´±àµà´¨àµâà´·à´¨àµâ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 ml സിസàµà´±àµà´±à´ 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 ml à´à´²àµà´²à´¾à´ 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 ml à´¡àµà´àµà´àµà´®àµà´¨àµà´±àµ\n\n$file$\n\nà´¤àµà´±à´àµà´à´¾à´¨àµ à´à´´à´¿à´¯à´¿à´²àµà´². 2002-02-02 02:02:02
Index: l10n/source/et/localize.sdf
===================================================================
--- l10n/source/et/localize.sdf (Revision 277664)
+++ l10n/source/et/localize.sdf (Arbeitskopie)
-@@ -786,7 +786,6 @@
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_FILE_DOES_NOT_EXIST 13691 et Faili "$file$" pole olemas. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_WARNINGS_DURING_CONNECT 13691 et Andmeallikaga ühendumisel anti hoiatusi. Nende vaatamiseks klõpsa nupul "$buttontext$". 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 13691 et Nimi '$#$' on juba olemas.\nPalun sisesta mõni teine nimi. 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 13691 et Aruanne, "$file$", vajab laiendust Sun'i Aruandekoostaja. 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_COLUMN_SELECT_TITEL 13691 et Rakenda veergudele 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 13691 et Tüübi vorming 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 13691 et Need väljad on juba seatud primaarvõtmeteks:\n 2002-02-02 02:02:02
@@ -1159,7 +1158,6 @@
dbaccess source\ui\dlg\dsselect.src 0 string DLG_DATASOURCE_SELECTION STR_LOCAL_DATASOURCES 50 et Lokaalsed andmebaasid 2002-02-02 02:02:02
dbaccess source\ui\dlg\dsselect.src 0 string DLG_DATASOURCE_SELECTION STR_DESCRIPTION2 50 et Vali andmebaas 2002-02-02 02:02:02
@@ -1066,14 +722,6 @@ Index: l10n/source/eu/localize.sdf
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 pushbutton RID_EXTENSION_NOT_PRESENT_DLG PB_DOWNLOAD 0 eu ~Deskargatu... 2002-02-02 02:02:02
dbaccess source\ui\dlg\ExtensionNotPresent.src 0 modaldialog RID_EXTENSION_NOT_PRESENT_DLG HID_EXTENSION_NOT_PRESENT_DLG 0 eu %PRODUCTNAME %PRODUCTVERSION 2002-02-02 02:02:02
dbaccess source\ui\dlg\indexdialog.src 0 toolboxitem DLG_INDEXDESIGN.TLB_ACTIONS ID_INDEX_NEW HID_DLGIDX_NEWINDEX 13691 eu Indize berria 2002-02-02 02:02:02
-@@ -1953,7 +1952,6 @@
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_FILE_DOES_NOT_EXIST 13691 eu "$file$" fitxategia ez dago. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_WARNINGS_DURING_CONNECT 13691 eu Abisuak aurkitu dira datu-iturburura konektatzean. Ikusteko, sakatu "$buttontext$". 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 13691 eu '$#$' izena badago.\nIdatzi beste izen bat. 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 13691 eu "$file$" txotenak 'Sun txostenen diseinatzailea' hedapena behar du. 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_COLUMN_SELECT_TITEL 13691 eu Aplikatu zutabeak 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 13691 eu Mota-formateatzea 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 13691 eu Honako eremuak lehen mailako gako gisa ezarrita daude:\n 2002-02-02 02:02:02
Index: l10n/source/zh-TW/localize.sdf
===================================================================
--- l10n/source/zh-TW/localize.sdf (Revision 277664)
@@ -1086,14 +734,6 @@ Index: l10n/source/zh-TW/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 zh-TW åªé¤çé¸é
2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 zh-TW æ´æ°çé¸é
2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 zh-TW ç¸éçæ¬ä½ 2002-02-02 02:02:02
-@@ -1708,7 +1707,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 zh-TW 以ä¸çæ¬ä½å·²ç¶æå®æ主ééµåï¼\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 zh-TW è¤è£½è¡¨æ ¼ 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 zh-TW é¡åæ ¼å¼å 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 zh-TW ã$file$ãå ±åéè¦æ´å
è»é« Sun Report Builderã 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 zh-TW 系統 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 zh-TW å
¨é¨(~A) 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 zh-TW ç¡æ³éåæ件ã$file$ãã 2002-02-02 02:02:02
Index: l10n/source/mn/localize.sdf
===================================================================
--- l10n/source/mn/localize.sdf (Revision 277664)
@@ -1130,14 +770,6 @@ Index: l10n/source/it/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 it Opzioni di eliminazione 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 it Opzioni di aggiornamento 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 it Campi considerati 2002-02-02 02:02:02
-@@ -1708,7 +1707,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 it I seguenti campi sono stati impostati come chiave primaria:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 it Copia tabella 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 it Formattazione del tipo 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 it Il rapporto "$file$" richiede l'estensione Sun Report Builder. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 it Sistema 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 it ~Tutti 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 it Non è stato possibile aprire il documento "$file$". 2002-02-02 02:02:02
Index: l10n/source/mr/localize.sdf
===================================================================
--- l10n/source/mr/localize.sdf (Revision 277664)
@@ -1150,11 +782,3 @@ Index: l10n/source/mr/localize.sdf
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_DEL 84 mr परà¥à¤¯à¤¾à¤¯ नषà¥à¤ à¤à¤°à¤¾ 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES FL_CASC_UPD 84 mr à¤
दà¥à¤¯à¤¯à¤¾à¤µà¤¤ à¤à¤°à¤£à¥à¤¯à¤¾à¤à¥ परà¥à¤¯à¤¾à¤¯ 2002-02-02 02:02:02
dbaccess source\ui\dlg\RelationDlg.src 0 fixedline DLG_REL_PROPERTIES.WND_CONTROL FL_INVOLVED_FIELDS 174 mr समाविषà¥à¤ à¤
सलà¥à¤²à¥ à¤à¥à¤·à¥à¤¤à¥à¤°à¥ 2002-02-02 02:02:02
-@@ -1708,7 +1707,6 @@
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_PKEY_ALREADY_DEFINED 0 mr à¤à¤¾à¤²à¥à¤² à¤à¥à¤·à¥à¤¤à¥à¤°à¤¾à¤à¤à¥ à¤à¤§à¥à¤ पà¥à¤°à¤¾à¤¥à¤®à¤¿à¤ à¤à¥à¤ मà¥à¤¹à¤£à¥à¤¨ माà¤à¤¡à¤£à¥ à¤à¥à¤²à¥à¤²à¥ à¤à¤¹à¥:\n 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TABLE_COPY 0 mr तà¤à¥à¤¤à¥à¤¯à¤¾à¤à¥ पà¥à¤°à¤¤ बनवा 2002-02-02 02:02:02
- dbaccess source\ui\misc\WizardPages.src 0 string STR_WIZ_TYPE_SELECT_TITEL 0 mr पà¥à¤°à¤à¤¾à¤° सà¥à¤µà¤°à¥à¤ªà¤¿à¤¤ à¤à¤°à¤¤ à¤à¤¹à¥ 2002-02-02 02:02:02
--dbaccess source\ui\misc\dbumiscres.src 0 string RID_STR_EXTENSION_NOT_PRESENT 0 mr à¤
हवाल, "$file$", याà¤à¤¸ à¤à¤à¥à¤¸à¤à¥à¤à¤¶à¤¨ Sun Report Builder à¤à¤µà¤¶à¥à¤¯à¤ à¤à¤¹à¥. 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string RSC_CHARSETS 1 0 mr पदà¥à¤§à¤¤à¥ 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_BUTTON_TEXT_ALL 0 mr सरà¥à¤µ (~A) 2002-02-02 02:02:02
- dbaccess source\ui\misc\dbumiscres.src 0 string STR_COULDNOTOPEN_LINKEDDOC 0 mr à¤à¤¾à¤à¤¦à¤ªà¤¤à¥à¤°\n\n$धारिà¤à¤¾$\n\nà¤à¤à¤¡à¥ शà¤à¤¤ नाहà¥. 2002-02-02 02:02:02
commit f9f21e23316afbb612ffca9d69ca77873b5c4d00
Author: Rene Engelhard <rene at debian.org>
Date: Fri Apr 30 00:34:03 2010 +0200
merge ARM bridges fixes from master
* patches/dev300/apply: adapt, and make armeabi-softp-buildfix.diff
< dev300-m66
* patches/dev300/branch_directly_to_cpp_vtable_call_on_arm.diff: remove
* patches/dev300/fix-arm-eabi-bridge.diff: use this, from armeabi02 cws
diff --git a/patches/dev300/apply b/patches/dev300/apply
index 247e5c4..60a25a9 100644
--- a/patches/dev300/apply
+++ b/patches/dev300/apply
@@ -532,9 +532,6 @@ customunittext-percent.diff, i#80784, atimar
# fix by Caolan
bridges-testcppu-x86_64-fixes.diff, i#98028, n#575704, pmladek
-# fix ARM bridges
-branch_directly_to_cpp_vtable_call_on_arm.diff, i#105359
-
# make sure that we have mpGraphics
# it might get lost when calling ImplNewFont()
# fixes ReportBuilder crasher
@@ -1208,9 +1205,13 @@ db4.8.diff, rengelha
# find gsicheck in the solver
transex3-localize-gsicheck-path.diff, i#109378, pmladek
-[ BuildBits < dev300-m66 ]
+[ Fixes < dev300-m66 ]
armeabi-softfp-buildfix.diff, i#105302, doko
+[ Fixes and not Win32Only ]
+# fix ARM bridges
+fix-arm-eabi-bridge.diff, i#105359, cmc
+
[ BuildBits ]
# add -o option to force localizition of ooo modules
# return 0 with -h option
diff --git a/patches/dev300/branch_directly_to_cpp_vtable_call_on_arm.diff b/patches/dev300/branch_directly_to_cpp_vtable_call_on_arm.diff
deleted file mode 100644
index 0793c9d..0000000
--- a/patches/dev300/branch_directly_to_cpp_vtable_call_on_arm.diff
+++ /dev/null
@@ -1,32 +0,0 @@
---- bridges/source/cpp_uno/gcc3_linux_arm/armhelper.s.old 2010-02-02 12:49:41.000000000 +0100
-+++ bridges/source/cpp_uno/gcc3_linux_arm/armhelper.s 2010-03-29 16:45:43.000000000 +0200
-@@ -8,15 +8,22 @@
- .global privateSnippetExecutor
- .type privateSnippetExecutor, %function
- privateSnippetExecutor:
-+ .fnstart @ start of unwinder entry
-+
- stmfd sp!, {r0-r3} @ follow other parameters on stack
-+ .pad #16 @ throw this data away on exception
- mov r0, ip @ r0 points to functionoffset/vtable
-- mov ip, sp @ fix up the ip
-- stmfd sp!, {fp,ip,lr,pc} @ 8 x 4 => stack remains 8 aligned
-- sub fp, ip, #4 @ set frame pointer
-+ mov r1, sp @ r1 points to this and params
-+ @ (see cppuno.cxx:codeSnippet())
-+ stmfd sp!, {r4,lr} @ save return address
-+ @ (r4 pushed to preserve stack alignment)
-+ .save {r4,lr} @ restore these regs on exception
-
-- add r1, sp, #16 @ r1 points to this and params
- bl cpp_vtable_call(PLT)
-
-- add sp, sp, #32 @ restore stack
-- ldr fp, [sp, #-32] @ restore frame pointer
-- ldr pc, [sp, #-24] @ return
-+ add sp, sp, #4 @ no need to restore r4 (we didn't touch it)
-+ ldr pc, [sp], #20 @ return, discarding function arguments
-+
-+ .fnend @ end of unwinder entry
-+
-+ .size privateSnippetExecutor, . - privateSnippetExecutor
diff --git a/patches/dev300/fix-arm-eabi-bridge.diff b/patches/dev300/fix-arm-eabi-bridge.diff
new file mode 100644
index 0000000..11f5203
--- /dev/null
+++ b/patches/dev300/fix-arm-eabi-bridge.diff
@@ -0,0 +1,702 @@
+
+# HG changeset patch
+# User Caolán McNamara <cmc at openoffice.org>
+# Date 1272363448 -3600
+# Node ID 36887d11c60fe58d5524ebb168fd8bb1ad62ab4a
+# Parent bdd775934f7fe5ac1e523bad46d4e4da02f2c7ab
+armeabi02: #i105359# fix arm-eabi uno bridge, fix exception handling, and fix struct returning rules
+
+diff -r bdd775934f7f -r 36887d11c60f bridges/source/cpp_uno/gcc3_linux_arm/armhelper.S
+--- /dev/null Thu Jan 01 00:00:00 1970 +0000
++++ bridges/source/cpp_uno/gcc3_linux_arm/armhelper.S Tue Apr 27 11:17:28 2010 +0100
+@@ -0,0 +1,38 @@
++@ ARM support code for OpenOffice C++/UNO bridging
++@
++@ Written by Peter Naulls <peter at chocky.org>
++@ Modified by Caolan McNamara <caolanm at redhat.com>
++@ Fixed by Michael Casadevall
++
++#ifdef __ARM_EABI__
++# define UNWIND
++#else
++# define UNWIND @
++#endif
++
++ .file "armhelper.s"
++ .text
++ .align 4
++ .global privateSnippetExecutor
++ .type privateSnippetExecutor, %function
++privateSnippetExecutor:
++ UNWIND .fnstart @ start of unwinder entry
++
++ stmfd sp!, {r0-r3} @ follow other parameters on stack
++ UNWIND .pad #16 @ throw this data away on exception
++ mov r0, ip @ r0 points to functionoffset/vtable
++ mov r1, sp @ r1 points to this and params
++ @ (see cppuno.cxx:codeSnippet())
++ stmfd sp!, {r4,lr} @ save return address
++ @ (r4 pushed to preserve stack alignment)
++ UNWIND .save {r4,lr} @ restore these regs on exception
++
++ bl cpp_vtable_call(PLT)
++
++ add sp, sp, #4 @ no need to restore r4 (we didn't touch it)
++ ldr pc, [sp], #20 @ return, discarding function arguments
++
++ UNWIND .fnend @ end of unwinder entry
++
++ .size privateSnippetExecutor, . - privateSnippetExecutor
++ .section .note.GNU-stack,"",%progbits
+diff -r bdd775934f7f -r 36887d11c60f bridges/source/cpp_uno/gcc3_linux_arm/armhelper.s
+--- bridges/source/cpp_uno/gcc3_linux_arm/armhelper.s Wed Apr 21 18:35:51 2010 +0200
++++ /dev/null Thu Jan 01 00:00:00 1970 +0000
+@@ -1,22 +0,0 @@
+-@ ARM support code for OpenOffice C++/UNO bridging
+-@
+-@ Written by Peter Naulls <peter at chocky.org>
+-@ Modified by Caolan McNamara <caolanm at redhat.com>
+- .file "armhelper.s"
+- .text
+- .align 4
+- .global privateSnippetExecutor
+- .type privateSnippetExecutor, %function
+-privateSnippetExecutor:
+- stmfd sp!, {r0-r3} @ follow other parameters on stack
+- mov r0, ip @ r0 points to functionoffset/vtable
+- mov ip, sp @ fix up the ip
+- stmfd sp!, {fp,ip,lr,pc} @ 8 x 4 => stack remains 8 aligned
+- sub fp, ip, #4 @ set frame pointer
+-
+- add r1, sp, #16 @ r1 points to this and params
+- bl cpp_vtable_call(PLT)
+-
+- add sp, sp, #32 @ restore stack
+- ldr fp, [sp, #-32] @ restore frame pointer
+- ldr pc, [sp, #-24] @ return
+diff -r bdd775934f7f -r 36887d11c60f bridges/source/cpp_uno/gcc3_linux_arm/cpp2uno.cxx
+--- bridges/source/cpp_uno/gcc3_linux_arm/cpp2uno.cxx Wed Apr 21 18:35:51 2010 +0200
++++ bridges/source/cpp_uno/gcc3_linux_arm/cpp2uno.cxx Tue Apr 27 11:17:28 2010 +0100
+@@ -76,10 +76,8 @@
+
+ if (pReturnTypeDescr)
+ {
+- if (bridges::cpp_uno::shared::isSimpleType( pReturnTypeDescr ))
+- {
++ if (!arm::return_in_hidden_param(pReturnTypeRef))
+ pUnoReturn = pRegisterReturn; // direct way for simple types
+- }
+ else // complex return via ptr (pCppReturn)
+ {
+ pCppReturn = *(void **)pCppStack;
+@@ -410,8 +408,30 @@
+ void **pCallStack )
+ {
+ sal_Int64 nRegReturn;
+- cpp_mediate( pFunctionAndOffset[0], pFunctionAndOffset[1], pCallStack,
++ typelib_TypeClass aType = cpp_mediate( pFunctionAndOffset[0], pFunctionAndOffset[1], pCallStack,
+ &nRegReturn );
++
++ switch( aType )
++ {
++ case typelib_TypeClass_BOOLEAN:
++ case typelib_TypeClass_BYTE:
++ nRegReturn = (unsigned long)(*(unsigned char *)&nRegReturn);
++ break;
++ case typelib_TypeClass_CHAR:
++ case typelib_TypeClass_UNSIGNED_SHORT:
++ case typelib_TypeClass_SHORT:
++ nRegReturn = (unsigned long)(*(unsigned short *)&nRegReturn);
++ break;
++ case typelib_TypeClass_ENUM:
++ case typelib_TypeClass_UNSIGNED_LONG:
++ case typelib_TypeClass_LONG:
++ nRegReturn = (unsigned long)(*(unsigned int *)&nRegReturn);
++ break;
++ case typelib_TypeClass_VOID:
++ default:
++ break;
++ }
++
+ return nRegReturn;
+ }
+
+@@ -422,9 +442,9 @@
+ const int codeSnippetSize = 20;
+
+ unsigned char *codeSnippet(unsigned char* code, sal_Int32 functionIndex,
+- sal_Int32 vtableOffset, bool simple_ret_type )
++ sal_Int32 vtableOffset, bool bHasHiddenParam)
+ {
+- if (!simple_ret_type)
++ if (bHasHiddenParam)
+ functionIndex |= 0x80000000;
+
+ unsigned long * p = (unsigned long *)code;
+@@ -478,24 +498,25 @@
+ switch (member->eTypeClass)
+ {
+ case typelib_TypeClass_INTERFACE_ATTRIBUTE:
++ {
++ typelib_InterfaceAttributeTypeDescription *pAttrTD =
++ reinterpret_cast<typelib_InterfaceAttributeTypeDescription *>( member );
++
+ // Getter:
+ (s++)->fn = code + writetoexecdiff;
+ code = codeSnippet(
+ code, functionOffset++, vtableOffset,
+- bridges::cpp_uno::shared::isSimpleType(
+- reinterpret_cast<
+- typelib_InterfaceAttributeTypeDescription * >(
+- member)->pAttributeTypeRef));
++ arm::return_in_hidden_param( pAttrTD->pAttributeTypeRef ));
++
+ // Setter:
+- if (!reinterpret_cast<
+- typelib_InterfaceAttributeTypeDescription * >(
+- member)->bReadOnly)
++ if (!pAttrTD->bReadOnly)
+ {
+ (s++)->fn = code + writetoexecdiff;
+ code = codeSnippet(
+- code, functionOffset++, vtableOffset, true);
++ code, functionOffset++, vtableOffset, false);
+ }
+ break;
++ }
+ case typelib_TypeClass_INTERFACE_METHOD:
+ {
+ (s++)->fn = code + writetoexecdiff;
+@@ -504,11 +525,8 @@
+ reinterpret_cast<
+ typelib_InterfaceMethodTypeDescription * >(member);
+
+- bool issimple = bridges::cpp_uno::shared::isSimpleType(
+- pMethodTD->pReturnTypeRef);
+-
+ code = codeSnippet(code, functionOffset++, vtableOffset,
+- issimple);
++ arm::return_in_hidden_param(pMethodTD->pReturnTypeRef));
+ break;
+ }
+ default:
+diff -r bdd775934f7f -r 36887d11c60f bridges/source/cpp_uno/gcc3_linux_arm/except.cxx
+--- bridges/source/cpp_uno/gcc3_linux_arm/except.cxx Wed Apr 21 18:35:51 2010 +0200
++++ bridges/source/cpp_uno/gcc3_linux_arm/except.cxx Tue Apr 27 11:17:28 2010 +0100
+@@ -162,8 +162,8 @@
+ else
+ {
+ // try to lookup the symbol in the generated rtti map
+- t_rtti_map::const_iterator iFind( m_generatedRttis.find( unoName ) );
+- if (iFind == m_generatedRttis.end())
++ t_rtti_map::const_iterator iFind2( m_generatedRttis.find( unoName ) );
++ if (iFind2 == m_generatedRttis.end())
+ {
+ // we must generate it !
+ // symbol and rtti-name is nearly identical,
+@@ -192,7 +192,7 @@
+ }
+ else // taking already generated rtti
+ {
+- rtti = iFind->second;
++ rtti = iFind2->second;
+ }
+ }
+ }
+diff -r bdd775934f7f -r 36887d11c60f bridges/source/cpp_uno/gcc3_linux_arm/makefile.mk
+--- bridges/source/cpp_uno/gcc3_linux_arm/makefile.mk Wed Apr 21 18:35:51 2010 +0200
++++ bridges/source/cpp_uno/gcc3_linux_arm/makefile.mk Tue Apr 27 11:17:28 2010 +0100
+@@ -80,5 +80,5 @@
+
+ .INCLUDE : target.mk
+
+-$(SLO)$/%.obj: %.s
++$(SLO)$/%.obj: %.S
+ $(CXX) -c -o $(SLO)$/$(@:b).o $< -fPIC ; touch $@
+diff -r bdd775934f7f -r 36887d11c60f bridges/source/cpp_uno/gcc3_linux_arm/share.hxx
+--- bridges/source/cpp_uno/gcc3_linux_arm/share.hxx Wed Apr 21 18:35:51 2010 +0200
++++ bridges/source/cpp_uno/gcc3_linux_arm/share.hxx Tue Apr 27 11:17:28 2010 +0100
+@@ -89,5 +89,12 @@
+ void fillUnoException(
+ __cxa_exception * header, uno_Any *, uno_Mapping * pCpp2Uno );
+ }
++
++namespace arm
++{
... etc. - the rest is truncated
More information about the ooo-build-commit
mailing list