# HG changeset patch # User Dan Fuhry # Date 1353343165 18000 # Node ID 947153b432eabe4f17d8126d22712e69dbfdebaa # Parent d9814c4c294853ce3d64f4afa7342dce3914ba9d Fix double negative in avatar language string ("Don't block animated images" -> "Allow animated images") diff -r d9814c4c2948 -r 947153b432ea includes/sessions.php --- a/includes/sessions.php Mon Nov 19 11:38:34 2012 -0500 +++ b/includes/sessions.php Mon Nov 19 11:39:25 2012 -0500 @@ -3500,7 +3500,7 @@ else if ( $prev_l == 'p' && mt_rand(0, 5) == 1 ) $word .= 'h'; // this rule allows "ck" which can result in the occasional "dick", "fuck", etc. that tends - // to end up on 4chan, but I decided to keep it, because it increases word complexity. + // to end up on /r/funny, but I decided to keep it, because it increases word complexity. else if ( $prev_l == 'c' && mt_rand(0, 3) == 1 ) $word .= 'k'; else if ( $prev_l == 'q' && mt_rand(0, 5) != 1 ) diff -r d9814c4c2948 -r 947153b432ea language/english/admin.json --- a/language/english/admin.json Mon Nov 19 11:38:34 2012 -0500 +++ b/language/english/admin.json Mon Nov 19 11:39:25 2012 -0500 @@ -447,7 +447,7 @@ field_avatar_max_dimensions_hint: 'The format is width × height. Typically you want to have this square (the same width and height). These are only maximum dimensions; users are not prevented from having smaller images.', field_avatar_allow_anim_title: 'Allow animated avatars:', field_avatar_allow_anim_hint: 'If this is checked, users can upload APNG and Animated GIF℠ avatars. Sometimes such images can be specifically made to be distracting, like rapidly flashing images. If this is unchecked, these formats will be blocked, and only still PNGs and GIFs will be allowed.', - field_avatar_allow_anim: 'Don\'t block animated images', + field_avatar_allow_anim: 'Allow animated images', field_avatar_upload_methods: 'Allowed upload methods:', field_avatar_upload_file: 'Allow users to upload image files from their computers', field_avatar_upload_http: 'Allow users to enter a URL to their desired avatar',