2013-03-08 19:49:43 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2011-03-31 10:05:04 +02:00
|
|
|
/*
|
|
|
|
* 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 .
|
|
|
|
*/
|
2003-07-03 15:02:44 +00:00
|
|
|
#include "dialog.hrc"
|
|
|
|
|
|
|
|
CheckBox CB_USE_PASSWD
|
|
|
|
{
|
2004-06-26 02:23:43 +00:00
|
|
|
Text [ en-US ] = "~Password" ;
|
2003-07-03 15:02:44 +00:00
|
|
|
};
|
|
|
|
CheckBox CB_READ_ONLY
|
|
|
|
{
|
2004-06-26 02:23:43 +00:00
|
|
|
Text [ en-US ] = "~Read-only" ;
|
2003-07-03 15:02:44 +00:00
|
|
|
};
|
|
|
|
String STR_LINKEDIT_TEXT
|
|
|
|
{
|
2004-06-26 02:23:43 +00:00
|
|
|
Text [ en-US ] = "Edit links" ;
|
2003-07-03 15:02:44 +00:00
|
|
|
};
|
2009-05-26 14:35:26 +00:00
|
|
|
String STR_PATH_NOT_FOUND
|
2003-07-03 15:02:44 +00:00
|
|
|
{
|
2009-05-26 14:35:26 +00:00
|
|
|
Text [ en-US ] = "The directory '%1' does not exist." ;
|
2003-07-03 15:02:44 +00:00
|
|
|
};
|
|
|
|
String STR_FLT_SGV
|
|
|
|
{
|
|
|
|
Text = "SGV - StarDraw 2.0,SGV" ;
|
|
|
|
};
|
|
|
|
|
2004-09-17 13:02:02 +00:00
|
|
|
QueryBox RID_QB_SPELL_CONTINUE
|
|
|
|
{
|
|
|
|
BUTTONS = WB_YES_NO ;
|
|
|
|
DEFBUTTON = WB_DEF_YES ;
|
|
|
|
MESSAGE [ en-US ] = "Continue checking at beginning of document?" ;
|
|
|
|
};
|
|
|
|
String STR_SPELLING_COMPLETED
|
|
|
|
{
|
|
|
|
Text [ en-US ] = "The spellcheck is complete." ;
|
|
|
|
};
|
2003-07-03 15:02:44 +00:00
|
|
|
|
2013-03-08 19:49:43 +01:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|