antoine-source/appleworksgs/PL/Src/strings.s

1 line
850 B
ArmAsm
Executable File

load 'macros.dump'
include 'driver.equ'
P_Strings PROC
EXPORT P_KillLMasterStr,P_CancelStr,P_OKStr,P_InsText1Msg
EXPORT P_InsText2Msg,P_RCtlMsg1,P_RCtlMsg2,P_RCtlMsg3
EXPORT P_DelText1Msg,P_DelText2Msg,P_GotoTextMsg
EXPORT P_PNumMsg,P_LRMsg,P_TBMsg,P_ColMsg,P_CSMsg
P_KillLMasterStr STR 'This will delete anything on the left master page.'
P_CancelStr STR 'Cancel'
P_OKStr STR 'OK'
P_InsText1Msg STR 'Insert'
P_InsText2Msg STR 'page(s)'
P_RCtlMsg1 STR 'at the beginning.'
P_RCtlMsg2 STR 'after the current page.'
P_RCtlMsg3 STR 'at the end.'
P_DelText1Msg STR 'Delete pages'
P_DelText2Msg STR 'through'
P_GotoTextMsg STR 'Go to page'
P_PNumMsg STR 'First page number:'
P_LRMsg STR 'Left / Right Margins'
P_TBMsg STR 'Top / Bottom Margins'
P_ColMsg STR 'Columns'
P_CSMsg STR 'Column Spacing'
ENDP
END