summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorEike Rathke <er@openoffice.org>2001-07-25 17:50:59 +0000
committerEike Rathke <er@openoffice.org>2001-07-25 17:50:59 +0000
commit536111d2ec852efd7875e9a6fe593ad38f3c1d75 (patch)
tree721caf06e7bfad6881d6e36d917f245d9ec91f30 /sfx2
parentb5f36c65ced61d3034f74dd310b0d17551d61a34 (diff)
#87302# localized OLE 'Object' name prefix
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/doc/doc.hrc6
-rw-r--r--sfx2/source/doc/doc.src33
-rw-r--r--sfx2/source/doc/objcont.cxx7
3 files changed, 39 insertions, 7 deletions
diff --git a/sfx2/source/doc/doc.hrc b/sfx2/source/doc/doc.hrc
index 1262b09ca39b..932564d00fd2 100644
--- a/sfx2/source/doc/doc.hrc
+++ b/sfx2/source/doc/doc.hrc
@@ -2,9 +2,9 @@
*
* $RCSfile: doc.hrc,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: mba $ $Date: 2000-12-10 16:17:13 $
+ * last change: $Author: er $ $Date: 2001-07-25 18:50:59 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -170,6 +170,8 @@
#define TEMPLATE_SHORT_NAMES_ARY (RID_SFX_DOC_START+ 82)
#define RID_CNT_STR_WAITING (RID_SFX_DOC_START+ 83)
+#define STR_OBJECT (RID_SFX_DOC_START+ 84)
+
#define DLOAD_URL 1
#define DLOAD_STATUS 2
#define DLOAD_NAME 3
diff --git a/sfx2/source/doc/doc.src b/sfx2/source/doc/doc.src
index 8fb2e6ea13df..7f92cda31e43 100644
--- a/sfx2/source/doc/doc.src
+++ b/sfx2/source/doc/doc.src
@@ -2,9 +2,9 @@
*
* $RCSfile: doc.src,v $
*
- * $Revision: 1.27 $
+ * $Revision: 1.28 $
*
- * last change: $Author: kz $ $Date: 2001-07-24 20:16:20 $
+ * last change: $Author: er $ $Date: 2001-07-25 18:50:59 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -2064,6 +2064,35 @@ String STR_PACKNGO_NEWMEDIUM
Text[ finnish ] = "Lis seuraava tietovline ja valitse OK.";
};
+String STR_OBJECT
+{
+ Text = "Objekt" ;
+ Text [ ENGLISH ] = "Object" ;
+ Text [ portuguese ] = "Objecto" ;
+ Text [ english_us ] = "Object" ;
+ Text [ portuguese_brazilian ] = "Objekt" ;
+ Text [ swedish ] = "Objekt" ;
+ Text [ danish ] = "Objekt" ;
+ Text [ italian ] = "Oggetto" ;
+ Text [ spanish ] = "Objeto" ;
+ Text [ french ] = "Objet" ;
+ Text [ dutch ] = "Object" ;
+ Text[ chinese_simplified ] = "";
+ Text[ russian ] = "";
+ Text[ polish ] = "Obiekt";
+ Text[ japanese ] = "޼ު";
+ Text[ chinese_traditional ] = "";
+ Text[ arabic ] = "";
+ Text[ dutch ] = "Object";
+ Text[ chinese_simplified ] = "";
+ Text[ greek ] = "";
+ Text[ korean ] = "ü";
+ Text[ turkish ] = "Nesne";
+ Text[ language_user1 ] = " ";
+ Text[ catalan ] = "Objeto";
+ Text[ finnish ] = "Objekti";
+};
+
// ******************************************************************* EOF
diff --git a/sfx2/source/doc/objcont.cxx b/sfx2/source/doc/objcont.cxx
index b49e152784ef..a90eeeeaf4be 100644
--- a/sfx2/source/doc/objcont.cxx
+++ b/sfx2/source/doc/objcont.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: objcont.cxx,v $
*
- * $Revision: 1.21 $
+ * $Revision: 1.22 $
*
- * last change: $Author: mba $ $Date: 2001-07-20 10:24:28 $
+ * last change: $Author: er $ $Date: 2001-07-25 18:50:59 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -856,7 +856,8 @@ SvEmbeddedInfoObject* SfxObjectShell::InsertObject
String aName( rName );
if( !aName.Len() )
{
- aName = DEFINE_CONST_UNICODE( "Object " );
+ aName = SfxResId( STR_OBJECT );
+ aName += sal_Unicode(' ');
String aStr;
USHORT i = 1;
HACK(Wegen Storage Bug 46033)