Bug 1352007 - String interpolations must not be present in toolbar definitions
Summary: String interpolations must not be present in toolbar definitions
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: Red Hat CloudForms Management Engine
Classification: Red Hat
Component: UI - OPS
Version: 5.6.0
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: GA
: 5.8.0
Assignee: Milan Zázrivec
QA Contact: Satyajit Bulage
URL:
Whiteboard: ui:i18n
Depends On:
Blocks: 1353291 1391739
TreeView+ depends on / blocked
 
Reported: 2016-07-01 11:51 UTC by Milan Zázrivec
Modified: 2017-06-12 16:33 UTC (History)
8 users (show)

Fixed In Version: 5.8.0.0
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
: 1353291 1391739 (view as bug list)
Environment:
Last Closed: 2017-06-12 16:33:20 UTC
Category: ---
Cloudforms Team: ---
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)
Log file download button tooltip (207.26 KB, image/jpeg)
2016-07-01 11:51 UTC, Milan Zázrivec
no flags Details
reload (101.16 KB, image/jpeg)
2016-10-05 07:43 UTC, Ramesh A
no flags Details
download (97.42 KB, image/jpeg)
2016-10-05 07:45 UTC, Ramesh A
no flags Details

Description Milan Zázrivec 2016-07-01 11:51:53 UTC
Created attachment 1174883 [details]
Log file download button tooltip

Description of problem:
String interpolations inside toolbar definitions pose a translation problem.

Consider the following example string inside a toolbar definition:

    N_("Click on this awesome #{ui_lookup(:model => 'Vm')}")

This construct is to make sure the above string is collected into a gettext
catalog for translators to translate.

At run-time, this string is again being evaluated inside a _() call
(the actual translation). What happens here is:
1. ui_lookup() is evaluated first -> this returns a translated string (for
example in Japanese)
2. The above string effectively becomes a new string:

    "Click on this awesome およびインスタンス"

3. The above string does not (by definition) exist in the gettext catalog, i.e.
the subsequent invocation of _() returns the same string.

Net result of the above is that the toolbar strings with string interpolations
won't work with non-English locales.


Version-Release number of selected component (if applicable):
CFME-5.6

How reproducible:
Always

Steps to Reproduce:
1. Switch to Japanese locale
2. Navigate to Control -> Log
3. See the tooltip over the log download button

Actual results:
String is in english. See screenshot.

Expected results:
String is correctly translated.


Additional info:
N/A

Comment 2 CFME Bot 2016-07-01 17:06:40 UTC
New commit detected on ManageIQ/manageiq/master:
https://github.com/ManageIQ/manageiq/commit/ba1e67271df72008424fa34200efe8e22f32750f

commit ba1e67271df72008424fa34200efe8e22f32750f
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 16:11:24 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Fri Jul 1 17:34:39 2016 +0200

    Toolbars: remove string interpolations with instance variables
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413

 app/helpers/application_helper.rb                  |  2 +
 .../application_helper/toolbar/condition_center.rb | 13 +++--
 .../toolbar/custom_button_set_center.rb            |  8 ++-
 .../toolbar/diagnostics_region_center.rb           | 53 +++++++++++++++---
 .../toolbar/diagnostics_server_center.rb           |  8 ++-
 .../toolbar/diagnostics_zone_center.rb             | 62 +++++++++++++++++++---
 .../application_helper/toolbar/dialog_center.rb    |  8 ++-
 .../application_helper/toolbar/logs_center.rb      |  8 ++-
 .../application_helper/toolbar/miq_group_center.rb |  4 +-
 .../toolbar/miq_groups_center.rb                   |  4 +-
 .../toolbar/miq_policy_center.rb                   | 12 ++++-
 .../application_helper/toolbar/summary_center.rb   |  5 +-
 .../toolbar/summary_center_restful.rb              |  5 +-
 .../application_helper/toolbar/tenant_center.rb    |  4 +-
 .../application_helper/toolbar/tenants_center.rb   |  4 +-
 .../application_helper/toolbar/user_center.rb      |  4 +-
 .../application_helper/toolbar/users_center.rb     |  4 +-
 17 files changed, 171 insertions(+), 37 deletions(-)

Comment 3 CFME Bot 2016-07-01 17:06:49 UTC
New commit detected on ManageIQ/manageiq/master:
https://github.com/ManageIQ/manageiq/commit/0ca6339462c988f931c63aa3fb115a1c50f437e4

