[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