From 0bc18900c6ea92c0b883615bd5f6f679bf284478 Mon Sep 17 00:00:00 2001 From: Lucy Fu Date: Thu, 18 May 2023 15:39:22 -0400 Subject: [PATCH] i18n - extracting new, pulling from tx (#163) --- .tx/config | 9 +- .../steps/_general_information_form.erb | 10 +- .../configs/steps/_schedule_form.erb | 2 +- foreman_virt_who_configure.gemspec | 12 + lib/foreman_virt_who_configure/engine.rb | 2 +- locale/action_names.rb | 3 +- locale/bn/foreman_virt_who_configure.po | 721 +++++++++++++++++ locale/bn_IN/foreman_virt_who_configure.po | 722 +++++++++++++++++ locale/ca/foreman_virt_who_configure.po | 27 +- locale/cs_CZ/foreman_virt_who_configure.po | 27 +- locale/de/foreman_virt_who_configure.po | 27 +- locale/de_AT/foreman_virt_who_configure.po | 718 +++++++++++++++++ locale/de_DE/foreman_virt_who_configure.po | 724 ++++++++++++++++++ locale/el/foreman_virt_who_configure.po | 721 +++++++++++++++++ locale/en/foreman_virt_who_configure.po | 27 +- locale/en_GB/foreman_virt_who_configure.po | 27 +- locale/en_US/foreman_virt_who_configure.po | 718 +++++++++++++++++ locale/es/foreman_virt_who_configure.po | 27 +- locale/et_EE/foreman_virt_who_configure.po | 718 +++++++++++++++++ locale/foreman_virt_who_configure.pot | 175 +++-- locale/fr/foreman_virt_who_configure.po | 27 +- locale/gl/foreman_virt_who_configure.po | 27 +- locale/gu/foreman_virt_who_configure.po | 721 +++++++++++++++++ locale/he_IL/foreman_virt_who_configure.po | 723 +++++++++++++++++ locale/hi/foreman_virt_who_configure.po | 721 +++++++++++++++++ locale/id/foreman_virt_who_configure.po | 717 +++++++++++++++++ locale/it/foreman_virt_who_configure.po | 27 +- locale/ja/foreman_virt_who_configure.po | 27 +- locale/ka/foreman_virt_who_configure.po | 27 +- locale/kn/foreman_virt_who_configure.po | 721 +++++++++++++++++ locale/ko/foreman_virt_who_configure.po | 27 +- locale/ml_IN/foreman_virt_who_configure.po | 718 +++++++++++++++++ locale/mr/foreman_virt_who_configure.po | 721 +++++++++++++++++ locale/nl_NL/foreman_virt_who_configure.po | 27 +- locale/or/foreman_virt_who_configure.po | 721 +++++++++++++++++ locale/pa/foreman_virt_who_configure.po | 722 +++++++++++++++++ locale/pl/foreman_virt_who_configure.po | 27 +- locale/pl_PL/foreman_virt_who_configure.po | 720 +++++++++++++++++ locale/pt/foreman_virt_who_configure.po | 722 +++++++++++++++++ locale/pt_BR/foreman_virt_who_configure.po | 27 +- locale/ro/foreman_virt_who_configure.po | 718 +++++++++++++++++ locale/ro_RO/foreman_virt_who_configure.po | 719 +++++++++++++++++ locale/ru/foreman_virt_who_configure.po | 27 +- locale/sl/foreman_virt_who_configure.po | 722 +++++++++++++++++ locale/sv_SE/foreman_virt_who_configure.po | 27 +- locale/ta/foreman_virt_who_configure.po | 721 +++++++++++++++++ locale/ta_IN/foreman_virt_who_configure.po | 722 +++++++++++++++++ locale/te/foreman_virt_who_configure.po | 721 +++++++++++++++++ locale/tr/foreman_virt_who_configure.po | 721 +++++++++++++++++ locale/vi/foreman_virt_who_configure.po | 717 +++++++++++++++++ locale/vi_VN/foreman_virt_who_configure.po | 718 +++++++++++++++++ locale/zh/foreman_virt_who_configure.po | 717 +++++++++++++++++ locale/zh_CN/foreman_virt_who_configure.po | 27 +- locale/zh_TW/foreman_virt_who_configure.po | 27 +- 54 files changed, 20690 insertions(+), 201 deletions(-) create mode 100644 locale/bn/foreman_virt_who_configure.po create mode 100644 locale/bn_IN/foreman_virt_who_configure.po create mode 100644 locale/de_AT/foreman_virt_who_configure.po create mode 100644 locale/de_DE/foreman_virt_who_configure.po create mode 100644 locale/el/foreman_virt_who_configure.po create mode 100644 locale/en_US/foreman_virt_who_configure.po create mode 100644 locale/et_EE/foreman_virt_who_configure.po create mode 100644 locale/gu/foreman_virt_who_configure.po create mode 100644 locale/he_IL/foreman_virt_who_configure.po create mode 100644 locale/hi/foreman_virt_who_configure.po create mode 100644 locale/id/foreman_virt_who_configure.po create mode 100644 locale/kn/foreman_virt_who_configure.po create mode 100644 locale/ml_IN/foreman_virt_who_configure.po create mode 100644 locale/mr/foreman_virt_who_configure.po create mode 100644 locale/or/foreman_virt_who_configure.po create mode 100644 locale/pa/foreman_virt_who_configure.po create mode 100644 locale/pl_PL/foreman_virt_who_configure.po create mode 100644 locale/pt/foreman_virt_who_configure.po create mode 100644 locale/ro/foreman_virt_who_configure.po create mode 100644 locale/ro_RO/foreman_virt_who_configure.po create mode 100644 locale/sl/foreman_virt_who_configure.po create mode 100644 locale/ta/foreman_virt_who_configure.po create mode 100644 locale/ta_IN/foreman_virt_who_configure.po create mode 100644 locale/te/foreman_virt_who_configure.po create mode 100644 locale/tr/foreman_virt_who_configure.po create mode 100644 locale/vi/foreman_virt_who_configure.po create mode 100644 locale/vi_VN/foreman_virt_who_configure.po create mode 100644 locale/zh/foreman_virt_who_configure.po diff --git a/.tx/config b/.tx/config index 91a8a525..8085c8a7 100644 --- a/.tx/config +++ b/.tx/config @@ -1,8 +1,11 @@ [main] -host = https://www.transifex.com +host = https://app.transifex.com -[foreman.foreman_virt_who_configure] +[o:foreman:p:foreman:r:foreman_virt_who_configure] file_filter = locale//foreman_virt_who_configure.edit.po source_file = locale/foreman_virt_who_configure.pot source_lang = en -type = PO +type = PO + +minimum_perc = 0 +resource_name = foreman_virt_who_configure diff --git a/app/views/foreman_virt_who_configure/configs/steps/_general_information_form.erb b/app/views/foreman_virt_who_configure/configs/steps/_general_information_form.erb index b046bad9..a00c400f 100644 --- a/app/views/foreman_virt_who_configure/configs/steps/_general_information_form.erb +++ b/app/views/foreman_virt_who_configure/configs/steps/_general_information_form.erb @@ -1,5 +1,5 @@
- <%= text_f f, :name, inline_help_popover(_('Name of this configuration, e.g. the name of the hypervisor')) %> + <%= text_f f, :name, inline_help_popover(_('Name of this configuration, e.g. the name of the hypervisor')).merge(:label => _('Name')) %> <% if f.object.organization_id.present? %> <%= f.hidden_field :organization_id %> @@ -7,8 +7,8 @@ <%= select_f f, :organization_id, Organization.authorized(:view_organizations), :id, :to_s, {}, :label => _('Owner') %> <% end %> - <%= select_f f, :hypervisor_type, ForemanVirtWhoConfigure::Config::HYPERVISOR_TYPES, :first, :last %> - <%= text_f f, :hypervisor_server, { :required => true }.merge(inline_help_popover(hypervisor_server_help_data[f.object.hypervisor_type]).merge(:data => { :help => hypervisor_server_help_data })) %> - <%= text_f f, :hypervisor_username, { :required => true }.merge(inline_help_popover(hypervisor_username_help_data[f.object.hypervisor_type]).merge(:data => { :help => hypervisor_username_help_data })) %> - <%= password_f f, :hypervisor_password, { :required => true, :value => f.object.hypervisor_password }.merge(inline_help_popover(_('Account password by which virt-who is to connect to the hypervisor instance.'))) %> + <%= select_f f, :hypervisor_type, ForemanVirtWhoConfigure::Config::HYPERVISOR_TYPES, :first, :last, {}, { :label => _('Hypervisor Type') } %> + <%= text_f f, :hypervisor_server, { :label => _('Hypervisor Server'), :required => true }.merge(inline_help_popover(hypervisor_server_help_data[f.object.hypervisor_type]).merge(:data => { :help => hypervisor_server_help_data })) %> + <%= text_f f, :hypervisor_username, { :label => _('Hypervisor Username'), :required => true }.merge(inline_help_popover(hypervisor_username_help_data[f.object.hypervisor_type]).merge(:data => { :help => hypervisor_username_help_data })) %> + <%= password_f f, :hypervisor_password, { :label => _('Hypervisor Password'), :required => true, :value => f.object.hypervisor_password }.merge(inline_help_popover(_('Account password by which virt-who is to connect to the hypervisor instance.'))) %>
diff --git a/app/views/foreman_virt_who_configure/configs/steps/_schedule_form.erb b/app/views/foreman_virt_who_configure/configs/steps/_schedule_form.erb index 01b1ff3b..68aec5a4 100644 --- a/app/views/foreman_virt_who_configure/configs/steps/_schedule_form.erb +++ b/app/views/foreman_virt_who_configure/configs/steps/_schedule_form.erb @@ -1,3 +1,3 @@
- <%= selectable_f f, :interval, ForemanVirtWhoConfigure::Config::AVAILABLE_INTERVALS.map { |k,v| [_(v), k] }, {}, inline_help_popover(_("How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed.")) %> + <%= selectable_f f, :interval, ForemanVirtWhoConfigure::Config::AVAILABLE_INTERVALS.map { |k,v| [_(v), k] }, {}, inline_help_popover(_("How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed.")).merge(:label => _('Interval')) %>
diff --git a/foreman_virt_who_configure.gemspec b/foreman_virt_who_configure.gemspec index cfa35619..e84fc7d4 100644 --- a/foreman_virt_who_configure.gemspec +++ b/foreman_virt_who_configure.gemspec @@ -1,6 +1,18 @@ require File.expand_path('../lib/foreman_virt_who_configure/version', __FILE__) require 'date' +begin + Dir["locale/**/*.po"].each do |po| + mo = po.sub(/foreman_virt_who_configure\.po$/, "LC_MESSAGES/foreman_virt_who_configure.mo") + STDERR.puts "WARNING: File #{mo} does not exist, generate with 'make all-mo'!" unless File.exist?(mo) + STDERR.puts "WARNING: File #{mo} outdated, regenerate with 'make all-mo'" if File.mtime(po) > File.mtime(mo) + # Adding this so you can actually build the gem and the warnings come out, without this + # we get an error when making the gem and it fails as well as a ruby error if the mo files don't exist + rescue => e + puts "#{e} not found" + end +end + Gem::Specification.new do |s| s.name = 'foreman_virt_who_configure' s.version = ForemanVirtWhoConfigure::VERSION diff --git a/lib/foreman_virt_who_configure/engine.rb b/lib/foreman_virt_who_configure/engine.rb index 15080a19..755d9fc7 100644 --- a/lib/foreman_virt_who_configure/engine.rb +++ b/lib/foreman_virt_who_configure/engine.rb @@ -27,7 +27,7 @@ class Engine < ::Rails::Engine initializer 'foreman_virt_who_configure.register_plugin', :before => :finisher_hook do |_app| Foreman::Plugin.register :foreman_virt_who_configure do - requires_foreman '>= 1.24' + requires_foreman '>= 3.7' apipie_documented_controllers ["#{ForemanVirtWhoConfigure::Engine.root}/app/controllers/foreman_virt_who_configure/api/v2/*.rb"] diff --git a/locale/action_names.rb b/locale/action_names.rb index 5556436e..5a116169 100644 --- a/locale/action_names.rb +++ b/locale/action_names.rb @@ -11,12 +11,10 @@ _("Create Alternate Content Source") _("Create Export History") _("Create Import History") -_("Create Package Group") _("Create Syncable Export History") _("Create") _("Delete Activation Key") _("Delete Lifecycle Environment") -_("Delete Package Group") _("Delete Product") _("Delete") _("Destroy Alternate Content Source") @@ -57,6 +55,7 @@ _("Publish") _("Refresh Alternate Content Source") _("Reindex subscriptions") +_("Remote action:") _("Remove Content") _("Remove Version") _("Remove Versions and Associations") diff --git a/locale/bn/foreman_virt_who_configure.po b/locale/bn/foreman_virt_who_configure.po new file mode 100644 index 00000000..3798e11f --- /dev/null +++ b/locale/bn/foreman_virt_who_configure.po @@ -0,0 +1,721 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Bryan Kearney , 2017 +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Last-Translator: Bryan Kearney , 2017\n" +"Language-Team: Bengali (https://app.transifex.com/foreman/teams/114/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "নির্মাণ করুন" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "মুছে ফেলুন" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "ঠিক আছে" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "Owner" +msgstr "" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "প্রকাশ করুন" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "অবস্থা" + +msgid "Success" +msgstr "সাফল্য" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "অজানা" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "আপডেট করুন" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/bn_IN/foreman_virt_who_configure.po b/locale/bn_IN/foreman_virt_who_configure.po new file mode 100644 index 00000000..c819a8aa --- /dev/null +++ b/locale/bn_IN/foreman_virt_who_configure.po @@ -0,0 +1,722 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# 0868a4d1af5275b3f70b0a6dac4c99a4, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4, 2022\n" +"Language-Team: Bengali (India) (https://app.transifex.com/foreman/teams/114/bn" +"_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "মুছে ফেলুন" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "ধ্বংশ করুন" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "বিবরণ" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "সম্পাদনা" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "সাহায্য" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "ইম্পোর্ট করুন" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "ঠিক আছে" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "সংক্ষিপ্ত বর্ণনা" + +msgid "Owner" +msgstr "মালিক" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "অবস্থা" + +msgid "Success" +msgstr "সাফল্য" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "অজানা" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "আপডেট করুন" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/ca/foreman_virt_who_configure.po b/locale/ca/foreman_virt_who_configure.po index 7d02d850..0337a892 100644 --- a/locale/ca/foreman_virt_who_configure.po +++ b/locale/ca/foreman_virt_who_configure.po @@ -151,9 +151,6 @@ msgstr "" msgid "Create Import History" msgstr "" -msgid "Create Package Group" -msgstr "Crea un grup de paquets" - msgid "Create Syncable Export History" msgstr "" @@ -169,9 +166,6 @@ msgstr "" msgid "Delete Lifecycle Environment" msgstr "" -msgid "Delete Package Group" -msgstr "" - msgid "Delete Product" msgstr "" @@ -334,6 +328,18 @@ msgstr "" msgid "Hypervisor ID" msgstr "" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "" @@ -409,6 +415,9 @@ msgstr "" msgid "Instance update" msgstr "" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "" @@ -427,6 +436,9 @@ msgstr "" msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "" +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "" @@ -529,6 +541,9 @@ msgstr "" msgid "Reindex subscriptions" msgstr "" +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "" diff --git a/locale/cs_CZ/foreman_virt_who_configure.po b/locale/cs_CZ/foreman_virt_who_configure.po index 0ec654a0..d3e6e333 100644 --- a/locale/cs_CZ/foreman_virt_who_configure.po +++ b/locale/cs_CZ/foreman_virt_who_configure.po @@ -155,9 +155,6 @@ msgstr "" msgid "Create Import History" msgstr "" -msgid "Create Package Group" -msgstr "Vytvořit skupinu balíčků" - msgid "Create Syncable Export History" msgstr "" @@ -173,9 +170,6 @@ msgstr "Smazat aktivační klíč" msgid "Delete Lifecycle Environment" msgstr "Smazat prostředí životního cyklu" -msgid "Delete Package Group" -msgstr "Smazat skupinu balíčků" - msgid "Delete Product" msgstr "Smazat produkt" @@ -338,6 +332,18 @@ msgstr "" msgid "Hypervisor ID" msgstr "Identifikátor hypervizoru" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "" @@ -413,6 +419,9 @@ msgstr "" msgid "Instance update" msgstr "Aktualizace instance" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "Interval nebyl zadán" @@ -431,6 +440,9 @@ msgstr "" msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "Plně kvalifikované doménové jméno nebo IP adresa vašeho stroje." +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "Název tohoto nastavení, např. název hypervizoru" @@ -533,6 +545,9 @@ msgstr "" msgid "Reindex subscriptions" msgstr "" +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "Odebrat obsah" diff --git a/locale/de/foreman_virt_who_configure.po b/locale/de/foreman_virt_who_configure.po index a56b8a4d..f72c4f3e 100644 --- a/locale/de/foreman_virt_who_configure.po +++ b/locale/de/foreman_virt_who_configure.po @@ -160,9 +160,6 @@ msgstr "Exportverlauf erstellen" msgid "Create Import History" msgstr "Importverlauf erstellen" -msgid "Create Package Group" -msgstr "Paketgruppe erstellen" - msgid "Create Syncable Export History" msgstr "" @@ -178,9 +175,6 @@ msgstr "Aktivierungsschlüssel löschen" msgid "Delete Lifecycle Environment" msgstr "Lebenszyklusumgebung löschen" -msgid "Delete Package Group" -msgstr "Paketgruppe löschen" - msgid "Delete Product" msgstr "Produkt löschen" @@ -343,6 +337,18 @@ msgstr "Wie oft werden verbundene Hypervisoren auf Änderungen überprüft? Beei msgid "Hypervisor ID" msgstr "Hypervisor ID" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "Hypervisor-Blacklist, nur anwendbar, wenn der Filtermodus auf 2 gesetzt ist. Wildcards und reguläre Ausdrücke werden unterstützt, mehrere Datensätze müssen durch Kommas getrennt werden." @@ -418,6 +424,9 @@ msgstr "Relevante Errata installieren" msgid "Instance update" msgstr "Instanz-Update" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "Intervall wurde nicht mitgeliefert" @@ -436,6 +445,9 @@ msgstr "Liste der virt-who-Konfigurationen pro Organisation" msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "Vollständig qualifizierter Microsoft Hyper-V-Hostname oder IP-Adresse." +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "Name der Konfiguration, z.B. der Name des Hypervisors" @@ -538,6 +550,9 @@ msgstr "" msgid "Reindex subscriptions" msgstr "Subskriptionen neu indizieren" +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "Inhalt entfernen" diff --git a/locale/de_AT/foreman_virt_who_configure.po b/locale/de_AT/foreman_virt_who_configure.po new file mode 100644 index 00000000..5035f8ce --- /dev/null +++ b/locale/de_AT/foreman_virt_who_configure.po @@ -0,0 +1,718 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Language-Team: German (Austria) (https://app.transifex.com/foreman/teams/114/d" +"e_AT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "Owner" +msgstr "" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Success" +msgstr "" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/de_DE/foreman_virt_who_configure.po b/locale/de_DE/foreman_virt_who_configure.po new file mode 100644 index 00000000..41ce6b38 --- /dev/null +++ b/locale/de_DE/foreman_virt_who_configure.po @@ -0,0 +1,724 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Kai Alexander Fischer , 2019 +# Arledrian , 2022 +# Denis Müller , 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Last-Translator: Denis Müller , 2022\n" +"Language-Team: German (Germany) (https://app.transifex.com/foreman/teams/114/d" +"e_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "Details" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "Hlfe" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "Übersicht" + +msgid "Owner" +msgstr "" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "Bericht" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "Status" + +msgid "Success" +msgstr "Erfolgreich" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/el/foreman_virt_who_configure.po b/locale/el/foreman_virt_who_configure.po new file mode 100644 index 00000000..271b0711 --- /dev/null +++ b/locale/el/foreman_virt_who_configure.po @@ -0,0 +1,721 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Efstathios Iosifidis , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Last-Translator: Efstathios Iosifidis , 2021\n" +"Language-Team: Greek (https://app.transifex.com/foreman/teams/114/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "Ενέργειες" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "Σύνδεση" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "Δημιουργία" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "Διαγραφή" + +msgid "Delete Activation Key" +msgstr "Διαγραφή κλειδιού ενεργοποίησης" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "Διαγραφή προϊόντος" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "Καταστροφή" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "Λεπτομέρειες" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "Απενεργοποίηση" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "Επεξεργασία" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "Ενεργοποίηση" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "Εξαγωγή" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "Φιλτράρισμα" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "Γενικές πληροφορίες" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "Βοήθεια" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "Αγνόηση διαμεσολαβητή" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "Εισαγωγή" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "Εισαγωγή κλάσεων Puppet" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "Περιεχόμενο ευρετηρίου" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "Δεν υπάρχει ακόμα αναφορά" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "ΟΚ" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "Επισκόπηση" + +msgid "Owner" +msgstr "Ιδιοκτήτης" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "Δημοσίευση" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "Αφαίρεση περιεχομένου" + +msgid "Remove Version" +msgstr "Αφαίρεση έκδοσης" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "Αναφορά" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "Εκκίνηση πλάνου συγχρονισμού:" + +msgid "Schedule" +msgstr "Πρόγραμμα" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "Κατάσταση" + +msgid "Success" +msgstr "Επιτυχία" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "Συγχρονισμός" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "Άγνωστο" + +msgid "Unknown configuration status" +msgstr "Άγνωστη κατάσταση ρυθμίσεων" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "Απεριόριστο" + +msgid "Update" +msgstr "Ενημέρωση" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "Μεταφόρτωση σε" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/en/foreman_virt_who_configure.po b/locale/en/foreman_virt_who_configure.po index 9de38a93..3e0857c5 100644 --- a/locale/en/foreman_virt_who_configure.po +++ b/locale/en/foreman_virt_who_configure.po @@ -147,9 +147,6 @@ msgstr "" msgid "Create Import History" msgstr "" -msgid "Create Package Group" -msgstr "" - msgid "Create Syncable Export History" msgstr "" @@ -165,9 +162,6 @@ msgstr "" msgid "Delete Lifecycle Environment" msgstr "" -msgid "Delete Package Group" -msgstr "" - msgid "Delete Product" msgstr "" @@ -330,6 +324,18 @@ msgstr "" msgid "Hypervisor ID" msgstr "" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "" @@ -405,6 +411,9 @@ msgstr "" msgid "Instance update" msgstr "" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "" @@ -423,6 +432,9 @@ msgstr "" msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "" +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "" @@ -525,6 +537,9 @@ msgstr "" msgid "Reindex subscriptions" msgstr "" +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "" diff --git a/locale/en_GB/foreman_virt_who_configure.po b/locale/en_GB/foreman_virt_who_configure.po index 61dd0583..e865c691 100644 --- a/locale/en_GB/foreman_virt_who_configure.po +++ b/locale/en_GB/foreman_virt_who_configure.po @@ -153,9 +153,6 @@ msgstr "" msgid "Create Import History" msgstr "" -msgid "Create Package Group" -msgstr "" - msgid "Create Syncable Export History" msgstr "" @@ -171,9 +168,6 @@ msgstr "" msgid "Delete Lifecycle Environment" msgstr "" -msgid "Delete Package Group" -msgstr "" - msgid "Delete Product" msgstr "" @@ -336,6 +330,18 @@ msgstr "" msgid "Hypervisor ID" msgstr "" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "" @@ -411,6 +417,9 @@ msgstr "" msgid "Instance update" msgstr "" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "" @@ -429,6 +438,9 @@ msgstr "" msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "" +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "" @@ -531,6 +543,9 @@ msgstr "" msgid "Reindex subscriptions" msgstr "" +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "" diff --git a/locale/en_US/foreman_virt_who_configure.po b/locale/en_US/foreman_virt_who_configure.po new file mode 100644 index 00000000..c4a6bc80 --- /dev/null +++ b/locale/en_US/foreman_virt_who_configure.po @@ -0,0 +1,718 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Language-Team: English (United States) (https://app.transifex.com/foreman/team" +"s/114/en_US/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_US\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "Owner" +msgstr "" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Success" +msgstr "" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/es/foreman_virt_who_configure.po b/locale/es/foreman_virt_who_configure.po index 90cc06af..a288af9c 100644 --- a/locale/es/foreman_virt_who_configure.po +++ b/locale/es/foreman_virt_who_configure.po @@ -157,9 +157,6 @@ msgstr "Crear historial de exportación" msgid "Create Import History" msgstr "Crear historial de importaciones" -msgid "Create Package Group" -msgstr "Crear grupo de paquete" - msgid "Create Syncable Export History" msgstr "" @@ -175,9 +172,6 @@ msgstr "Borrar llave de activación" msgid "Delete Lifecycle Environment" msgstr "Borrar entorno del ciclo de vida" -msgid "Delete Package Group" -msgstr "Eliminar grupo de paquete" - msgid "Delete Product" msgstr "Borrar producto" @@ -340,6 +334,18 @@ msgstr "¿Con qué frecuencia hay que revisar los hipervisores conectados para v msgid "Hypervisor ID" msgstr "ID del hipervisor" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "Lista negra del hipervisor, aplicable únicamente cuando el modo de filtrado está configurado en 2. Se admiten comodines y expresiones regulares, los registros múltiples deben separarse con coma." @@ -415,6 +421,9 @@ msgstr "Instalación de erratas aplicables" msgid "Instance update" msgstr "Actualización de instancia" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "No se proporcionó el intervalo" @@ -433,6 +442,9 @@ msgstr "Lista de configuraciones virt-who por organización" msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "Nombre de host o dirección IP totalmente calificados de Microsoft Hyper-V." +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "Nombre de esta configuración, por ejemplo: nombre del hipervisor" @@ -535,6 +547,9 @@ msgstr "" msgid "Reindex subscriptions" msgstr "Reindexar suscripciones" +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "Borrar contenido" diff --git a/locale/et_EE/foreman_virt_who_configure.po b/locale/et_EE/foreman_virt_who_configure.po new file mode 100644 index 00000000..3b1dc235 --- /dev/null +++ b/locale/et_EE/foreman_virt_who_configure.po @@ -0,0 +1,718 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Language-Team: Estonian (Estonia) (https://app.transifex.com/foreman/teams/114" +"/et_EE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: et_EE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "Owner" +msgstr "" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Success" +msgstr "" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/foreman_virt_who_configure.pot b/locale/foreman_virt_who_configure.pot index d8136890..45fc174d 100644 --- a/locale/foreman_virt_who_configure.pot +++ b/locale/foreman_virt_who_configure.pot @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: foreman_virt_who_configure 1.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-15 19:51+0100\n" -"PO-Revision-Date: 2023-02-15 19:51+0100\n" +"POT-Creation-Date: 2023-05-16 21:30+0000\n" +"PO-Revision-Date: 2023-05-16 21:30+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" @@ -739,11 +739,36 @@ msgstr "" msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "" +#: +#: ../app/views/foreman_virt_who_configure/configs/steps/_general_information_form.erb:2 +msgid "Name" +msgstr "" + #: #: ../app/views/foreman_virt_who_configure/configs/steps/_general_information_form.erb:7 msgid "Owner" msgstr "" +#: +#: ../app/views/foreman_virt_who_configure/configs/steps/_general_information_form.erb:10 +msgid "Hypervisor Type" +msgstr "" + +#: +#: ../app/views/foreman_virt_who_configure/configs/steps/_general_information_form.erb:11 +msgid "Hypervisor Server" +msgstr "" + +#: +#: ../app/views/foreman_virt_who_configure/configs/steps/_general_information_form.erb:12 +msgid "Hypervisor Username" +msgstr "" + +#: +#: ../app/views/foreman_virt_who_configure/configs/steps/_general_information_form.erb:13 +msgid "Hypervisor Password" +msgstr "" + #: #: ../app/views/foreman_virt_who_configure/configs/steps/_general_information_form.erb:13 msgid "Account password by which virt-who is to connect to the hypervisor instance." @@ -758,6 +783,10 @@ msgid "" "ill be deployed." msgstr "" +#: ../app/views/foreman_virt_who_configure/configs/steps/_schedule_form.erb:2 +msgid "Interval" +msgstr "" + #: ../app/views/foreman_virt_who_configure/configs/welcome.html.erb:6 msgid "Configs" msgstr "" @@ -837,286 +866,282 @@ msgid "Create Import History" msgstr "" #: action_names.rb:14 -msgid "Create Package Group" +msgid "Create Syncable Export History" msgstr "" #: action_names.rb:15 -msgid "Create Syncable Export History" +msgid "Create" msgstr "" #: action_names.rb:16 -msgid "Create" +msgid "Delete Activation Key" msgstr "" #: action_names.rb:17 -msgid "Delete Activation Key" +msgid "Delete Lifecycle Environment" msgstr "" #: action_names.rb:18 -msgid "Delete Lifecycle Environment" +msgid "Delete Product" msgstr "" #: action_names.rb:19 -msgid "Delete Package Group" +msgid "Delete" msgstr "" #: action_names.rb:20 -msgid "Delete Product" +msgid "Destroy Alternate Content Source" msgstr "" #: action_names.rb:21 -msgid "Delete" +msgid "Destroy Content Host" msgstr "" #: action_names.rb:22 -msgid "Destroy Alternate Content Source" +msgid "Destroy" msgstr "" #: action_names.rb:23 -msgid "Destroy Content Host" +msgid "Disable" msgstr "" #: action_names.rb:24 -msgid "Destroy" +msgid "Discover" msgstr "" #: action_names.rb:25 -msgid "Disable" +msgid "Enable" msgstr "" #: action_names.rb:26 -msgid "Discover" +msgid "Errata mail" msgstr "" #: action_names.rb:27 -msgid "Enable" +msgid "Export Library" msgstr "" #: action_names.rb:28 -msgid "Errata mail" +msgid "Export Repository" msgstr "" #: action_names.rb:29 -msgid "Export Library" +msgid "Export" msgstr "" #: action_names.rb:30 -msgid "Export Repository" +msgid "Fetch pxe files" msgstr "" #: action_names.rb:31 -msgid "Export" +msgid "Filtered index content" msgstr "" #: action_names.rb:32 -msgid "Fetch pxe files" +msgid "Generate host applicability" msgstr "" #: action_names.rb:33 -msgid "Filtered index content" +msgid "Generate repository applicability" msgstr "" #: action_names.rb:34 -msgid "Generate host applicability" +msgid "Hypervisors update" msgstr "" #: action_names.rb:35 -msgid "Generate repository applicability" +msgid "Hypervisors" msgstr "" #: action_names.rb:36 -msgid "Hypervisors update" +msgid "Import Content View Version" msgstr "" #: action_names.rb:37 -msgid "Hypervisors" +msgid "Import Default Content View" msgstr "" #: action_names.rb:38 -msgid "Import Content View Version" +msgid "Import Puppet classes" msgstr "" #: action_names.rb:39 -msgid "Import Default Content View" +msgid "Import Repository" msgstr "" #: action_names.rb:40 -msgid "Import Puppet classes" +msgid "Import facts" msgstr "" #: action_names.rb:41 -msgid "Import Repository" +msgid "Import" msgstr "" #: action_names.rb:42 -msgid "Import facts" +msgid "Incremental Update of Content View Version(s) " msgstr "" #: action_names.rb:43 -msgid "Import" +msgid "Incremental Update" msgstr "" #: action_names.rb:44 -msgid "Incremental Update of Content View Version(s) " +msgid "Index content" msgstr "" #: action_names.rb:45 -msgid "Incremental Update" +msgid "Index errata" msgstr "" #: action_names.rb:46 -msgid "Index content" +msgid "Index module streams" msgstr "" #: action_names.rb:47 -msgid "Index errata" +msgid "Index package groups" msgstr "" #: action_names.rb:48 -msgid "Index module streams" +msgid "Install Applicable Errata" msgstr "" #: action_names.rb:49 -msgid "Index package groups" +msgid "Instance update" msgstr "" #: action_names.rb:50 -msgid "Install Applicable Errata" +msgid "Package Profile Update" msgstr "" #: action_names.rb:51 -msgid "Instance update" +msgid "Product Create" msgstr "" #: action_names.rb:52 -msgid "Package Profile Update" +msgid "Promote" msgstr "" #: action_names.rb:53 -msgid "Product Create" +msgid "Promotion to Environment" msgstr "" #: action_names.rb:54 -msgid "Promote" +msgid "Publish Lifecycle Environment Repositories" msgstr "" #: action_names.rb:55 -msgid "Promotion to Environment" +msgid "Publish" msgstr "" #: action_names.rb:56 -msgid "Publish Lifecycle Environment Repositories" +msgid "Refresh Alternate Content Source" msgstr "" #: action_names.rb:57 -msgid "Publish" +msgid "Reindex subscriptions" msgstr "" #: action_names.rb:58 -msgid "Refresh Alternate Content Source" +msgid "Remote action:" msgstr "" #: action_names.rb:59 -msgid "Reindex subscriptions" -msgstr "" - -#: action_names.rb:60 msgid "Remove Content" msgstr "" -#: action_names.rb:61 +#: action_names.rb:60 msgid "Remove Version" msgstr "" -#: action_names.rb:62 +#: action_names.rb:61 msgid "Remove Versions and Associations" msgstr "" -#: action_names.rb:63 +#: action_names.rb:62 msgid "Remove from Environment" msgstr "" -#: action_names.rb:64 +#: action_names.rb:63 msgid "Remove subscriptions" msgstr "" -#: action_names.rb:65 +#: action_names.rb:64 msgid "Report" msgstr "" -#: action_names.rb:66 +#: action_names.rb:65 msgid "Republish Version Repositories" msgstr "" -#: action_names.rb:67 +#: action_names.rb:66 msgid "Run Sync Plan:" msgstr "" -#: action_names.rb:68 +#: action_names.rb:67 msgid "Sync capsule" msgstr "" -#: action_names.rb:69 +#: action_names.rb:68 msgid "Syncable export" msgstr "" -#: action_names.rb:70 +#: action_names.rb:69 msgid "Synchronize smart proxy" msgstr "" -#: action_names.rb:71 +#: action_names.rb:70 msgid "Synchronize" msgstr "" -#: action_names.rb:72 +#: action_names.rb:71 msgid "Update Alternate Content Source" msgstr "" -#: action_names.rb:73 +#: action_names.rb:72 msgid "Update CDN Configuration" msgstr "" -#: action_names.rb:74 +#: action_names.rb:73 msgid "Update Content Overrides" msgstr "" -#: action_names.rb:75 +#: action_names.rb:74 msgid "Update content urls" msgstr "" -#: action_names.rb:76 +#: action_names.rb:75 msgid "Update for host" msgstr "" -#: action_names.rb:77 +#: action_names.rb:76 msgid "Update http proxy details" msgstr "" -#: action_names.rb:78 +#: action_names.rb:77 msgid "Update http proxy" msgstr "" -#: action_names.rb:79 +#: action_names.rb:78 msgid "Update redhat repository" msgstr "" -#: action_names.rb:80 +#: action_names.rb:79 msgid "Update release version for host" msgstr "" -#: action_names.rb:81 +#: action_names.rb:80 msgid "Update" msgstr "" -#: action_names.rb:82 +#: action_names.rb:81 msgid "Updating System Purpose for host" msgstr "" -#: action_names.rb:83 +#: action_names.rb:82 msgid "Upload into" msgstr "" -#: action_names.rb:84 +#: action_names.rb:83 msgid "Verify checksum" msgstr "" diff --git a/locale/fr/foreman_virt_who_configure.po b/locale/fr/foreman_virt_who_configure.po index bb9268a6..6308d802 100644 --- a/locale/fr/foreman_virt_who_configure.po +++ b/locale/fr/foreman_virt_who_configure.po @@ -155,9 +155,6 @@ msgstr "Créer un historique des exportations" msgid "Create Import History" msgstr "Créer un historique des importations" -msgid "Create Package Group" -msgstr "Créer un groupe de packages" - msgid "Create Syncable Export History" msgstr "Créer un historique d'exportation synchronisable" @@ -173,9 +170,6 @@ msgstr "Supprimer la clé d'activation" msgid "Delete Lifecycle Environment" msgstr "Supprimer l'environnement de cycle de vie" -msgid "Delete Package Group" -msgstr "Supprimer le groupe de packages" - msgid "Delete Product" msgstr "Supprimer le produit" @@ -338,6 +332,18 @@ msgstr "À quelle fréquence faut-il vérifier les modifications apportées aux msgid "Hypervisor ID" msgstr "ID hyperviseur" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "Liste noire Hyperviseur, applicable uniquement lorsque le mode de filtrage est défini sur 2. Les caractères génériques et les expressions régulières sont pris en charge, plusieurs enregistrements doivent être séparés par une virgule." @@ -413,6 +419,9 @@ msgstr "Installer des errata applicables" msgid "Instance update" msgstr "Mise à jour de l'instance" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "L'intervalle n'était pas fourni" @@ -431,6 +440,9 @@ msgstr "Liste des configurations virt-who par organisation" msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "Nom d'hôte complet ou adresse IP Microsoft Hyper-V." +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "Nom de cette configuration, par exemple le nom de l'hyperviseur" @@ -533,6 +545,9 @@ msgstr "Réactualisation de la source de contenu alternatif" msgid "Reindex subscriptions" msgstr "Ré-indexer les abonnements" +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "Supprimer le contenu" diff --git a/locale/gl/foreman_virt_who_configure.po b/locale/gl/foreman_virt_who_configure.po index 44c6c3a7..1bb0cf5d 100644 --- a/locale/gl/foreman_virt_who_configure.po +++ b/locale/gl/foreman_virt_who_configure.po @@ -151,9 +151,6 @@ msgstr "" msgid "Create Import History" msgstr "" -msgid "Create Package Group" -msgstr "" - msgid "Create Syncable Export History" msgstr "" @@ -169,9 +166,6 @@ msgstr "" msgid "Delete Lifecycle Environment" msgstr "" -msgid "Delete Package Group" -msgstr "" - msgid "Delete Product" msgstr "" @@ -334,6 +328,18 @@ msgstr "" msgid "Hypervisor ID" msgstr "" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "" @@ -409,6 +415,9 @@ msgstr "" msgid "Instance update" msgstr "" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "" @@ -427,6 +436,9 @@ msgstr "" msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "" +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "" @@ -529,6 +541,9 @@ msgstr "" msgid "Reindex subscriptions" msgstr "" +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "" diff --git a/locale/gu/foreman_virt_who_configure.po b/locale/gu/foreman_virt_who_configure.po new file mode 100644 index 00000000..cd6ff866 --- /dev/null +++ b/locale/gu/foreman_virt_who_configure.po @@ -0,0 +1,721 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# 0868a4d1af5275b3f70b0a6dac4c99a4, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4, 2022\n" +"Language-Team: Gujarati (https://app.transifex.com/foreman/teams/114/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "ક્રિયાઓ" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "કાઢી નાંખો" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "નાશ" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "વિગતો" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "ફેરફાર" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "મદદ" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "આયાત કરો" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "બરાબર" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "ઝાંખી" + +msgid "Owner" +msgstr "માલિક" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "અહેવાલ" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "પરિસ્થિતિ" + +msgid "Success" +msgstr "સફળતા" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "અજ્ઞાત" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "સુધારો" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/he_IL/foreman_virt_who_configure.po b/locale/he_IL/foreman_virt_who_configure.po new file mode 100644 index 00000000..7576eb92 --- /dev/null +++ b/locale/he_IL/foreman_virt_who_configure.po @@ -0,0 +1,723 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# ohadlevy , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Last-Translator: ohadlevy , 2019\n" +"Language-Team: Hebrew (Israel) (https://app.transifex.com/foreman/teams/114/he" +"_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1" +" == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "פרטים נוספים" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "Owner" +msgstr "" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Success" +msgstr "הצלחה" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/hi/foreman_virt_who_configure.po b/locale/hi/foreman_virt_who_configure.po new file mode 100644 index 00000000..d416f85b --- /dev/null +++ b/locale/hi/foreman_virt_who_configure.po @@ -0,0 +1,721 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# 0868a4d1af5275b3f70b0a6dac4c99a4, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4, 2022\n" +"Language-Team: Hindi (https://app.transifex.com/foreman/teams/114/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "मिटाएँ" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "नष्ट करें" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "विवरण" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "संपादन" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "मदद" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "आयात करें" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "ठीक" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "सारांश" + +msgid "Owner" +msgstr "मालिक" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "प्रस्थिति" + +msgid "Success" +msgstr "सफल" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "अज्ञात" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "अद्यतन" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/id/foreman_virt_who_configure.po b/locale/id/foreman_virt_who_configure.po new file mode 100644 index 00000000..1396b8ff --- /dev/null +++ b/locale/id/foreman_virt_who_configure.po @@ -0,0 +1,717 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Language-Team: Indonesian (https://app.transifex.com/foreman/teams/114/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "Owner" +msgstr "" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Success" +msgstr "" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/it/foreman_virt_who_configure.po b/locale/it/foreman_virt_who_configure.po index 56545098..7ed78b85 100644 --- a/locale/it/foreman_virt_who_configure.po +++ b/locale/it/foreman_virt_who_configure.po @@ -155,9 +155,6 @@ msgstr "" msgid "Create Import History" msgstr "" -msgid "Create Package Group" -msgstr "" - msgid "Create Syncable Export History" msgstr "" @@ -173,9 +170,6 @@ msgstr "Cancella chiave di attivazione" msgid "Delete Lifecycle Environment" msgstr "Cancella ambiente ciclo di vita" -msgid "Delete Package Group" -msgstr "" - msgid "Delete Product" msgstr "Cancella prodotto" @@ -338,6 +332,18 @@ msgstr "" msgid "Hypervisor ID" msgstr "" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "" @@ -413,6 +419,9 @@ msgstr "Installa errata applicabile" msgid "Instance update" msgstr "" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "" @@ -431,6 +440,9 @@ msgstr "" msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "" +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "" @@ -533,6 +545,9 @@ msgstr "" msgid "Reindex subscriptions" msgstr "" +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "Rimuovi contenuto" diff --git a/locale/ja/foreman_virt_who_configure.po b/locale/ja/foreman_virt_who_configure.po index 5471a294..44a9609b 100644 --- a/locale/ja/foreman_virt_who_configure.po +++ b/locale/ja/foreman_virt_who_configure.po @@ -154,9 +154,6 @@ msgstr "エクスポート履歴の作成" msgid "Create Import History" msgstr "インポート履歴の作成" -msgid "Create Package Group" -msgstr "パッケージグループの作成" - msgid "Create Syncable Export History" msgstr "同期可能なエクスポート履歴の作成" @@ -172,9 +169,6 @@ msgstr "アクティベーションキーの削除" msgid "Delete Lifecycle Environment" msgstr "ライフサイクル環境の削除" -msgid "Delete Package Group" -msgstr "パッケージグループの削除" - msgid "Delete Product" msgstr "製品の削除" @@ -337,6 +331,18 @@ msgstr "接続済みのハイパーバイザーに変更がないか、どのよ msgid "Hypervisor ID" msgstr "ハイパーバイザー ID" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "フィルタリングモードが 2 に設定されている場合にのみ適用できるハイパーバイザーのブラックリストです。ワイルドカードおよび正規表現がサポートされており、複数のレコードはコンマで区切られる必要があります。" @@ -412,6 +418,9 @@ msgstr "適用可能なエラータのインストール" msgid "Instance update" msgstr "インスタンスの更新" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "間隔は指定されていません" @@ -430,6 +439,9 @@ msgstr "組織別の virt-who 設定の一覧" msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "Microsoft Hyper-V の完全修飾ホスト名または IP アドレス。" +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "この設定の名前。例: ハイパーバイザーの名前" @@ -532,6 +544,9 @@ msgstr "代替コンテンツソースの更新" msgid "Reindex subscriptions" msgstr "サブスクリプションのインデックス再作成" +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "コンテンツの削除" diff --git a/locale/ka/foreman_virt_who_configure.po b/locale/ka/foreman_virt_who_configure.po index 69e00936..01035359 100644 --- a/locale/ka/foreman_virt_who_configure.po +++ b/locale/ka/foreman_virt_who_configure.po @@ -151,9 +151,6 @@ msgstr "გატანის ისტორიის შექმნა" msgid "Create Import History" msgstr "შემოტანის ისტორიის შექმნა" -msgid "Create Package Group" -msgstr "პაკეტების ჯგუფის შექმნა" - msgid "Create Syncable Export History" msgstr "სინქრონიზებადი გატანის ისტორიის შექმნა" @@ -169,9 +166,6 @@ msgstr "აქტივაციის გასაღების წაშლ msgid "Delete Lifecycle Environment" msgstr "ცხოვრების ციკლის გარემოს წაშლა" -msgid "Delete Package Group" -msgstr "პაკეტების ჯგუფის წაშლა" - msgid "Delete Product" msgstr "პროდუქტის წაშლა" @@ -334,6 +328,18 @@ msgstr "რამდენად ხშირად უნდა შეამო msgid "Hypervisor ID" msgstr "ჰაიპერვაიზორის ID" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "ჰიპერვიზორის შავი სია, გამოიყენება მხოლოდ მაშინ, როდესაც ფილტრაციის რეჟიმი დაყენებულია 2-ზე. Wildcards და რეგულარული გამონათქვამები მხარდაჭერილია. ჩანაწერები მძიმით უნდა იყოს გამოყოფილი." @@ -409,6 +415,9 @@ msgstr "განკუთვნილი მორჩენილი პაჩ msgid "Instance update" msgstr "გაშვებული ასლის განახლება" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "ინტერვალი მითითებული არაა" @@ -427,6 +436,9 @@ msgstr "Virt-who-ის კონფიგურაციების სია msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "Microsoft Hyper-V-ის სრული დომენური სახელი ან IP მისამართი." +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "კონფიგურაციის სახელი. მაგ. ჰაიპერვაიზორის სახელი" @@ -529,6 +541,9 @@ msgstr "შემცველობის ალტერნატიული msgid "Reindex subscriptions" msgstr "გამოწერების თავიდან ინდექსირება" +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "შემცველობის წაშლა" diff --git a/locale/kn/foreman_virt_who_configure.po b/locale/kn/foreman_virt_who_configure.po new file mode 100644 index 00000000..59d1ad05 --- /dev/null +++ b/locale/kn/foreman_virt_who_configure.po @@ -0,0 +1,721 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# 0868a4d1af5275b3f70b0a6dac4c99a4, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4, 2022\n" +"Language-Team: Kannada (https://app.transifex.com/foreman/teams/114/kn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "ಅಳಿಸು" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "ನಾಶಪಡಿಸು" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "ವಿವರಗಳು" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "ಸಂಪಾದಿಸು" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "ನೆರವು" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "ಆಮದು ಮಾಡಿಕೊ" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "ಸರಿ" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "ಅವಲೋಕನ" + +msgid "Owner" +msgstr "ಮಾಲಿಕ" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "ಸ್ಥಿತಿ" + +msgid "Success" +msgstr "ಯಶಸ್ವಿಯಾಗಿದೆ" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "ಅಜ್ಞಾತ" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "ಅಪ್‌ಡೇಟ್ ಮಾಡು" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/ko/foreman_virt_who_configure.po b/locale/ko/foreman_virt_who_configure.po index 9c01db7c..d95aca3b 100644 --- a/locale/ko/foreman_virt_who_configure.po +++ b/locale/ko/foreman_virt_who_configure.po @@ -153,9 +153,6 @@ msgstr "" msgid "Create Import History" msgstr "" -msgid "Create Package Group" -msgstr "" - msgid "Create Syncable Export History" msgstr "" @@ -171,9 +168,6 @@ msgstr "활성키 삭제 " msgid "Delete Lifecycle Environment" msgstr "라이프사이클 환경 삭제 " -msgid "Delete Package Group" -msgstr "" - msgid "Delete Product" msgstr "제품 삭제 " @@ -336,6 +330,18 @@ msgstr "" msgid "Hypervisor ID" msgstr "" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "" @@ -411,6 +417,9 @@ msgstr "적용 가능한 에라타 설치 " msgid "Instance update" msgstr "" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "" @@ -429,6 +438,9 @@ msgstr "" msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "" +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "" @@ -531,6 +543,9 @@ msgstr "" msgid "Reindex subscriptions" msgstr "서브스크립션 다시 인덱싱" +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "컨텐츠 삭제 " diff --git a/locale/ml_IN/foreman_virt_who_configure.po b/locale/ml_IN/foreman_virt_who_configure.po new file mode 100644 index 00000000..0dbb3035 --- /dev/null +++ b/locale/ml_IN/foreman_virt_who_configure.po @@ -0,0 +1,718 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Language-Team: Malayalam (India) (https://app.transifex.com/foreman/teams/114/" +"ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "Owner" +msgstr "" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Success" +msgstr "" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/mr/foreman_virt_who_configure.po b/locale/mr/foreman_virt_who_configure.po new file mode 100644 index 00000000..963dbbfb --- /dev/null +++ b/locale/mr/foreman_virt_who_configure.po @@ -0,0 +1,721 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# 0868a4d1af5275b3f70b0a6dac4c99a4, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4, 2022\n" +"Language-Team: Marathi (https://app.transifex.com/foreman/teams/114/mr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mr\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "नष्ट करा" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "नष्ट करा" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "तपशील" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "संपादित करा" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "मदत" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "आयात करा" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "ठीक" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "पुनरावलोकन" + +msgid "Owner" +msgstr "मालक" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "स्थिती" + +msgid "Success" +msgstr "यशस्वी" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "अपरिचीत" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "सुधारणा" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/nl_NL/foreman_virt_who_configure.po b/locale/nl_NL/foreman_virt_who_configure.po index 58c14207..5c4e1dea 100644 --- a/locale/nl_NL/foreman_virt_who_configure.po +++ b/locale/nl_NL/foreman_virt_who_configure.po @@ -156,9 +156,6 @@ msgstr "" msgid "Create Import History" msgstr "" -msgid "Create Package Group" -msgstr "" - msgid "Create Syncable Export History" msgstr "" @@ -174,9 +171,6 @@ msgstr "" msgid "Delete Lifecycle Environment" msgstr "" -msgid "Delete Package Group" -msgstr "" - msgid "Delete Product" msgstr "" @@ -339,6 +333,18 @@ msgstr "" msgid "Hypervisor ID" msgstr "" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "" @@ -414,6 +420,9 @@ msgstr "" msgid "Instance update" msgstr "" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "" @@ -432,6 +441,9 @@ msgstr "" msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "" +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "" @@ -534,6 +546,9 @@ msgstr "" msgid "Reindex subscriptions" msgstr "" +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "" diff --git a/locale/or/foreman_virt_who_configure.po b/locale/or/foreman_virt_who_configure.po new file mode 100644 index 00000000..3d08a9f7 --- /dev/null +++ b/locale/or/foreman_virt_who_configure.po @@ -0,0 +1,721 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# 0868a4d1af5275b3f70b0a6dac4c99a4, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4, 2022\n" +"Language-Team: Odia (https://app.transifex.com/foreman/teams/114/or/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "ଅପସାରଣ କରନ୍ତୁ" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "ନଷ୍ଟ କରନ୍ତୁ" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "ବିବରଣୀ" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "ସମ୍ପାଦନ କରନ୍ତୁ" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "ସହାୟତା" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "ଆମଦାନୀ କରନ୍ତୁ" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "ଠିକ ଅଛି" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "ସମୀକ୍ଷା" + +msgid "Owner" +msgstr "ମାଲିକ" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "ସ୍ଥିତି" + +msgid "Success" +msgstr "ସଫଳ" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "ଅଜଣା" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "ଅଦ୍ୟତନ କରନ୍ତୁ" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/pa/foreman_virt_who_configure.po b/locale/pa/foreman_virt_who_configure.po new file mode 100644 index 00000000..21696f6e --- /dev/null +++ b/locale/pa/foreman_virt_who_configure.po @@ -0,0 +1,722 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# 0868a4d1af5275b3f70b0a6dac4c99a4, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4, 2022\n" +"Language-Team: Panjabi (Punjabi) (https://app.transifex.com/foreman/teams/114/" +"pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "ਹਟਾਓ" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "ਨਸ਼ਟ" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "ਵੇਰਵਾ" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "ਸੋਧ" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "ਮੱਦਦ" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "ਇੰਪੋਰਟ" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "ਠੀਕ" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "ਜਾਣ-ਪਛਾਣ" + +msgid "Owner" +msgstr "ਮਾਲਕ" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "ਹਾਲਤ" + +msgid "Success" +msgstr "ਸਫਲਤਾ" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "ਅਣਜਾਣ" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "ਅੱਪਡੇਟ" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/pl/foreman_virt_who_configure.po b/locale/pl/foreman_virt_who_configure.po index 0278a233..f15372cd 100644 --- a/locale/pl/foreman_virt_who_configure.po +++ b/locale/pl/foreman_virt_who_configure.po @@ -154,9 +154,6 @@ msgstr "" msgid "Create Import History" msgstr "" -msgid "Create Package Group" -msgstr "" - msgid "Create Syncable Export History" msgstr "" @@ -172,9 +169,6 @@ msgstr "" msgid "Delete Lifecycle Environment" msgstr "" -msgid "Delete Package Group" -msgstr "" - msgid "Delete Product" msgstr "" @@ -337,6 +331,18 @@ msgstr "" msgid "Hypervisor ID" msgstr "" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "" @@ -412,6 +418,9 @@ msgstr "" msgid "Instance update" msgstr "" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "" @@ -430,6 +439,9 @@ msgstr "" msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "" +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "" @@ -532,6 +544,9 @@ msgstr "" msgid "Reindex subscriptions" msgstr "" +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "" diff --git a/locale/pl_PL/foreman_virt_who_configure.po b/locale/pl_PL/foreman_virt_who_configure.po new file mode 100644 index 00000000..b4153269 --- /dev/null +++ b/locale/pl_PL/foreman_virt_who_configure.po @@ -0,0 +1,720 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Language-Team: Polish (Poland) (https://app.transifex.com/foreman/teams/114/pl" +"_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12" +" || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n" +"%100>=12 && n%100<=14) ? 2 : 3);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "Owner" +msgstr "" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Success" +msgstr "" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/pt/foreman_virt_who_configure.po b/locale/pt/foreman_virt_who_configure.po new file mode 100644 index 00000000..7279f6d5 --- /dev/null +++ b/locale/pt/foreman_virt_who_configure.po @@ -0,0 +1,722 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Bryan Kearney , 2017 +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Last-Translator: Bryan Kearney , 2017\n" +"Language-Team: Portuguese (https://app.transifex.com/foreman/teams/114/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 100000" +"0 == 0 ? 1 : 2;\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "Owner" +msgstr "" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Success" +msgstr "Sucesso" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/pt_BR/foreman_virt_who_configure.po b/locale/pt_BR/foreman_virt_who_configure.po index 2e90833d..c10711ea 100644 --- a/locale/pt_BR/foreman_virt_who_configure.po +++ b/locale/pt_BR/foreman_virt_who_configure.po @@ -158,9 +158,6 @@ msgstr "Criar histórico de exportação" msgid "Create Import History" msgstr "Criar histórico de importação" -msgid "Create Package Group" -msgstr "Criar grupo de pacotes" - msgid "Create Syncable Export History" msgstr "" @@ -176,9 +173,6 @@ msgstr "Remover chave de ativação" msgid "Delete Lifecycle Environment" msgstr "Remover um Ambiente de Ciclo de Vida" -msgid "Delete Package Group" -msgstr "Excluir grupo de pacotes" - msgid "Delete Product" msgstr "Remover Produto" @@ -341,6 +335,18 @@ msgstr "Com que frequência alterações nos hipervisores conectados devem ser v msgid "Hypervisor ID" msgstr "ID do hipervisor" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "Lista de bloqueios do hipervisor, aplicável somente quando o modo de filtragem está definido como 2. Curingas e expressões regulares são compatíveis, registros devem ser separados por vírgulas." @@ -416,6 +422,9 @@ msgstr "Instalar Errata Aplicável" msgid "Instance update" msgstr "Atualização de instância" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "Intervalo não fornecido" @@ -434,6 +443,9 @@ msgstr "Lista de configurações do virt-who por organização" msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "Nome de host ou endereço IP completamente qualificado do Microsoft Hyper-V." +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "Nome dessa configuração. Por exemplo, o nome do hipervisor" @@ -536,6 +548,9 @@ msgstr "" msgid "Reindex subscriptions" msgstr "Reindexar subscrições " +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "Remover Conteúdo" diff --git a/locale/ro/foreman_virt_who_configure.po b/locale/ro/foreman_virt_who_configure.po new file mode 100644 index 00000000..7ea2672f --- /dev/null +++ b/locale/ro/foreman_virt_who_configure.po @@ -0,0 +1,718 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Language-Team: Romanian (https://app.transifex.com/foreman/teams/114/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2" +":1));\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "Owner" +msgstr "" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Success" +msgstr "" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/ro_RO/foreman_virt_who_configure.po b/locale/ro_RO/foreman_virt_who_configure.po new file mode 100644 index 00000000..bd295d6b --- /dev/null +++ b/locale/ro_RO/foreman_virt_who_configure.po @@ -0,0 +1,719 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Language-Team: Romanian (Romania) (https://app.transifex.com/foreman/teams/114" +"/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2" +":1));\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "Owner" +msgstr "" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Success" +msgstr "" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/ru/foreman_virt_who_configure.po b/locale/ru/foreman_virt_who_configure.po index 2b677474..32565fdc 100644 --- a/locale/ru/foreman_virt_who_configure.po +++ b/locale/ru/foreman_virt_who_configure.po @@ -157,9 +157,6 @@ msgstr "" msgid "Create Import History" msgstr "" -msgid "Create Package Group" -msgstr "" - msgid "Create Syncable Export History" msgstr "" @@ -175,9 +172,6 @@ msgstr "Удалить ключ активации" msgid "Delete Lifecycle Environment" msgstr "Удалить окружение" -msgid "Delete Package Group" -msgstr "" - msgid "Delete Product" msgstr "Удалить продукт" @@ -340,6 +334,18 @@ msgstr "" msgid "Hypervisor ID" msgstr "" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "" @@ -415,6 +421,9 @@ msgstr "Установить исправления" msgid "Instance update" msgstr "" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "" @@ -433,6 +442,9 @@ msgstr "" msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "" +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "" @@ -535,6 +547,9 @@ msgstr "" msgid "Reindex subscriptions" msgstr "Повторно индексировать подписки" +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "Удалить содержимое" diff --git a/locale/sl/foreman_virt_who_configure.po b/locale/sl/foreman_virt_who_configure.po new file mode 100644 index 00000000..964d64ed --- /dev/null +++ b/locale/sl/foreman_virt_who_configure.po @@ -0,0 +1,722 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Barbara Krasovec , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Last-Translator: Barbara Krasovec , 2019\n" +"Language-Team: Slovenian (https://app.transifex.com/foreman/teams/114/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%" +"100==4 ? 2 : 3);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "Podrobnosti" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "Onemogoči" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "Omogoči" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "Owner" +msgstr "" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "Urnik" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Success" +msgstr "" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "Neomejeno" + +msgid "Update" +msgstr "" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/sv_SE/foreman_virt_who_configure.po b/locale/sv_SE/foreman_virt_who_configure.po index 4e6b90a7..55aa82fa 100644 --- a/locale/sv_SE/foreman_virt_who_configure.po +++ b/locale/sv_SE/foreman_virt_who_configure.po @@ -153,9 +153,6 @@ msgstr "" msgid "Create Import History" msgstr "" -msgid "Create Package Group" -msgstr "" - msgid "Create Syncable Export History" msgstr "" @@ -171,9 +168,6 @@ msgstr "" msgid "Delete Lifecycle Environment" msgstr "" -msgid "Delete Package Group" -msgstr "" - msgid "Delete Product" msgstr "" @@ -336,6 +330,18 @@ msgstr "" msgid "Hypervisor ID" msgstr "" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "" @@ -411,6 +417,9 @@ msgstr "" msgid "Instance update" msgstr "" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "" @@ -429,6 +438,9 @@ msgstr "" msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "" +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "" @@ -531,6 +543,9 @@ msgstr "" msgid "Reindex subscriptions" msgstr "" +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "" diff --git a/locale/ta/foreman_virt_who_configure.po b/locale/ta/foreman_virt_who_configure.po new file mode 100644 index 00000000..3fb66411 --- /dev/null +++ b/locale/ta/foreman_virt_who_configure.po @@ -0,0 +1,721 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Bryan Kearney , 2017 +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Last-Translator: Bryan Kearney , 2017\n" +"Language-Team: Tamil (https://app.transifex.com/foreman/teams/114/ta/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ta\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "உருவாக்கு" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "நீக்கு" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "சரி" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "Owner" +msgstr "" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "வெளியிடு" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "நிலை" + +msgid "Success" +msgstr "வெற்றி" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "தெரியாத" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "புதுப்பி" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/ta_IN/foreman_virt_who_configure.po b/locale/ta_IN/foreman_virt_who_configure.po new file mode 100644 index 00000000..dd594735 --- /dev/null +++ b/locale/ta_IN/foreman_virt_who_configure.po @@ -0,0 +1,722 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# 0868a4d1af5275b3f70b0a6dac4c99a4, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4, 2022\n" +"Language-Team: Tamil (India) (https://app.transifex.com/foreman/teams/114/ta_I" +"N/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ta_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "நீக்கு" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "அழித்தல்" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "விவரங்கள்" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "திருத்து" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "உதவி" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "இறக்குமதி" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "சரி" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "மேற்பார்வை" + +msgid "Owner" +msgstr "உரிமையாளர்" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "நிலை" + +msgid "Success" +msgstr "வெற்றி" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "தெரியாத" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "புதுப்பி" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/te/foreman_virt_who_configure.po b/locale/te/foreman_virt_who_configure.po new file mode 100644 index 00000000..52bebf25 --- /dev/null +++ b/locale/te/foreman_virt_who_configure.po @@ -0,0 +1,721 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# 0868a4d1af5275b3f70b0a6dac4c99a4, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4, 2022\n" +"Language-Team: Telugu (https://app.transifex.com/foreman/teams/114/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "తొలగించు" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "నాశనంచేయి" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "వివరాలు" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "సరికూర్చు" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "సహాయము" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "దిగుమతిచేయి" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "సరే" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "పూర్తి సమాచారం" + +msgid "Owner" +msgstr "యజమాని" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "స్థితి" + +msgid "Success" +msgstr "సఫలం" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "తెలియని" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "నవీకరణ" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/tr/foreman_virt_who_configure.po b/locale/tr/foreman_virt_who_configure.po new file mode 100644 index 00000000..75fbfdf8 --- /dev/null +++ b/locale/tr/foreman_virt_who_configure.po @@ -0,0 +1,721 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Literally No One , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Last-Translator: Literally No One , 2019\n" +"Language-Team: Turkish (https://app.transifex.com/foreman/teams/114/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "Detaylar" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "Owner" +msgstr "" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Success" +msgstr "Başarılı" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/vi/foreman_virt_who_configure.po b/locale/vi/foreman_virt_who_configure.po new file mode 100644 index 00000000..b1c67b69 --- /dev/null +++ b/locale/vi/foreman_virt_who_configure.po @@ -0,0 +1,717 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Language-Team: Vietnamese (https://app.transifex.com/foreman/teams/114/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "Owner" +msgstr "" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Success" +msgstr "" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/vi_VN/foreman_virt_who_configure.po b/locale/vi_VN/foreman_virt_who_configure.po new file mode 100644 index 00000000..c987ffa0 --- /dev/null +++ b/locale/vi_VN/foreman_virt_who_configure.po @@ -0,0 +1,718 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Language-Team: Vietnamese (Viet Nam) (https://app.transifex.com/foreman/teams/" +"114/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "Owner" +msgstr "" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Success" +msgstr "" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/zh/foreman_virt_who_configure.po b/locale/zh/foreman_virt_who_configure.po new file mode 100644 index 00000000..2c8b42da --- /dev/null +++ b/locale/zh/foreman_virt_who_configure.po @@ -0,0 +1,717 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the foreman_virt_who_configure package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: foreman_virt_who_configure 1.0.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2017-05-03 11:59+0000\n" +"Language-Team: Chinese (https://app.transifex.com/foreman/teams/114/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "1. Copy this configuration script to a safe directory." +msgstr "" + +msgid "2. Make the script executable and run it." +msgstr "" + +msgid "3. Delete the script." +msgstr "" + +msgid "A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "A plugin to make virt-who configuration easy" +msgstr "" + +msgid "Abstract" +msgstr "" + +msgid "Abstract async task" +msgstr "" + +msgid "Account name by which virt-who is to connect to Nutanix AHV." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor, in the format domain_name\\account_name. Note that only a single backslash separates the values for domain_name and account_name. If you are using a domain account, and the global configuration file /etc/virt-who.conf, then two backslashes are required. For further details, see Red Hat Knowledgebase solution How to use a windows domain account with virt-who for more information." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. By default this is Administrator. To use an alternate account, create a user account and assign that account to the following groups (Windows 2012 Server): Hyper-V Administrators and Remote Management Users." +msgstr "" + +msgid "Account name by which virt-who is to connect to the hypervisor. Virt-who does not support password based authentication, you must manually setup SSH key, see Red Hat Knowledgebase solution How to configure virt-who for a KVM host for more information." +msgstr "" + +msgid "Account password by which virt-who is to connect to the hypervisor instance." +msgstr "" + +msgid "Action with sub plans" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Agent action" +msgstr "" + +msgid "Applicable only for esx provider type. Hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Applicable only for esx provider type. Only hosts which parent (usually ComputeResource) name is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Attach subscriptions" +msgstr "" + +msgid "Auto attach subscriptions" +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Bulk generate applicability for hosts" +msgstr "" + +msgid "Combined Profile Update" +msgstr "" + +msgid "Configs" +msgstr "" + +msgid "Configuration Status" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details" +msgstr "" + +msgid "Configuration file containing details about how to connect to the cluster and authentication details." +msgstr "" + +msgid "Configuration interval in minutes" +msgstr "" + +msgid "Configuration name" +msgstr "" + +msgid "Configuration numeric identifier" +msgstr "" + +msgid "Configuration script: " +msgstr "" + +msgid "Config|Interval" +msgstr "" + +msgid "Config|Last Report" +msgstr "" + +msgid "Config|Name" +msgstr "" + +msgid "Connection" +msgstr "" + +msgid "Container-native virtualization’s fully qualified host name or IP address. In order to connect to the cluster it is required to provide path to kubeconfig which contains connection details and authentication token." +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +msgid "Copy version units to library" +msgstr "" + +msgid "Count" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Create Alternate Content Source" +msgstr "" + +msgid "Create Config" +msgstr "" + +msgid "Create Export History" +msgstr "" + +msgid "Create Import History" +msgstr "" + +msgid "Create Syncable Export History" +msgstr "" + +msgid "Create a virt-who configuration" +msgstr "" + +msgid "Delete" +msgstr "" + +msgid "Delete Activation Key" +msgstr "" + +msgid "Delete Lifecycle Environment" +msgstr "" + +msgid "Delete Product" +msgstr "" + +msgid "Delete a virt-who configuration" +msgstr "" + +msgid "Delete virt-who configuration %s?" +msgstr "" + +msgid "Deploy" +msgstr "" + +msgid "Destroy" +msgstr "" + +msgid "Destroy Alternate Content Source" +msgstr "" + +msgid "Destroy Content Host" +msgstr "" + +msgid "Details" +msgstr "" + +msgid "Different debug value can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Disable" +msgstr "" + +msgid "Discover" +msgstr "" + +msgid "Download the script" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Virt-who Config" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Enable AHV debug" +msgstr "" + +msgid "Enable debugging output" +msgstr "" + +msgid "Enable debugging output?" +msgstr "" + +msgid "Errata mail" +msgstr "" + +msgid "Every 12 hours" +msgstr "" + +msgid "Every 2 days" +msgstr "" + +msgid "Every 2 hours" +msgstr "" + +msgid "Every 24 hours" +msgstr "" + +msgid "Every 3 days" +msgstr "" + +msgid "Every 4 hours" +msgstr "" + +msgid "Every 8 hours" +msgstr "" + +msgid "Every hour" +msgstr "" + +msgid "Exclude Hosts" +msgstr "" + +msgid "Exclude host parents" +msgstr "" + +msgid "Exclude hosts" +msgstr "" + +msgid "Exclude hosts which cluster ID is specified in comma-separated list in this option will NOT be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Export" +msgstr "" + +msgid "Export Library" +msgstr "" + +msgid "Export Repository" +msgstr "" + +msgid "Fetch pxe files" +msgstr "" + +msgid "Filter Hosts" +msgstr "" + +msgid "Filter host parents" +msgstr "" + +msgid "Filter hosts" +msgstr "" + +msgid "Filtered index content" +msgstr "" + +msgid "Filtering" +msgstr "" + +msgid "Foreman server FQDN" +msgstr "" + +msgid "Foreman server’s fully-qualified host name, for example: foreman.example.com" +msgstr "" + +msgid "Fully qualified host name or IP address of the hypervisor" +msgstr "" + +msgid "General information" +msgstr "" + +msgid "Generate host applicability" +msgstr "" + +msgid "Generate repository applicability" +msgstr "" + +msgid "HTTP Proxy" +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers." +msgstr "" + +msgid "HTTP proxy that should be used for communication between the server on which virt-who is running and the hypervisors and virtualization managers. Leave this blank if no proxy is used." +msgstr "" + +msgid "Hammer command: " +msgstr "" + +msgid "Help" +msgstr "" + +msgid "Hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will NOT be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "How often to check connected hypervisors for changes? Also affects how often a mapping is reported. The recommended value for most environments is every two hours. Different interval can't be set per hypervisor, therefore it will affect all other deployed configurations on the host on which this configuration will be deployed." +msgstr "" + +msgid "Hypervisor ID" +msgstr "" + +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + +msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means whitelist, %{blacklist} means blacklist" +msgstr "" + +msgid "Hypervisor password, required for all hypervisor types except for libvirt/kubevirt." +msgstr "" + +msgid "Hypervisor type" +msgstr "" + +msgid "Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcards and regular expressions are supported, multiple records must be separated by comma." +msgstr "" + +msgid "Hypervisors" +msgstr "" + +msgid "Hypervisors update" +msgstr "" + +msgid "If you run a hybrid environment, with virtual machines running Red Hat Enterprise Linux and other operating systems, you may want to limit the scope of virt-who’s access to hosts. For example, if some hypervisors host only Microsoft Windows Server instances, there is no benefit in having those hypervisors reported by the virt-who agent." +msgstr "" + +msgid "Ignore Proxy" +msgstr "" + +msgid "Ignore proxy" +msgstr "" + +msgid "Ignore proxy. A comma-separated list of hostnames or domains or ip addresses to ignore proxy settings for. Optionally this may be set to * to bypass proxy settings for all hostnames domains or ip addresses." +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Import Content View Version" +msgstr "" + +msgid "Import Default Content View" +msgstr "" + +msgid "Import Puppet classes" +msgstr "" + +msgid "Import Repository" +msgstr "" + +msgid "Import facts" +msgstr "" + +msgid "Incremental Update" +msgstr "" + +msgid "Incremental Update of Content View Version(s) " +msgstr "" + +msgid "Index content" +msgstr "" + +msgid "Index errata" +msgstr "" + +msgid "Index module streams" +msgstr "" + +msgid "Index package groups" +msgstr "" + +msgid "Install Applicable Errata" +msgstr "" + +msgid "Instance update" +msgstr "" + +msgid "Interval" +msgstr "" + +msgid "Interval was not provided" +msgstr "" + +msgid "Latest Configurations Without Change" +msgstr "" + +msgid "Libvirt server’s fully qualified host name or IP address. You can also specify preferred schema, for example: qemu+ssh://libvirt.example.com/system. If you use SSH, make sure you setup root's SSH key on target host for a user specified at hypervisor username field" +msgstr "" + +msgid "List of virt-who configurations" +msgstr "" + +msgid "List of virt-who configurations per organization" +msgstr "" + +msgid "Microsoft Hyper-V fully qualified host name or IP address." +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Name of this configuration, e.g. the name of the hypervisor" +msgstr "" + +msgid "New Config" +msgstr "" + +msgid "New Virt-who Config" +msgstr "" + +msgid "Newer version of virt-who is required, minimum version is %s" +msgstr "" + +msgid "No Change" +msgstr "" + +msgid "No Report Yet" +msgstr "" + +msgid "No Reports" +msgstr "" + +msgid "No change" +msgstr "" + +msgid "No configuration found" +msgstr "" + +msgid "Nutanix AHV’s IP address." +msgstr "" + +msgid "OK" +msgstr "" + +msgid "On the target virt-who host:" +msgstr "" + +msgid "On this page you can define virt-who configurations for your hypervisors." +msgstr "" + +msgid "One virt-who configuration represents one config file in /etc/virt-who.d directory and maps to single hypervisor, organization and lifecycle environment." +msgstr "" + +msgid "Only hosts which cluster ID is specified in comma-separated list in this option will be reported. PowerCLI command to find the domain names in VMware Get-Cluster “ClusterName” | Select ID. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Only hosts which uuid (or hostname or hwuuid, based on hypervisor_id) is specified in comma-separated list in this option will be reported. Wildcards and regular expressions are supported, multiple records must be separated by comma. Put the value into the double-quotes if it contains special characters like comma. All new line characters will be removed in resulting configuration file, white spaces are removed from beginning and end." +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled" +msgstr "" + +msgid "Option Enable debugging output is required to enable AHV internal debug. It provides extra AHV debug information when both options are enabled " +msgstr "" + +msgid "Organization of the virt-who configuration" +msgstr "" + +msgid "Overview" +msgstr "" + +msgid "Owner" +msgstr "" + +msgid "Owner was not provided" +msgstr "" + +msgid "Package Profile Update" +msgstr "" + +msgid "Path to kubeconfig file" +msgstr "" + +msgid "Prism Central" +msgstr "" + +msgid "Prism Element" +msgstr "" + +msgid "Prism Flavor" +msgstr "" + +msgid "Product Create" +msgstr "" + +msgid "Promote" +msgstr "" + +msgid "Promotion to Environment" +msgstr "" + +msgid "Publish" +msgstr "" + +msgid "Publish Lifecycle Environment Repositories" +msgstr "" + +msgid "Refresh Alternate Content Source" +msgstr "" + +msgid "Reindex subscriptions" +msgstr "" + +msgid "Remote action:" +msgstr "" + +msgid "Remove Content" +msgstr "" + +msgid "Remove Version" +msgstr "" + +msgid "Remove Versions and Associations" +msgstr "" + +msgid "Remove from Environment" +msgstr "" + +msgid "Remove subscriptions" +msgstr "" + +msgid "Renders a deploy script for the specified virt-who configuration" +msgstr "" + +msgid "Report" +msgstr "" + +msgid "Republish Version Repositories" +msgstr "" + +msgid "Run Sync Plan:" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Select the Prism flavor you are connecting to" +msgstr "" + +msgid "Show a virt-who configuration" +msgstr "" + +msgid "Specifies how the hypervisor will be identified." +msgstr "" + +msgid "" +"Specifies that hypervisors will be identified by their hostname, uuid or hwuuid.\n" +" Note that some virtualization backends don't have all of them implemented.\n" +" Default is hostname, which provides more meaningful hypervisor\n" +" names, but can cause duplicated hypervisor registrations if the host is renamed. To avoid that, you can use uuid instead. hwuuid is applicable to esx only.\n" +" This property is meant to be set up before the initial run of virt-who. Changing it later will result in duplicated entries in the subscription manager." +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Success" +msgstr "" + +msgid "Sync capsule" +msgstr "" + +msgid "Syncable export" +msgstr "" + +msgid "Synchronize" +msgstr "" + +msgid "Synchronize smart proxy" +msgstr "" + +msgid "The configuration was not deployed yet or the virt-who was unable to report the status" +msgstr "" + +msgid "The virt-who report arrived within the interval" +msgstr "" + +msgid "The virt-who report has not arrived within the interval, which indicates there was no change on hypervisor" +msgstr "" + +msgid "To define a new configuration, click the New Config button and fill in the form. After you provide all required information a virt-who configuration script will be generated. You could either install it manually by copying the script or deploy it on a selected target host through Remote Execution." +msgstr "" + +msgid "Total Configurations" +msgstr "" + +msgid "Unable to create sysconfig file" +msgstr "" + +msgid "Unable to create virt-who config file" +msgstr "" + +msgid "Unable to enable virt-who service using systemctl" +msgstr "" + +msgid "Unable to install virt-who package, make sure the host is properly subscribed and has access to katello-host-tools repository" +msgstr "" + +msgid "Unable to start virt-who service, please see virt-who logs for more details" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Unknown configuration status" +msgstr "" + +msgid "Unknown configuration status, caused by unexpected conditions" +msgstr "" + +msgid "Unlimited" +msgstr "" + +msgid "Update" +msgstr "" + +msgid "Update Alternate Content Source" +msgstr "" + +msgid "Update CDN Configuration" +msgstr "" + +msgid "Update Content Overrides" +msgstr "" + +msgid "Update a virt-who configuration" +msgstr "" + +msgid "Update content urls" +msgstr "" + +msgid "Update for host" +msgstr "" + +msgid "Update http proxy" +msgstr "" + +msgid "Update http proxy details" +msgstr "" + +msgid "Update redhat repository" +msgstr "" + +msgid "Update release version for host" +msgstr "" + +msgid "Updating System Purpose for host" +msgstr "" + +msgid "Upload into" +msgstr "" + +msgid "Use either hammer command or the script below to deploy this configuration. Both require root privileges. Run one of them on the target host which has access to katello-host-tools repository and will run virt-who reporting, preferably Foreman host:" +msgstr "" + +msgid "VMware vCenter server’s fully qualified host name or IP address." +msgstr "" + +msgid "Verify checksum" +msgstr "" + +msgid "Virt-who Configs Status" +msgstr "" + +msgid "Virt-who Configuration %s" +msgstr "" + +msgid "Virt-who Configurations" +msgstr "" + +msgid "Virt-who Configurations Status" +msgstr "" + +msgid "Virt-who configurations" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "every %s hours" +msgstr "" diff --git a/locale/zh_CN/foreman_virt_who_configure.po b/locale/zh_CN/foreman_virt_who_configure.po index 3707b349..1320251e 100644 --- a/locale/zh_CN/foreman_virt_who_configure.po +++ b/locale/zh_CN/foreman_virt_who_configure.po @@ -155,9 +155,6 @@ msgstr "创建导出历史记录" msgid "Create Import History" msgstr "创建导入历史记录" -msgid "Create Package Group" -msgstr "创建软件包组" - msgid "Create Syncable Export History" msgstr "创建可同步的导出历史记录" @@ -173,9 +170,6 @@ msgstr "删除激活码" msgid "Delete Lifecycle Environment" msgstr "删除生命周期环境" -msgid "Delete Package Group" -msgstr "删除软件包组" - msgid "Delete Product" msgstr "删除产品" @@ -338,6 +332,18 @@ msgstr "检查连接的虚拟机管理程序是否有更改的频率?同时还 msgid "Hypervisor ID" msgstr "Hypervisor ID" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "Hypervisor 黑名单,仅在过滤模式设置为 2 时适用。支持通配符和正则表达式,必须用逗号分隔多项记录。" @@ -413,6 +419,9 @@ msgstr "安装适用的勘误" msgid "Instance update" msgstr "实例更新" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "未提供间隔" @@ -431,6 +440,9 @@ msgstr "每个机构的 virt-who 配置列表" msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "Microsoft Hyper-V fully 的完全限定主机名或 IP 地址。" +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "此配置的名称,例如 hypervisor 的名称" @@ -533,6 +545,9 @@ msgstr "刷新备用内容源" msgid "Reindex subscriptions" msgstr "重新索引订阅" +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "删除内容" diff --git a/locale/zh_TW/foreman_virt_who_configure.po b/locale/zh_TW/foreman_virt_who_configure.po index 12c3e626..2b883b60 100644 --- a/locale/zh_TW/foreman_virt_who_configure.po +++ b/locale/zh_TW/foreman_virt_who_configure.po @@ -153,9 +153,6 @@ msgstr "" msgid "Create Import History" msgstr "" -msgid "Create Package Group" -msgstr "" - msgid "Create Syncable Export History" msgstr "" @@ -171,9 +168,6 @@ msgstr "刪除啟動金鑰" msgid "Delete Lifecycle Environment" msgstr "刪除生命週期環境" -msgid "Delete Package Group" -msgstr "" - msgid "Delete Product" msgstr "刪除產品" @@ -336,6 +330,18 @@ msgstr "" msgid "Hypervisor ID" msgstr "" +msgid "Hypervisor Password" +msgstr "" + +msgid "Hypervisor Server" +msgstr "" + +msgid "Hypervisor Type" +msgstr "" + +msgid "Hypervisor Username" +msgstr "" + msgid "Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcards and regular expressions are supported, multiple records must be separated by comma." msgstr "" @@ -411,6 +417,9 @@ msgstr "安裝可套用的勘誤" msgid "Instance update" msgstr "" +msgid "Interval" +msgstr "" + msgid "Interval was not provided" msgstr "" @@ -429,6 +438,9 @@ msgstr "" msgid "Microsoft Hyper-V fully qualified host name or IP address." msgstr "" +msgid "Name" +msgstr "" + msgid "Name of this configuration, e.g. the name of the hypervisor" msgstr "" @@ -531,6 +543,9 @@ msgstr "" msgid "Reindex subscriptions" msgstr "重新索引訂閱服務" +msgid "Remote action:" +msgstr "" + msgid "Remove Content" msgstr "移除內容"