From f0a08d3eb33aa823e399640c846e022df87b5de2 Mon Sep 17 00:00:00 2001
From: Pieter Frenssen <pieter@frenssen.be>
Date: Wed, 24 Apr 2013 08:40:36 +0200
Subject: [PATCH] Issue #1978350 by pfrenssen: Do not translate block module
 names.

---
 plugins/content_types/node_form/node_form_attachments.inc | 2 +-
 plugins/content_types/node_form/node_form_author.inc      | 2 +-
 plugins/content_types/node_form/node_form_book.inc        | 2 +-
 plugins/content_types/node_form/node_form_buttons.inc     | 2 +-
 plugins/content_types/node_form/node_form_comment.inc     | 2 +-
 plugins/content_types/node_form/node_form_language.inc    | 2 +-
 plugins/content_types/node_form/node_form_log.inc         | 2 +-
 plugins/content_types/node_form/node_form_menu.inc        | 2 +-
 plugins/content_types/node_form/node_form_path.inc        | 2 +-
 plugins/content_types/node_form/node_form_publishing.inc  | 2 +-
 plugins/content_types/node_form/node_form_title.inc       | 2 +-
 11 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/plugins/content_types/node_form/node_form_attachments.inc b/plugins/content_types/node_form/node_form_attachments.inc
