Fix double negative in avatar language string ("Don't block animated images" -> "Allow animated images")
authorDan Fuhry <dan@enanocms.org>
Mon, 19 Nov 2012 11:39:25 -0500
changeset 1372 947153b432ea
parent 1371 d9814c4c2948
child 1373 851b91febb85
Fix double negative in avatar language string ("Don't block animated images" -> "Allow animated images")
includes/sessions.php
language/english/admin.json
--- 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 )
--- 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 &#215; 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&#8480; 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',