123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- /**
- * en.php - English language variables
- */
- $english = array(
- 'webcam:upload' => "Upload Image",
- 'webcam:capture' => "Or use your Webcam",
- 'webcam:saveerror' => "Properly encoded JPEG information not received from flash object.",
- 'webcam:webcam_input' => "Select below whether you want to use Adobe flash or html5 to be used to control the webcam",
- 'webcam:webcam_registration' => "Do you want to use the webcam during registration ?",
- 'profile:currentavatar' => "Current profile image",
-
- 'webcam:tab:acquire' => 'Webcam',
- 'webcam:acquire:info' => 'Click the video to take a picture, and click Upload to save.',
- 'webcam:acquire:register:info' => 'Click the video to take a picture and finish registration.',
- 'webcam:tab:upload' => 'Upload',
- 'webcam:tab:url' => 'URL',
- 'webcam:url:info' => 'Enter the URL of an image',
- 'webcam:webcam_error' => "Could not read the webcam.",
- 'webcam:no_avatar_selected' => "You must take a picture with your webcam, upload a file, or enter a URL.",
- 'webcam:no_image_selected' => "You must select a picture, before trying to upload",
- 'webcam:upload' => "Upload Image",
- 'webcam:capture' => "Or use your Webcam",
- 'profile:currentavatar' => "Current profile image",
- 'option:no' => "No",
- 'option:yes' => "Yes",
- );
- add_translation("en", $english);
|