commit OpenOffice_org-base
Hello community, here is the log from the commit of package OpenOffice_org-base checked in at Mon Sep 29 18:08:27 CEST 2008. -------- --- OpenOffice_org-base/OpenOffice_org-base.changes 2008-09-11 17:38:41.000000000 +0200 +++ /mounts/work_src_done/STABLE/OpenOffice_org-base/OpenOffice_org-base.changes 2008-09-27 17:24:07.000000000 +0200 @@ -1,0 +2,8 @@ +Sat Sep 27 12:04:54 CEST 2008 - pmladek@suse.cz + +- updated to the milestone ooo300-m7 (3.0rc2) +- updated ooo-build to version 3.0.0.5 +- added Requires OpenOffice_org = %version +- added Supplements OpenOffice_org + +------------------------------------------------------------------- Old: ---- ooo300-m5-base.tar.bz2 New: ---- ooo300-m7-base.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ OpenOffice_org-base.spec ++++++ --- /var/tmp/diff_new_pack.E17470/_old 2008-09-29 18:08:15.000000000 +0200 +++ /var/tmp/diff_new_pack.E17470/_new 2008-09-29 18:08:16.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package OpenOffice_org-base (Version 3.0.0.4) +# spec file for package OpenOffice_org-base (Version 3.0.0.5) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -19,21 +19,21 @@ Name: OpenOffice_org-base -Version: 3.0.0.4 +Version: 3.0.0.5 Release: 1 -%define ooo_build_version 3.0.0.4 +%define ooo_build_version 3.0.0.5 %define piece base BuildRequires: ImageMagick ant ant-apache-regexp bison boost-devel ccache cups-devel curl-devel db-devel flac-devel flex gnome-vfs2-devel gperf gtk2-devel icu java-devel kdelibs3-devel krb5 libexif mono-devel neon-devel openldap2-devel pam-devel perl-Archive-Zip perl-Compress-Zlib python-devel recode unixODBC-devel unzip xml-commons-apis xorg-x11 zip BuildRequires: OpenOffice_org-components-devel = %version BuildRequires: OpenOffice_org-libs-core-devel = %version %define ooo_prefix %_libdir %define ooo_home ooo3 -%define ooo_build_tag ooo300-m5 +%define ooo_build_tag ooo300-m7 License: LGPL v3 only Group: Productivity/Office/Suite AutoReqProv: on -Requires: OpenOffice_org-components = %version -Requires: OpenOffice_org-libs-core = %version +Requires: OpenOffice_org = %version +Supplements: OpenOffice_org Summary: OpenOffice.org Base Url: http://www.openoffice.org/ Source: %ooo_build_tag-%piece.tar.bz2 @@ -126,5 +126,10 @@ %ooo_prefix/%ooo_home/solver/noarch %changelog +* Sat Sep 27 2008 pmladek@suse.cz +- updated to the milestone ooo300-m7 (3.0rc2) +- updated ooo-build to version 3.0.0.5 +- added Requires OpenOffice_org = %%version +- added Supplements OpenOffice_org * Thu Sep 11 2008 pmladek@suse.cz - split from the main OpenOffice_org package, version 3.0.0.4 ++++++ ooo300-m5-base.tar.bz2 -> ooo300-m7-base.tar.bz2 ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ooo300-m5-base/dbaccess/source/core/dataaccess/ModelImpl.cxx new/ooo300-m7-base/dbaccess/source/core/dataaccess/ModelImpl.cxx --- old/ooo300-m5-base/dbaccess/source/core/dataaccess/ModelImpl.cxx 2008-06-30 17:10:05.000000000 +0200 +++ new/ooo300-m7-base/dbaccess/source/core/dataaccess/ModelImpl.cxx 2008-09-12 16:37:37.000000000 +0200 @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: ModelImpl.cxx,v $ - * $Revision: 1.32 $ + * $Revision: 1.32.14.1 $ * * This file is part of OpenOffice.org. * @@ -1225,13 +1225,16 @@ m_pDBContext->registerPrivate( _rDocumentURL, this ); } - // if we do not have a name, yet (i.e. are not registered at the database context), - // then use the URL as name - if ( !m_sName.getLength() ) + if ( ( m_sName == m_sDocumentURL ) // our name is our old URL + || ( !m_sName.getLength() ) // we do not have a name, yet (i.e. are not registered at the database context) + ) { INetURLObject aURL( _rDocumentURL ); if ( aURL.GetProtocol() != INET_PROT_NOT_VALID ) + { m_sName = _rDocumentURL; + // TODO: our data source must broadcast the change of the Name property + } } } diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ooo300-m5-base/dbaccess/source/ui/app/AppController.cxx new/ooo300-m7-base/dbaccess/source/ui/app/AppController.cxx --- old/ooo300-m5-base/dbaccess/source/ui/app/AppController.cxx 2008-08-27 17:50:36.000000000 +0200 +++ new/ooo300-m7-base/dbaccess/source/ui/app/AppController.cxx 2008-09-12 16:37:57.000000000 +0200 @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: AppController.cxx,v $ - * $Revision: 1.63.14.2 $ + * $Revision: 1.63.14.3 $ * * This file is part of OpenOffice.org. * @@ -1304,7 +1304,6 @@ lcl_handleException_nothrow( m_xModel, ::cppu::getCaughtException() ); } - m_sDatabaseName = ::rtl::OUString(); /*updateTitle();*/ m_bCurrentlyModified = sal_False; InvalidateFeature(ID_BROWSER_SAVEDOC); @@ -2803,14 +2802,10 @@ } m_xDataSource.set(xOfficeDoc.is() ? xOfficeDoc->getDataSource() : Reference<XDataSource>(),UNO_QUERY); - if ( !m_xDataSource.is() ) - m_sDatabaseName = ::rtl::OUString(); - else + if ( m_xDataSource.is() ) { try { - m_xDataSource->getPropertyValue(PROPERTY_NAME) >>= m_sDatabaseName; - m_xDataSource->addPropertyChangeListener(PROPERTY_INFO, this); m_xDataSource->addPropertyChangeListener(PROPERTY_URL, this); m_xDataSource->addPropertyChangeListener(PROPERTY_ISPASSWORDREQUIRED, this); diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ooo300-m5-base/dbaccess/source/ui/app/AppControllerDnD.cxx new/ooo300-m7-base/dbaccess/source/ui/app/AppControllerDnD.cxx --- old/ooo300-m5-base/dbaccess/source/ui/app/AppControllerDnD.cxx 2008-05-05 17:51:41.000000000 +0200 +++ new/ooo300-m7-base/dbaccess/source/ui/app/AppControllerDnD.cxx 2008-09-12 16:38:24.000000000 +0200 @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: AppControllerDnD.cxx,v $ - * $Revision: 1.28 $ + * $Revision: 1.28.44.1 $ * * This file is part of OpenOffice.org. * @@ -635,7 +635,7 @@ if ( xElements.is() && !aList.empty() ) { Reference< XContent> xContent(xElements->getByHierarchicalName(*aList.begin()),UNO_QUERY); - pData = new OComponentTransferable(m_sDatabaseName,xContent); + pData = new OComponentTransferable( getDatabaseName(), xContent ); } } break; diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ooo300-m5-base/dbaccess/source/ui/app/AppControllerGen.cxx new/ooo300-m7-base/dbaccess/source/ui/app/AppControllerGen.cxx --- old/ooo300-m5-base/dbaccess/source/ui/app/AppControllerGen.cxx 2008-06-25 14:36:04.000000000 +0200 +++ new/ooo300-m7-base/dbaccess/source/ui/app/AppControllerGen.cxx 2008-09-12 16:38:37.000000000 +0200 @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: AppControllerGen.cxx,v $ - * $Revision: 1.37 $ + * $Revision: 1.37.18.1 $ * * This file is part of OpenOffice.org. * @@ -671,9 +671,28 @@ } // ----------------------------------------------------------------------------- +::rtl::OUString OApplicationController::getDatabaseName() const +{ + ::rtl::OUString sDatabaseName; + try + { + if ( m_xDataSource.is() ) + { + OSL_VERIFY( m_xDataSource->getPropertyValue( PROPERTY_NAME ) >>= sDatabaseName ); + } + } + catch ( const Exception& ) + { + DBG_UNHANDLED_EXCEPTION(); + } + return sDatabaseName; +} + +// ----------------------------------------------------------------------------- ::rtl::OUString OApplicationController::getStrippedDatabaseName() const { - return ::dbaui::getStrippedDatabaseName(m_xDataSource,m_sDatabaseName); + ::rtl::OUString sDatabaseName; + return ::dbaui::getStrippedDatabaseName( m_xDataSource, sDatabaseName ); } // ----------------------------------------------------------------------------- diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ooo300-m5-base/dbaccess/source/ui/app/AppController.hxx new/ooo300-m7-base/dbaccess/source/ui/app/AppController.hxx --- old/ooo300-m5-base/dbaccess/source/ui/app/AppController.hxx 2008-06-25 14:35:42.000000000 +0200 +++ new/ooo300-m7-base/dbaccess/source/ui/app/AppController.hxx 2008-09-12 16:38:11.000000000 +0200 @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: AppController.hxx,v $ - * $Revision: 1.30 $ + * $Revision: 1.30.14.1 $ * * This file is part of OpenOffice.org. * @@ -136,7 +136,6 @@ OTableCopyHelper m_aTableCopyHelper; TransferableClipboardListener* m_pClipbordNotifier; // notifier for changes in the clipboard - mutable ::rtl::OUString m_sDatabaseName; sal_Int32 m_nAsyncDrop; OAsyncronousLink m_aControllerConnectedEvent; OAsyncronousLink m_aSelectContainerEvent; @@ -164,7 +163,7 @@ @return the database name */ - inline ::rtl::OUString getDatabaseName() const { return m_sDatabaseName; } + ::rtl::OUString getDatabaseName() const; /** returns the stripped database name. @return diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ooo300-m5-base/dbaccess/source/ui/app/localize.sdf new/ooo300-m7-base/dbaccess/source/ui/app/localize.sdf --- old/ooo300-m5-base/dbaccess/source/ui/app/localize.sdf 2008-08-26 14:10:18.000000000 +0200 +++ new/ooo300-m7-base/dbaccess/source/ui/app/localize.sdf 2008-09-17 14:02:14.000000000 +0200 @@ -17,7 +17,7 @@ # # $RCSfile: localize.sdf,v $ # -# $Revision: 1.33.2.2 $ +# $Revision: 1.33.2.3 $ # # This file is part of OpenOffice.org. # @@ -1034,7 +1034,7 @@ dbaccess source\ui\app\app.src 0 menuitem RID_MENU_APP_EDIT SID_SELECTALL SID_SELECTALL 0 hr Od~aberi sve 2002-02-02 02:02:02 dbaccess source\ui\app\app.src 0 menuitem RID_MENU_APP_EDIT SID_SELECTALL SID_SELECTALL 0 hu Mindent kijelöl 2002-02-02 02:02:02 dbaccess source\ui\app\app.src 0 menuitem RID_MENU_APP_EDIT SID_SELECTALL SID_SELECTALL 0 it Seleziona tutto 2002-02-02 02:02:02 -dbaccess source\ui\app\app.src 0 menuitem RID_MENU_APP_EDIT SID_SELECTALL SID_SELECTALL 0 ja すべて選択(A) 2002-02-02 02:02:02 +dbaccess source\ui\app\app.src 0 menuitem RID_MENU_APP_EDIT SID_SELECTALL SID_SELECTALL 0 ja すべて選択 2002-02-02 02:02:02 dbaccess source\ui\app\app.src 0 menuitem RID_MENU_APP_EDIT SID_SELECTALL SID_SELECTALL 13691 ka ყველას არჩევა 2002-02-02 02:02:02 dbaccess source\ui\app\app.src 0 menuitem RID_MENU_APP_EDIT SID_SELECTALL SID_SELECTALL 0 kk Барлығын ерекшелеу 2002-02-02 02:02:02 dbaccess source\ui\app\app.src 0 menuitem RID_MENU_APP_EDIT SID_SELECTALL SID_SELECTALL 0 km ជ្រើសទាំងអស់ 2002-02-02 02:02:02 diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ooo300-m5-base/dbaccess/source/ui/dlg/localize.sdf new/ooo300-m7-base/dbaccess/source/ui/dlg/localize.sdf --- old/ooo300-m5-base/dbaccess/source/ui/dlg/localize.sdf 2008-08-26 14:12:24.000000000 +0200 +++ new/ooo300-m7-base/dbaccess/source/ui/dlg/localize.sdf 2008-08-26 14:12:24.000000000 +0200 @@ -8406,7 +8406,7 @@ dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 ca Usuari "$name$: $" 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 cs Uživatel "$name$: $" 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 cy Defnyddiwr "$name$: $" 2002-02-02 02:02:02 -dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 da Bruger "$Name: OOO300_m5 $" 2002-02-02 02:02:02 +dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 da Bruger "$Name: OOO300_m7 $" 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 de Benutzer "$name$: $" 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 dz ལག་ལེན་པ་"$name$: $"། 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 el Χρήστης "$name$: $" 2002-02-02 02:02:02 @@ -8418,7 +8418,7 @@ dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 fi Käyttäjä "$name$: $" 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 fr Utilisateur "$name$ : $" 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 ga Úsáideoir "$name$: $" 2002-02-02 02:02:02 -dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 gl Usuario "$Name: OOO300_m5 $" 2002-02-02 02:02:02 +dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 gl Usuario "$Name: OOO300_m7 $" 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 gu વપરાશકર્તા "$name$: $" 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 gu-IN વપરાશકર્તા "$name$: $" 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 he משתמש "$name$: $" 2002-02-02 02:02:02 @@ -8428,7 +8428,7 @@ dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 it Utente "$name$: $" 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 ja ユーザー "$name$:$" 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 ka მომხარებელი "$name$: $" 2002-02-02 02:02:02 -dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 kk "$Name: OOO300_m5 $" пайдаланушы 2002-02-02 02:02:02 +dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 kk "$Name: OOO300_m7 $" пайдаланушы 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 km អ្នកប្រើ "$name$ ៖ $" 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 ko 사용자 "$name$: $" 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 ku Bikarhinêr "$name$: $" 2002-02-02 02:02:02 @@ -8473,7 +8473,7 @@ dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 uz Foydalanuvchi "$name$: $" 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 vi Người dùng « $name$: $ » 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 xh Umsebenzisi "$name$: $" 2002-02-02 02:02:02 -dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 zh-CN 用户 $Name: OOO300_m5 $ 2002-02-02 02:02:02 +dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 zh-CN 用户 $Name: OOO300_m7 $ 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 zh-TW 使用者 「$name$:$」 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline DLG_PASSWORD FL_USER 0 zu Umsebenzisi "$name$: $" 2002-02-02 02:02:02 dbaccess source\ui\dlg\UserAdmin.src 0 fixedline TAB_PAGE_USERADMIN FL_TABLE_GRANTS 0 af Toegangsregte vir geselekteerde gebruiker 2002-02-02 02:02:02 @@ -31289,7 +31289,7 @@ dbaccess source\ui\dlg\dlgsave.src 0 string DLG_SAVE_AS STR_OBJECT_EXISTS_ALREADY 50 ta msgid " 2002-02-02 02:02:02 dbaccess source\ui\dlg\dlgsave.src 0 string DLG_SAVE_AS STR_OBJECT_EXISTS_ALREADY 50 ta-IN msgid " 2002-02-02 02:02:02 dbaccess source\ui\dlg\dlgsave.src 0 string DLG_SAVE_AS STR_OBJECT_EXISTS_ALREADY 0 te-IN '$#$' నామం ముందుగానే ఉన్నది.\nదయచేసి వేరే నామం ప్రవేశంపుము. 2002-02-02 02:02:02 -dbaccess source\ui\dlg\dlgsave.src 0 string DLG_SAVE_AS STR_OBJECT_EXISTS_ALREADY 0 tg Номи '$Name: OOO300_m5 $' аллакай мавҷуд аст.\nДигар номро дохил намоед. 2002-02-02 02:02:02 +dbaccess source\ui\dlg\dlgsave.src 0 string DLG_SAVE_AS STR_OBJECT_EXISTS_ALREADY 0 tg Номи '$Name: OOO300_m7 $' аллакай мавҷуд аст.\nДигар номро дохил намоед. 2002-02-02 02:02:02 dbaccess source\ui\dlg\dlgsave.src 0 string DLG_SAVE_AS STR_OBJECT_EXISTS_ALREADY 0 th The name '$#$' already exists.\nPlease enter another name.มีชื่อ '$name$: $' อยู่แล้ว\nกรุณาใส่ชื่ออื่น 2002-02-02 02:02:02 dbaccess source\ui\dlg\dlgsave.src 0 string DLG_SAVE_AS STR_OBJECT_EXISTS_ALREADY 0 ti-ER ስም '$#$' ኣሎ።\n ካልእ ስም ኣእቱ። 2002-02-02 02:02:02 dbaccess source\ui\dlg\dlgsave.src 0 string DLG_SAVE_AS STR_OBJECT_EXISTS_ALREADY 0 tr '$#$' adı halihazırda mevcut.\nLütfen başka bir isim giriniz. 2002-02-02 02:02:02 @@ -31355,7 +31355,7 @@ dbaccess source\ui\dlg\dlgsave.src 0 string DLG_SAVE_AS STR_OBJECT_EXISTS_ALREADY_OVERWRITE 50 ta msgid " 2002-02-02 02:02:02 dbaccess source\ui\dlg\dlgsave.src 0 string DLG_SAVE_AS STR_OBJECT_EXISTS_ALREADY_OVERWRITE 50 ta-IN msgid " 2002-02-02 02:02:02 dbaccess source\ui\dlg\dlgsave.src 0 string DLG_SAVE_AS STR_OBJECT_EXISTS_ALREADY_OVERWRITE 0 te-IN '$#$' నామం ముందుగానే ఉన్నది.\n దినిని చెరిపిరాయలా? 2002-02-02 02:02:02 -dbaccess source\ui\dlg\dlgsave.src 0 string DLG_SAVE_AS STR_OBJECT_EXISTS_ALREADY_OVERWRITE 0 tg Номи '$Name: OOO300_m5 $' аллакай мавҷуд аст.\nИваз намоям? 2002-02-02 02:02:02 +dbaccess source\ui\dlg\dlgsave.src 0 string DLG_SAVE_AS STR_OBJECT_EXISTS_ALREADY_OVERWRITE 0 tg Номи '$Name: OOO300_m7 $' аллакай мавҷуд аст.\nИваз намоям? 2002-02-02 02:02:02 dbaccess source\ui\dlg\dlgsave.src 0 string DLG_SAVE_AS STR_OBJECT_EXISTS_ALREADY_OVERWRITE 0 th The name '$#$' already exists.\nDo you want to overwrite it?ชื่อ '$name$: $' มีอยู่แล้ว\nคุณต้องการเขียนทับหรือไม่ ? 2002-02-02 02:02:02 dbaccess source\ui\dlg\dlgsave.src 0 string DLG_SAVE_AS STR_OBJECT_EXISTS_ALREADY_OVERWRITE 0 ti-ER ስም '$#$' ኣሎ።\n ክትክኦ ዶ ትደሊ? 2002-02-02 02:02:02 dbaccess source\ui\dlg\dlgsave.src 0 string DLG_SAVE_AS STR_OBJECT_EXISTS_ALREADY_OVERWRITE 0 tr '$#$' adı halihazırda mevcut. \nÜzerine yazmak istermisiniz? 2002-02-02 02:02:02 diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ooo300-m5-base/dbaccess/source/ui/misc/localize.sdf new/ooo300-m7-base/dbaccess/source/ui/misc/localize.sdf --- old/ooo300-m5-base/dbaccess/source/ui/misc/localize.sdf 2008-08-26 14:12:56.000000000 +0200 +++ new/ooo300-m7-base/dbaccess/source/ui/misc/localize.sdf 2008-08-26 14:12:56.000000000 +0200 @@ -5201,7 +5201,7 @@ dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 0 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 STR_NAMED_OBJECT_ALREADY_EXISTS 0 fr Le nom '$#$' existe déjà.\nSaisissez-en un autre. 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 STR_NAMED_OBJECT_ALREADY_EXISTS 0 gl Xa existe o nome '$Name: OOO300_m5 $'.\nIntroduza outro nome. 2002-02-02 02:02:02 +dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 0 gl Xa existe o nome '$Name: OOO300_m7 $'.\nIntroduza outro nome. 2002-02-02 02:02:02 dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 13691 gu નામ '$#$' પહેલાથી જ હાજર છે.\nમહેરબાની કરીને અન્ય નામ દાખલ કરો. 2002-02-02 02:02:02 dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 0 he השם '$#$' כבר קיים.\nנא לבחור שם אחר. 2002-02-02 02:02:02 dbaccess source\ui\misc\dbumiscres.src 0 string STR_NAMED_OBJECT_ALREADY_EXISTS 0 hr Ime '$#$' već postoji.\nMolimo unesite neko drugo. 2002-02-02 02:02:02 diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ooo300-m5-base/dbaccess/source/ui/querydesign/localize.sdf new/ooo300-m7-base/dbaccess/source/ui/querydesign/localize.sdf --- old/ooo300-m5-base/dbaccess/source/ui/querydesign/localize.sdf 2008-08-14 19:49:54.000000000 +0200 +++ new/ooo300-m7-base/dbaccess/source/ui/querydesign/localize.sdf 2008-09-17 14:02:47.000000000 +0200 @@ -17,7 +17,7 @@ # # $RCSfile: localize.sdf,v $ # -# $Revision: 1.37.2.1 $ +# $Revision: 1.37.2.2 $ # # This file is part of OpenOffice.org. # @@ -6150,7 +6150,7 @@ dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 1 0 gl Asociación interna 2002-02-02 02:02:02 dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 1 0 hu Belső összekapcsolás 2002-02-02 02:02:02 dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 1 0 it Relazione interna 2002-02-02 02:02:02 -dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 1 0 ja 内部結合(I) 2002-02-02 02:02:02 +dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 1 0 ja 内部結合 2002-02-02 02:02:02 dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 1 0 kk Енi бойынша тұралау 2002-02-02 02:02:02 dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 1 0 km រួមខាងក្នុង 2002-02-02 02:02:02 dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 1 0 ko 내부 결합 2002-02-02 02:02:02 @@ -6192,7 +6192,7 @@ dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 2 0 gl Asociación á esquerda 2002-02-02 02:02:02 dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 2 0 hu Bal oldali összekapcsolás 2002-02-02 02:02:02 dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 2 0 it Relazione sinistra 2002-02-02 02:02:02 -dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 2 0 ja 左結合(L) 2002-02-02 02:02:02 +dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 2 0 ja 左結合 2002-02-02 02:02:02 dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 2 0 kk Сол жағынан туралау 2002-02-02 02:02:02 dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 2 0 km រួមខាងឆ្វេង 2002-02-02 02:02:02 dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 2 0 ko 왼쪽 결합 2002-02-02 02:02:02 @@ -6234,7 +6234,7 @@ dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 3 0 gl Asociación á dereita 2002-02-02 02:02:02 dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 3 0 hu Jobb oldali összekapcsolás 2002-02-02 02:02:02 dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 3 0 it Relazione destra 2002-02-02 02:02:02 -dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 3 0 ja 右結合(R) 2002-02-02 02:02:02 +dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 3 0 ja 右結合 2002-02-02 02:02:02 dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 3 0 kk Оң жағынан туралау 2002-02-02 02:02:02 dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 3 0 km រួមខាងស្តាំ 2002-02-02 02:02:02 dbaccess source\ui\querydesign\querydlg.src 0 stringlist DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE 3 0 ko 오른쪽 결합 2002-02-02 02:02:02 diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ooo300-m5-base/reportdesign/prj/build.lst new/ooo300-m7-base/reportdesign/prj/build.lst --- old/ooo300-m5-base/reportdesign/prj/build.lst 2008-08-27 17:44:23.000000000 +0200 +++ new/ooo300-m7-base/reportdesign/prj/build.lst 2008-09-18 11:00:16.000000000 +0200 @@ -1,4 +1,4 @@ -rd reportdesign : BOOST:boost JFREEREPORT:jfreereport comphelper dbaccess NULL +rd reportdesign : BOOST:boost comphelper dbaccess NULL rd reportdesign usr1 - all rd_mkout NULL rd reportdesign\inc nmake - all rd_inc NULL rd reportdesign\registry\data\org\openoffice\Office nmake - all rd_reg_data_ooo NULL diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ooo300-m5-base/reportdesign/source/ui/dlg/localize.sdf new/ooo300-m7-base/reportdesign/source/ui/dlg/localize.sdf --- old/ooo300-m5-base/reportdesign/source/ui/dlg/localize.sdf 2008-08-14 19:51:52.000000000 +0200 +++ new/ooo300-m7-base/reportdesign/source/ui/dlg/localize.sdf 2008-09-17 12:16:48.000000000 +0200 @@ -17,7 +17,7 @@ # # $RCSfile: localize.sdf,v $ # -# $Revision: 1.10.2.1 $ +# $Revision: 1.10.2.2 $ # # This file is part of OpenOffice.org. # @@ -3906,7 +3906,7 @@ reportdesign source\ui\dlg\PageNumber.src 0 string STR_RPT_PN_PAGE 0 gl "Páxina " e #PAGENUMBER# 2002-02-02 02:02:02 reportdesign source\ui\dlg\PageNumber.src 0 string STR_RPT_PN_PAGE 0 gu "પાનું " & #PAGENUMBER# 2002-02-02 02:02:02 reportdesign source\ui\dlg\PageNumber.src 0 string STR_RPT_PN_PAGE 0 hr "Page " & #PAGENUMBER# 2002-02-02 02:02:02 -reportdesign source\ui\dlg\PageNumber.src 0 string STR_RPT_PN_PAGE 0 hu & #PAGENUMBER# "oldal" 2002-02-02 02:02:02 +reportdesign source\ui\dlg\PageNumber.src 0 string STR_RPT_PN_PAGE 0 hu #PAGENUMBER# & ". oldal" 2002-02-02 02:02:02 reportdesign source\ui\dlg\PageNumber.src 0 string STR_RPT_PN_PAGE 0 it "Pagina " & #PAGENUMBER# 2002-02-02 02:02:02 reportdesign source\ui\dlg\PageNumber.src 0 string STR_RPT_PN_PAGE 0 ja & #PAGENUMBER# ページ 2002-02-02 02:02:02 reportdesign source\ui\dlg\PageNumber.src 0 string STR_RPT_PN_PAGE 0 km "ទំព័រ " & #PAGENUMBER# 2002-02-02 02:02:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de