04a7b71e79f4dbcd9361e2dcd8ff386112adeb56
[atutor.git] / mods / photo_album / module.sql
1 # sql file for the photo album module\r
2 # this file loads the text used in the photo album module into the database\r
3 \r
4 # added the order column to the pa_image table to keep track of image location when moved via the Fluid Lightbox GG\r
5 \r
6 CREATE TABLE `pa_image` (\r
7         `course_id` mediumint(8) NOT NULL,\r
8         `image_id` mediumint(8) NOT NULL auto_increment,\r
9         `title` varchar(23) NOT NULL,\r
10         `description` text,\r
11         `view_image_name` varchar(255) NOT NULL,\r
12         `location` text NOT NULL,\r
13         `date` varchar(30) NOT NULL,\r
14         `login` varchar(20) NOT NULL,\r
15         `thumb_image_name` varchar(255) NOT NULL,\r
16         `alt` varchar(30) NOT NULL,\r
17         `status` mediumint(1) NOT NULL,\r
18         `order` tinyint(4) NOT NULL,\r
19         PRIMARY KEY (`image_id`)\r
20 );\r
21 \r
22 CREATE TABLE `pa_comment` (\r
23         `course_id` mediumint(8) NOT NULL,\r
24         `login` varchar(20) NOT NULL,\r
25         `comment` text,\r
26         `date` varchar(30) NOT NULL,\r
27         `image_id` mediumint(8) NOT NULL,\r
28         `comment_id` mediumint(8) NOT NULL auto_increment,\r
29         `status` mediumint(1) NOT NULL,\r
30         PRIMARY KEY (`comment_id`)\r
31 );\r
32 \r
33 CREATE TABLE `pa_config` (\r
34         `config_id` mediumint(8) NOT NULL auto_increment,\r
35         `date` varchar(30) NOT NULL,\r
36         `status` mediumint(1) NOT NULL,\r
37         `course_id` mediumint(8) NOT NULL,\r
38         PRIMARY KEY (`config_id`)\r
39 );\r
40 \r
41 INSERT INTO `language_text` VALUES ('en', '_module','photo_album','Photo Album',NOW(),'');\r
42 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_view_image_link', 'View this picture', NOW(), '');\r
43 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_view_comment_link', 'View this comment', NOW(), '');\r
44 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_image_not_approved', 'Picture not approved by the instructor', NOW(), '');\r
45 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_check_all_image', 'Check all displayed pictures', NOW(), '');\r
46 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_check_all_comment', 'Check all displayed comments', NOW(), '');\r
47 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_my_photo_alt', 'My photo album view', NOW(), '');\r
48 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_my_comment_alt', 'My comment album view', NOW(), '');\r
49 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_course_photo_alt', 'Course photo album view', NOW(), '');\r
50 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_go', 'Go', NOW(), '');\r
51 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_alt', 'Alt', NOW(), '');\r
52 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_image_description', 'Picture description', NOW(), '');\r
53 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_image_title', 'Title ', NOW(), '');\r
54 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_comment_description', 'Comment', NOW(), '');\r
55 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_image_delete_confirm', 'Do you <strong>really</strong> want to <strong>delete</strong> this picture?', NOW(), '');\r
56 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_comment_delete_confirm', 'Do you <strong>really</strong> want to <strong>delete</strong> this comment?', NOW(), '');\r
57 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_image_add_alt', 'Picture to add', NOW(), '');\r
58 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_image_edit_alt', 'Picture to edit', NOW(), '');\r
59 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_image_title2', 'Picture title *', NOW(), '');\r
60 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_image_description2', 'Picture description', NOW(), '');\r
61 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_image_alt', 'Alt string', NOW(), '');\r
62 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_new_pic', 'New pictures ', NOW(), '');\r
63 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_approved_pic', 'Approved pictures ', NOW(), '');\r
64 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_disapproved_pic', 'Disapproved pictures ', NOW(), '');\r
65 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_new_comment', 'New comments ', NOW(), '');\r
66 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_approved_comment', 'Approved comments ', NOW(), '');\r
67 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_disapproved_comment', 'Disapproved comments ', NOW(), '');\r
68 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_config_enabled', 'Enabled - submissions are moderated ', NOW(), '');\r
69 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_config_disabled', 'Disabled - submissions are posted immediately ', NOW(), '');\r
70 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_config_string', 'Enable moderation ', NOW(), '');\r
71 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_administrator', 'Administrator ', NOW(), '');\r
72 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_next_page_button', 'Next page', NOW(), '');\r
73 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_last_page_button', 'Last page', NOW(), '');\r
74 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_previous_page_button', 'Previous page', NOW(), '');\r
75 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_first_page_button', 'First page', NOW(), '');\r
76 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_tag_view', 'View : ', NOW(), '');\r
77 \r
78 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_label_file', 'Picture file name', NOW(), '');\r
79 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_label_pic_title', 'Picture title ', NOW(), '');\r
80 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_label_pic_description', 'Picture description ', NOW(), '');\r
81 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_label_pic_alt', 'Alt string', NOW(), '');\r
82 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_label_comment_textarea', 'Comment area', NOW(), '');\r
83 \r
84 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_note_admin', 'Please select a course from the drop down menu below to administer its photo album. <br/> Take note that photo albums are attached to courses and that pictures are not shared across courses. ', NOW(), '');\r
85 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_note_file_upload_add', 'To add a picture, click the "Browse" button to find a picture to upload, then click the "upload this picture" button', NOW(), '');\r
86 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_note_file_upload_edit', 'You can upload a new picture by clicking the "Browse" button to find a picture then clicking the "Update this picture" button or if you do not want to change the picture, just click the "Skip this step" button. ', NOW(), '');\r
87 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_note_image_info_add', 'Please give your picture a title and a description by filling in the form', NOW(), '');\r
88 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_note_comment_add', 'Leave a comment about this picture', NOW(), '');\r
89 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_note_comment_edit', 'Change your comment', NOW(), '');\r
90 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_note_image_info_edit', 'You can edit the picture title and description by making changes to the form below', NOW(), '');\r
91 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_note_instructor_config', 'Do you want to moderate submissions to your course album? If you want to approve pictures and comments before they are viewed publicly, click the radio button labelled "Yes" to activate the approval process. If you want pictures and comments posted immediately, click "No". Select either radio button then click the "change approval process" button to save your setting.', NOW(), '');\r
92 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_note_administrator_config', 'Do you want to moderate student submissions to your course album? Select either radio button then click the "Enable moderation" button to save your setting.', NOW(), '');\r
93 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_note_comment_disapproved', 'The following comment has been disapproved', NOW(), '');\r
94 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_note_comment_posted_new', 'The following comment is a new comment', NOW(), '');\r
95 \r
96 \r
97 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_admin_index', 'Administer a photo album', NOW(), '');\r
98 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_index', 'Thumbnail view', NOW(), '');\r
99 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_view', 'View picture', NOW(), '');\r
100 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_file_upload', 'Upload a picture', NOW(), '');\r
101 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_delete_image', 'Delete a picture', NOW(), '');\r
102 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_add_image', 'Add a picture', NOW(), '');\r
103 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_edit_image', 'Edit a picture', NOW(), '');\r
104 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_delete_comment', 'Delete comment', NOW(), '');\r
105 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_add_comment', 'Add comment', NOW(), '');\r
106 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_edit_comment', 'Edit comment', NOW(), '');\r
107 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_image_info_add', 'Add picture information', NOW(), '');\r
108 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_comment_add', 'Add comment', NOW(), '');\r
109 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_comment_edit', 'Edit comment', NOW(), '');\r
110 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_image_info_edit', 'Edit picture information', NOW(), '');\r
111 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_my_photo_new', 'New pictures (My pictures)', NOW(), '');\r
112 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_my_photo_approved', 'Approved pictures (My pictures)', NOW(), '');\r
113 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_my_photo_disapproved', 'Disapproved pictures (My pictures)', NOW(), '');\r
114 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_my_photo', 'Photo Album - My Photos', NOW(), '');\r
115 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_my_comment_new', 'New comments (My comments)', NOW(), '');\r
116 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_my_comment_approved', 'Approved comments (My comments)', NOW(), '');\r
117 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_my_comment_disapproved', 'Disapproved comments (My comments)', NOW(), '');\r
118 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_my_comment', 'Photo Album - My Comments', NOW(), '');\r
119 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_administrator_new_pic', 'New pictures', NOW(), '');\r
120 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_administrator_approved_pic', 'Approved pictures', NOW(), '');\r
121 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_administrator_disapproved_pic', 'Disapproved pictures', NOW(), '');\r
122 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_administrator_new_comment', 'New comments', NOW(), '');\r
123 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_administrator_approved_comment', 'Approved comments', NOW(), '');\r
124 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_administrator_disapproved_comment', 'Disapproved comments', NOW(), '');\r
125 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_instructor_approved_pic', 'Approved pictures (Instructor view)', NOW(), '');\r
126 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_instructor_disapproved_pic', 'Disapproved pictures (Instructor view)', NOW(), '');\r
127 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_instructor_new_pic', 'New pictures (Instructor view)', NOW(), '');\r
128 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_instructor_new_comment', 'New comments (Instructor view)', NOW(), '');\r
129 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_instructor_approved_comment', 'Approved comments (Instructor view)', NOW(), '');\r
130 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_instructor_disapproved_comment', 'Disapproved comments (Instructor view)', NOW(), '');\r
131 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_instructor_image', 'Photo album', NOW(), '');\r
132 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_instructor_comment', 'Manage comments', NOW(), '');\r
133 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_instructor_config', 'Enable moderation', NOW(), '');\r
134 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_administrator_comment', 'Manage comments', NOW(), '');\r
135 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_title_administrator_config', 'Enable Moderation', NOW(), '');\r
136 \r
137 \r
138 \r
139 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_new_pics', 'New pictures', NOW(), '');\r
140 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_approved_pics', 'Approved pictures', NOW(), '');\r
141 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_disapproved_pics', 'Disapproved pictures', NOW(), '');\r
142 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_set_new_pic', 'Set picture as new', NOW(), '');\r
143 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_set_approved_pic', 'Set picture as approved', NOW(), '');\r
144 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_set_disapproved_pic', 'Set picture as disapproved', NOW(), '');\r
145 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_set_new_comment', 'Set comment as new', NOW(), '');\r
146 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_set_approved_comment', 'Set comment as approved', NOW(), '');\r
147 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_set_disapproved_comment', 'Set comment as disapproved', NOW(), '');\r
148 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_add_image', 'Add a new picture', NOW(), '');\r
149 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_save_image_order', 'Save image order', NOW(), '');\r
150 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_edit_image', 'Edit this picture', NOW(), '');\r
151 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_del_image', 'Delete this picture', NOW(), '');\r
152 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_add_comment', 'Add a new comment', NOW(), '');\r
153 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_edit_comment', 'Edit this comment', NOW(), '');\r
154 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_del_comment', 'Delete this comment', NOW(), '');\r
155 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_goback_thumbnail', 'Back to the photo album thumbnail view', NOW(), '');\r
156 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_upload_image', 'Upload this picture', NOW(), '');\r
157 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_update_image', 'Update this picture', NOW(), '');\r
158 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_upload_image_info', 'Upload picture information', NOW(), '');\r
159 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_update_image_info', 'Update picture information', NOW(), '');\r
160 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_upload_comment', 'Add this comment', NOW(), '');\r
161 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_update_comment', 'Update this comment', NOW(), '');\r
162 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_skip_upload_image', 'Skip this step', NOW(), '');\r
163 INSERT INTO `language_text` VALUES ('en', '_template', 'pa_button_config_change', 'Enable moderation', NOW(), '');\r
164 \r
165 \r
166 \r
167 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_FEEDBACK_PA_ADD_IMAGE_SUCCESS_CONFIG_ENABLED', 'Your picture has been added successfully.  It will be displayed in the course photo album if the instructor approves the picture', NOW(), '');\r
168 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_FEEDBACK_PA_ADD_IMAGE_SUCCESS_CONFIG_DISABLED', 'Your picture has been added successfully.', NOW(), '');\r
169 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_FEEDBACK_PA_ADD_COMMENT_SUCCESS_CONFIG_ENABLED', 'Your comment has been added successfully.  It will be displayed if the instructor approves the comment', NOW(), '');\r
170 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_FEEDBACK_PA_ADD_COMMENT_SUCCESS_CONFIG_DISABLE', 'Your comment has been added successfully', NOW(), '');\r
171 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_FEEDBACK_PA_EDIT_IMAGE_SUCCESS_CONFIG_ENABLED', 'Your picture has been edited successfully.  It will be displayed if the instructor approves the picture.', NOW(), '');\r
172 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_FEEDBACK_PA_EDIT_IMAGE_SUCCESS_CONFIG_DISABLED', 'Your picture has been edited successfully.', NOW(), '');\r
173 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_FEEDBACK_PA_EDIT_COMMENT_SUCCESS_CONFIG_ENABLED', 'Your edit has been made successfully.  Your comment will be displayed if the instructor approves it.', NOW(), '');\r
174 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_FEEDBACK_PA_EDIT_COMMENT_SUCCESS_CONFIG_DISABLED', 'Your edit has been made successfully', NOW(), '');\r
175 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_FEEDBACK_PA_DELETE_IMAGE_SUCCESS', 'Your picture was deleted successfully', NOW(), '');\r
176 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_FEEDBACK_PA_DELETE_COMMENT_SUCCESS', 'Your comment was deleted successfully', NOW(), '');\r
177 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_FEEDBACK_PA_IMAGE_ORDER_SAVED', 'Image order was saved successfully', NOW(), '');\r
178 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_USER_FILE_TYPE', 'Your picture is not a valid picture file. Only jpeg, bmp, gif or png  picture files can be shared. Please try uploading a different picture or try converting your picture into a suitable format', NOW(), '');\r
179 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_USER_FILE_SIZE', 'Your picture is larger than the maximum file size allowed by the web site. Please choose a smaller picture', NOW(), '');\r
180 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_USER_FILE_EMPTY', 'You must find a picture to upload. Please use the "Browse" button to find a picture to upload', NOW(), '');\r
181 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_USER_FILE_LENGTH', 'Your picture file name is longer than the maximum length allowed by the web site. Please rename your picture then try again', NOW(), '');\r
182 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_USER_FILE_ESCAPE', 'The name of your picture file contains characters not allowed by the web site. Please rename your picture then try again', NOW(), '');\r
183 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_USER_TITLE_EMPTY', 'Please give your picture a name by filling in the title field', NOW(), '');\r
184 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_USER_COMMENT_EMPTY', 'To leave a comment about this picture, please fill in the comment form', NOW(), '');\r
185 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_USER_ALT_EMPTY', 'Please provide a description of the picture for the image alt attribute', NOW(), '');\r
186 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_USER_IMAGE_NOT_ALLOWED', 'You are not allowed to modify this picture. You can only make changes to pictures submitted by you', NOW(), '');\r
187 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_USER_COMMENT_NOT_ALLOWED', 'You are not allowed to modify this comment. You can only change comments left by you', NOW(), '');\r
188 \r
189 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_VAR_UNAUTHORIZED', 'An error has occurred. A page was requested in an unexpected way. Please try to complete your task in a different way.', NOW(), '');\r
190 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_VAR_COURSE_EMPTY', 'There are no courses on this server. Please create a course first before trying to administer the photo album.', NOW(), '');\r
191 \r
192 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_OBJ_PA_INDEX', 'An error has occurred in the Pa_Index() object.\n Please report this error to your technical support person', NOW(), '');\r
193 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_OBJ_VIEW', 'An error has occurred in the View() object.\n Please report this error to your technical support person', NOW(), '');\r
194 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_OBJ_PA_ADMIN_COMMENT', 'An error has occurred in the Pa_Admin_Comment() object.\n Please report this error to your technical support person', NOW(), '');\r
195 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_OBJ_PA_ADMIN_IMAGE', 'An error has occurred in the Pa_Admin_Image() object.\n Please report this error to your technical support person', NOW(), '');\r
196 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_OBJ_MYPIC', 'An error has occurred in the Mypic() object.\n Please report this error to your technical support person', NOW(), '');\r
197 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_OBJ_PA_ADMIN_IMAGE', 'An error has occurred in the Pa_Admin_Image() object.\n Please report this error to your technical support person', NOW(), '');\r
198 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_OBJ_IMAGE_UPLOAD', 'An error has occurred in the Image_Upload() object.\n Please report this error to your technical support person', NOW(), '');\r
199 \r
200 \r
201 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_FUNC_MAKE_TEMP_FOLDER', 'The web site could not create or write to the images folder. \n Please report this error to your technical support person', NOW(), '');\r
202 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_FUNC_DELETE_IMAGE', 'The picture could not be deleted from the database. \n Please report this error to your technical support person', NOW(), '');\r
203 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_FUNC_DELETE_BLOG', 'The comment could not be deleted from the database. \n Please report this error to your technical support person', NOW(), '');\r
204 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_FUNC_MKDIR', 'The web site photo album module could not create the image folder for you.  Please ask technical support to check that the album_image folder exists and that it is writable', NOW(), '');\r
205 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_FUNC_COPY', 'The web site photo album module could not copy the picture to the destination folder.  Please ask technical support to check that the album_image folder exists and that it is writable', NOW(), '');\r
206 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_FUNC_STORE_IMAGE_IN_DATABASE', 'The web site photo album module could not store the picture information in the database.  Please ask technical support to check that the database server is running properly', NOW(), '');\r
207 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_FUNC_UPDATE_IMAGE_IN_DATABASE', 'The web site photo album module could not update the image information in the database.  Please ask technical support to check that the database server is running properly', NOW(), '');\r
208 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_FUNC_STORE_COMMENT_IN_DATABASE', 'The web site photo album module could not store the comment information in the database.  Please ask technical support to check that the database server is running properly', NOW(), '');\r
209 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_FUNC_UPDATE_COMMENT_IN_DATABASE', 'The web site photo album module could not update the comment information in the database.  Please ask technical support to check that the database server is running properly', NOW(), '');\r
210 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_FUNC_UNLINK', 'The web site photo album module could not delete the temporary picture file.  Please ask technical support to check that the album_image folder exists and that it is writable. ', NOW(), '');\r
211 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_FUNC_CLEAR_TEMP_FOLDER_OPEN', 'The web site photo album module could not open the temp folder.  Please ask technical support to check that the temp folder exists and that it is writable.', NOW(), '');\r
212 INSERT INTO `language_text` VALUES ('en', '_msgs', 'AT_ERROR_PA_FUNC_CLEAR_TEMP_FOLDER_UNLINK', 'The web site photo album module could not delete temp files from the temp folder.  Please ask technical support to check that the temp folder exists and that it is writable.', NOW(), '');