commit 0ca6339462c988f931c63aa3fb115a1c50f437e4
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 14:39:33 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Fri Jul 1 16:23:10 2016 +0200

    Toolbars: remove string interpolations with ui_lookup
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413

 app/helpers/application_helper/toolbar/condition_center.rb     |  6 ++++--
 app/helpers/application_helper/toolbar/conditions_center.rb    |  8 +++++++-
 .../application_helper/toolbar/miq_alert_profiles_center.rb    |  4 +++-
 app/helpers/application_helper/toolbar/miq_policy_center.rb    | 10 +++++++---
 4 files changed, 21 insertions(+), 7 deletions(-)

Comment 5 CFME Bot 2016-07-13 16:50:58 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/7d5af5d26e0ec90be2749c4033d35b733b651ebb

commit 7d5af5d26e0ec90be2749c4033d35b733b651ebb
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 14:39:33 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:50:20 2016 +0200

    Toolbars: remove string interpolations with ui_lookup
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit 0ca6339462c988f931c63aa3fb115a1c50f437e4)

 app/helpers/application_helper/toolbar/condition_center.rb     |  6 ++++--
 app/helpers/application_helper/toolbar/conditions_center.rb    |  8 +++++++-
 .../application_helper/toolbar/miq_alert_profiles_center.rb    |  4 +++-
 app/helpers/application_helper/toolbar/miq_policy_center.rb    | 10 +++++++---
 4 files changed, 21 insertions(+), 7 deletions(-)

Comment 6 CFME Bot 2016-07-13 16:51:02 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/0935e92962f2e8c9796f0248d71281dd796b7a9d

commit 0935e92962f2e8c9796f0248d71281dd796b7a9d
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 16:11:24 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:51:17 2016 +0200

    Toolbars: remove string interpolations with instance variables
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit ba1e67271df72008424fa34200efe8e22f32750f)

 app/helpers/application_helper.rb                  |  2 +
 .../application_helper/toolbar/condition_center.rb | 13 +++--
 .../toolbar/custom_button_set_center.rb            |  8 ++-
 .../toolbar/diagnostics_region_center.rb           | 53 +++++++++++++++---
 .../toolbar/diagnostics_server_center.rb           |  8 ++-
 .../toolbar/diagnostics_zone_center.rb             | 62 +++++++++++++++++++---
 .../application_helper/toolbar/dialog_center.rb    |  8 ++-
 .../application_helper/toolbar/logs_center.rb      |  8 ++-
 .../application_helper/toolbar/miq_group_center.rb |  4 +-
 .../toolbar/miq_groups_center.rb                   |  4 +-
 .../toolbar/miq_policy_center.rb                   | 12 ++++-
 .../application_helper/toolbar/summary_center.rb   |  5 +-
 .../toolbar/summary_center_restful.rb              |  5 +-
 .../application_helper/toolbar/tenant_center.rb    |  4 +-
 .../application_helper/toolbar/tenants_center.rb   |  4 +-
 .../application_helper/toolbar/user_center.rb      |  4 +-
 .../application_helper/toolbar/users_center.rb     |  4 +-
 17 files changed, 171 insertions(+), 37 deletions(-)

Comment 7 CFME Bot 2016-07-13 16:52:31 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/7d5af5d26e0ec90be2749c4033d35b733b651ebb

commit 7d5af5d26e0ec90be2749c4033d35b733b651ebb
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 14:39:33 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:50:20 2016 +0200

    Toolbars: remove string interpolations with ui_lookup
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit 0ca6339462c988f931c63aa3fb115a1c50f437e4)

 app/helpers/application_helper/toolbar/condition_center.rb     |  6 ++++--
 app/helpers/application_helper/toolbar/conditions_center.rb    |  8 +++++++-
 .../application_helper/toolbar/miq_alert_profiles_center.rb    |  4 +++-
 app/helpers/application_helper/toolbar/miq_policy_center.rb    | 10 +++++++---
 4 files changed, 21 insertions(+), 7 deletions(-)

Comment 8 CFME Bot 2016-07-13 16:52:44 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/0935e92962f2e8c9796f0248d71281dd796b7a9d

