From 3b1d9177e5fa111753ae9ed24c22dab4e2004a5f Mon Sep 17 00:00:00 2001 From: Jorrit Schippers Date: Sat, 22 Sep 2012 13:17:17 +0200 Subject: [PATCH] Issue #1792178 by Jorrit: Changed t('Appears in: @bundles') to t('Appears in: @bundles.') to make it equal to the Views module translatable text. --- modules/customer/commerce_customer.module | 2 +- .../views/commerce_product_reference.views.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/customer/commerce_customer.module b/modules/customer/commerce_customer.module index d2e49c3..a3b8f01 100644 --- a/modules/customer/commerce_customer.module +++ b/modules/customer/commerce_customer.module @@ -432,7 +432,7 @@ function commerce_customer_field_views_data($field) { if (isset($field_data['filter']['field_name']) && $field_name != 'delta') { $data[$table_name][$field_name]['relationship'] = array( 'title' => t('Referenced customer profile'), - 'help' => t('Appears in: @bundles', array('@bundles' => implode(', ', $bundles))), + 'help' => t('Appears in: @bundles.', array('@bundles' => implode(', ', $bundles))), 'base' => 'commerce_customer_profile', 'base field' => 'profile_id', 'handler' => 'views_handler_relationship', diff --git a/modules/product_reference/includes/views/commerce_product_reference.views.inc b/modules/product_reference/includes/views/commerce_product_reference.views.inc index f6d591f..b6d77a9 100644 --- a/modules/product_reference/includes/views/commerce_product_reference.views.inc +++ b/modules/product_reference/includes/views/commerce_product_reference.views.inc @@ -32,7 +32,7 @@ function commerce_product_reference_field_views_data($field) { if (isset($field_data['filter']['field_name']) && $field_name != 'delta') { $data[$table_name][$field_name]['relationship'] = array( 'title' => t('Referenced product'), - 'help' => t('Appears in: @bundles', array('@bundles' => implode(', ', $bundles))), + 'help' => t('Appears in: @bundles.', array('@bundles' => implode(', ', $bundles))), 'base' => 'commerce_product', 'base field' => 'product_id', 'handler' => 'views_handler_relationship', -- 1.7.9.5