1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22// include --------------------------------------------------------------- 23#include <sfx2/sfx.hrc> 24#include "dialog.hrc" 25#include "helpid.hrc" 26#include "sfxlocal.hrc" 27 28String STR_RESET 29{ 30 Text [ en-US ] = "~Reset" ; 31}; 32String STR_APPLY 33{ 34 Text [ en-US ] = "Apply" ; 35}; 36String STR_TABPAGE_MANAGESTYLES 37{ 38 Text [ en-US ] = "Organizer" ; 39}; 40InfoBox MSG_TABPAGE_INVALIDNAME 41{ 42 BUTTONS = WB_OK ; 43 DEFBUTTON = WB_DEF_OK ; 44 Message [ en-US ] = "This name is already in use." ; 45}; 46InfoBox MSG_TABPAGE_INVALIDSTYLE 47{ 48 BUTTONS = WB_OK ; 49 DEFBUTTON = WB_DEF_OK ; 50 Message [ en-US ] = "This Style does not exist." ; 51}; 52InfoBox MSG_TABPAGE_INVALIDPARENT 53{ 54 BUTTONS = WB_OK ; 55 DEFBUTTON = WB_DEF_OK ; 56 Message [ en-US ] = "This Style cannot be used as a base Style,\nbecause it would result in a recursive reference." ; 57}; 58InfoBox MSG_POOL_STYLE_NAME 59{ 60 Message [ en-US ] = "Name already exists as a default Style.\nPlease choose another name." ; 61}; 62String STR_DELETE_STYLE 63{ 64 Text [ en-US ] = "Do you really want to delete Style $1?" ; 65}; 66String STR_DELETE_STYLE_USED 67{ 68 Text [ en-US ] = "You are deleting an applied Style!\n" ; 69}; 70Menu MN_CONTEXT_TEMPLDLG 71{ 72 ItemList = 73 { 74 MenuItem 75 { 76 Identifier = ID_NEW ; 77 Text [ en-US ] = "New..." ; 78 HelpId = HID_STYLIST_NEW ; 79 }; 80 MenuItem 81 { 82 Identifier = ID_EDIT ; 83 Text [ en-US ] = "Modify..." ; 84 HelpId = HID_STYLIST_EDIT ; 85 }; 86 MenuItem 87 { 88 Identifier = ID_DELETE ; 89 Text [ en-US ] = "Delete..." ; 90 HelpId = HID_STYLIST_DELETE ; 91 }; 92 }; 93}; 94 95 //------------------------------------------------------------------------ 96String SID_NAVIGATOR 97{ 98 Text [ en-US ] = "Navigator" ; 99}; 100String SID_TASKPANE 101{ 102 Text = "Task Pane" ; 103}; 104String SID_SIDEBAR 105{ 106 Text [ en-US ] = "Sidebar" ; 107}; 108 109ErrorBox MSG_ERROR_WRONG_CONFIRM 110{ 111 BUTTONS = WB_OK ; 112 DEFBUTTON = WB_DEF_OK ; 113 Message [ en-US ] = "Faulty password confirmation" ; 114}; 115 116String STR_PDF_EXPORT_SEND 117{ 118 Text [ en-US ] = "Send" ; 119}; 120 121Image IMG_INFO 122{ 123 ImageBitmap = Bitmap 124 { 125 File = "info.png" ; 126 }; 127}; 128 129// ******************************************************************* EOF 130