commit 0935e92962f2e8c9796f0248d71281dd796b7a9d
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 16:11:24 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:51:17 2016 +0200

    Toolbars: remove string interpolations with instance variables
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit ba1e67271df72008424fa34200efe8e22f32750f)

 app/helpers/application_helper.rb                  |  2 +
 .../application_helper/toolbar/condition_center.rb | 13 +++--
 .../toolbar/custom_button_set_center.rb            |  8 ++-
 .../toolbar/diagnostics_region_center.rb           | 53 +++++++++++++++---
 .../toolbar/diagnostics_server_center.rb           |  8 ++-
 .../toolbar/diagnostics_zone_center.rb             | 62 +++++++++++++++++++---
 .../application_helper/toolbar/dialog_center.rb    |  8 ++-
 .../application_helper/toolbar/logs_center.rb      |  8 ++-
 .../application_helper/toolbar/miq_group_center.rb |  4 +-
 .../toolbar/miq_groups_center.rb                   |  4 +-
 .../toolbar/miq_policy_center.rb                   | 12 ++++-
 .../application_helper/toolbar/summary_center.rb   |  5 +-
 .../toolbar/summary_center_restful.rb              |  5 +-
 .../application_helper/toolbar/tenant_center.rb    |  4 +-
 .../application_helper/toolbar/tenants_center.rb   |  4 +-
 .../application_helper/toolbar/user_center.rb      |  4 +-
 .../application_helper/toolbar/users_center.rb     |  4 +-
 17 files changed, 171 insertions(+), 37 deletions(-)

Comment 9 CFME Bot 2016-07-13 16:54:06 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/7d5af5d26e0ec90be2749c4033d35b733b651ebb

commit 7d5af5d26e0ec90be2749c4033d35b733b651ebb
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 14:39:33 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:50:20 2016 +0200

    Toolbars: remove string interpolations with ui_lookup
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit 0ca6339462c988f931c63aa3fb115a1c50f437e4)

 app/helpers/application_helper/toolbar/condition_center.rb     |  6 ++++--
 app/helpers/application_helper/toolbar/conditions_center.rb    |  8 +++++++-
 .../application_helper/toolbar/miq_alert_profiles_center.rb    |  4 +++-
 app/helpers/application_helper/toolbar/miq_policy_center.rb    | 10 +++++++---
 4 files changed, 21 insertions(+), 7 deletions(-)

Comment 10 CFME Bot 2016-07-13 16:54:43 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/0935e92962f2e8c9796f0248d71281dd796b7a9d

commit 0935e92962f2e8c9796f0248d71281dd796b7a9d
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 16:11:24 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:51:17 2016 +0200

    Toolbars: remove string interpolations with instance variables
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit ba1e67271df72008424fa34200efe8e22f32750f)

 app/helpers/application_helper.rb                  |  2 +
 .../application_helper/toolbar/condition_center.rb | 13 +++--
 .../toolbar/custom_button_set_center.rb            |  8 ++-
 .../toolbar/diagnostics_region_center.rb           | 53 +++++++++++++++---
 .../toolbar/diagnostics_server_center.rb           |  8 ++-
 .../toolbar/diagnostics_zone_center.rb             | 62 +++++++++++++++++++---
 .../application_helper/toolbar/dialog_center.rb    |  8 ++-
 .../application_helper/toolbar/logs_center.rb      |  8 ++-
 .../application_helper/toolbar/miq_group_center.rb |  4 +-
 .../toolbar/miq_groups_center.rb                   |  4 +-
 .../toolbar/miq_policy_center.rb                   | 12 ++++-
 .../application_helper/toolbar/summary_center.rb   |  5 +-
 .../toolbar/summary_center_restful.rb              |  5 +-
 .../application_helper/toolbar/tenant_center.rb    |  4 +-
 .../application_helper/toolbar/tenants_center.rb   |  4 +-
 .../application_helper/toolbar/user_center.rb      |  4 +-
 .../application_helper/toolbar/users_center.rb     |  4 +-
 17 files changed, 171 insertions(+), 37 deletions(-)

Comment 11 CFME Bot 2016-07-13 16:55:42 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/7d5af5d26e0ec90be2749c4033d35b733b651ebb

commit 7d5af5d26e0ec90be2749c4033d35b733b651ebb
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 14:39:33 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:50:20 2016 +0200

    Toolbars: remove string interpolations with ui_lookup
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit 0ca6339462c988f931c63aa3fb115a1c50f437e4)

 app/helpers/application_helper/toolbar/condition_center.rb     |  6 ++++--
 app/helpers/application_helper/toolbar/conditions_center.rb    |  8 +++++++-
 .../application_helper/toolbar/miq_alert_profiles_center.rb    |  4 +++-
 app/helpers/application_helper/toolbar/miq_policy_center.rb    | 10 +++++++---
 4 files changed, 21 insertions(+), 7 deletions(-)

Comment 12 CFME Bot 2016-07-13 16:56:02 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/0935e92962f2e8c9796f0248d71281dd796b7a9d

