From c3757f35fe3fb7f5863a8b7f36435b294919c688 Mon Sep 17 00:00:00 2001
From: Scott Rouse <scottwrouse@gmail.com>
Date: Fri, 25 Feb 2011 12:43:27 -0700
Subject: [PATCH] Changed 'input format' to 'text format' in text strings to match Drupal 7 terminology.

---
 wysiwyg.admin.inc |    2 +-
 wysiwyg.module    |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/wysiwyg.admin.inc b/wysiwyg.admin.inc
index 510e1e3..9527c2a 100644
--- a/wysiwyg.admin.inc
+++ b/wysiwyg.admin.inc
@@ -495,7 +495,7 @@ function theme_wysiwyg_profile_overview($variables) {
     return;
   }
   $output = '';
-  $header = array(t('Input format'), t('Editor'), array('data' => t('Operations'), 'colspan' => 2));
+  $header = array(t('Text format'), t('Editor'), array('data' => t('Operations'), 'colspan' => 2));
   $rows = array();
   foreach (element_children($form['formats']) as $item) {
     $format = &$form['formats'][$item];
diff --git a/wysiwyg.module b/wysiwyg.module
index 771cbd7..31f3228 100644
--- a/wysiwyg.module
+++ b/wysiwyg.module
@@ -117,7 +117,7 @@ function wysiwyg_theme() {
 function wysiwyg_help($path, $arg) {
   switch ($path) {
     case 'admin/config/content/wysiwyg':
-      $output = '<p>' . t('A Wysiwyg profile is associated with an input format. A Wysiwyg profile defines which client-side editor is loaded with a particular input format, what buttons or themes are enabled for the editor, how the editor is displayed, and a few other editor-specific functions.') . '</p>';
+      $output = '<p>' . t('A Wysiwyg profile is associated with a text format. A Wysiwyg profile defines which client-side editor is loaded with a particular text format, what buttons or themes are enabled for the editor, how the editor is displayed, and a few other editor-specific functions.') . '</p>';
       return $output;
   }
 }
-- 
1.7.0

