Index: sites/trunk/wordcamp.org/public_html/wp-content/plugins/wc-fonts/wc-fonts.php
===================================================================
--- sites/trunk/wordcamp.org/public_html/wp-content/plugins/wc-fonts/wc-fonts.php	(revision 3805)
+++ sites/trunk/wordcamp.org/public_html/wp-content/plugins/wc-fonts/wc-fonts.php	(working copy)
@@ -12,7 +12,7 @@
 		add_action( 'init', array( $this, 'init' ) );
 		add_action( 'admin_init', array( $this, 'admin_init' ) );
 		add_action( 'admin_menu', array( $this, 'admin_menu' ) );
-		
+
 		add_action( 'wp_head', array( $this, 'wp_head_typekit' ), 102 ); // after safecss_style
 		add_action( 'wp_head', array( $this, 'wp_head_google_web_fonts' ) );
 		add_action( 'wp_head', array( $this, 'wp_head_font_awesome' ) );
@@ -25,7 +25,7 @@
 	function init() {
 		$this->options = (array) get_option( 'wc-fonts-options', array() );
 	}
-	
+
 	/**
 	 * Provides the <head> output for Typekit settings.
 	 */
@@ -32,7 +32,7 @@
 	function wp_head_typekit() {
 		if ( ! isset( $this->options['typekit-id'] ) || empty( $this->options['typekit-id'] ) )
 			return;
-			
+
 		printf( '<script type="text/javascript" src="https://use.typekit.com/%s.js"></script>' . "\n", $this->options['typekit-id'] );
 		printf( '<script type="text/javascript">try{Typekit.load();}catch(e){}</script>' );
 	}
@@ -91,9 +91,9 @@
 	 * Runs during admin_menu, adds a Fonts section to Appearance
 	 */
 	function admin_menu() {
-		$fonts = add_theme_page( 'Fonts', 'Fonts', 'edit_theme_options', 'wc-fonts-options', array( $this, 'render_admin_page' ) );
+		$fonts = add_theme_page( __( 'Fonts', 'wordcamporg' ), __( 'Fonts', 'wordcamporg' ), 'edit_theme_options', 'wc-fonts-options', array( $this, 'render_admin_page' ) );
 	}
-	
+
 	/**
 	 * Uses the Settings API to render the Appearance > Fonts page
 	 */
@@ -101,7 +101,7 @@
 		?>
 		<div class="wrap">
 			<?php screen_icon(); ?>
-			<h1>Fonts</h1>
+			<h1><?php esc_html_e( 'Fonts', 'wordcamporg' ); ?></h1>
 			<?php settings_errors(); ?>
 			<form method="post" action="options.php" enctype="multipart/form-data">
 				<?php
@@ -121,7 +121,7 @@
 		$value = isset( $this->options['typekit-id'] ) ? $this->options['typekit-id'] : '';
 		?>
 		<input type="text" name="wc-fonts-options[typekit-id]" value="<?php echo esc_attr( $value ); ?>" class="regular-text code" />
-		<p class="description">Enter your Typekit Kit ID. No links, no javascript, just the id, we'll handle the rest for you.</p>
+		<p class="description"><?php esc_html_e( "Enter your Typekit Kit ID. No links, no javascript, just the id, we'll handle the rest for you.", 'wordcamporg' ); ?></p>
 		<?php
 	}
 
@@ -132,7 +132,7 @@
 		$value = isset( $this->options['google-web-fonts'] ) ? $this->options['google-web-fonts'] : '';
 		?>
 		<textarea rows="5" name="wc-fonts-options[google-web-fonts]" class="large-text code"><?php echo esc_textarea( $value ); ?></textarea>
-		<p class="description">Paste the Google Web Fonts @import URLs in this area, each one on a separate line.</p>
+		<p class="description"><?php esc_html_e( 'Paste the Google Web Fonts @import URLs in this area, each one on a separate line.', 'wordcamporg' ); ?></p>
 		<?php
 	}
 
@@ -144,7 +144,7 @@
 		?>
 
 		<input type="text" name="wc-fonts-options[font-awesome-url]" value="<?php echo esc_url( $value ); ?>" class="large-text code" />
-		<p class="description">Enter the BootstrapCDN URL for the version you want.</p>
+		<p class="description"><?php esc_html_e( 'Enter the BootstrapCDN URL for the version you want.', 'wordcamporg' ); ?></p>
 
 		<?php
 	}
@@ -225,4 +225,4 @@
 }
 
 // Go!
-new WordCamp_Fonts_Plugin;
\ No newline at end of file
+new WordCamp_Fonts_Plugin;