commit 0935e92962f2e8c9796f0248d71281dd796b7a9d
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 16:11:24 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:51:17 2016 +0200

    Toolbars: remove string interpolations with instance variables
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit ba1e67271df72008424fa34200efe8e22f32750f)

 app/helpers/application_helper.rb                  |  2 +
 .../application_helper/toolbar/condition_center.rb | 13 +++--
 .../toolbar/custom_button_set_center.rb            |  8 ++-
 .../toolbar/diagnostics_region_center.rb           | 53 +++++++++++++++---
 .../toolbar/diagnostics_server_center.rb           |  8 ++-
 .../toolbar/diagnostics_zone_center.rb             | 62 +++++++++++++++++++---
 .../application_helper/toolbar/dialog_center.rb    |  8 ++-
 .../application_helper/toolbar/logs_center.rb      |  8 ++-
 .../application_helper/toolbar/miq_group_center.rb |  4 +-
 .../toolbar/miq_groups_center.rb                   |  4 +-
 .../toolbar/miq_policy_center.rb                   | 12 ++++-
 .../application_helper/toolbar/summary_center.rb   |  5 +-
 .../toolbar/summary_center_restful.rb              |  5 +-
 .../application_helper/toolbar/tenant_center.rb    |  4 +-
 .../application_helper/toolbar/tenants_center.rb   |  4 +-
 .../application_helper/toolbar/user_center.rb      |  4 +-
 .../application_helper/toolbar/users_center.rb     |  4 +-
 17 files changed, 171 insertions(+), 37 deletions(-)

Comment 13 CFME Bot 2016-07-13 16:57:18 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/7d5af5d26e0ec90be2749c4033d35b733b651ebb

commit 7d5af5d26e0ec90be2749c4033d35b733b651ebb
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 14:39:33 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:50:20 2016 +0200

    Toolbars: remove string interpolations with ui_lookup
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit 0ca6339462c988f931c63aa3fb115a1c50f437e4)

 app/helpers/application_helper/toolbar/condition_center.rb     |  6 ++++--
 app/helpers/application_helper/toolbar/conditions_center.rb    |  8 +++++++-
 .../application_helper/toolbar/miq_alert_profiles_center.rb    |  4 +++-
 app/helpers/application_helper/toolbar/miq_policy_center.rb    | 10 +++++++---
 4 files changed, 21 insertions(+), 7 deletions(-)

Comment 14 CFME Bot 2016-07-13 16:57:39 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/0935e92962f2e8c9796f0248d71281dd796b7a9d

commit 0935e92962f2e8c9796f0248d71281dd796b7a9d
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 16:11:24 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:51:17 2016 +0200

    Toolbars: remove string interpolations with instance variables
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit ba1e67271df72008424fa34200efe8e22f32750f)

 app/helpers/application_helper.rb                  |  2 +
 .../application_helper/toolbar/condition_center.rb | 13 +++--
 .../toolbar/custom_button_set_center.rb            |  8 ++-
 .../toolbar/diagnostics_region_center.rb           | 53 +++++++++++++++---
 .../toolbar/diagnostics_server_center.rb           |  8 ++-
 .../toolbar/diagnostics_zone_center.rb             | 62 +++++++++++++++++++---
 .../application_helper/toolbar/dialog_center.rb    |  8 ++-
 .../application_helper/toolbar/logs_center.rb      |  8 ++-
 .../application_helper/toolbar/miq_group_center.rb |  4 +-
 .../toolbar/miq_groups_center.rb                   |  4 +-
 .../toolbar/miq_policy_center.rb                   | 12 ++++-
 .../application_helper/toolbar/summary_center.rb   |  5 +-
 .../toolbar/summary_center_restful.rb              |  5 +-
 .../application_helper/toolbar/tenant_center.rb    |  4 +-
 .../application_helper/toolbar/tenants_center.rb   |  4 +-
 .../application_helper/toolbar/user_center.rb      |  4 +-
 .../application_helper/toolbar/users_center.rb     |  4 +-
 17 files changed, 171 insertions(+), 37 deletions(-)

Comment 15 CFME Bot 2016-07-13 16:58:54 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/7d5af5d26e0ec90be2749c4033d35b733b651ebb

commit 7d5af5d26e0ec90be2749c4033d35b733b651ebb
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 14:39:33 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:50:20 2016 +0200

    Toolbars: remove string interpolations with ui_lookup
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit 0ca6339462c988f931c63aa3fb115a1c50f437e4)

 app/helpers/application_helper/toolbar/condition_center.rb     |  6 ++++--
 app/helpers/application_helper/toolbar/conditions_center.rb    |  8 +++++++-
 .../application_helper/toolbar/miq_alert_profiles_center.rb    |  4 +++-
 app/helpers/application_helper/toolbar/miq_policy_center.rb    | 10 +++++++---
 4 files changed, 21 insertions(+), 7 deletions(-)

