Index: image_exact.module =================================================================== --- image_exact.module (revision 909) +++ image_exact.module (working copy) @@ -45,7 +45,7 @@ '#type' => 'checkbox', '#title' => t('Use exact sizes for image-nodes'), '#default_value' => variable_get('image_exact_thumbs', 1), - '#description' => t('If checked, this will force images of the size(s) checked below (as defined on the %link) to be exactly the size specified. Otherwise, the settings below will be ignored.', array('%link' => $image_settings)), + '#description' => t('If checked, this will force images of the size(s) checked below (as defined on the !link) to be exactly the size specified. Otherwise, the settings below will be ignored.', array('!link' => $image_settings)), ); foreach (_image_get_sizes() as $count => $size) { $options[$count] = $size['label']; @@ -55,7 +55,7 @@ '#title' => t('Specific Image Size Settings'), '#default_value' => variable_get('image_exact_size', array(0)), '#options' => $options, - '#description' => t('Each image size checked will be cropped and resized to the specified size defined in the %link. Note that existing images will not be resized until viewing that specific image edit tab, and possibly refreshing the browser.', array('%link' => $image_settings)), + '#description' => t('Each image size checked will be cropped and resized to the specified size defined in the !link. Note that existing images will not be resized until viewing that specific image edit tab, and possibly refreshing the browser.', array('!link' => $image_settings)), ); if (variable_get('image_exact_avatars', 0)) { @@ -64,14 +64,14 @@ $h = round($final_h / 2); $form['image_exact_warning'] = array( '#title' => t('Exact Avatar Size'), - '#value' => t('NOTICE: your exact-size avatars will be sized at %w pixels wide and %h pixels tall. To change this enter DOUBLE your desired amount on the %link', array('%link' => $user_settings, '%w' => $w, '%h' => $h)) + '#value' => t('NOTICE: your exact-size avatars will be sized at @w pixels wide and @h pixels tall. To change this enter DOUBLE your desired amount on the !link', array('!link' => $user_settings, '@w' => $w, '@h' => $h)) ); } $form['image_exact_avatars'] = array( '#type' => 'checkbox', '#title' => t('Use exact sizes for avatars?'), '#default_value' => variable_get('image_exact_avatars', 0), - '#description' => t('Because of how the avatar system works, you need to enter a value in the %link that is DOUBLE what you want the real avatar size to be. If you want 85x85 exact, check the above box, then change the setting on the %link to 170x170', array('%link' => $user_settings)), + '#description' => t('Because of how the avatar system works, you need to enter a value in the !link that is DOUBLE what you want the real avatar size to be. If you want 85x85 exact, check the above box, then change the setting on the !link to 170x170', array('!link' => $user_settings)), ); } return system_settings_form($form);