mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-16 04:37:41 +00:00
33 lines
782 B
ObjectPascal
33 lines
782 B
ObjectPascal
(*
|
|
Name: KMDevResourceStrings
|
|
Copyright: Copyright (C) SIL International.
|
|
Documentation:
|
|
Description:
|
|
Create Date: 1 Aug 2006
|
|
|
|
Modified Date: 1 Aug 2006
|
|
Authors: mcdurdin
|
|
Related Files:
|
|
Dependencies:
|
|
|
|
Bugs:
|
|
Todo:
|
|
Notes:
|
|
History: 01 Aug 2006 - mcdurdin - Initial version
|
|
*)
|
|
unit KMDevResourceStrings;
|
|
|
|
interface
|
|
|
|
resourcestring
|
|
SMsgExternalEditModified = '%s'+#13#13#13#10+'This file has been modified '+
|
|
'outside the editor. Do you want to reload it and lose changes made in the '+
|
|
'editor?';
|
|
|
|
SMsgExternalEdit = '%s'+#13#13#13#10+'This file has been modified outside the '+
|
|
'editor. Do you want to reload it?';
|
|
|
|
implementation
|
|
|
|
end.
|
|
|