Comment 16 CFME Bot 2016-07-13 16:59:31 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/0935e92962f2e8c9796f0248d71281dd796b7a9d

commit 0935e92962f2e8c9796f0248d71281dd796b7a9d
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 16:11:24 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:51:17 2016 +0200

    Toolbars: remove string interpolations with instance variables
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit ba1e67271df72008424fa34200efe8e22f32750f)

 app/helpers/application_helper.rb                  |  2 +
 .../application_helper/toolbar/condition_center.rb | 13 +++--
 .../toolbar/custom_button_set_center.rb            |  8 ++-
 .../toolbar/diagnostics_region_center.rb           | 53 +++++++++++++++---
 .../toolbar/diagnostics_server_center.rb           |  8 ++-
 .../toolbar/diagnostics_zone_center.rb             | 62 +++++++++++++++++++---
 .../application_helper/toolbar/dialog_center.rb    |  8 ++-
 .../application_helper/toolbar/logs_center.rb      |  8 ++-
 .../application_helper/toolbar/miq_group_center.rb |  4 +-
 .../toolbar/miq_groups_center.rb                   |  4 +-
 .../toolbar/miq_policy_center.rb                   | 12 ++++-
 .../application_helper/toolbar/summary_center.rb   |  5 +-
 .../toolbar/summary_center_restful.rb              |  5 +-
 .../application_helper/toolbar/tenant_center.rb    |  4 +-
 .../application_helper/toolbar/tenants_center.rb   |  4 +-
 .../application_helper/toolbar/user_center.rb      |  4 +-
 .../application_helper/toolbar/users_center.rb     |  4 +-
 17 files changed, 171 insertions(+), 37 deletions(-)

Comment 17 CFME Bot 2016-07-13 17:00:33 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/7d5af5d26e0ec90be2749c4033d35b733b651ebb

commit 7d5af5d26e0ec90be2749c4033d35b733b651ebb
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 14:39:33 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:50:20 2016 +0200

    Toolbars: remove string interpolations with ui_lookup
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit 0ca6339462c988f931c63aa3fb115a1c50f437e4)

 app/helpers/application_helper/toolbar/condition_center.rb     |  6 ++++--
 app/helpers/application_helper/toolbar/conditions_center.rb    |  8 +++++++-
 .../application_helper/toolbar/miq_alert_profiles_center.rb    |  4 +++-
 app/helpers/application_helper/toolbar/miq_policy_center.rb    | 10 +++++++---
 4 files changed, 21 insertions(+), 7 deletions(-)

Comment 18 CFME Bot 2016-07-13 17:01:12 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/0935e92962f2e8c9796f0248d71281dd796b7a9d

commit 0935e92962f2e8c9796f0248d71281dd796b7a9d
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 16:11:24 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:51:17 2016 +0200

    Toolbars: remove string interpolations with instance variables
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit ba1e67271df72008424fa34200efe8e22f32750f)

 app/helpers/application_helper.rb                  |  2 +
 .../application_helper/toolbar/condition_center.rb | 13 +++--
 .../toolbar/custom_button_set_center.rb            |  8 ++-
 .../toolbar/diagnostics_region_center.rb           | 53 +++++++++++++++---
 .../toolbar/diagnostics_server_center.rb           |  8 ++-
 .../toolbar/diagnostics_zone_center.rb             | 62 +++++++++++++++++++---
 .../application_helper/toolbar/dialog_center.rb    |  8 ++-
 .../application_helper/toolbar/logs_center.rb      |  8 ++-
 .../application_helper/toolbar/miq_group_center.rb |  4 +-
 .../toolbar/miq_groups_center.rb                   |  4 +-
 .../toolbar/miq_policy_center.rb                   | 12 ++++-
 .../application_helper/toolbar/summary_center.rb   |  5 +-
 .../toolbar/summary_center_restful.rb              |  5 +-
 .../application_helper/toolbar/tenant_center.rb    |  4 +-
 .../application_helper/toolbar/tenants_center.rb   |  4 +-
 .../application_helper/toolbar/user_center.rb      |  4 +-
 .../application_helper/toolbar/users_center.rb     |  4 +-
 17 files changed, 171 insertions(+), 37 deletions(-)

Comment 19 CFME Bot 2016-07-13 17:02:10 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/7d5af5d26e0ec90be2749c4033d35b733b651ebb

