1 | ///////////////////////////////////////////////////////////////
|
---|
2 | // アプリケーションで使用する汎用テキストを定義しています
|
---|
3 | //
|
---|
4 | // 英語
|
---|
5 | ///////////////////////////////////////////////////////////////
|
---|
6 |
|
---|
7 |
|
---|
8 | ////////
|
---|
9 | // 汎用
|
---|
10 | ////////
|
---|
11 | #define STRING_NONE_ "None"
|
---|
12 | #define STRING_DEFAULT "Default"
|
---|
13 | #define STRING_ERROR "Error"
|
---|
14 | #define STRING_PROJECT "Project"
|
---|
15 | #define STRING_RESOURCE "Resource"
|
---|
16 | #define STRING_SIZE "Size"
|
---|
17 | #define STRING_OPTION "Options"
|
---|
18 | #define STRING_PROJECTOPTION "Project Options"
|
---|
19 |
|
---|
20 |
|
---|
21 | ////////
|
---|
22 | // 単位
|
---|
23 | ////////
|
---|
24 | #define STRING_UNIT_COLORS "colors"
|
---|
25 | #define STRING_MORNING "A.M."
|
---|
26 | #define STRING_AFTERNOON "P.M."
|
---|
27 |
|
---|
28 |
|
---|
29 | //////////////////
|
---|
30 | // ファイルタイプ
|
---|
31 | //////////////////
|
---|
32 | #define STRING_FILETYPE_BASICPROGRAM "Basic Program"
|
---|
33 | #define STRING_FILETYPE_SUBPROGRAM "Sub Program"
|
---|
34 | #define STRING_FILETYPE_TEXT "Text Document"
|
---|
35 | #define STRING_FILETYPE_UNKNOWN "Unknown"
|
---|
36 |
|
---|
37 | #define STRING_NEWFILE_BASICPROGRAM "Basic source file (*.abp / *.bas)"
|
---|
38 | #define STRING_NEWFILE_TEXT "Text file (*.txt)"
|
---|
39 | #define STRING_NEWFILE_ICON "Icon file (*.ico)"
|
---|
40 | #define STRING_NEWFILE_PROJECT "Project (*.pj)"
|
---|
41 |
|
---|
42 |
|
---|
43 | ////////////////////////////////////////////////
|
---|
44 | // ファイルオープンダイアログボックスのタイトル
|
---|
45 | ////////////////////////////////////////////////
|
---|
46 | #define STRING_FILEOPENTITLE_DEFAULT "Open the file"
|
---|
47 | #define STRING_FILEOPENTITLE_INSERTEDPROJECT "Open the file inserted in the project"
|
---|
48 | #define STRING_FILEOPENTITLE_PROJECT "Open the project file"
|
---|
49 | #define STRING_FILEOPENTITLE_CURSOR "Open the cursor file"
|
---|
50 | #define STRING_FILEOPENTITLE_ICON "Open the icon file"
|
---|
51 | #define STRING_FILEOPENTITLE_BITMAP "Open the bitmap file"
|
---|
52 |
|
---|
53 | #define STRING_FILESAVETITLE_DEFAULT "Save As"
|
---|
54 |
|
---|
55 | #define STRING_DIRECTORY_SELECT "Select the Directory."
|
---|
56 |
|
---|
57 |
|
---|
58 | //////////////////////////
|
---|
59 | // 保存チェックメッセージ
|
---|
60 | //////////////////////////
|
---|
61 | #define STRING_MODIFYCHECK_FILE "\"%s\" file was modified. Save it?"
|
---|
62 |
|
---|
63 |
|
---|
64 | ///////////////////
|
---|
65 | // 検索メッセージ
|
---|
66 | ///////////////////
|
---|
67 | #define STRING_SEARCH_AGAIN "Search again from head of the file?"
|
---|
68 | #define STRING_SEARCH_NOTFOUND "\"%s\" was not found."
|
---|
69 |
|
---|
70 |
|
---|
71 | ////////////////////////
|
---|
72 | // 汎用エラーメッセージ
|
---|
73 | ////////////////////////
|
---|
74 | #define STRING_ERROR_MUST_IDNAME "You must enter the id name."
|
---|
75 | #define STRING_ERROR_MUST_CAPTION "You must enter the caption."
|
---|
76 | #define STRING_ERROR_CANT_FILEOPEN "I cannot read the file \"%s\"."
|
---|
77 | #define STRING_ERROR_CANT_FILESAVE "I cannot write to file \"%s\"."
|
---|
78 | #define STRING_FILE_OVERWRIDE "\"%s\" file already exists. Overwrite it?"
|
---|
79 | #define STRING_ERROR_MAXLENGTH "The length of text is max. You cannot input more text."
|
---|
80 | #define STRING_ERROR_NOBASICCOMPILER "BasicCompiler was not found."
|
---|
81 | #define STRING_ERROR_PROJECTTOPCHAR "The head character of a project name must be the alphabet(A-Z,a-Z) or the underbar(_)."
|
---|
82 | #define STRING_ERROR_PROJECTNAME "Illegal character found from the project name"
|
---|
83 |
|
---|
84 |
|
---|
85 | /////////////////////
|
---|
86 | // その他メッセージ
|
---|
87 | /////////////////////
|
---|
88 | #define STRING_TOOLBAR_RESET "Reset the state of the toolbar.\nReally?"
|
---|