--- C:/Users/Jan/AppData/Local/Temp/options-general.php-revBASE.svn000.tmp.php	di sep 30 20:40:26 2014
+++ C:/DSSites/DEV-Projects/Sources/bridgetoward.dev/wp-admin/options-general.php	di sep 30 21:53:10 2014
@@ -308,24 +308,39 @@ $languages = get_available_languages();
 if ( ! is_multisite() && defined( 'WPLANG' ) && '' !== WPLANG && 'en_US' !== WPLANG && ! in_array( WPLANG, $languages ) ) {
 	$languages[] = WPLANG;
 }
-if ( $languages ) {
 	?>
 	<tr>
 		<th width="33%" scope="row"><label for="WPLANG"><?php _e( 'Site Language' ); ?></label></th>
 		<td>
 			<?php
-			$locale = get_locale();
-			if ( ! in_array( $locale, $languages ) ) {
-				$locale = '';
+			if ( $languages ) {
+				$locale = get_locale();
+				if ( ! in_array( $locale, $languages ) ) {
+					$locale = '';
+				}
+
+				wp_dropdown_languages( array(
+					'name'      => 'WPLANG',
+					'id'        => 'WPLANG',
+					'selected'  => $locale,
+					'languages' => $languages,
+				) );
+			} else {
+				if ( is_super_admin() ) {
+					?>
+					<p class="description">
+						<strong><?php _e( 'Note:' ); ?></strong>
+							<?php
+								printf( '<br/>' );
+								printf( __( 'This site currently only supports the U.S. English default language.' ) );
+								printf( '<br/>' );
+								printf( __( 'More information on multi-language support can be found <a href="%s">here</a>.' ), 'http://codex.wordpress.org/Installing_WordPress_in_Your_Language' );
+							?>
+					</p>
+					<?php
+				}
 			}
 
-			wp_dropdown_languages( array(
-				'name'      => 'WPLANG',
-				'id'        => 'WPLANG',
-				'selected'  => $locale,
-				'languages' => $languages,
-			) );
-
 			// Add note about deprecated WPLANG constant.
 			if ( defined( 'WPLANG' ) && ( '' !== WPLANG ) && $locale !== WPLANG ) {
 				if ( is_super_admin() ) {
@@ -341,7 +356,6 @@ if ( ! is_multisite() && defined( 'WPLANG' ) && ''
 		</td>
 	</tr>
 	<?php
-}
 ?>
 </table>
 