commit 7d5af5d26e0ec90be2749c4033d35b733b651ebb
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 14:39:33 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:50:20 2016 +0200

    Toolbars: remove string interpolations with ui_lookup
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit 0ca6339462c988f931c63aa3fb115a1c50f437e4)

 app/helpers/application_helper/toolbar/condition_center.rb     |  6 ++++--
 app/helpers/application_helper/toolbar/conditions_center.rb    |  8 +++++++-
 .../application_helper/toolbar/miq_alert_profiles_center.rb    |  4 +++-
 app/helpers/application_helper/toolbar/miq_policy_center.rb    | 10 +++++++---
 4 files changed, 21 insertions(+), 7 deletions(-)

Comment 20 CFME Bot 2016-07-13 17:02:24 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/0935e92962f2e8c9796f0248d71281dd796b7a9d

commit 0935e92962f2e8c9796f0248d71281dd796b7a9d
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 16:11:24 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:51:17 2016 +0200

    Toolbars: remove string interpolations with instance variables
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit ba1e67271df72008424fa34200efe8e22f32750f)

 app/helpers/application_helper.rb                  |  2 +
 .../application_helper/toolbar/condition_center.rb | 13 +++--
 .../toolbar/custom_button_set_center.rb            |  8 ++-
 .../toolbar/diagnostics_region_center.rb           | 53 +++++++++++++++---
 .../toolbar/diagnostics_server_center.rb           |  8 ++-
 .../toolbar/diagnostics_zone_center.rb             | 62 +++++++++++++++++++---
 .../application_helper/toolbar/dialog_center.rb    |  8 ++-
 .../application_helper/toolbar/logs_center.rb      |  8 ++-
 .../application_helper/toolbar/miq_group_center.rb |  4 +-
 .../toolbar/miq_groups_center.rb                   |  4 +-
 .../toolbar/miq_policy_center.rb                   | 12 ++++-
 .../application_helper/toolbar/summary_center.rb   |  5 +-
 .../toolbar/summary_center_restful.rb              |  5 +-
 .../application_helper/toolbar/tenant_center.rb    |  4 +-
 .../application_helper/toolbar/tenants_center.rb   |  4 +-
 .../application_helper/toolbar/user_center.rb      |  4 +-
 .../application_helper/toolbar/users_center.rb     |  4 +-
 17 files changed, 171 insertions(+), 37 deletions(-)

Comment 21 CFME Bot 2016-07-13 17:03:45 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/7d5af5d26e0ec90be2749c4033d35b733b651ebb

commit 7d5af5d26e0ec90be2749c4033d35b733b651ebb
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 14:39:33 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:50:20 2016 +0200

    Toolbars: remove string interpolations with ui_lookup
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit 0ca6339462c988f931c63aa3fb115a1c50f437e4)

 app/helpers/application_helper/toolbar/condition_center.rb     |  6 ++++--
 app/helpers/application_helper/toolbar/conditions_center.rb    |  8 +++++++-
 .../application_helper/toolbar/miq_alert_profiles_center.rb    |  4 +++-
 app/helpers/application_helper/toolbar/miq_policy_center.rb    | 10 +++++++---
 4 files changed, 21 insertions(+), 7 deletions(-)

Comment 22 CFME Bot 2016-07-13 17:04:15 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/0935e92962f2e8c9796f0248d71281dd796b7a9d

commit 0935e92962f2e8c9796f0248d71281dd796b7a9d
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 16:11:24 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:51:17 2016 +0200

    Toolbars: remove string interpolations with instance variables
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit ba1e67271df72008424fa34200efe8e22f32750f)

 app/helpers/application_helper.rb                  |  2 +
 .../application_helper/toolbar/condition_center.rb | 13 +++--
 .../toolbar/custom_button_set_center.rb            |  8 ++-
 .../toolbar/diagnostics_region_center.rb           | 53 +++++++++++++++---
 .../toolbar/diagnostics_server_center.rb           |  8 ++-
 .../toolbar/diagnostics_zone_center.rb             | 62 +++++++++++++++++++---
 .../application_helper/toolbar/dialog_center.rb    |  8 ++-
 .../application_helper/toolbar/logs_center.rb      |  8 ++-
 .../application_helper/toolbar/miq_group_center.rb |  4 +-
 .../toolbar/miq_groups_center.rb                   |  4 +-
 .../toolbar/miq_policy_center.rb                   | 12 ++++-
 .../application_helper/toolbar/summary_center.rb   |  5 +-
 .../toolbar/summary_center_restful.rb              |  5 +-
 .../application_helper/toolbar/tenant_center.rb    |  4 +-
 .../application_helper/toolbar/tenants_center.rb   |  4 +-
 .../application_helper/toolbar/user_center.rb      |  4 +-
 .../application_helper/toolbar/users_center.rb     |  4 +-
 17 files changed, 171 insertions(+), 37 deletions(-)

