forked from amazingfate/loongoffice
74 lines
2.4 KiB
Plaintext
74 lines
2.4 KiB
Plaintext
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
|
|
#include <sfx2/sfx.hrc>
|
|
#include "helpid.hrc"
|
|
#include <cuires.hrc>
|
|
#include "optinet2.hrc"
|
|
|
|
ErrorBox RID_SVXERR_OPT_PROXYPORTS
|
|
{
|
|
BUTTONS = WB_OK ;
|
|
Message [ en-US ] = "Invalid value!\n\nThe maximum value for a port number is 65535.";
|
|
};
|
|
|
|
// RID_SVXDLG_OPT_JAVASCRIPT_DISABLE -----------------------------------------
|
|
|
|
ModalDialog RID_SVXDLG_OPT_JAVASCRIPT_DISABLE
|
|
{
|
|
HelpID = "cui:ModalDialog:RID_SVXDLG_OPT_JAVASCRIPT_DISABLE";
|
|
OutputSize = TRUE;
|
|
Size = MAP_APPFONT( 150, 81 );
|
|
Moveable = TRUE;
|
|
Closeable = TRUE;
|
|
FixedImage IMG_JSCPT_WARNING
|
|
{
|
|
Pos = MAP_APPFONT( 6, 6 );
|
|
Size = MAP_APPFONT( 30, 30 );
|
|
};
|
|
FixedText FT_JSCPT_WARNING
|
|
{
|
|
Pos = MAP_APPFONT( 39, 6 );
|
|
Size = MAP_APPFONT( 195, 36 );
|
|
WordBreak = TRUE;
|
|
Text [ en-US ] = "Please note that with Java\nyou disable Javascript as well.\n\nDo you still want to disable Java?";
|
|
};
|
|
CheckBox CB_JSCPT_DISABLE
|
|
{
|
|
HelpID = "cui:CheckBox:RID_SVXDLG_OPT_JAVASCRIPT_DISABLE:CB_JSCPT_DISABLE";
|
|
Pos = MAP_APPFONT( 39, 45 );
|
|
Size = MAP_APPFONT( 195, 12 );
|
|
Hide = TRUE;
|
|
Text [ en-US ] = "~Don't show warning again";
|
|
};
|
|
OKButton BTN_JSCPT_YES
|
|
{
|
|
Pos = MAP_APPFONT( 41, 61 );
|
|
Size = MAP_APPFONT( 50, 14 );
|
|
};
|
|
CancelButton BTN_JSCPT_NO
|
|
{
|
|
Pos = MAP_APPFONT( 94, 61 );
|
|
Size = MAP_APPFONT( 50, 14 );
|
|
DefButton = TRUE;
|
|
};
|
|
};
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|