index 1e248f5..2da9cac 100644
--- a/plugins/content_types/node_form/node_form_attachments.inc
+++ b/plugins/content_types/node_form/node_form_attachments.inc
@@ -17,7 +17,7 @@ if (module_exists('upload')) {
 
 function ctools_node_form_attachments_content_type_render($subtype, $conf, $panel_args, &$context) {
   $block = new stdClass();
-  $block->module = t('node_form');
+  $block->module = 'node_form';
 
   $block->title = t('Attach files');
   $block->delta = 'url-path-options';
diff --git a/plugins/content_types/node_form/node_form_author.inc b/plugins/content_types/node_form/node_form_author.inc
index 350df40..ab54217 100644
--- a/plugins/content_types/node_form/node_form_author.inc
+++ b/plugins/content_types/node_form/node_form_author.inc
@@ -15,7 +15,7 @@ $plugin = array(
 
 function ctools_node_form_author_content_type_render($subtype, $conf, $panel_args, &$context) {
   $block = new stdClass();
-  $block->module = t('node_form');
+  $block->module = 'node_form';
 
   $block->title = t('Authoring information');
   $block->delta = 'author-options';
diff --git a/plugins/content_types/node_form/node_form_book.inc b/plugins/content_types/node_form/node_form_book.inc
index ad19590..c49abef 100644
--- a/plugins/content_types/node_form/node_form_book.inc
+++ b/plugins/content_types/node_form/node_form_book.inc
@@ -17,7 +17,7 @@ if (module_exists('book')) {
 
 function ctools_node_form_book_content_type_render($subtype, $conf, $panel_args, &$context) {
   $block = new stdClass();
-  $block->module = t('node_form');
+  $block->module = 'node_form';
 
   $block->title = t('Book outline');
   $block->delta = 'book-outline';
diff --git a/plugins/content_types/node_form/node_form_buttons.inc b/plugins/content_types/node_form/node_form_buttons.inc
index b7ac984..d330abe 100644
--- a/plugins/content_types/node_form/node_form_buttons.inc
+++ b/plugins/content_types/node_form/node_form_buttons.inc
@@ -15,7 +15,7 @@ $plugin = array(
 
 function ctools_node_form_buttons_content_type_render($subtype, $conf, $panel_args, &$context) {
   $block = new stdClass();
-  $block->module = t('node_form');
+  $block->module = 'node_form';
 
   $block->title = '';
   $block->delta = 'buttons';
diff --git a/plugins/content_types/node_form/node_form_comment.inc b/plugins/content_types/node_form/node_form_comment.inc
index d0f137a..281ea50 100644
--- a/plugins/content_types/node_form/node_form_comment.inc
+++ b/plugins/content_types/node_form/node_form_comment.inc
@@ -17,7 +17,7 @@ if (module_exists('comment')) {
 
 function ctools_node_form_comment_content_type_render($subtype, $conf, $panel_args, &$context) {
   $block = new stdClass();
-  $block->module = t('node_form');
+  $block->module = 'node_form';
 
   $block->title = t('Comment options');
   $block->delta = 'comment-options';
diff --git a/plugins/content_types/node_form/node_form_language.inc b/plugins/content_types/node_form/node_form_language.inc
index 2043c1c..a145c40 100644
--- a/plugins/content_types/node_form/node_form_language.inc
+++ b/plugins/content_types/node_form/node_form_language.inc
@@ -15,7 +15,7 @@ $plugin = array(
 
 function ctools_node_form_language_content_type_render($subtype, $conf, $panel_args, &$context) {
   $block = new stdClass();
-  $block->module = t('node_form');
+  $block->module = 'node_form';
 
   $block->delta = 'language-options';
 
diff --git a/plugins/content_types/node_form/node_form_log.inc b/plugins/content_types/node_form/node_form_log.inc
index 334ff54..07139b0 100644
--- a/plugins/content_types/node_form/node_form_log.inc
+++ b/plugins/content_types/node_form/node_form_log.inc
@@ -15,7 +15,7 @@ $plugin = array(
 
 function ctools_node_form_log_content_type_render($subtype, $conf, $panel_args, &$context) {
   $block = new stdClass();
-  $block->module = t('node_form');
+  $block->module = 'node_form';
   $block->title = t('Revision information');
 
   if (isset($context->form)) {
diff --git a/plugins/content_types/node_form/node_form_menu.inc b/plugins/content_types/node_form/node_form_menu.inc
index 906ade4..c30d100 100644
--- a/plugins/content_types/node_form/node_form_menu.inc
+++ b/plugins/content_types/node_form/node_form_menu.inc
@@ -17,7 +17,7 @@ if (module_exists('menu')) {
 
 function ctools_node_form_menu_content_type_render($subtype, $conf, $panel_args, &$context) {
   $block = new stdClass();
-  $block->module = t('node_form');
+  $block->module = 'node_form';
 
   $block->title = t('Menu options');
   $block->delta = 'menu-options';
diff --git a/plugins/content_types/node_form/node_form_path.inc b/plugins/content_types/node_form/node_form_path.inc
index a1e3cba..cf7a191 100644
--- a/plugins/content_types/node_form/node_form_path.inc
+++ b/plugins/content_types/node_form/node_form_path.inc
@@ -17,7 +17,7 @@ if (module_exists('path')) {
 
 function ctools_node_form_path_content_type_render($subtype, $conf, $panel_args, &$context) {
   $block = new stdClass();
-  $block->module = t('node_form');
+  $block->module = 'node_form';
 
   $block->title = t('URL path options');
   $block->delta = 'url-path-options';
diff --git a/plugins/content_types/node_form/node_form_publishing.inc b/plugins/content_types/node_form/node_form_publishing.inc
index e73cff2..fa40386 100644
--- a/plugins/content_types/node_form/node_form_publishing.inc
+++ b/plugins/content_types/node_form/node_form_publishing.inc
@@ -23,7 +23,7 @@ function ctools_node_form_publishing_content_type_render($subtype, $conf, $panel
   $block = new stdClass();
 
   $block->title = t('Publishing options');
-  $block->module = t('node_form');
+  $block->module = 'node_form';
   $block->delta = 'publishing-options';
 
   if (isset($context->form)) {
diff --git a/plugins/content_types/node_form/node_form_title.inc b/plugins/content_types/node_form/node_form_title.inc
index f40d274..2a3d03c 100644
--- a/plugins/content_types/node_form/node_form_title.inc
+++ b/plugins/content_types/node_form/node_form_title.inc
@@ -15,7 +15,7 @@ $plugin = array(
 
 function ctools_node_form_title_content_type_render($subtype, $conf, $panel_args, &$context) {
   $block = new stdClass();
-  $block->module = t('node_form');
+  $block->module = 'node_form';
 
   $block->delta = 'title-options';
 
-- 
1.8.2.1

