[1] | 1 | <?php |
---|
| 2 | |
---|
| 3 | // Language definitions used in the smilies mpanager |
---|
| 4 | $lang_smiley = array( |
---|
| 5 | |
---|
| 6 | 'Create Smiley Code None' => 'You must give a text code.', |
---|
| 7 | 'Create Smiley Image None' => 'You must give an image.', |
---|
| 8 | 'Code already exists' => 'The text code already exists.', |
---|
| 9 | 'Images affected' => 'The following images cannot beings deleted because they are used: %s <br />To delete them remove them from the list of the smileys', |
---|
| 10 | 'Images not deleted' => 'For an unknown reason the following images were not deleted: %s', |
---|
| 11 | 'Description' => 'This plugin makes it possible to manage the smilies your forum.', |
---|
| 12 | 'Submit New Smiley' => 'Create a new smiley', |
---|
| 13 | 'Add Images Smilies' => 'Add a new image', |
---|
| 14 | 'Smiley Code' => 'Text code', |
---|
| 15 | 'Smiley Image' => 'Image filename', |
---|
| 16 | 'Smiley Code Description' => 'Enter the text code that you want the smiley to be displayed as (ex. :O)).', |
---|
| 17 | 'Smiley Image Description' => 'Enter the name of the image that cooresponds to the above text code (ex. bignose.png).', |
---|
| 18 | 'Submit Smiley' => 'Create smiley', |
---|
| 19 | 'Upload' => 'Upload', |
---|
| 20 | 'Delete Smiley Redirect' => 'Smileys were successfully removed. Redirecting ...', |
---|
| 21 | 'Images deleted' => 'Images were successfully deleted. Redirecting ...', |
---|
| 22 | 'Successful Creation' => 'You successfully created in a new smiley. Redirecting ...', |
---|
| 23 | 'Successful Upload' => 'Image successfully uploaded. Redirecting ...', |
---|
| 24 | 'Current Smilies' => 'Current Smilies', |
---|
| 25 | 'List Current Smilies' => 'List of Current Smilies', |
---|
| 26 | 'List Images Smilies' => 'List of Current Images', |
---|
| 27 | 'Code' => 'Code', |
---|
| 28 | 'Image' => 'Image', |
---|
| 29 | 'Image Filename' => 'Image filename', |
---|
| 30 | 'Delete' => 'Delete', |
---|
| 31 | 'Delete Selected' => 'Delete selection', |
---|
| 32 | 'Remove' => 'Remove', |
---|
| 33 | 'Remove Selected' => 'Remove selection', |
---|
| 34 | 'No smiley' => 'There is no smiley.', |
---|
| 35 | 'Too large ini' => 'The selected file was too large to upload. The server didn\'t allow the upload.', |
---|
| 36 | 'Partial upload' => 'The selected file was only partially uploaded. Please try again.', |
---|
| 37 | 'No tmp directory' => 'PHP was unable to save the uploaded file to a temporary location.', |
---|
| 38 | 'No file' => 'You did not select a file for upload.', |
---|
| 39 | 'Bad type' => 'The file you tried to upload is not of an allowed type. Allowed types are gif, jpeg and png.', |
---|
| 40 | 'Too wide or high' => 'The file you tried to upload is wider and/or higher than the maximum allowed', |
---|
| 41 | 'Too large' => 'The file you tried to upload is larger than the maximum allowed', |
---|
| 42 | 'pixels' => 'pixels', |
---|
| 43 | 'bytes' => 'bytes', |
---|
| 44 | 'Move failed' => 'The server was unable to save the uploaded file.', |
---|
| 45 | 'Unknown failure' => 'An unknown error occurred. Please try again.', |
---|
| 46 | |
---|
| 47 | 'Image file' => 'Image file', |
---|
| 48 | |
---|
| 49 | 'Position' => 'Position', |
---|
| 50 | 'Change position' => 'Change positions', |
---|
| 51 | 'Must int' => 'Position must be an integer.', |
---|
| 52 | 'Positions changed' => 'Positions successfully changed. Redirecting ...', |
---|
| 53 | |
---|
| 54 | ); |
---|
| 55 | |
---|
| 56 | ?> |
---|