/////////////////////////////////////////////////////////////// // RADツールの各種プロパティで利用するテキストを定義しています // // 英語 /////////////////////////////////////////////////////////////// //位置 #define STRING_LEFT "Left" #define STRING_RIGHT "Right" #define STRING_TOP "Top" #define STRING_BOTTOM "Bottom" #define STRING_CENTER "Center" //方向 #define STRING_DIRECTION_HORIZONTAL "Horizontal" #define STRING_DIRECTION_VERTICAL "Vertical" //ソート #define STRING_SORT_ASCENDING "Ascending" #define STRING_SORT_DESCENDING "Descending" //オーナー描画 #define STRING_OWNERDRAW_FIXED "Fixed" #define STRING_OWNERDRAW_VARIABLE "Variable" //ウィンドウ識別名入力ダイアログの警告メッセージ #define STRING_WINDOW_RENAME_MUST_WINDOWNAME "You must enter identification name of the window." #define STRING_WINDOW_RENAME_MUST_HANDLENAME "You must enter handle name of the window." #define STRING_WINDOW_RENAME_MUST_PROCEDURENAME "You must enter procedure name of the window." #define STRING_WINDOW_RENAME_CHECK "If you change these names, you must change identification names in source code if necessary. Are you ok?" //ウィンドウプロパティに必要なテキスト #define STRING_WINDOWPROP_BGCOLOR1 "3D FACE (Default)" #define STRING_WINDOWPROP_BGCOLOR2 "Color Option" #define STRING_WINDOWPROP_ICONDEFAULT "Windows Logo (Default)" #define STRING_WINDOWPROP_STYLE_OVERLAPPED "Overlapped" #define STRING_WINDOWPROP_STYLE_POPUP "Popup" #define STRING_WINDOWPROP_STYLE_CHILD "Child" #define STRING_WINDOWPROP_STYLE_FRAME_NONE "None Frame" #define STRING_WINDOWPROP_STYLE_FRAME_THICK "Thick Frame" #define STRING_WINDOWPROP_STYLE_FRAME_BORDER "Border Frame" //アイテムID入力ダイアログの警告メッセージ #define STRING_ITEM_RENAME_MUST_ID "Must enter id name of the control item." #define STRING_ITEM_RENAME_CHECK "If you change these names, you must change identification names in source code if necessary. Are you ok?" //コンボボックスプロパティに必要なテキスト #define STRING_COMBOBOXPROP_STYLE_DROPDOWN "Drop Down" #define STRING_COMBOBOXPROP_STYLE_DROPDOWNLIST "Drop Down List" //イメージボックスプロパティに必要なテキスト #define STRING_IMAGEBOXPROP_STYLE_FRAME_BLACK "Frame (Black)" #define STRING_IMAGEBOXPROP_STYLE_FRAME_GRAY "Frame (Gray)" #define STRING_IMAGEBOXPROP_STYLE_FRAME_WHITE "Frame (White)" #define STRING_IMAGEBOXPROP_STYLE_FRAME_ETCHED "Frame (Etched)" #define STRING_IMAGEBOXPROP_STYLE_RECT_BLACK "Rectangle (Black)" #define STRING_IMAGEBOXPROP_STYLE_RECT_GRAY "Rectangle (Gray)" #define STRING_IMAGEBOXPROP_STYLE_RECT_WHITE "Rectangle (White)" #define STRING_IMAGEBOXPROP_STYLE_ICON "Icon" #define STRING_IMAGEBOXPROP_STYLE_BITMAP "Bitmap" #define STRING_IMAGEBOXPROP_STYLE_FROMFILE "File path:" #define STRING_IMAGEBOXPROP_STYLE_FROMRESOURCE "Resource ID:" #define STRING_IMAGEBOXPROP_GETPATH_ICON "Open Icon File" #define STRING_IMAGEBOXPROP_GETPATH_BITMAP "Open Bitmap File" //リストビュープロパティに必要なテキスト #define STRING_LISTVIEWPROP_STYLE_ICON "Icon" #define STRING_LISTVIEWPROP_STYLE_SMALLICON "Small Icon" #define STRING_LISTVIEWPROP_STYLE_LIST "List" #define STRING_LISTVIEWPROP_STYLE_REPORT "Report" //リストボックスプロパティに必要なテキスト #define STRING_LISTBOXPROP_STYLE_SEL_SINGLE "Single" #define STRING_LISTBOXPROP_STYLE_SEL_MULTI "Multiple" #define STRING_LISTBOXPROP_STYLE_SEL_EXTENDED "Extended" //スクロールバープロパティに必要なテキスト #define STRING_SCROLLBARPROP_STYLE_FREE "Free" #define STRING_SCROLLBARPROP_STYLE_TOPORLEFT "Top/Left" #define STRING_SCROLLBARPROP_STYLE_BOTTOMORRIGHT "Bottom/Right" //トラックバープロパティに必要なテキスト #define STRING_TRACKBARPROP_STYLE_POSITION_BOTH "Both" #define STRING_TRACKBARPROP_STYLE_POSITION_TOPORLEFT "Top/Left" #define STRING_TRACKBARPROP_STYLE_POSITION_BOTTOMORRIGHT "Bottom/Right" ///////////////////// // その他メッセージ ///////////////////// #define STRING_RAD_ERROR_CANT_CHILDTEST "A test command cannot be used for child window." ////////////////////////////////// // メニューエディタ用のメッセージ ////////////////////////////////// #define STRING_MENUEDIT_MAKE_NEWMENU "New Menu" #define STRING_MENUEDIT_RENAME_MENUID "Rename Menu ID" #define STRING_MENUEDIT_DUPLICATIONERROR "Menu \"%s\" already exists in a project." #define STRING_MENUEDIT_DELETECHECK "If this operation is performed, child menu items will be deleted at the same time." #define STRING_MENUEDIT_MUSTSELECT_NEW_ITEM "You must select position to insert the new menu item." #define STRING_MENUEDIT_INSERTTYPE_YESNO "If you push \"yes\" button, the menu item is created in popup. If you push \"no\" button, the menu item is created in the same level with the popup." #define STRING_MENUEDIT_MUSTSELECT_DELETE_MENUITEM "You must select menu item to delete." #define STRING_MENUEDIT_MUSTSELECT_MOVE_MENUITEM "You must select menu item to move."