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 23 24#include "sharedocdlg.hrc" 25 26ModalDialog RID_SCDLG_SHAREDOCUMENT 27{ 28 OutputSize = TRUE ; 29 HelpId = CMD_SID_SHARE_DOC ; 30 SVLook = TRUE ; 31 Size = MAP_APPFONT ( 204 , 186 ) ; 32 Text [ en-US ] = "Share Document" ; 33 Moveable = TRUE ; 34 Closeable = TRUE ; 35 CheckBox CB_SHARE 36 { 37 HelpID = "sc:CheckBox:RID_SCDLG_SHAREDOCUMENT:CB_SHARE"; 38 Pos = MAP_APPFONT ( 6 , 6 ) ; 39 Size = MAP_APPFONT ( 192 , 8 ) ; 40 Text [ en-US ] = "Share this spreadsheet with other users" ; 41 }; 42 FixedText FT_WARNING 43 { 44 Pos = MAP_APPFONT ( 15 , 18 ) ; 45 Size = MAP_APPFONT ( 183 , 48 ) ; 46 WordBreak = TRUE ; 47 Text [ en-US ] = "Note: Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities." ; 48 }; 49 FixedLine FL_USERS 50 { 51 Pos = MAP_APPFONT ( 6 , 66 ) ; 52 Size = MAP_APPFONT ( 192 , 4 ) ; 53 }; 54 FixedText FT_USERS 55 { 56 Pos = MAP_APPFONT ( 6 , 72 ) ; 57 Size = MAP_APPFONT ( 192 , 8 ) ; 58 Text [ en-US ] = "Users currently accessing this spreadsheet" ; 59 }; 60 Control LB_USERS 61 { 62 Pos = MAP_APPFONT ( 6 , 82 ) ; 63 Size = MAP_APPFONT ( 192 , 72 ) ; 64 Border = TRUE ; 65 }; 66 FixedLine FL_END 67 { 68 Pos = MAP_APPFONT ( 1 , 156 ) ; 69 Size = MAP_APPFONT ( 204 , 8 ) ; 70 }; 71 HelpButton BTN_HELP 72 { 73 Pos = MAP_APPFONT ( 6 , 166 ) ; 74 Size = MAP_APPFONT ( 50 , 14 ) ; 75 }; 76 OKButton BTN_OK 77 { 78 Pos = MAP_APPFONT ( 92 , 166 ) ; 79 Size = MAP_APPFONT ( 50 , 14 ) ; 80 DefButton = TRUE ; 81 }; 82 CancelButton BTN_CANCEL 83 { 84 Pos = MAP_APPFONT ( 148 , 166 ) ; 85 Size = MAP_APPFONT ( 50 , 14 ) ; 86 }; 87 String STR_TITLE_NAME 88 { 89 Text [ en-US ] = "Name" ; 90 }; 91 String STR_TITLE_ACCESSED 92 { 93 Text [ en-US ] = "Accessed" ; 94 }; 95 String STR_NO_USER_DATA 96 { 97 Text [ en-US ] = "No user data available." ; 98 }; 99 String STR_UNKNOWN_USER 100 { 101 Text [ en-US ] = "Unknown User" ; 102 }; 103 String STR_EXCLUSIVE_ACCESS 104 { 105 Text [ en-US ] = "(exclusive access)" ; 106 }; 107}; 108