I need to add a line break before the work please
File type must be PDF, JPEG or PNG (max file size 20MB) Please provide English translation if the document is not in English or Chinese.
It should look like the following when it is rendered in html
File type must be PDF, JPEG or PNG (max file size 20MB)
Please provide English translation if the document is not in English or Chinese.
I have tried the following in the insert statement
INSERT INTO #Temp_Language (OnScreenTextCode, English, Mandarin)
Values
('common.file-type-info', 'File type must be PDF, JPEG or PNG (max file size 20MB) <br /> Please provide English translation if the document is not in English or Chinese.', N'文件类型必须是PDF、JPEG或PNG(文件大小不超过20MB)文件如非英文或中文,请提供英文译本。')
INSERT INTO #Temp_Language (OnScreenTextCode, English, Mandarin)
Values
('common.file-type-info', 'File type must be PDF, JPEG or PNG (max file size 20MB) \r\n Please provide English translation if the document is not in English or Chinese.', N'文件类型必须是PDF、JPEG或PNG(文件大小不超过20MB)文件如非英文或中文,请提供英文译本。')
INSERT INTO #Temp_Language (OnScreenTextCode, English, Mandarin)
Values
('common.file-type-info', 'File type must be PDF, JPEG or PNG (max file size 20MB)' + char(13) + 'Please provide English translation if the document is not in English or Chinese.', N'文件类型必须是PDF、JPEG或PNG(文件大小不超过20MB)文件如非英文或中文,请提供英文译本。')