Comment 23 CFME Bot 2016-07-13 17:05:23 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/7d5af5d26e0ec90be2749c4033d35b733b651ebb

commit 7d5af5d26e0ec90be2749c4033d35b733b651ebb
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 14:39:33 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:50:20 2016 +0200

    Toolbars: remove string interpolations with ui_lookup
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit 0ca6339462c988f931c63aa3fb115a1c50f437e4)

 app/helpers/application_helper/toolbar/condition_center.rb     |  6 ++++--
 app/helpers/application_helper/toolbar/conditions_center.rb    |  8 +++++++-
 .../application_helper/toolbar/miq_alert_profiles_center.rb    |  4 +++-
 app/helpers/application_helper/toolbar/miq_policy_center.rb    | 10 +++++++---
 4 files changed, 21 insertions(+), 7 deletions(-)

Comment 24 CFME Bot 2016-07-13 17:06:05 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/0935e92962f2e8c9796f0248d71281dd796b7a9d

commit 0935e92962f2e8c9796f0248d71281dd796b7a9d
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 16:11:24 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:51:17 2016 +0200

    Toolbars: remove string interpolations with instance variables
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit ba1e67271df72008424fa34200efe8e22f32750f)

 app/helpers/application_helper.rb                  |  2 +
 .../application_helper/toolbar/condition_center.rb | 13 +++--
 .../toolbar/custom_button_set_center.rb            |  8 ++-
 .../toolbar/diagnostics_region_center.rb           | 53 +++++++++++++++---
 .../toolbar/diagnostics_server_center.rb           |  8 ++-
 .../toolbar/diagnostics_zone_center.rb             | 62 +++++++++++++++++++---
 .../application_helper/toolbar/dialog_center.rb    |  8 ++-
 .../application_helper/toolbar/logs_center.rb      |  8 ++-
 .../application_helper/toolbar/miq_group_center.rb |  4 +-
 .../toolbar/miq_groups_center.rb                   |  4 +-
 .../toolbar/miq_policy_center.rb                   | 12 ++++-
 .../application_helper/toolbar/summary_center.rb   |  5 +-
 .../toolbar/summary_center_restful.rb              |  5 +-
 .../application_helper/toolbar/tenant_center.rb    |  4 +-
 .../application_helper/toolbar/tenants_center.rb   |  4 +-
 .../application_helper/toolbar/user_center.rb      |  4 +-
 .../application_helper/toolbar/users_center.rb     |  4 +-
 17 files changed, 171 insertions(+), 37 deletions(-)

Comment 25 CFME Bot 2016-07-13 17:07:00 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/7d5af5d26e0ec90be2749c4033d35b733b651ebb

commit 7d5af5d26e0ec90be2749c4033d35b733b651ebb
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 14:39:33 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:50:20 2016 +0200

    Toolbars: remove string interpolations with ui_lookup
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit 0ca6339462c988f931c63aa3fb115a1c50f437e4)

 app/helpers/application_helper/toolbar/condition_center.rb     |  6 ++++--
 app/helpers/application_helper/toolbar/conditions_center.rb    |  8 +++++++-
 .../application_helper/toolbar/miq_alert_profiles_center.rb    |  4 +++-
 app/helpers/application_helper/toolbar/miq_policy_center.rb    | 10 +++++++---
 4 files changed, 21 insertions(+), 7 deletions(-)

Comment 26 CFME Bot 2016-07-13 17:07:38 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/0935e92962f2e8c9796f0248d71281dd796b7a9d

commit 0935e92962f2e8c9796f0248d71281dd796b7a9d
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 16:11:24 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:51:17 2016 +0200

    Toolbars: remove string interpolations with instance variables
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit ba1e67271df72008424fa34200efe8e22f32750f)

 app/helpers/application_helper.rb                  |  2 +
 .../application_helper/toolbar/condition_center.rb | 13 +++--
 .../toolbar/custom_button_set_center.rb            |  8 ++-
 .../toolbar/diagnostics_region_center.rb           | 53 +++++++++++++++---
 .../toolbar/diagnostics_server_center.rb           |  8 ++-
 .../toolbar/diagnostics_zone_center.rb             | 62 +++++++++++++++++++---
 .../application_helper/toolbar/dialog_center.rb    |  8 ++-
 .../application_helper/toolbar/logs_center.rb      |  8 ++-
 .../application_helper/toolbar/miq_group_center.rb |  4 +-
 .../toolbar/miq_groups_center.rb                   |  4 +-
 .../toolbar/miq_policy_center.rb                   | 12 ++++-
 .../application_helper/toolbar/summary_center.rb   |  5 +-
 .../toolbar/summary_center_restful.rb              |  5 +-
 .../application_helper/toolbar/tenant_center.rb    |  4 +-
 .../application_helper/toolbar/tenants_center.rb   |  4 +-
 .../application_helper/toolbar/user_center.rb      |  4 +-
 .../application_helper/toolbar/users_center.rb     |  4 +-
 17 files changed, 171 insertions(+), 37 deletions(-)

