Componentes.Terceros.DevExp.../official/x.38/ExpressSpellChecker/Sources/dxSpellCheckerStrs.pas
2008-08-27 11:56:15 +00:00

101 lines
5.5 KiB
ObjectPascal

{********************************************************************}
{ }
{ Developer Express Visual Component Library }
{ ExpressSpellChecker }
{ }
{ Copyright (c) 1998-2008 Developer Express Inc. }
{ ALL RIGHTS RESERVED }
{ }
{ The entire contents of this file is protected by U.S. and }
{ International Copyright Laws. Unauthorized reproduction, }
{ reverse-engineering, and distribution of all or any portion of }
{ the code contained in this file is strictly prohibited and may }
{ result in severe civil and criminal penalties and will be }
{ prosecuted to the maximum extent possible under the law. }
{ }
{ RESTRICTIONS }
{ }
{ THIS SOURCE CODE AND ALL RESULTING INTERMEDIATE FILES }
{ (DCU, OBJ, DLL, ETC.) ARE CONFIDENTIAL AND PROPRIETARY TRADE }
{ SECRETS OF DEVELOPER EXPRESS INC. THE REGISTERED DEVELOPER IS }
{ LICENSED TO DISTRIBUTE THE EXPRESSSPELLCHECKER AND ALL }
{ ACCOMPANYING VCL CONTROLS AS PART OF AN EXECUTABLE PROGRAM ONLY. }
{ }
{ THE SOURCE CODE CONTAINED WITHIN THIS FILE AND ALL RELATED }
{ FILES OR ANY PORTION OF ITS CONTENTS SHALL AT NO TIME BE }
{ COPIED, TRANSFERRED, SOLD, DISTRIBUTED, OR OTHERWISE MADE }
{ AVAILABLE TO OTHER INDIVIDUALS WITHOUT EXPRESS WRITTEN CONSENT }
{ AND PERMISSION FROM DEVELOPER EXPRESS INC. }
{ }
{ CONSULT THE END USER LICENSE AGREEMENT FOR INFORMATION ON }
{ ADDITIONAL RESTRICTIONS. }
{ }
{********************************************************************}
unit dxSpellCheckerStrs;
{$I cxVer.inc}
interface
resourcestring
sdxSpellCheckerMoreThanOne = 'An application should contain only a single TdxSpellChecker';
sdxSpellCheckerISpellDictionary = 'ISpell';
sdxSpellCheckerOpenOfficeDictionary = 'OpenOffice';
sdxSpellCheckerUserDictionary = 'User';
sdxSpellCheckerApplylButton = '&Apply';
sdxSpellCheckerOkButton = '&OK';
sdxSpellCheckerCancelButton = 'Cancel';
sdxSpellCheckerAddButton = '&Add';
sdxSpellCheckerChangeButton = '&Change';
sdxSpellCheckerEditButton = 'Edit...';
sdxSpellCheckerChangeAllButton = 'Change A&ll';
sdxSpellCheckerCloseButton = 'Close';
sdxSpellCheckerDeleteButton = '&Delete';
sdxSpellCheckerDeleteAllButton = 'Delete A&ll';
sdxSpellCheckerIgnoreButton = '&Ignore';
sdxSpellCheckerIgnoreAllButton = 'I&gnore All';
sdxSpellCheckerOptionsButton = '&Options...';
sdxSpellCheckerSuggestButton = '&Suggest';
sdxSpellCheckerUndoButton = '&Undo';
sdxSpellCheckerUndoEditButton = '&Undo Edit';
sdxSpellCheckerUndoLastButton = '&Undo Last';
sdxSpellCheckerChangeTo = 'Change &to:';
sdxSpellCheckerRepeatedWord = 'Repeated Word:';
sdxSpellCheckerSuggestions = 'Suggestio&ns:';
sdxSpellCheckerNotInDictionary = 'Not in Dictionary:';
sdxSpellCheckerNoSuggestions = '(No suggestions)';
sdxSpellCheckerCustomDictionaryFormCaption = 'Custom Dictionary';
sdxSpellCheckerSpellingFormCaption = 'Spelling';
sdxSpellCheckerSpellingComplete = 'The spelling check is complete.';
sdxSpellCheckerNoActiveDictionaries = 'Dictionaries are not available';
sdxSpellCheckerNotUseChangeAll = 'Change All option is not available because you modified ' +
'text other than the actual spelling error. Choose Change to modify only ' +
'this sentence, or Unto Edit to restore original sentence';
sdxSpellCheckerConfirmUseUnknownWord = 'You have chosen a word that is not found in the ' +
'main or custom dictionaries. Do you want to use this word and continue checking?';
sdxSpellCheckerSelectionCheckIsFinished = 'Selection check is finished. Do you want to continue checking the remainder of the document?';
// Options
sdxSpellCheckerSpellingOptionsFormCaption = 'Spelling Options';
sdxSpellCheckerSpellingOptionsMainGroupBox = 'Spelling';
sdxSpellCheckerSpellingLanguage = 'Language:';
sdxSpellCheckerSpellingOptionsInternationalDictionariesGroupBox = 'International dictonaries';
sdxSpellCheckerSpellingOptionsInternationalDictionariesText = 'Choose which dictionaries to use when checking your spelling.';
sdxSpellCheckerSpellingOptionsEditCustomDictionaryGroupBox = 'Edit custom dictionary';
sdxSpellCheckerSpellingOptionsEditCustomDictionaryText = 'Add, change or remove words from your custom dictionary.';
sdxSpellCheckerSpellingOptionsGeneralOptionsGroupBox = 'General options';
sdxSpellCheckerIgnoreUpperCaseWords = 'Ignore words in UPPERCASE';
sdxSpellCheckerIgnoreMixedCaseWords = 'Ignore words in MiXeDcASe';
sdxSpellCheckerIgnoreWordsWithNumbers = 'Ignore words with numbers';
sdxSpellCheckerIgnoreRepeatedWords = 'Ignore repeated words';
sdxSpellCheckerIgnoreEmails = 'Ignore e-mails';
sdxSpellCheckerIgnoreUrls = 'Ignore web sites';
implementation
end.