forked from amazingfate/loongoffice
2004/04/20 20:50:57 hjs 1.31.54.2: RESYNC: (1.31-1.32); FILE MERGED 2003/11/10 17:55:00 ihi 1.31.54.1: #111234# Merge during build
258 lines
6.9 KiB
Plaintext
258 lines
6.9 KiB
Plaintext
/*************************************************************************
|
|
*
|
|
* $RCSfile: mailwindow.src,v $
|
|
*
|
|
* $Revision: 1.34 $
|
|
*
|
|
* last change: $Author: hjs $ $Date: 2004-06-28 08:51:24 $
|
|
*
|
|
* The Contents of this file are made available subject to the terms of
|
|
* either of the following licenses
|
|
*
|
|
* - GNU Lesser General Public License Version 2.1
|
|
* - Sun Industry Standards Source License Version 1.1
|
|
*
|
|
* Sun Microsystems Inc., October, 2000
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2000 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
*
|
|
* Sun Industry Standards Source License Version 1.1
|
|
* =================================================
|
|
* The contents of this file are subject to the Sun Industry Standards
|
|
* Source License Version 1.1 (the "License"); You may not use this file
|
|
* except in compliance with the License. You may obtain a copy of the
|
|
* License at http://www.openoffice.org/license.html.
|
|
*
|
|
* Software provided under this License is provided on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
|
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
|
|
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
|
|
* See the License for the specific provisions governing your rights and
|
|
* obligations concerning the Software.
|
|
*
|
|
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
|
|
*
|
|
* Copyright: 2000 by Sun Microsystems, Inc.
|
|
*
|
|
* All Rights Reserved.
|
|
*
|
|
* Contributor(s): _______________________________________
|
|
*
|
|
*
|
|
************************************************************************/
|
|
|
|
#include "dialog.hrc"
|
|
#include "helpid.hrc"
|
|
#include "mailwindow.hrc"
|
|
|
|
Window RID_MAIL_WINDOW
|
|
{
|
|
HelpId = SID_MAIL_CHILDWIN ;
|
|
Pos = MAP_APPFONT( 0, 0 );
|
|
Size = MAP_APPFONT( 323, 87 );
|
|
DialogControl = TRUE ;
|
|
PushButton PB_MAILWIN_SEND
|
|
{
|
|
HelpId = HID_MAILWIN_SEND_BUTTON;
|
|
Pos = MAP_APPFONT( 6, 6 );
|
|
Size = MAP_APPFONT( 50, 14 );
|
|
Text [ de ] = "~Senden";
|
|
TabStop = TRUE;
|
|
Text [ en-US ] = "Send";
|
|
};
|
|
PushButton PB_MAILWIN_CLOSE
|
|
{
|
|
HelpId = HID_MAILWIN_CLOSE_BUTTON;
|
|
Pos = MAP_APPFONT( 6, 23 );
|
|
Size = MAP_APPFONT( 50, 14 );
|
|
Text [ de ] = "S~chlie�en";
|
|
TabStop = TRUE;
|
|
Text [ en-US ] = "Close";
|
|
};
|
|
ListBox LB_MAILWIN_ROLE
|
|
{
|
|
HelpId = HID_MAILWIN_ROLE_BOX;
|
|
Border = TRUE ;
|
|
Pos = MAP_APPFONT( 62, 6 );
|
|
Size = MAP_APPFONT( 42, 30 );
|
|
DropDown = TRUE ;
|
|
StringList [ de ] =
|
|
{
|
|
< "An" ; 1 ; > ;
|
|
< "Kopie" ; 2 ; > ;
|
|
< "Blindkopie" ; 3 ; > ;
|
|
};
|
|
StringList [ x-comment ] =
|
|
{
|
|
< "; An" ; 1 ; > ;
|
|
< "; Kopie" ; 2 ; > ;
|
|
< "; Blindkopie" ; 3 ; > ;
|
|
};
|
|
StringList [ en-US ] =
|
|
{
|
|
< "To" ; 1 ; > ;
|
|
< "Copy" ; 2 ; > ;
|
|
< "Blind Copy" ; 3 ; > ;
|
|
};
|
|
};
|
|
Edit ED_MAILWIN_ROLE
|
|
{
|
|
HelpId = HID_MAILWIN_ADDRESS_EDIT;
|
|
Border = TRUE;
|
|
Pos = MAP_APPFONT( 107, 6 );
|
|
Size = MAP_APPFONT( 210, 12 );
|
|
};
|
|
ListBox LB_MAILWIN_ADDRESS
|
|
{
|
|
HelpId = HID_MAILWIN_ADDRESS_BOX;
|
|
Border = TRUE ;
|
|
Pos = MAP_APPFONT( 107, 21 );
|
|
Size = MAP_APPFONT( 210, 30 );
|
|
AutoHScroll = TRUE ;
|
|
};
|
|
FixedText FT_MAILWIN_SUBJECT
|
|
{
|
|
Pos = MAP_APPFONT( 62, 55 );
|
|
Size = MAP_APPFONT( 42, 10 );
|
|
Text [ de ] = "~Betreff:";
|
|
Text [ en-US ] = "Subject:";
|
|
};
|
|
Edit ED_MAILWIN_SUBJECT
|
|
{
|
|
HelpId = HID_MAILWIN_SUBJECT_EDIT;
|
|
Border = TRUE;
|
|
Pos = MAP_APPFONT( 107, 54 );
|
|
Size = MAP_APPFONT( 210, 12 );
|
|
};
|
|
FixedText FT_MAILWIN_FROM
|
|
{
|
|
Pos = MAP_APPFONT( 62, 70 );
|
|
Size = MAP_APPFONT( 42, 10 );
|
|
Text [ de ] = "~Von:";
|
|
Text [ en-US ] = "From:";
|
|
};
|
|
Edit ED_MAILWIN_FROM
|
|
{
|
|
HelpId = HID_MAILWIN_FROM_EDIT;
|
|
Border = TRUE;
|
|
Pos = MAP_APPFONT( 107, 69 );
|
|
Size = MAP_APPFONT( 120, 12 );
|
|
};
|
|
FixedText FT_MAILWIN_PRIO
|
|
{
|
|
Pos = MAP_APPFONT( 230, 70 );
|
|
Size = MAP_APPFONT( 33, 10 );
|
|
Right = TRUE;
|
|
Text [ de ] = "~Priorit�t:";
|
|
Text [ en-US ] = "Priority:";
|
|
};
|
|
ListBox LB_MAILWIN_PRIO
|
|
{
|
|
HelpId = HID_MAILWIN_PRIO_BOX;
|
|
Border = TRUE;
|
|
Pos = MAP_APPFONT( 266, 69 );
|
|
Size = MAP_APPFONT( 51, 48 );
|
|
DropDown = TRUE;
|
|
StringList [ de ] =
|
|
{
|
|
< "Sehr hoch" ; 1 ; > ;
|
|
< "Hoch" ; 2 ; > ;
|
|
< "Normal" ; 3 ; > ;
|
|
< "Niedrig" ; 4 ; > ;
|
|
< "Sehr niedrig" ; 5 ; > ;
|
|
};
|
|
StringList [ x-comment ] =
|
|
{
|
|
< "; Sehr hoch" ; 1 ; > ;
|
|
< "; Hoch" ; 2 ; > ;
|
|
< "; Normal" ; 3 ; > ;
|
|
< "; Niedrig" ; 4 ; > ;
|
|
< "; Sehr niedrig" ; 5 ; > ;
|
|
};
|
|
StringList [ en-US ] =
|
|
{
|
|
< "Urgent" ; 1 ; > ;
|
|
< "Important" ; 2 ; > ;
|
|
< "Normal" ; 3 ; > ;
|
|
< "Low" ; 4 ; > ;
|
|
< "Lowest" ; 5 ; > ;
|
|
};
|
|
};
|
|
Image IMG_MAILWIN_SEND
|
|
{
|
|
ImageBitmap = Bitmap { File = "sc05364.bmp" ; };
|
|
MaskColor = Color { Red = 0xFFFF; Green = 0x0000; Blue = 0xFFFF; };
|
|
};
|
|
Image IMG_MAILWIN_CLOSE
|
|
{
|
|
ImageBitmap = Bitmap { File = "sc05503.bmp" ; };
|
|
MaskColor = Color { Red = 0xFFFF; Green = 0x0000; Blue = 0xFFFF; };
|
|
};
|
|
};
|
|
|
|
// RID_ERRBOX_MAIL_CONFIG ---------------------------------------------------
|
|
|
|
ErrorBox RID_ERRBOX_MAIL_CONFIG
|
|
{
|
|
BUTTONS = WB_OK ;
|
|
DEFBUTTON = WB_DEF_OK ;
|
|
Message [ de ] = "%PRODUCTNAME konnte keine funktionierende E-Mail Konfiguration finden. Bitte speichern sie dieses Dokument lokal und senden es dann mit ihrem E-Mail Programm." ;
|
|
MESSAGE [ en-US ] = "%PRODUCTNAME was unable to find a working e-mail configuration. Please save this document locally instead and attach it from within your e-mail client." ;
|
|
};
|
|
|
|
// ------------------------------------------------------------------- EOF
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|