Skip to content

Commit

Permalink
Merge pull request #1436 from mzazrivec/missing_translations_in_cloud…
Browse files Browse the repository at this point in the history
…_tenant_summary

Fix missing translations in cloud tenant summary screen
(cherry picked from commit c8ceb18)

https://bugzilla.redhat.com/show_bug.cgi?id=1461460
  • Loading branch information
Dan Clarizio authored and simaishi committed Jun 14, 2017
1 parent 66a3757 commit 5493c7e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/helpers/cloud_tenant_helper/textual_summary.rb
Original file line number Diff line number Diff line change
Expand Up @@ -92,26 +92,26 @@ def textual_cloud_object_store_containers
end

def textual_security_groups
@record.security_groups
textual_link(@record.security_groups, :label => _('Security Groups'))
end

def textual_floating_ips
@record.floating_ips
textual_link(@record.floating_ips, :label => _('Floating IPs'))
end

def textual_network_routers
@record.network_routers
textual_link(@record.network_routers, :label => _('Network Routers'))
end

def textual_network_ports
@record.network_ports
textual_link(@record.network_ports, :label => _('Network Ports'))
end

def textual_cloud_networks
@record.cloud_networks
textual_link(@record.cloud_networks, :label => _('Cloud Networks'))
end

def textual_cloud_subnets
@record.cloud_subnets
textual_link(@record.cloud_subnets, :label => _('Cloud Subnets'))
end
end

0 comments on commit 5493c7e

Please sign in to comment.