Comment 27 CFME Bot 2016-07-13 17:08:37 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/7d5af5d26e0ec90be2749c4033d35b733b651ebb

commit 7d5af5d26e0ec90be2749c4033d35b733b651ebb
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 14:39:33 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:50:20 2016 +0200

    Toolbars: remove string interpolations with ui_lookup
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit 0ca6339462c988f931c63aa3fb115a1c50f437e4)

 app/helpers/application_helper/toolbar/condition_center.rb     |  6 ++++--
 app/helpers/application_helper/toolbar/conditions_center.rb    |  8 +++++++-
 .../application_helper/toolbar/miq_alert_profiles_center.rb    |  4 +++-
 app/helpers/application_helper/toolbar/miq_policy_center.rb    | 10 +++++++---
 4 files changed, 21 insertions(+), 7 deletions(-)

Comment 28 CFME Bot 2016-07-13 17:09:15 UTC
New commit detected on ManageIQ/manageiq/darga:
https://github.com/ManageIQ/manageiq/commit/0935e92962f2e8c9796f0248d71281dd796b7a9d

commit 0935e92962f2e8c9796f0248d71281dd796b7a9d
Author:     Milan Zazrivec <mzazrivec>
AuthorDate: Fri Jul 1 16:11:24 2016 +0200
Commit:     Milan Zazrivec <mzazrivec>
CommitDate: Tue Jul 12 13:51:17 2016 +0200

    Toolbars: remove string interpolations with instance variables
    
    This is to make sure the translations for toolbars works correctly.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1352007
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1348649
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    https://bugzilla.redhat.com/show_bug.cgi?id=1340139
    https://bugzilla.redhat.com/show_bug.cgi?id=1340708
    https://bugzilla.redhat.com/show_bug.cgi?id=1340870
    https://bugzilla.redhat.com/show_bug.cgi?id=1288413
    (cherry picked from commit ba1e67271df72008424fa34200efe8e22f32750f)

 app/helpers/application_helper.rb                  |  2 +
 .../application_helper/toolbar/condition_center.rb | 13 +++--
 .../toolbar/custom_button_set_center.rb            |  8 ++-
 .../toolbar/diagnostics_region_center.rb           | 53 +++++++++++++++---
 .../toolbar/diagnostics_server_center.rb           |  8 ++-
 .../toolbar/diagnostics_zone_center.rb             | 62 +++++++++++++++++++---
 .../application_helper/toolbar/dialog_center.rb    |  8 ++-
 .../application_helper/toolbar/logs_center.rb      |  8 ++-
 .../application_helper/toolbar/miq_group_center.rb |  4 +-
 .../toolbar/miq_groups_center.rb                   |  4 +-
 .../toolbar/miq_policy_center.rb                   | 12 ++++-
 .../application_helper/toolbar/summary_center.rb   |  5 +-
 .../toolbar/summary_center_restful.rb              |  5 +-
 .../application_helper/toolbar/tenant_center.rb    |  4 +-
 .../application_helper/toolbar/tenants_center.rb   |  4 +-
 .../application_helper/toolbar/user_center.rb      |  4 +-
 .../application_helper/toolbar/users_center.rb     |  4 +-
 17 files changed, 171 insertions(+), 37 deletions(-)

Comment 29 Ramesh A 2016-10-05 07:42:00 UTC
Verification failed in 5.7.0.3.20160927165516_075d0f3.

Translations are still missing in the above build.  Refer the screenshot "download" and "reload" for further information

Comment 30 Ramesh A 2016-10-05 07:43:25 UTC
Created attachment 1207462 [details]
reload

Comment 31 Ramesh A 2016-10-05 07:45:35 UTC
Created attachment 1207463 [details]
download

Comment 32 Milan Zázrivec 2016-10-05 08:20:07 UTC
This is simply a matter of missing translations for 5.7

Comment 33 Milan Zázrivec 2016-10-25 13:19:13 UTC
Moving to POST, since latest translations have been merged.

Comment 36 Satyajit Bulage 2017-04-11 09:16:40 UTC
String on the tooltip is correctly translated on Control-> Log page.


Note You need to log in before you can comment on or make changes to this bug.