hammer_cli_foreman 0.9.0 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE +5 -0
- data/README.md +1 -15
- data/doc/configuration.md +38 -0
- data/doc/developer_docs.md +4 -3
- data/doc/release_notes.md +18 -0
- data/doc/testing.md +133 -0
- data/lib/hammer_cli_foreman.rb +4 -2
- data/lib/hammer_cli_foreman/api/connection.rb +21 -7
- data/lib/hammer_cli_foreman/api/interactive_basic_auth.rb +1 -1
- data/lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb +6 -1
- data/lib/hammer_cli_foreman/api/void_auth.rb +8 -0
- data/lib/hammer_cli_foreman/auth.rb +1 -1
- data/lib/hammer_cli_foreman/common_parameter.rb +1 -0
- data/lib/hammer_cli_foreman/config_group.rb +45 -0
- data/lib/hammer_cli_foreman/defaults.rb +6 -3
- data/lib/hammer_cli_foreman/exception_handler.rb +36 -7
- data/lib/hammer_cli_foreman/filter.rb +61 -0
- data/lib/hammer_cli_foreman/host.rb +7 -5
- data/lib/hammer_cli_foreman/hosts/common_update_options.rb +17 -2
- data/lib/hammer_cli_foreman/output/fields.rb +3 -2
- data/lib/hammer_cli_foreman/output/formatters.rb +3 -2
- data/lib/hammer_cli_foreman/parameter.rb +5 -2
- data/lib/hammer_cli_foreman/references.rb +1 -1
- data/lib/hammer_cli_foreman/role.rb +18 -1
- data/lib/hammer_cli_foreman/template.rb +10 -10
- data/lib/hammer_cli_foreman/testing/api_expectations.rb +108 -8
- data/lib/hammer_cli_foreman/user.rb +25 -0
- data/lib/hammer_cli_foreman/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/test/data/1.14/_foreman_api.json +1 -0
- data/test/data/1.14/foreman_api.json +1 -0
- data/test/data/1.15/foreman_api.json +1 -0
- data/test/functional/host_test.rb +69 -1
- data/test/functional/role_test.rb +69 -0
- data/test/functional/template_test.rb +4 -4
- data/test/functional/test_helper.rb +0 -3
- data/test/functional/user_test.rb +85 -0
- data/test/test_helper.rb +4 -6
- data/test/unit/api/interactive_basic_auth_test.rb +2 -3
- data/test/unit/api/session_authenticator_wrapper_test.rb +24 -0
- data/test/unit/apipie_resource_mock.rb +180 -0
- data/test/unit/architecture_test.rb +3 -0
- data/test/unit/auth_source_ldap_test.rb +3 -0
- data/test/unit/commands_test.rb +2 -0
- data/test/unit/common_parameter_test.rb +13 -7
- data/test/unit/compute_resource_test.rb +6 -0
- data/test/unit/config_group_test.rb +72 -0
- data/test/unit/defaults_test.rb +28 -24
- data/test/unit/domain_test.rb +3 -0
- data/test/unit/environment_test.rb +3 -0
- data/test/unit/filter_test.rb +10 -2
- data/test/unit/host_test.rb +14 -1
- data/test/unit/hostgroup_test.rb +3 -0
- data/test/unit/image_test.rb +3 -0
- data/test/unit/media_test.rb +3 -0
- data/test/unit/model_test.rb +3 -0
- data/test/unit/partition_table_test.rb +3 -0
- data/test/unit/puppet_class_test.rb +3 -0
- data/test/unit/realm_test.rb +3 -0
- data/test/unit/report_test.rb +3 -0
- data/test/unit/smart_proxy_test.rb +3 -0
- data/test/unit/smart_variable_test.rb +0 -1
- data/test/unit/subnet_test.rb +3 -0
- data/test/unit/template_test.rb +9 -3
- data/test/unit/user_test.rb +6 -0
- data/test/unit/usergroup_test.rb +3 -0
- metadata +69 -577
- data/locale/Makefile +0 -57
- data/locale/README.md +0 -18
- data/locale/ca/hammer-cli-foreman.edit.po +0 -2910
- data/locale/ca/hammer-cli-foreman.po +0 -2823
- data/locale/ca/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/de/hammer-cli-foreman.edit.po +0 -2921
- data/locale/de/hammer-cli-foreman.po +0 -2827
- data/locale/de/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/en/hammer-cli-foreman.edit.po +0 -2865
- data/locale/en/hammer-cli-foreman.po +0 -2167
- data/locale/en/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/en_GB/hammer-cli-foreman.edit.po +0 -2888
- data/locale/en_GB/hammer-cli-foreman.po +0 -2825
- data/locale/en_GB/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/es/hammer-cli-foreman.edit.po +0 -2924
- data/locale/es/hammer-cli-foreman.po +0 -2829
- data/locale/es/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/fr/hammer-cli-foreman.edit.po +0 -2919
- data/locale/fr/hammer-cli-foreman.po +0 -2825
- data/locale/fr/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/hammer-cli-foreman.pot +0 -3080
- data/locale/it/hammer-cli-foreman.edit.po +0 -2909
- data/locale/it/hammer-cli-foreman.po +0 -2824
- data/locale/it/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/ja/hammer-cli-foreman.edit.po +0 -2919
- data/locale/ja/hammer-cli-foreman.po +0 -2824
- data/locale/ja/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/ko/hammer-cli-foreman.edit.po +0 -2917
- data/locale/ko/hammer-cli-foreman.po +0 -2823
- data/locale/ko/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/pt_BR/hammer-cli-foreman.edit.po +0 -2921
- data/locale/pt_BR/hammer-cli-foreman.po +0 -2826
- data/locale/pt_BR/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/ru/hammer-cli-foreman.edit.po +0 -2921
- data/locale/ru/hammer-cli-foreman.po +0 -2824
- data/locale/ru/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/zanata.xml +0 -28
- data/locale/zh_CN/hammer-cli-foreman.edit.po +0 -2917
- data/locale/zh_CN/hammer-cli-foreman.po +0 -2822
- data/locale/zh_CN/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/zh_TW/hammer-cli-foreman.edit.po +0 -2917
- data/locale/zh_TW/hammer-cli-foreman.po +0 -2822
- data/locale/zh_TW/hammer-cli-foreman.po.time_stamp +0 -0
- data/test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-CommonParameter.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Domain-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-output.xml +0 -21
- data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Environment-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ExceptionHandler.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Host-CreateCommand-parameters.xml +0 -46
- data/test/reports/TEST-HammerCLIForeman-Host-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand-output.xml +0 -85
- data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-ListCommand-output.xml +0 -21
- data/test/reports/TEST-HammerCLIForeman-Host-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Host-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand-output.xml +0 -9
- data/test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-StatusCommand-output.xml +0 -9
- data/test/reports/TEST-HammerCLIForeman-Host-StatusCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-UpdateCommand-parameters.xml +0 -40
- data/test/reports/TEST-HammerCLIForeman-Host-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-output.xml +0 -29
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-output.xml +0 -27
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-CreateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Medium-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-output.xml +0 -23
- data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-output.xml +0 -27
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-output.xml +0 -19
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-output.xml +0 -21
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-output.xml +0 -43
- data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-CreateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Template-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-DeleteCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Template-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-DumpCommand-parameters.xml +0 -12
- data/test/reports/TEST-HammerCLIForeman-Template-DumpCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Template-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Template-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand-parameters.xml +0 -9
- data/test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-UpdateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Template-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-CreateCommand-parameters.xml +0 -19
- data/test/reports/TEST-HammerCLIForeman-User-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-DeleteCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-User-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-InfoCommand-output.xml +0 -23
- data/test/reports/TEST-HammerCLIForeman-User-InfoCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-User-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-ListCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-User-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-User-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-UpdateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-User-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User.xml +0 -7
- data/test/reports/TEST-MiniTest-Spec.xml +0 -7
|
@@ -1,2909 +0,0 @@
|
|
|
1
|
-
# SOME DESCRIPTIVE TITLE.
|
|
2
|
-
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
-
# This file is distributed under the same license as the hammer-cli-foreman package.
|
|
4
|
-
#
|
|
5
|
-
# Translators:
|
|
6
|
-
# Automatically generated, 2014
|
|
7
|
-
# Giuseppe Pignataro <anubisteam01@gmail.com>, 2014
|
|
8
|
-
msgid ""
|
|
9
|
-
msgstr ""
|
|
10
|
-
"Project-Id-Version: hammer-cli-foreman 0.8.0\n"
|
|
11
|
-
"Report-Msgid-Bugs-To: \n"
|
|
12
|
-
"POT-Creation-Date: 2016-12-15 22:40+0100\n"
|
|
13
|
-
"PO-Revision-Date: 2016-08-22 15:08+0000\n"
|
|
14
|
-
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
|
|
15
|
-
"Language-Team: Italian (http://www.transifex.com/foreman/foreman/language/it/)"
|
|
16
|
-
"\n"
|
|
17
|
-
"MIME-Version: 1.0\n"
|
|
18
|
-
"Content-Type: text/plain; charset=UTF-8\n"
|
|
19
|
-
"Content-Transfer-Encoding: 8bit\n"
|
|
20
|
-
"Language: it\n"
|
|
21
|
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
22
|
-
|
|
23
|
-
#: ../lib/hammer_cli_foreman.rb:31
|
|
24
|
-
msgid "Foreman connection login/logout."
|
|
25
|
-
msgstr "Login/logout della connessione di foreman"
|
|
26
|
-
|
|
27
|
-
#: ../lib/hammer_cli_foreman.rb:35
|
|
28
|
-
msgid "Manipulate architectures."
|
|
29
|
-
msgstr "Manipolazione architetture."
|
|
30
|
-
|
|
31
|
-
#: ../lib/hammer_cli_foreman.rb:39
|
|
32
|
-
msgid "Manipulate auth sources."
|
|
33
|
-
msgstr "Manipolazione sorgenti di autenticazione."
|
|
34
|
-
|
|
35
|
-
#: ../lib/hammer_cli_foreman.rb:43
|
|
36
|
-
msgid "Manipulate compute resources."
|
|
37
|
-
msgstr "Manipolazione risorse di calcolo"
|
|
38
|
-
|
|
39
|
-
#: ../lib/hammer_cli_foreman.rb:47
|
|
40
|
-
msgid "Manipulate domains."
|
|
41
|
-
msgstr "Manipolazione domini."
|
|
42
|
-
|
|
43
|
-
#: ../lib/hammer_cli_foreman.rb:51
|
|
44
|
-
msgid "Manipulate environments."
|
|
45
|
-
msgstr "Manipolazione ambienti."
|
|
46
|
-
|
|
47
|
-
#: ../lib/hammer_cli_foreman.rb:55
|
|
48
|
-
msgid "Search facts."
|
|
49
|
-
msgstr "Cerca eventi."
|
|
50
|
-
|
|
51
|
-
#: ../lib/hammer_cli_foreman.rb:59
|
|
52
|
-
msgid "Manage permission filters."
|
|
53
|
-
msgstr "Gestisci i filri dei permessi."
|
|
54
|
-
|
|
55
|
-
#: ../lib/hammer_cli_foreman.rb:63
|
|
56
|
-
msgid "Manipulate hosts."
|
|
57
|
-
msgstr "Manipolazione host."
|
|
58
|
-
|
|
59
|
-
#: ../lib/hammer_cli_foreman.rb:67
|
|
60
|
-
msgid "Manipulate hostgroups."
|
|
61
|
-
msgstr "Manipolazione hostgroup."
|
|
62
|
-
|
|
63
|
-
#: ../lib/hammer_cli_foreman.rb:71
|
|
64
|
-
msgid "Manipulate locations."
|
|
65
|
-
msgstr "Manipolazione posizioni."
|
|
66
|
-
|
|
67
|
-
#: ../lib/hammer_cli_foreman.rb:75
|
|
68
|
-
msgid "Manipulate installation media."
|
|
69
|
-
msgstr "Manipolazione dispositivo d'installazione"
|
|
70
|
-
|
|
71
|
-
#: ../lib/hammer_cli_foreman.rb:79
|
|
72
|
-
msgid "Manipulate hardware models."
|
|
73
|
-
msgstr "Manipolazione modelli hardware."
|
|
74
|
-
|
|
75
|
-
#: ../lib/hammer_cli_foreman.rb:83
|
|
76
|
-
msgid "Manipulate operating system."
|
|
77
|
-
msgstr "Manipolazione sistema operativo."
|
|
78
|
-
|
|
79
|
-
#: ../lib/hammer_cli_foreman.rb:87
|
|
80
|
-
msgid "Manipulate organizations."
|
|
81
|
-
msgstr "Manipolazione organizzazioni."
|
|
82
|
-
|
|
83
|
-
#: ../lib/hammer_cli_foreman.rb:91
|
|
84
|
-
msgid "Manipulate partition tables."
|
|
85
|
-
msgstr "Manipolazione tabelle delle partizioni"
|
|
86
|
-
|
|
87
|
-
#: ../lib/hammer_cli_foreman.rb:95
|
|
88
|
-
msgid "Search puppet modules."
|
|
89
|
-
msgstr "Cerca moduli puppet."
|
|
90
|
-
|
|
91
|
-
#: ../lib/hammer_cli_foreman.rb:99
|
|
92
|
-
msgid "Browse and read reports."
|
|
93
|
-
msgstr "Sfoglia e leggi i riporti."
|
|
94
|
-
|
|
95
|
-
#: ../lib/hammer_cli_foreman.rb:103
|
|
96
|
-
msgid "Manage user roles."
|
|
97
|
-
msgstr "Gestisci ruoli utente."
|
|
98
|
-
|
|
99
|
-
#: ../lib/hammer_cli_foreman.rb:107
|
|
100
|
-
msgid "Manipulate smart class parameters."
|
|
101
|
-
msgstr "Manipolazione parametri classe smart."
|
|
102
|
-
|
|
103
|
-
#: ../lib/hammer_cli_foreman.rb:111
|
|
104
|
-
msgid "Manipulate smart variables."
|
|
105
|
-
msgstr ""
|
|
106
|
-
|
|
107
|
-
#: ../lib/hammer_cli_foreman.rb:115
|
|
108
|
-
msgid "Manipulate smart proxies."
|
|
109
|
-
msgstr "Manipolazione smart proxy."
|
|
110
|
-
|
|
111
|
-
#: ../lib/hammer_cli_foreman.rb:119
|
|
112
|
-
#, fuzzy
|
|
113
|
-
msgid "Manipulate realms."
|
|
114
|
-
msgstr "Manipolazione domini."
|
|
115
|
-
|
|
116
|
-
#: ../lib/hammer_cli_foreman.rb:123
|
|
117
|
-
msgid "Change server settings."
|
|
118
|
-
msgstr ""
|
|
119
|
-
|
|
120
|
-
#: ../lib/hammer_cli_foreman.rb:127
|
|
121
|
-
msgid "Manipulate subnets."
|
|
122
|
-
msgstr "Manipolazione sottoreti."
|
|
123
|
-
|
|
124
|
-
#: ../lib/hammer_cli_foreman.rb:131
|
|
125
|
-
msgid "Manipulate config templates."
|
|
126
|
-
msgstr "Manipolazione modelli di configurazione."
|
|
127
|
-
|
|
128
|
-
#: ../lib/hammer_cli_foreman.rb:135
|
|
129
|
-
msgid "Manipulate users."
|
|
130
|
-
msgstr "Manipolazione utenti."
|
|
131
|
-
|
|
132
|
-
#: ../lib/hammer_cli_foreman.rb:139
|
|
133
|
-
msgid "Manage user groups."
|
|
134
|
-
msgstr "Gestisci gruppi di utenti."
|
|
135
|
-
|
|
136
|
-
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:15
|
|
137
|
-
#, fuzzy
|
|
138
|
-
msgid "Invalid username or password"
|
|
139
|
-
msgstr "utente"
|
|
140
|
-
|
|
141
|
-
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:20
|
|
142
|
-
msgid "You are logged in as '%s'"
|
|
143
|
-
msgstr "Sei registrato come '%s'"
|
|
144
|
-
|
|
145
|
-
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:22 ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:28
|
|
146
|
-
msgid "You are currently not logged in"
|
|
147
|
-
msgstr ""
|
|
148
|
-
|
|
149
|
-
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:33
|
|
150
|
-
msgid "[Foreman] Username: "
|
|
151
|
-
msgstr "Nome utente [Foreman]: "
|
|
152
|
-
|
|
153
|
-
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:37
|
|
154
|
-
msgid "[Foreman] Password for %s: "
|
|
155
|
-
msgstr "[Foreman] Password per %s: "
|
|
156
|
-
|
|
157
|
-
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:17
|
|
158
|
-
#, fuzzy
|
|
159
|
-
msgid "Can't use session auth due to invalid permissions on session files."
|
|
160
|
-
msgstr "file"
|
|
161
|
-
|
|
162
|
-
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:26
|
|
163
|
-
msgid "Session exist, currently logged in as '%s'"
|
|
164
|
-
msgstr ""
|
|
165
|
-
|
|
166
|
-
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:51
|
|
167
|
-
msgid "Session has expired"
|
|
168
|
-
msgstr ""
|
|
169
|
-
|
|
170
|
-
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:78
|
|
171
|
-
#, fuzzy
|
|
172
|
-
msgid "Invalid session file format"
|
|
173
|
-
msgstr "file"
|
|
174
|
-
|
|
175
|
-
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:106
|
|
176
|
-
#, fuzzy
|
|
177
|
-
msgid "Invalid permissions for %{file}: %{mode}, expected %{expected_mode}"
|
|
178
|
-
msgstr "file"
|
|
179
|
-
|
|
180
|
-
#: ../lib/hammer_cli_foreman/architecture.rb:10 ../lib/hammer_cli_foreman/auth_source_ldap.rb:13 ../lib/hammer_cli_foreman/compute_resource.rb:20 ../lib/hammer_cli_foreman/domain.rb:31 ../lib/hammer_cli_foreman/environment.rb:14 ../lib/hammer_cli_foreman/external_usergroup.rb:10 ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:73 ../lib/hammer_cli_foreman/host.rb:30 ../lib/hammer_cli_foreman/host.rb:62 ../lib/hammer_cli_foreman/host.rb:93 ../lib/hammer_cli_foreman/hostgroup.rb:57 ../lib/hammer_cli_foreman/image.rb:29 ../lib/hammer_cli_foreman/interface.rb:23 ../lib/hammer_cli_foreman/interface.rb:43 ../lib/hammer_cli_foreman/location.rb:13 ../lib/hammer_cli_foreman/media.rb:9 ../lib/hammer_cli_foreman/model.rb:10 ../lib/hammer_cli_foreman/operating_system.rb:10 ../lib/hammer_cli_foreman/organization.rb:13 ../lib/hammer_cli_foreman/partition_table.rb:10 ../lib/hammer_cli_foreman/puppet_class.rb:13 ../lib/hammer_cli_foreman/realm.rb:8 ../lib/hammer_cli_foreman/references.rb:36 ../lib/hammer_cli_foreman/references.rb:43 ../lib/hammer_cli_foreman/report.rb:10 ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11 ../lib/hammer_cli_foreman/settings.rb:11 ../lib/hammer_cli_foreman/smart_class_parameter.rb:8 ../lib/hammer_cli_foreman/smart_class_parameter.rb:76 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:66 ../lib/hammer_cli_foreman/subnet.rb:10 ../lib/hammer_cli_foreman/template.rb:25 ../lib/hammer_cli_foreman/user.rb:10 ../lib/hammer_cli_foreman/usergroup.rb:11
|
|
181
|
-
msgid "Id"
|
|
182
|
-
msgstr "Id"
|
|
183
|
-
|
|
184
|
-
#: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:74 ../lib/hammer_cli_foreman/filter.rb:91 ../lib/hammer_cli_foreman/host.rb:31 ../lib/hammer_cli_foreman/host.rb:64 ../lib/hammer_cli_foreman/hostgroup.rb:58 ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70 ../lib/hammer_cli_foreman/location.rb:14 ../lib/hammer_cli_foreman/media.rb:10 ../lib/hammer_cli_foreman/model.rb:11 ../lib/hammer_cli_foreman/operating_system.rb:22 ../lib/hammer_cli_foreman/organization.rb:14 ../lib/hammer_cli_foreman/partition_table.rb:11 ../lib/hammer_cli_foreman/puppet_class.rb:14 ../lib/hammer_cli_foreman/realm.rb:9 ../lib/hammer_cli_foreman/role.rb:12 ../lib/hammer_cli_foreman/settings.rb:12 ../lib/hammer_cli_foreman/smart_proxy.rb:12 ../lib/hammer_cli_foreman/subnet.rb:11 ../lib/hammer_cli_foreman/template.rb:26 ../lib/hammer_cli_foreman/template.rb:75 ../lib/hammer_cli_foreman/user.rb:12 ../lib/hammer_cli_foreman/usergroup.rb:12
|
|
185
|
-
msgid "Name"
|
|
186
|
-
msgstr "Nome"
|
|
187
|
-
|
|
188
|
-
#: ../lib/hammer_cli_foreman/architecture.rb:31
|
|
189
|
-
msgid "Architecture created"
|
|
190
|
-
msgstr "Architettura creata"
|
|
191
|
-
|
|
192
|
-
#: ../lib/hammer_cli_foreman/architecture.rb:32
|
|
193
|
-
msgid "Could not create the architecture"
|
|
194
|
-
msgstr "Impossibile creare l'architettura"
|
|
195
|
-
|
|
196
|
-
#: ../lib/hammer_cli_foreman/architecture.rb:39
|
|
197
|
-
msgid "Architecture deleted"
|
|
198
|
-
msgstr "Architettura rimossa"
|
|
199
|
-
|
|
200
|
-
#: ../lib/hammer_cli_foreman/architecture.rb:40
|
|
201
|
-
msgid "Could not delete the architecture"
|
|
202
|
-
msgstr "Impossibile rimuovere l'architettura"
|
|
203
|
-
|
|
204
|
-
#: ../lib/hammer_cli_foreman/architecture.rb:47
|
|
205
|
-
msgid "Architecture updated"
|
|
206
|
-
msgstr "Architettura aggiornata"
|
|
207
|
-
|
|
208
|
-
#: ../lib/hammer_cli_foreman/architecture.rb:48
|
|
209
|
-
msgid "Could not update the architecture"
|
|
210
|
-
msgstr "Impossibile aggiornare l'architettura"
|
|
211
|
-
|
|
212
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:41
|
|
213
|
-
msgid "Associate a hostgroup"
|
|
214
|
-
msgstr "Associa un hostgroup"
|
|
215
|
-
|
|
216
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:43
|
|
217
|
-
msgid "The hostgroup has been associated"
|
|
218
|
-
msgstr ""
|
|
219
|
-
|
|
220
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:44
|
|
221
|
-
msgid "Could not associate the hostgroup"
|
|
222
|
-
msgstr ""
|
|
223
|
-
|
|
224
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:49
|
|
225
|
-
msgid "Disassociate a hostgroup"
|
|
226
|
-
msgstr "Rimuovere associazione di un hostgroup"
|
|
227
|
-
|
|
228
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:51
|
|
229
|
-
msgid "The hostgroup has been disassociated"
|
|
230
|
-
msgstr ""
|
|
231
|
-
|
|
232
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:52
|
|
233
|
-
msgid "Could not disassociate the hostgroup"
|
|
234
|
-
msgstr ""
|
|
235
|
-
|
|
236
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:61
|
|
237
|
-
msgid "Associate an environment"
|
|
238
|
-
msgstr "Associa un ambiente"
|
|
239
|
-
|
|
240
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:63
|
|
241
|
-
msgid "The environment has been associated"
|
|
242
|
-
msgstr ""
|
|
243
|
-
|
|
244
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:64
|
|
245
|
-
msgid "Could not associate the environment"
|
|
246
|
-
msgstr ""
|
|
247
|
-
|
|
248
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:69
|
|
249
|
-
msgid "Disassociate an environment"
|
|
250
|
-
msgstr "Rimuovere associazione di un ambiente"
|
|
251
|
-
|
|
252
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:71
|
|
253
|
-
msgid "The environment has been disassociated"
|
|
254
|
-
msgstr ""
|
|
255
|
-
|
|
256
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:72
|
|
257
|
-
msgid "Could not disassociate the environment"
|
|
258
|
-
msgstr ""
|
|
259
|
-
|
|
260
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:81
|
|
261
|
-
msgid "Associate a domain"
|
|
262
|
-
msgstr "Associa un dominio"
|
|
263
|
-
|
|
264
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:83
|
|
265
|
-
msgid "The domain has been associated"
|
|
266
|
-
msgstr ""
|
|
267
|
-
|
|
268
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:84
|
|
269
|
-
msgid "Could not associate the domain"
|
|
270
|
-
msgstr ""
|
|
271
|
-
|
|
272
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:89
|
|
273
|
-
msgid "Disassociate a domain"
|
|
274
|
-
msgstr "Rimuovere associazione di un dominio"
|
|
275
|
-
|
|
276
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:91
|
|
277
|
-
msgid "The domain has been disassociated"
|
|
278
|
-
msgstr ""
|
|
279
|
-
|
|
280
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:92
|
|
281
|
-
msgid "Could not disassociate the domain"
|
|
282
|
-
msgstr ""
|
|
283
|
-
|
|
284
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:101
|
|
285
|
-
msgid "Associate a medium"
|
|
286
|
-
msgstr "Associa un supporto"
|
|
287
|
-
|
|
288
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:103
|
|
289
|
-
msgid "The medium has been associated"
|
|
290
|
-
msgstr ""
|
|
291
|
-
|
|
292
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:104
|
|
293
|
-
msgid "Could not associate the medium"
|
|
294
|
-
msgstr ""
|
|
295
|
-
|
|
296
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:109
|
|
297
|
-
msgid "Disassociate a medium"
|
|
298
|
-
msgstr "Rimuovi associazione del supporto"
|
|
299
|
-
|
|
300
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:111
|
|
301
|
-
msgid "The medium has been disassociated"
|
|
302
|
-
msgstr ""
|
|
303
|
-
|
|
304
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:112
|
|
305
|
-
msgid "Could not disassociate the medium"
|
|
306
|
-
msgstr ""
|
|
307
|
-
|
|
308
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:121
|
|
309
|
-
msgid "Associate a subnet"
|
|
310
|
-
msgstr "Associa una sottorete"
|
|
311
|
-
|
|
312
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:123
|
|
313
|
-
msgid "The subnet has been associated"
|
|
314
|
-
msgstr ""
|
|
315
|
-
|
|
316
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:124
|
|
317
|
-
msgid "Could not associate the subnet"
|
|
318
|
-
msgstr ""
|
|
319
|
-
|
|
320
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:129
|
|
321
|
-
msgid "Disassociate a subnet"
|
|
322
|
-
msgstr "Rimuovere associazione di una sottorete"
|
|
323
|
-
|
|
324
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:131
|
|
325
|
-
msgid "The subnet has been disassociated"
|
|
326
|
-
msgstr ""
|
|
327
|
-
|
|
328
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:132
|
|
329
|
-
msgid "Could not disassociate the subnet"
|
|
330
|
-
msgstr ""
|
|
331
|
-
|
|
332
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:141
|
|
333
|
-
msgid "Associate a compute resource"
|
|
334
|
-
msgstr "Associa una risorsa di calcolo"
|
|
335
|
-
|
|
336
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:143
|
|
337
|
-
msgid "The compute resource has been associated"
|
|
338
|
-
msgstr ""
|
|
339
|
-
|
|
340
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:144
|
|
341
|
-
msgid "Could not associate the compute resource"
|
|
342
|
-
msgstr ""
|
|
343
|
-
|
|
344
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:149
|
|
345
|
-
msgid "Disassociate a compute resource"
|
|
346
|
-
msgstr "Rimuovere associazione di una risorsa di calcolo"
|
|
347
|
-
|
|
348
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:151
|
|
349
|
-
msgid "The compute resource has been disassociated"
|
|
350
|
-
msgstr ""
|
|
351
|
-
|
|
352
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:152
|
|
353
|
-
msgid "Could not disassociate the compute resource"
|
|
354
|
-
msgstr ""
|
|
355
|
-
|
|
356
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:161
|
|
357
|
-
msgid "Associate a smart proxy"
|
|
358
|
-
msgstr "Associa una smart proxy"
|
|
359
|
-
|
|
360
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:163
|
|
361
|
-
msgid "The smart proxy has been associated"
|
|
362
|
-
msgstr ""
|
|
363
|
-
|
|
364
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:164
|
|
365
|
-
msgid "Could not associate the smart proxy"
|
|
366
|
-
msgstr ""
|
|
367
|
-
|
|
368
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:173
|
|
369
|
-
msgid "Disassociate a smart proxy"
|
|
370
|
-
msgstr "Rimuovere associazione smart proxy"
|
|
371
|
-
|
|
372
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:175
|
|
373
|
-
msgid "The smart proxy has been disassociated"
|
|
374
|
-
msgstr ""
|
|
375
|
-
|
|
376
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:176
|
|
377
|
-
msgid "Could not disassociate the smart proxy"
|
|
378
|
-
msgstr ""
|
|
379
|
-
|
|
380
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:189
|
|
381
|
-
msgid "Associate an user"
|
|
382
|
-
msgstr "Associa un utente"
|
|
383
|
-
|
|
384
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:191
|
|
385
|
-
msgid "The user has been associated"
|
|
386
|
-
msgstr ""
|
|
387
|
-
|
|
388
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:192
|
|
389
|
-
msgid "Could not associate the user"
|
|
390
|
-
msgstr ""
|
|
391
|
-
|
|
392
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:197
|
|
393
|
-
msgid "Disassociate an user"
|
|
394
|
-
msgstr "Rimuovere associazione di un utente"
|
|
395
|
-
|
|
396
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:199
|
|
397
|
-
msgid "The user has been disassociated"
|
|
398
|
-
msgstr ""
|
|
399
|
-
|
|
400
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:200
|
|
401
|
-
msgid "Could not disassociate the user"
|
|
402
|
-
msgstr ""
|
|
403
|
-
|
|
404
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:209
|
|
405
|
-
msgid "Associate an user group"
|
|
406
|
-
msgstr "Associa gruppo di utenti"
|
|
407
|
-
|
|
408
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:213
|
|
409
|
-
msgid "The user group has been associated"
|
|
410
|
-
msgstr ""
|
|
411
|
-
|
|
412
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:214
|
|
413
|
-
msgid "Could not associate the user group"
|
|
414
|
-
msgstr ""
|
|
415
|
-
|
|
416
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:219
|
|
417
|
-
msgid "Disassociate an user group"
|
|
418
|
-
msgstr "Rimuovere associazione gruppo di utenti"
|
|
419
|
-
|
|
420
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:223
|
|
421
|
-
msgid "The user group has been disassociated"
|
|
422
|
-
msgstr ""
|
|
423
|
-
|
|
424
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:224
|
|
425
|
-
msgid "Could not disassociate the user group"
|
|
426
|
-
msgstr ""
|
|
427
|
-
|
|
428
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:233
|
|
429
|
-
msgid "Associate a configuration template"
|
|
430
|
-
msgstr "Associa un modello di configurazione"
|
|
431
|
-
|
|
432
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:235
|
|
433
|
-
msgid "The configuration template has been associated"
|
|
434
|
-
msgstr ""
|
|
435
|
-
|
|
436
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:236
|
|
437
|
-
msgid "Could not associate the configuration template"
|
|
438
|
-
msgstr ""
|
|
439
|
-
|
|
440
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:241
|
|
441
|
-
msgid "Disassociate a configuration template"
|
|
442
|
-
msgstr "Rimuovere associazione modello di configurazione"
|
|
443
|
-
|
|
444
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:243
|
|
445
|
-
msgid "The configuration template has been disassociated"
|
|
446
|
-
msgstr ""
|
|
447
|
-
|
|
448
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:244
|
|
449
|
-
msgid "Could not disassociate the configuration template"
|
|
450
|
-
msgstr ""
|
|
451
|
-
|
|
452
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:253
|
|
453
|
-
msgid "Associate an organization"
|
|
454
|
-
msgstr "Associa una organizzazione"
|
|
455
|
-
|
|
456
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:255
|
|
457
|
-
msgid "The organization has been associated"
|
|
458
|
-
msgstr ""
|
|
459
|
-
|
|
460
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:256
|
|
461
|
-
msgid "Could not associate the organization"
|
|
462
|
-
msgstr ""
|
|
463
|
-
|
|
464
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:261
|
|
465
|
-
msgid "Disassociate an organization"
|
|
466
|
-
msgstr "Rimuovere associazione di una organizzazione"
|
|
467
|
-
|
|
468
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:263
|
|
469
|
-
msgid "The organization has been disassociated"
|
|
470
|
-
msgstr ""
|
|
471
|
-
|
|
472
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:264
|
|
473
|
-
msgid "Could not disassociate the organization"
|
|
474
|
-
msgstr ""
|
|
475
|
-
|
|
476
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:273
|
|
477
|
-
msgid "Associate an operating system"
|
|
478
|
-
msgstr "Associa un sistema operativo"
|
|
479
|
-
|
|
480
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:275
|
|
481
|
-
msgid "Operating system has been associated"
|
|
482
|
-
msgstr "Il sistema operativo è stato associato"
|
|
483
|
-
|
|
484
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:276
|
|
485
|
-
msgid "Could not associate the operating system"
|
|
486
|
-
msgstr "Impossibile associare il sistema operativo"
|
|
487
|
-
|
|
488
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:282
|
|
489
|
-
msgid "Disassociate an operating system"
|
|
490
|
-
msgstr "Rimuovere associazione di un sistema operativo"
|
|
491
|
-
|
|
492
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:284
|
|
493
|
-
msgid "Operating system has been disassociated"
|
|
494
|
-
msgstr "Rimossa associazione del sistema operativo"
|
|
495
|
-
|
|
496
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:285
|
|
497
|
-
msgid "Could not disassociate the operating system"
|
|
498
|
-
msgstr "Impossibile rimuovere associazione di un sistema operativo"
|
|
499
|
-
|
|
500
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:294
|
|
501
|
-
msgid "Associate an architecture"
|
|
502
|
-
msgstr "Associa una architettura"
|
|
503
|
-
|
|
504
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:296
|
|
505
|
-
msgid "Architecture has been associated"
|
|
506
|
-
msgstr "L'architettura è stata associata"
|
|
507
|
-
|
|
508
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:297
|
|
509
|
-
msgid "Could not associate the architecture"
|
|
510
|
-
msgstr "Impossibile associare l'architettura"
|
|
511
|
-
|
|
512
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:303
|
|
513
|
-
msgid "Disassociate an architecture"
|
|
514
|
-
msgstr "Rimuovere associazione architettura"
|
|
515
|
-
|
|
516
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:305
|
|
517
|
-
msgid "Architecture has been disassociated"
|
|
518
|
-
msgstr "Rimossa associazione dell'architettura"
|
|
519
|
-
|
|
520
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:306
|
|
521
|
-
msgid "Could not disassociate the architecture"
|
|
522
|
-
msgstr "Impossibile rimuovere associazione dell'architettura"
|
|
523
|
-
|
|
524
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:315
|
|
525
|
-
msgid "Associate a partition table"
|
|
526
|
-
msgstr "Associa una tabella delle partizioni"
|
|
527
|
-
|
|
528
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:317
|
|
529
|
-
msgid "Partition table has been associated"
|
|
530
|
-
msgstr "Tabella delle partizioni associata"
|
|
531
|
-
|
|
532
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:318
|
|
533
|
-
msgid "Could not associate the partition table"
|
|
534
|
-
msgstr "Impossibile associare la tabella delle partizioni"
|
|
535
|
-
|
|
536
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:324
|
|
537
|
-
msgid "Disassociate a partition table"
|
|
538
|
-
msgstr "Rimuovere associazione di una tabella delle partizioni"
|
|
539
|
-
|
|
540
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:326
|
|
541
|
-
msgid "Partition table has been disassociated"
|
|
542
|
-
msgstr "Rimossa associazione tabella delle partizioni"
|
|
543
|
-
|
|
544
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:327
|
|
545
|
-
msgid "Could not disassociate the partition table"
|
|
546
|
-
msgstr "Impossibile rimuovere associazione della tabellla delle partizioni"
|
|
547
|
-
|
|
548
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:336
|
|
549
|
-
msgid "Assign a user role"
|
|
550
|
-
msgstr "Assegna ruolo utente"
|
|
551
|
-
|
|
552
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:338
|
|
553
|
-
msgid "User role has been assigned"
|
|
554
|
-
msgstr "Il ruolo utente è stato assegnato"
|
|
555
|
-
|
|
556
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:339
|
|
557
|
-
msgid "Could not assign the user role"
|
|
558
|
-
msgstr "Impossibile assegnare il ruolo utente"
|
|
559
|
-
|
|
560
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:345
|
|
561
|
-
msgid "Remove a user role"
|
|
562
|
-
msgstr "Rimuovi un ruolo utente"
|
|
563
|
-
|
|
564
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:347
|
|
565
|
-
msgid "User role has been removed"
|
|
566
|
-
msgstr "Il ruolo utente è stato rimosso"
|
|
567
|
-
|
|
568
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:348
|
|
569
|
-
msgid "Could not remove the user role"
|
|
570
|
-
msgstr "Impossibile rimuovere il ruolo utente"
|
|
571
|
-
|
|
572
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:357
|
|
573
|
-
#, fuzzy
|
|
574
|
-
msgid "Associate a location"
|
|
575
|
-
msgstr "Associa un dominio"
|
|
576
|
-
|
|
577
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:359
|
|
578
|
-
msgid "The location has been associated"
|
|
579
|
-
msgstr ""
|
|
580
|
-
|
|
581
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:360
|
|
582
|
-
#, fuzzy
|
|
583
|
-
msgid "Could not associate the location"
|
|
584
|
-
msgstr "Impossibile creare la posizione"
|
|
585
|
-
|
|
586
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:365
|
|
587
|
-
#, fuzzy
|
|
588
|
-
msgid "Disassociate a location"
|
|
589
|
-
msgstr "Rimuovere associazione di un dominio"
|
|
590
|
-
|
|
591
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:367
|
|
592
|
-
#, fuzzy
|
|
593
|
-
msgid "The location has been disassociated"
|
|
594
|
-
msgstr "Rimossa associazione dell'architettura"
|
|
595
|
-
|
|
596
|
-
#: ../lib/hammer_cli_foreman/associating_commands.rb:368
|
|
597
|
-
#, fuzzy
|
|
598
|
-
msgid "Could not disassociate the location"
|
|
599
|
-
msgstr "Impossibile rimuovere associazione dell'architettura"
|
|
600
|
-
|
|
601
|
-
#: ../lib/hammer_cli_foreman/auth.rb:7
|
|
602
|
-
msgid "Set credentials"
|
|
603
|
-
msgstr "Imposta le credenziali"
|
|
604
|
-
|
|
605
|
-
#: ../lib/hammer_cli_foreman/auth.rb:9
|
|
606
|
-
#, fuzzy
|
|
607
|
-
msgid "username to access the remote system"
|
|
608
|
-
msgstr "utente"
|
|
609
|
-
|
|
610
|
-
#: ../lib/hammer_cli_foreman/auth.rb:10
|
|
611
|
-
msgid "password to access the remote system"
|
|
612
|
-
msgstr ""
|
|
613
|
-
|
|
614
|
-
#: ../lib/hammer_cli_foreman/auth.rb:22
|
|
615
|
-
msgid "Successfully logged in."
|
|
616
|
-
msgstr ""
|
|
617
|
-
|
|
618
|
-
#: ../lib/hammer_cli_foreman/auth.rb:29
|
|
619
|
-
msgid "Wipe your credentials"
|
|
620
|
-
msgstr "Rimuovi le credenziali"
|
|
621
|
-
|
|
622
|
-
#: ../lib/hammer_cli_foreman/auth.rb:34
|
|
623
|
-
msgid "Credentials deleted."
|
|
624
|
-
msgstr "Credenziali rimosse."
|
|
625
|
-
|
|
626
|
-
#: ../lib/hammer_cli_foreman/auth.rb:41
|
|
627
|
-
msgid "Information about current connections"
|
|
628
|
-
msgstr "Informazioni sulle connessioni correnti"
|
|
629
|
-
|
|
630
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:7
|
|
631
|
-
msgid "Manage LDAP auth sources."
|
|
632
|
-
msgstr "Gestisci sorgenti di autenticazione LDAP."
|
|
633
|
-
|
|
634
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:15
|
|
635
|
-
msgid "LDAPS?"
|
|
636
|
-
msgstr "LDAPS?"
|
|
637
|
-
|
|
638
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:16
|
|
639
|
-
msgid "Port"
|
|
640
|
-
msgstr "Porta"
|
|
641
|
-
|
|
642
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:17
|
|
643
|
-
msgid "Server Type"
|
|
644
|
-
msgstr "Tipo di server"
|
|
645
|
-
|
|
646
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:27
|
|
647
|
-
msgid "Account Username"
|
|
648
|
-
msgstr "Nome utente account"
|
|
649
|
-
|
|
650
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:28
|
|
651
|
-
msgid "Base DN"
|
|
652
|
-
msgstr "DN di base"
|
|
653
|
-
|
|
654
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:29
|
|
655
|
-
msgid "LDAP filter"
|
|
656
|
-
msgstr "Filtro LDAP"
|
|
657
|
-
|
|
658
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:30
|
|
659
|
-
msgid "Automatically Create Accounts?"
|
|
660
|
-
msgstr "Crea automaticamente gli account?"
|
|
661
|
-
|
|
662
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:31
|
|
663
|
-
msgid "Login Name Attribute"
|
|
664
|
-
msgstr "Attributo nome per l'accesso"
|
|
665
|
-
|
|
666
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:32
|
|
667
|
-
msgid "First Name Attribute"
|
|
668
|
-
msgstr "Attributo Nome"
|
|
669
|
-
|
|
670
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:33
|
|
671
|
-
msgid "Last Name Attribute"
|
|
672
|
-
msgstr "Attributo cognome"
|
|
673
|
-
|
|
674
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:34
|
|
675
|
-
msgid "Email Address Attribute"
|
|
676
|
-
msgstr "Attributo indirizzo email"
|
|
677
|
-
|
|
678
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:35
|
|
679
|
-
msgid "Photo Attribute"
|
|
680
|
-
msgstr "Attributo foto"
|
|
681
|
-
|
|
682
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:43
|
|
683
|
-
msgid "Auth source created"
|
|
684
|
-
msgstr "Sorgente di autenticazione creato"
|
|
685
|
-
|
|
686
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:44
|
|
687
|
-
msgid "Could not create the Auth Source"
|
|
688
|
-
msgstr "Impossibile creare il sorgente di autenticazione"
|
|
689
|
-
|
|
690
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:51
|
|
691
|
-
msgid "Auth source deleted"
|
|
692
|
-
msgstr "Sorgente di autenticazione rimosso"
|
|
693
|
-
|
|
694
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:52
|
|
695
|
-
msgid "Could not delete the Auth Source"
|
|
696
|
-
msgstr "Impossibile cancellare il sorgente di autenticazione"
|
|
697
|
-
|
|
698
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:59
|
|
699
|
-
msgid "Auth source updated"
|
|
700
|
-
msgstr "Sorgente di autenticazione aggiornato"
|
|
701
|
-
|
|
702
|
-
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:60
|
|
703
|
-
msgid "Could not update the Auth Source"
|
|
704
|
-
msgstr "Impossibile aggiornare il sorgente di autenticazione"
|
|
705
|
-
|
|
706
|
-
#: ../lib/hammer_cli_foreman/commands.rb:56
|
|
707
|
-
msgid "Received data of unknown format"
|
|
708
|
-
msgstr "Dati ricevuti con un formato sconosciuto"
|
|
709
|
-
|
|
710
|
-
#: ../lib/hammer_cli_foreman/commands.rb:164
|
|
711
|
-
msgid "Could not find %{resource}. Some search options were missing, please see --help."
|
|
712
|
-
msgstr "Impossibile trovare %{resource}. Alcune opzioni risultano mancanti, consultare --help."
|
|
713
|
-
|
|
714
|
-
#: ../lib/hammer_cli_foreman/commands.rb:166
|
|
715
|
-
msgid "Could not find %{resource}, please set option %{switches}."
|
|
716
|
-
msgstr "Impossibile trovare %{resource}, impostare l'opzione %{switches}."
|
|
717
|
-
|
|
718
|
-
#: ../lib/hammer_cli_foreman/commands.rb:168
|
|
719
|
-
msgid "Could not find %{resource}, please set one of options %{switches}."
|
|
720
|
-
msgstr "Impossibile trovare %{resource}, impostare una delle opzioni %{switches}."
|
|
721
|
-
|
|
722
|
-
#: ../lib/hammer_cli_foreman/commands.rb:497
|
|
723
|
-
msgid "Associate a resource"
|
|
724
|
-
msgstr "Associare una risorsa"
|
|
725
|
-
|
|
726
|
-
#: ../lib/hammer_cli_foreman/commands.rb:501
|
|
727
|
-
msgid "Could not associate the %{resource_name}"
|
|
728
|
-
msgstr ""
|
|
729
|
-
|
|
730
|
-
#: ../lib/hammer_cli_foreman/commands.rb:505
|
|
731
|
-
msgid "The %{resource_name} has been associated"
|
|
732
|
-
msgstr ""
|
|
733
|
-
|
|
734
|
-
#: ../lib/hammer_cli_foreman/commands.rb:527
|
|
735
|
-
msgid "Disassociate a resource"
|
|
736
|
-
msgstr "Rimuovere associazione di una risorsa"
|
|
737
|
-
|
|
738
|
-
#: ../lib/hammer_cli_foreman/commands.rb:539
|
|
739
|
-
msgid "Could not disassociate the %{resource_name}"
|
|
740
|
-
msgstr ""
|
|
741
|
-
|
|
742
|
-
#: ../lib/hammer_cli_foreman/commands.rb:543
|
|
743
|
-
msgid "The %{resource_name} has been disassociated"
|
|
744
|
-
msgstr ""
|
|
745
|
-
|
|
746
|
-
#: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:189 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:78 ../lib/hammer_cli_foreman/smart_variable.rb:68
|
|
747
|
-
msgid "Value"
|
|
748
|
-
msgstr "Valore"
|
|
749
|
-
|
|
750
|
-
#: ../lib/hammer_cli_foreman/common_parameter.rb:22
|
|
751
|
-
msgid "Set a global parameter."
|
|
752
|
-
msgstr "Impostazione parametro globale."
|
|
753
|
-
|
|
754
|
-
#: ../lib/hammer_cli_foreman/common_parameter.rb:24
|
|
755
|
-
msgid "Created parameter [%{name}] with value [%{value}]."
|
|
756
|
-
msgstr "Parametro [%{name}] creato con valore [%{value}]."
|
|
757
|
-
|
|
758
|
-
#: ../lib/hammer_cli_foreman/common_parameter.rb:25
|
|
759
|
-
msgid "Parameter [%{name}] updated to [%{value}]."
|
|
760
|
-
msgstr "Parametro [%{name}] aggiornato a [%{value}]."
|
|
761
|
-
|
|
762
|
-
#: ../lib/hammer_cli_foreman/common_parameter.rb:27 ../lib/hammer_cli_foreman/parameter.rb:49 ../lib/hammer_cli_foreman/parameter.rb:96
|
|
763
|
-
msgid "parameter name"
|
|
764
|
-
msgstr "nome parametro"
|
|
765
|
-
|
|
766
|
-
#: ../lib/hammer_cli_foreman/common_parameter.rb:28 ../lib/hammer_cli_foreman/parameter.rb:50
|
|
767
|
-
msgid "parameter value"
|
|
768
|
-
msgstr "valore parametro"
|
|
769
|
-
|
|
770
|
-
#: ../lib/hammer_cli_foreman/common_parameter.rb:53
|
|
771
|
-
msgid "Global parameter [%{name}] deleted."
|
|
772
|
-
msgstr "Parametro globale [%{name}] rimosso."
|
|
773
|
-
|
|
774
|
-
#: ../lib/hammer_cli_foreman/common_parameter.rb:54
|
|
775
|
-
msgid "Could not delete the global parameter [%{name}]"
|
|
776
|
-
msgstr "Impossibile cancellare il parametro globale [%{name}]"
|
|
777
|
-
|
|
778
|
-
#: ../lib/hammer_cli_foreman/common_parameter.rb:67
|
|
779
|
-
msgid "Manipulate global parameters."
|
|
780
|
-
msgstr "Manipolazione parametri globali."
|
|
781
|
-
|
|
782
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:22 ../lib/hammer_cli_foreman/interface.rb:60
|
|
783
|
-
msgid "Provider"
|
|
784
|
-
msgstr "Provider"
|
|
785
|
-
|
|
786
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40
|
|
787
|
-
msgid "Datacenter"
|
|
788
|
-
msgstr ""
|
|
789
|
-
|
|
790
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:37 ../lib/hammer_cli_foreman/compute_resource.rb:47
|
|
791
|
-
msgid "Region"
|
|
792
|
-
msgstr "Regione"
|
|
793
|
-
|
|
794
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:41
|
|
795
|
-
msgid "Server"
|
|
796
|
-
msgstr "Server"
|
|
797
|
-
|
|
798
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:44
|
|
799
|
-
msgid "Tenant"
|
|
800
|
-
msgstr "Titolare"
|
|
801
|
-
|
|
802
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:54
|
|
803
|
-
msgid "Url"
|
|
804
|
-
msgstr "Url"
|
|
805
|
-
|
|
806
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:55 ../lib/hammer_cli_foreman/domain.rb:42 ../lib/hammer_cli_foreman/location.rb:15 ../lib/hammer_cli_foreman/organization.rb:15 ../lib/hammer_cli_foreman/role.rb:21 ../lib/hammer_cli_foreman/settings.rb:14 ../lib/hammer_cli_foreman/smart_class_parameter.rb:59 ../lib/hammer_cli_foreman/smart_variable.rb:53 ../lib/hammer_cli_foreman/user.rb:34
|
|
807
|
-
msgid "Description"
|
|
808
|
-
msgstr "Descrizione"
|
|
809
|
-
|
|
810
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:56
|
|
811
|
-
msgid "User"
|
|
812
|
-
msgstr "Utente"
|
|
813
|
-
|
|
814
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:73
|
|
815
|
-
msgid "Compute resource created"
|
|
816
|
-
msgstr "Risorsa di calcolo creata"
|
|
817
|
-
|
|
818
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:74
|
|
819
|
-
msgid "Could not create the compute resource"
|
|
820
|
-
msgstr "Impossibile creare la risorsa di calcolo"
|
|
821
|
-
|
|
822
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:85
|
|
823
|
-
msgid "Compute resource updated"
|
|
824
|
-
msgstr "Risorsa di colacolo aggiornata"
|
|
825
|
-
|
|
826
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:86
|
|
827
|
-
msgid "Could not update the compute resource"
|
|
828
|
-
msgstr "Impossibile aggiornare la risorsa di calcolo"
|
|
829
|
-
|
|
830
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:93
|
|
831
|
-
msgid "Compute resource deleted"
|
|
832
|
-
msgstr "Risorsa di colacolo rimossa"
|
|
833
|
-
|
|
834
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:94
|
|
835
|
-
msgid "Could not delete the compute resource"
|
|
836
|
-
msgstr "Impossibile rimuovere la risorsa di calcolo"
|
|
837
|
-
|
|
838
|
-
#: ../lib/hammer_cli_foreman/compute_resources/ec2/host_help_extenstion.rb:6
|
|
839
|
-
msgid "EC2"
|
|
840
|
-
msgstr ""
|
|
841
|
-
|
|
842
|
-
#: ../lib/hammer_cli_foreman/compute_resources/gce/host_help_extenstion.rb:6
|
|
843
|
-
msgid "GCE"
|
|
844
|
-
msgstr ""
|
|
845
|
-
|
|
846
|
-
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:6
|
|
847
|
-
msgid "Libvirt"
|
|
848
|
-
msgstr ""
|
|
849
|
-
|
|
850
|
-
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:12
|
|
851
|
-
msgid "Number of CPUs"
|
|
852
|
-
msgstr ""
|
|
853
|
-
|
|
854
|
-
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:13
|
|
855
|
-
msgid "String, amount of memory, value in bytes"
|
|
856
|
-
msgstr ""
|
|
857
|
-
|
|
858
|
-
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:14 ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:16
|
|
859
|
-
msgid "Boolean (expressed as 0 or 1), whether to start the machine or not"
|
|
860
|
-
msgstr ""
|
|
861
|
-
|
|
862
|
-
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:19 ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:21 ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:28 ../lib/hammer_cli_foreman/hosts/common_update_help.rb:10 ../lib/hammer_cli_foreman/hosts/common_update_help.rb:28
|
|
863
|
-
msgid "Possible values: %s"
|
|
864
|
-
msgstr ""
|
|
865
|
-
|
|
866
|
-
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:20
|
|
867
|
-
#, fuzzy
|
|
868
|
-
msgid "Name of interface according to type"
|
|
869
|
-
msgstr "Nome"
|
|
870
|
-
|
|
871
|
-
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:26
|
|
872
|
-
msgid "One of available storage pools"
|
|
873
|
-
msgstr ""
|
|
874
|
-
|
|
875
|
-
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:27
|
|
876
|
-
msgid "String value, eg. 10G"
|
|
877
|
-
msgstr ""
|
|
878
|
-
|
|
879
|
-
#: ../lib/hammer_cli_foreman/compute_resources/openstack/host_help_extenstion.rb:6
|
|
880
|
-
msgid "OpenStack"
|
|
881
|
-
msgstr ""
|
|
882
|
-
|
|
883
|
-
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:6
|
|
884
|
-
msgid "oVirt"
|
|
885
|
-
msgstr ""
|
|
886
|
-
|
|
887
|
-
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:13
|
|
888
|
-
#, fuzzy
|
|
889
|
-
msgid "Hardware profile to use"
|
|
890
|
-
msgstr "file"
|
|
891
|
-
|
|
892
|
-
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:14
|
|
893
|
-
msgid "Integer value, number of cores"
|
|
894
|
-
msgstr ""
|
|
895
|
-
|
|
896
|
-
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:15
|
|
897
|
-
msgid "Amount of memory, integer value in bytes"
|
|
898
|
-
msgstr ""
|
|
899
|
-
|
|
900
|
-
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:21
|
|
901
|
-
msgid "Eg. eth0"
|
|
902
|
-
msgstr ""
|
|
903
|
-
|
|
904
|
-
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:22
|
|
905
|
-
msgid "Select one of available networks for a cluster"
|
|
906
|
-
msgstr ""
|
|
907
|
-
|
|
908
|
-
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:27
|
|
909
|
-
msgid "Volume size in GB, integer value"
|
|
910
|
-
msgstr ""
|
|
911
|
-
|
|
912
|
-
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:28
|
|
913
|
-
msgid "Select one of available storage domains"
|
|
914
|
-
msgstr ""
|
|
915
|
-
|
|
916
|
-
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:29
|
|
917
|
-
msgid "Boolean, only one volume can be bootable"
|
|
918
|
-
msgstr ""
|
|
919
|
-
|
|
920
|
-
#: ../lib/hammer_cli_foreman/compute_resources/rackspace/host_help_extenstion.rb:6
|
|
921
|
-
msgid "Rackspace"
|
|
922
|
-
msgstr ""
|
|
923
|
-
|
|
924
|
-
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:15
|
|
925
|
-
msgid "VMWare"
|
|
926
|
-
msgstr ""
|
|
927
|
-
|
|
928
|
-
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:21
|
|
929
|
-
msgid "Cpu count"
|
|
930
|
-
msgstr ""
|
|
931
|
-
|
|
932
|
-
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:22
|
|
933
|
-
msgid "Number of cores per socket (applicable to hardware versions < 10 only)"
|
|
934
|
-
msgstr ""
|
|
935
|
-
|
|
936
|
-
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:23
|
|
937
|
-
msgid "Integer number, amount of memory in MB"
|
|
938
|
-
msgstr ""
|
|
939
|
-
|
|
940
|
-
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:24
|
|
941
|
-
msgid "Cluster id from VMware"
|
|
942
|
-
msgstr ""
|
|
943
|
-
|
|
944
|
-
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:25
|
|
945
|
-
#, fuzzy
|
|
946
|
-
msgid "Path to folder"
|
|
947
|
-
msgstr "Percorso"
|
|
948
|
-
|
|
949
|
-
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:26
|
|
950
|
-
msgid "Guest OS id form VMware"
|
|
951
|
-
msgstr ""
|
|
952
|
-
|
|
953
|
-
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:27
|
|
954
|
-
#, fuzzy
|
|
955
|
-
msgid "Id of the controller from VMware"
|
|
956
|
-
msgstr "Id"
|
|
957
|
-
|
|
958
|
-
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:28
|
|
959
|
-
msgid "Hardware version id from VMware"
|
|
960
|
-
msgstr ""
|
|
961
|
-
|
|
962
|
-
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:29
|
|
963
|
-
msgid "Must be a 1 or 0, whether to start the machine or not"
|
|
964
|
-
msgstr ""
|
|
965
|
-
|
|
966
|
-
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:35
|
|
967
|
-
#, fuzzy
|
|
968
|
-
msgid "Network id from VMware"
|
|
969
|
-
msgstr "Rete"
|
|
970
|
-
|
|
971
|
-
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:41
|
|
972
|
-
msgid "Datastore id from VMware"
|
|
973
|
-
msgstr ""
|
|
974
|
-
|
|
975
|
-
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:42
|
|
976
|
-
msgid "Integer number, volume size in GB"
|
|
977
|
-
msgstr ""
|
|
978
|
-
|
|
979
|
-
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:53
|
|
980
|
-
#, fuzzy
|
|
981
|
-
msgid "Type of the network adapter, for example one of:"
|
|
982
|
-
msgstr "Tipo"
|
|
983
|
-
|
|
984
|
-
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:55
|
|
985
|
-
msgid "See documentation center for your version of vSphere to find more details about available adapter types:"
|
|
986
|
-
msgstr ""
|
|
987
|
-
|
|
988
|
-
#: ../lib/hammer_cli_foreman/defaults.rb:7
|
|
989
|
-
msgid "Use the default organization and/or location from the server"
|
|
990
|
-
msgstr ""
|
|
991
|
-
|
|
992
|
-
#: ../lib/hammer_cli_foreman/domain.rb:6
|
|
993
|
-
msgid "ID of DNS proxy to use within this domain"
|
|
994
|
-
msgstr "ID di DNS proxy da usare all'interno di questo dominio"
|
|
995
|
-
|
|
996
|
-
#: ../lib/hammer_cli_foreman/domain.rb:7
|
|
997
|
-
msgid "Name of DNS proxy to use within this domain"
|
|
998
|
-
msgstr "Nome di DNS proxy da usare all'interno di questo dominio"
|
|
999
|
-
|
|
1000
|
-
#: ../lib/hammer_cli_foreman/domain.rb:43
|
|
1001
|
-
msgid "DNS Id"
|
|
1002
|
-
msgstr "id DNS"
|
|
1003
|
-
|
|
1004
|
-
#: ../lib/hammer_cli_foreman/domain.rb:57
|
|
1005
|
-
msgid "Domain [%{name}] created"
|
|
1006
|
-
msgstr "Dominio [%{name}] creato"
|
|
1007
|
-
|
|
1008
|
-
#: ../lib/hammer_cli_foreman/domain.rb:58
|
|
1009
|
-
msgid "Could not create the domain"
|
|
1010
|
-
msgstr "Impossibile creare il dominio"
|
|
1011
|
-
|
|
1012
|
-
#: ../lib/hammer_cli_foreman/domain.rb:60 ../lib/hammer_cli_foreman/domain.rb:71
|
|
1013
|
-
msgid "Full name describing the domain"
|
|
1014
|
-
msgstr "Nome completo che descrive il dominio"
|
|
1015
|
-
|
|
1016
|
-
#: ../lib/hammer_cli_foreman/domain.rb:68
|
|
1017
|
-
msgid "Domain [%{name}] updated"
|
|
1018
|
-
msgstr "Dominio [%{name}] aggiornato"
|
|
1019
|
-
|
|
1020
|
-
#: ../lib/hammer_cli_foreman/domain.rb:69
|
|
1021
|
-
msgid "Could not update the domain"
|
|
1022
|
-
msgstr "Impossibile aggiornare il dominio"
|
|
1023
|
-
|
|
1024
|
-
#: ../lib/hammer_cli_foreman/domain.rb:78
|
|
1025
|
-
msgid "Domain [%{name}] deleted"
|
|
1026
|
-
msgstr "Dominio [%{name}] rimosso"
|
|
1027
|
-
|
|
1028
|
-
#: ../lib/hammer_cli_foreman/domain.rb:79
|
|
1029
|
-
msgid "Could not delete the domain"
|
|
1030
|
-
msgstr "Impossibile rimuovere il dominio"
|
|
1031
|
-
|
|
1032
|
-
#: ../lib/hammer_cli_foreman/domain.rb:86
|
|
1033
|
-
msgid "Create or update parameter for a domain."
|
|
1034
|
-
msgstr "Crea o aggiorna il parametro per un dominio."
|
|
1035
|
-
|
|
1036
|
-
#: ../lib/hammer_cli_foreman/domain.rb:88
|
|
1037
|
-
msgid "Domain parameter updated"
|
|
1038
|
-
msgstr "Parametro dominio aggiornato"
|
|
1039
|
-
|
|
1040
|
-
#: ../lib/hammer_cli_foreman/domain.rb:89
|
|
1041
|
-
msgid "New domain parameter created"
|
|
1042
|
-
msgstr "Creato un nuovo parametro del dominio"
|
|
1043
|
-
|
|
1044
|
-
#: ../lib/hammer_cli_foreman/domain.rb:90
|
|
1045
|
-
msgid "Could not set domain parameter"
|
|
1046
|
-
msgstr "Impossibile impostare il parametro del dominio"
|
|
1047
|
-
|
|
1048
|
-
#: ../lib/hammer_cli_foreman/domain.rb:102
|
|
1049
|
-
msgid "Delete parameter for a domain."
|
|
1050
|
-
msgstr "Rimuovi parametro di un dominio."
|
|
1051
|
-
|
|
1052
|
-
#: ../lib/hammer_cli_foreman/domain.rb:104
|
|
1053
|
-
msgid "Domain parameter deleted"
|
|
1054
|
-
msgstr "Parametro dominio rimosso"
|
|
1055
|
-
|
|
1056
|
-
#: ../lib/hammer_cli_foreman/environment.rb:34
|
|
1057
|
-
msgid "Environment created"
|
|
1058
|
-
msgstr "Ambiente creato"
|
|
1059
|
-
|
|
1060
|
-
#: ../lib/hammer_cli_foreman/environment.rb:35
|
|
1061
|
-
msgid "Could not create the environment"
|
|
1062
|
-
msgstr "Impossibile creare l'ambiente"
|
|
1063
|
-
|
|
1064
|
-
#: ../lib/hammer_cli_foreman/environment.rb:42
|
|
1065
|
-
msgid "Environment updated"
|
|
1066
|
-
msgstr "Ambiente aggiornato"
|
|
1067
|
-
|
|
1068
|
-
#: ../lib/hammer_cli_foreman/environment.rb:43
|
|
1069
|
-
msgid "Could not update the environment"
|
|
1070
|
-
msgstr "Impossibile aggiornare l'ambiente"
|
|
1071
|
-
|
|
1072
|
-
#: ../lib/hammer_cli_foreman/environment.rb:50
|
|
1073
|
-
msgid "Environment deleted"
|
|
1074
|
-
msgstr "Ambiente rimosso"
|
|
1075
|
-
|
|
1076
|
-
#: ../lib/hammer_cli_foreman/environment.rb:51
|
|
1077
|
-
msgid "Could not delete the environment"
|
|
1078
|
-
msgstr "Impossibile rimuovere l'ambiente"
|
|
1079
|
-
|
|
1080
|
-
#: ../lib/hammer_cli_foreman/exception_handler.rb:29
|
|
1081
|
-
msgid "Redirection of API call detected."
|
|
1082
|
-
msgstr ""
|
|
1083
|
-
|
|
1084
|
-
#: ../lib/hammer_cli_foreman/exception_handler.rb:30
|
|
1085
|
-
msgid "It seems hammer is configured to use HTTP and the server prefers HTTPS."
|
|
1086
|
-
msgstr ""
|
|
1087
|
-
|
|
1088
|
-
#: ../lib/hammer_cli_foreman/exception_handler.rb:32
|
|
1089
|
-
msgid "Update your server url configuration"
|
|
1090
|
-
msgstr ""
|
|
1091
|
-
|
|
1092
|
-
#: ../lib/hammer_cli_foreman/exception_handler.rb:33
|
|
1093
|
-
msgid "you can set 'follow_redirects' to one of :default or :always to enable redirects following"
|
|
1094
|
-
msgstr ""
|
|
1095
|
-
|
|
1096
|
-
#: ../lib/hammer_cli_foreman/exception_handler.rb:54
|
|
1097
|
-
msgid "Forbidden - server refused to process the request"
|
|
1098
|
-
msgstr "Non consentito - il server ha rifiutato di processare la richiesta"
|
|
1099
|
-
|
|
1100
|
-
#: ../lib/hammer_cli_foreman/exception_handler.rb:88
|
|
1101
|
-
msgid "Could not load the API description from the server"
|
|
1102
|
-
msgstr "Impossibile caricare la descrizione API dal server"
|
|
1103
|
-
|
|
1104
|
-
#: ../lib/hammer_cli_foreman/exception_handler.rb:89
|
|
1105
|
-
msgid "is the server down?"
|
|
1106
|
-
msgstr "il server non è attivo?"
|
|
1107
|
-
|
|
1108
|
-
#: ../lib/hammer_cli_foreman/exception_handler.rb:90
|
|
1109
|
-
msgid "was '%s' run on the server when using apipie cache? (typical production settings)"
|
|
1110
|
-
msgstr "'%s' era in esecuzione sul server durante l'utilizzo di apipie cache? (impostazioni tipiche di produzione)"
|
|
1111
|
-
|
|
1112
|
-
#: ../lib/hammer_cli_foreman/external_usergroup.rb:6
|
|
1113
|
-
msgid "View and manage user group's external user groups"
|
|
1114
|
-
msgstr "Visualizza e gestisci i gruppi di utenti esterni del gruppo di utenti"
|
|
1115
|
-
|
|
1116
|
-
#: ../lib/hammer_cli_foreman/external_usergroup.rb:12 ../lib/hammer_cli_foreman/external_usergroup.rb:43
|
|
1117
|
-
msgid "Auth source"
|
|
1118
|
-
msgstr "Sorgente di autenticazione"
|
|
1119
|
-
|
|
1120
|
-
#: ../lib/hammer_cli_foreman/external_usergroup.rb:39
|
|
1121
|
-
msgid "Refresh external user group"
|
|
1122
|
-
msgstr "Aggiorna il gruppo di utenti esterno"
|
|
1123
|
-
|
|
1124
|
-
#: ../lib/hammer_cli_foreman/external_usergroup.rb:57
|
|
1125
|
-
msgid "External user group created"
|
|
1126
|
-
msgstr "Gruppo di utenti esterno creato"
|
|
1127
|
-
|
|
1128
|
-
#: ../lib/hammer_cli_foreman/external_usergroup.rb:58
|
|
1129
|
-
msgid "Could not create external user group"
|
|
1130
|
-
msgstr "Impossibile creare il gruppo di utenti esterno"
|
|
1131
|
-
|
|
1132
|
-
#: ../lib/hammer_cli_foreman/external_usergroup.rb:65
|
|
1133
|
-
msgid "External user group updated"
|
|
1134
|
-
msgstr "Gruppo di utenti esterno aggiornato"
|
|
1135
|
-
|
|
1136
|
-
#: ../lib/hammer_cli_foreman/external_usergroup.rb:66
|
|
1137
|
-
msgid "Could not update external user group"
|
|
1138
|
-
msgstr "Impossibile aggiornare il gruppo di utenti esterno"
|
|
1139
|
-
|
|
1140
|
-
#: ../lib/hammer_cli_foreman/external_usergroup.rb:73
|
|
1141
|
-
msgid "External user group deleted"
|
|
1142
|
-
msgstr "Gruppo di utenti esterno rimosso"
|
|
1143
|
-
|
|
1144
|
-
#: ../lib/hammer_cli_foreman/external_usergroup.rb:74
|
|
1145
|
-
msgid "Could not delete the external user group"
|
|
1146
|
-
msgstr "Impossibile cancellare il gruppo di utenti esterno"
|
|
1147
|
-
|
|
1148
|
-
#: ../lib/hammer_cli_foreman/fact.rb:12 ../lib/hammer_cli_foreman/report.rb:11 ../lib/hammer_cli_foreman/report.rb:31
|
|
1149
|
-
msgid "Host"
|
|
1150
|
-
msgstr "Host"
|
|
1151
|
-
|
|
1152
|
-
#: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:188
|
|
1153
|
-
msgid "Fact"
|
|
1154
|
-
msgstr "Evento"
|
|
1155
|
-
|
|
1156
|
-
#: ../lib/hammer_cli_foreman/filter.rb:10
|
|
1157
|
-
msgid "Resource type"
|
|
1158
|
-
msgstr "Tipo di risorsa"
|
|
1159
|
-
|
|
1160
|
-
#: ../lib/hammer_cli_foreman/filter.rb:11
|
|
1161
|
-
msgid "Search"
|
|
1162
|
-
msgstr "Cerca"
|
|
1163
|
-
|
|
1164
|
-
#: ../lib/hammer_cli_foreman/filter.rb:12
|
|
1165
|
-
msgid "Unlimited?"
|
|
1166
|
-
msgstr "Illimitato?"
|
|
1167
|
-
|
|
1168
|
-
#: ../lib/hammer_cli_foreman/filter.rb:13
|
|
1169
|
-
#, fuzzy
|
|
1170
|
-
msgid "Override?"
|
|
1171
|
-
msgstr "Override"
|
|
1172
|
-
|
|
1173
|
-
#: ../lib/hammer_cli_foreman/filter.rb:14
|
|
1174
|
-
msgid "Role"
|
|
1175
|
-
msgstr "Ruolo"
|
|
1176
|
-
|
|
1177
|
-
#: ../lib/hammer_cli_foreman/filter.rb:15
|
|
1178
|
-
msgid "Permissions"
|
|
1179
|
-
msgstr "Permessi"
|
|
1180
|
-
|
|
1181
|
-
#: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/filter.rb:79 ../lib/hammer_cli_foreman/role.rb:42
|
|
1182
|
-
msgid "(Miscellaneous)"
|
|
1183
|
-
msgstr "(Altro)"
|
|
1184
|
-
|
|
1185
|
-
#: ../lib/hammer_cli_foreman/filter.rb:20 ../lib/hammer_cli_foreman/filter.rb:36 ../lib/hammer_cli_foreman/role.rb:43
|
|
1186
|
-
msgid "none"
|
|
1187
|
-
msgstr "nessuno"
|
|
1188
|
-
|
|
1189
|
-
#: ../lib/hammer_cli_foreman/filter.rb:45
|
|
1190
|
-
msgid "Permission filter for [%<resource_type>s] created"
|
|
1191
|
-
msgstr "Filtro permessi per [%<resource_type>s] creato"
|
|
1192
|
-
|
|
1193
|
-
#: ../lib/hammer_cli_foreman/filter.rb:46
|
|
1194
|
-
msgid "Could not create the permission filter"
|
|
1195
|
-
msgstr "Impossibile creare il filtro dei permessi"
|
|
1196
|
-
|
|
1197
|
-
#: ../lib/hammer_cli_foreman/filter.rb:53
|
|
1198
|
-
msgid "Permission filter for [%<resource_type>s] updated"
|
|
1199
|
-
msgstr "Filtro permessi per [%<resource_type>s] aggiornato"
|
|
1200
|
-
|
|
1201
|
-
#: ../lib/hammer_cli_foreman/filter.rb:54
|
|
1202
|
-
msgid "Could not update the permission filter"
|
|
1203
|
-
msgstr "Impossibile aggiornare il filtro dei permessi"
|
|
1204
|
-
|
|
1205
|
-
#: ../lib/hammer_cli_foreman/filter.rb:61
|
|
1206
|
-
msgid "Permission filter deleted"
|
|
1207
|
-
msgstr "Filtro permessi rimosso"
|
|
1208
|
-
|
|
1209
|
-
#: ../lib/hammer_cli_foreman/filter.rb:62
|
|
1210
|
-
msgid "Could not delete the permission filter"
|
|
1211
|
-
msgstr "Impossibile cancellare il filtro dei permessi"
|
|
1212
|
-
|
|
1213
|
-
#: ../lib/hammer_cli_foreman/filter.rb:75 ../lib/hammer_cli_foreman/report.rb:62
|
|
1214
|
-
msgid "Resource"
|
|
1215
|
-
msgstr "Risorsa"
|
|
1216
|
-
|
|
1217
|
-
#: ../lib/hammer_cli_foreman/host.rb:32 ../lib/hammer_cli_foreman/host.rb:103 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
|
|
1218
|
-
msgid "Operating System"
|
|
1219
|
-
msgstr "Sistema Operativo"
|
|
1220
|
-
|
|
1221
|
-
#: ../lib/hammer_cli_foreman/host.rb:33 ../lib/hammer_cli_foreman/host.rb:67
|
|
1222
|
-
msgid "Host Group"
|
|
1223
|
-
msgstr "Gruppo di host"
|
|
1224
|
-
|
|
1225
|
-
#: ../lib/hammer_cli_foreman/host.rb:34 ../lib/hammer_cli_foreman/host.rb:80
|
|
1226
|
-
msgid "IP"
|
|
1227
|
-
msgstr "IP"
|
|
1228
|
-
|
|
1229
|
-
#: ../lib/hammer_cli_foreman/host.rb:35 ../lib/hammer_cli_foreman/host.rb:81
|
|
1230
|
-
msgid "MAC"
|
|
1231
|
-
msgstr "MAC"
|
|
1232
|
-
|
|
1233
|
-
#: ../lib/hammer_cli_foreman/host.rb:45
|
|
1234
|
-
msgid "Bare Metal"
|
|
1235
|
-
msgstr "Bare Metal"
|
|
1236
|
-
|
|
1237
|
-
#: ../lib/hammer_cli_foreman/host.rb:63 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
|
|
1238
|
-
msgid "UUID"
|
|
1239
|
-
msgstr "UUID"
|
|
1240
|
-
|
|
1241
|
-
#: ../lib/hammer_cli_foreman/host.rb:65
|
|
1242
|
-
msgid "Organization"
|
|
1243
|
-
msgstr "Organizzazione"
|
|
1244
|
-
|
|
1245
|
-
#: ../lib/hammer_cli_foreman/host.rb:66
|
|
1246
|
-
msgid "Location"
|
|
1247
|
-
msgstr "Posizione"
|
|
1248
|
-
|
|
1249
|
-
#: ../lib/hammer_cli_foreman/host.rb:68
|
|
1250
|
-
msgid "Compute Resource"
|
|
1251
|
-
msgstr "Risorsa di calcolo"
|
|
1252
|
-
|
|
1253
|
-
#: ../lib/hammer_cli_foreman/host.rb:69
|
|
1254
|
-
msgid "Compute Profile"
|
|
1255
|
-
msgstr "Profilo di calcolo"
|
|
1256
|
-
|
|
1257
|
-
#: ../lib/hammer_cli_foreman/host.rb:70 ../lib/hammer_cli_foreman/hostgroup.rb:61
|
|
1258
|
-
msgid "Environment"
|
|
1259
|
-
msgstr "Ambiente"
|
|
1260
|
-
|
|
1261
|
-
#: ../lib/hammer_cli_foreman/host.rb:71
|
|
1262
|
-
msgid "Puppet CA Id"
|
|
1263
|
-
msgstr ""
|
|
1264
|
-
|
|
1265
|
-
#: ../lib/hammer_cli_foreman/host.rb:72
|
|
1266
|
-
msgid "Puppet Master Id"
|
|
1267
|
-
msgstr ""
|
|
1268
|
-
|
|
1269
|
-
#: ../lib/hammer_cli_foreman/host.rb:73
|
|
1270
|
-
msgid "Cert name"
|
|
1271
|
-
msgstr "Nome certificato"
|
|
1272
|
-
|
|
1273
|
-
#: ../lib/hammer_cli_foreman/host.rb:74 ../lib/hammer_cli_foreman/interface.rb:51
|
|
1274
|
-
msgid "Managed"
|
|
1275
|
-
msgstr "Gestito"
|
|
1276
|
-
|
|
1277
|
-
#: ../lib/hammer_cli_foreman/host.rb:76
|
|
1278
|
-
msgid "Installed at"
|
|
1279
|
-
msgstr "Installato"
|
|
1280
|
-
|
|
1281
|
-
#: ../lib/hammer_cli_foreman/host.rb:77 ../lib/hammer_cli_foreman/report.rb:12
|
|
1282
|
-
msgid "Last report"
|
|
1283
|
-
msgstr "Ultimo riporto"
|
|
1284
|
-
|
|
1285
|
-
#: ../lib/hammer_cli_foreman/host.rb:79 ../lib/hammer_cli_foreman/subnet.rb:12
|
|
1286
|
-
msgid "Network"
|
|
1287
|
-
msgstr "Rete"
|
|
1288
|
-
|
|
1289
|
-
#: ../lib/hammer_cli_foreman/host.rb:82 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
|
|
1290
|
-
msgid "Subnet"
|
|
1291
|
-
msgstr "Sottorete"
|
|
1292
|
-
|
|
1293
|
-
#: ../lib/hammer_cli_foreman/host.rb:83 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
|
|
1294
|
-
msgid "Domain"
|
|
1295
|
-
msgstr "Dominio"
|
|
1296
|
-
|
|
1297
|
-
#: ../lib/hammer_cli_foreman/host.rb:84
|
|
1298
|
-
msgid "Service provider"
|
|
1299
|
-
msgstr ""
|
|
1300
|
-
|
|
1301
|
-
#: ../lib/hammer_cli_foreman/host.rb:85
|
|
1302
|
-
msgid "SP Name"
|
|
1303
|
-
msgstr "Nome SP"
|
|
1304
|
-
|
|
1305
|
-
#: ../lib/hammer_cli_foreman/host.rb:86
|
|
1306
|
-
msgid "SP IP"
|
|
1307
|
-
msgstr "IP SP"
|
|
1308
|
-
|
|
1309
|
-
#: ../lib/hammer_cli_foreman/host.rb:87
|
|
1310
|
-
msgid "SP MAC"
|
|
1311
|
-
msgstr "MCA SP"
|
|
1312
|
-
|
|
1313
|
-
#: ../lib/hammer_cli_foreman/host.rb:88
|
|
1314
|
-
msgid "SP Subnet"
|
|
1315
|
-
msgstr "Sottorete SP"
|
|
1316
|
-
|
|
1317
|
-
#: ../lib/hammer_cli_foreman/host.rb:92
|
|
1318
|
-
msgid "Network interfaces"
|
|
1319
|
-
msgstr "Interfaccia di rete"
|
|
1320
|
-
|
|
1321
|
-
#: ../lib/hammer_cli_foreman/host.rb:94 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
|
|
1322
|
-
msgid "Identifier"
|
|
1323
|
-
msgstr "Indetificatore"
|
|
1324
|
-
|
|
1325
|
-
#: ../lib/hammer_cli_foreman/host.rb:95 ../lib/hammer_cli_foreman/interface.rb:25 ../lib/hammer_cli_foreman/interface.rb:45 ../lib/hammer_cli_foreman/smart_class_parameter.rb:60 ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:57 ../lib/hammer_cli_foreman/template.rb:27
|
|
1326
|
-
msgid "Type"
|
|
1327
|
-
msgstr "Tipo"
|
|
1328
|
-
|
|
1329
|
-
#: ../lib/hammer_cli_foreman/host.rb:96 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
|
|
1330
|
-
msgid "MAC address"
|
|
1331
|
-
msgstr "Indirizzo MAC"
|
|
1332
|
-
|
|
1333
|
-
#: ../lib/hammer_cli_foreman/host.rb:97 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
|
|
1334
|
-
msgid "IP address"
|
|
1335
|
-
msgstr "indirizzo IP"
|
|
1336
|
-
|
|
1337
|
-
#: ../lib/hammer_cli_foreman/host.rb:98
|
|
1338
|
-
msgid "FQDN"
|
|
1339
|
-
msgstr ""
|
|
1340
|
-
|
|
1341
|
-
#: ../lib/hammer_cli_foreman/host.rb:101
|
|
1342
|
-
msgid "Operating system"
|
|
1343
|
-
msgstr "Sistema operativo"
|
|
1344
|
-
|
|
1345
|
-
#: ../lib/hammer_cli_foreman/host.rb:102 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
|
|
1346
|
-
msgid "Architecture"
|
|
1347
|
-
msgstr "Architettura"
|
|
1348
|
-
|
|
1349
|
-
#: ../lib/hammer_cli_foreman/host.rb:106
|
|
1350
|
-
msgid "Build"
|
|
1351
|
-
msgstr "Compilazione"
|
|
1352
|
-
|
|
1353
|
-
#: ../lib/hammer_cli_foreman/host.rb:107 ../lib/hammer_cli_foreman/hostgroup.rb:77
|
|
1354
|
-
msgid "Medium"
|
|
1355
|
-
msgstr "Supporto"
|
|
1356
|
-
|
|
1357
|
-
#: ../lib/hammer_cli_foreman/host.rb:108 ../lib/hammer_cli_foreman/hostgroup.rb:76
|
|
1358
|
-
msgid "Partition Table"
|
|
1359
|
-
msgstr "Tabella delle partizioni"
|
|
1360
|
-
|
|
1361
|
-
#: ../lib/hammer_cli_foreman/host.rb:109
|
|
1362
|
-
msgid "Custom partition table"
|
|
1363
|
-
msgstr ""
|
|
1364
|
-
|
|
1365
|
-
#: ../lib/hammer_cli_foreman/host.rb:112
|
|
1366
|
-
msgid "Image"
|
|
1367
|
-
msgstr "Immagine"
|
|
1368
|
-
|
|
1369
|
-
#: ../lib/hammer_cli_foreman/host.rb:113
|
|
1370
|
-
msgid "Image file"
|
|
1371
|
-
msgstr "File immagine"
|
|
1372
|
-
|
|
1373
|
-
#: ../lib/hammer_cli_foreman/host.rb:114
|
|
1374
|
-
msgid "Use image"
|
|
1375
|
-
msgstr "Usa immagine"
|
|
1376
|
-
|
|
1377
|
-
#: ../lib/hammer_cli_foreman/host.rb:120
|
|
1378
|
-
msgid "Additional info"
|
|
1379
|
-
msgstr "Info aggiuntive"
|
|
1380
|
-
|
|
1381
|
-
#: ../lib/hammer_cli_foreman/host.rb:121
|
|
1382
|
-
msgid "Owner Id"
|
|
1383
|
-
msgstr "ID proprietario"
|
|
1384
|
-
|
|
1385
|
-
#: ../lib/hammer_cli_foreman/host.rb:122
|
|
1386
|
-
msgid "Owner Type"
|
|
1387
|
-
msgstr "Tipo di proprietario"
|
|
1388
|
-
|
|
1389
|
-
#: ../lib/hammer_cli_foreman/host.rb:123
|
|
1390
|
-
msgid "Enabled"
|
|
1391
|
-
msgstr "Abilitato"
|
|
1392
|
-
|
|
1393
|
-
#: ../lib/hammer_cli_foreman/host.rb:124 ../lib/hammer_cli_foreman/hostgroup.rb:62
|
|
1394
|
-
msgid "Model"
|
|
1395
|
-
msgstr "Modello"
|
|
1396
|
-
|
|
1397
|
-
#: ../lib/hammer_cli_foreman/host.rb:125
|
|
1398
|
-
msgid "Comment"
|
|
1399
|
-
msgstr "Commento"
|
|
1400
|
-
|
|
1401
|
-
#: ../lib/hammer_cli_foreman/host.rb:138
|
|
1402
|
-
msgid "Status"
|
|
1403
|
-
msgstr "Stato"
|
|
1404
|
-
|
|
1405
|
-
#: ../lib/hammer_cli_foreman/host.rb:139
|
|
1406
|
-
msgid "Power"
|
|
1407
|
-
msgstr "Alimentazione"
|
|
1408
|
-
|
|
1409
|
-
#: ../lib/hammer_cli_foreman/host.rb:175
|
|
1410
|
-
msgid "Puppet run triggered"
|
|
1411
|
-
msgstr "Esecuzione puppet attivata"
|
|
1412
|
-
|
|
1413
|
-
#: ../lib/hammer_cli_foreman/host.rb:228
|
|
1414
|
-
msgid "Host created"
|
|
1415
|
-
msgstr "Host creato"
|
|
1416
|
-
|
|
1417
|
-
#: ../lib/hammer_cli_foreman/host.rb:229
|
|
1418
|
-
msgid "Could not create the host"
|
|
1419
|
-
msgstr "Impossibile creare l'host"
|
|
1420
|
-
|
|
1421
|
-
#: ../lib/hammer_cli_foreman/host.rb:247
|
|
1422
|
-
msgid "Host updated"
|
|
1423
|
-
msgstr "Host aggiornato"
|
|
1424
|
-
|
|
1425
|
-
#: ../lib/hammer_cli_foreman/host.rb:248
|
|
1426
|
-
msgid "Could not update the host"
|
|
1427
|
-
msgstr "Impossibile aggiornare l'host"
|
|
1428
|
-
|
|
1429
|
-
#: ../lib/hammer_cli_foreman/host.rb:256
|
|
1430
|
-
msgid "Host deleted"
|
|
1431
|
-
msgstr "Host rimosso"
|
|
1432
|
-
|
|
1433
|
-
#: ../lib/hammer_cli_foreman/host.rb:257
|
|
1434
|
-
msgid "Could not delete the host"
|
|
1435
|
-
msgstr "Impossibile rimuovere l'host"
|
|
1436
|
-
|
|
1437
|
-
#: ../lib/hammer_cli_foreman/host.rb:264
|
|
1438
|
-
msgid "Create or update parameter for a host."
|
|
1439
|
-
msgstr "Creare o aggiornare il parametro per un host."
|
|
1440
|
-
|
|
1441
|
-
#: ../lib/hammer_cli_foreman/host.rb:266
|
|
1442
|
-
msgid "Host parameter updated"
|
|
1443
|
-
msgstr "Parametro host aggiornato"
|
|
1444
|
-
|
|
1445
|
-
#: ../lib/hammer_cli_foreman/host.rb:267
|
|
1446
|
-
msgid "New host parameter created"
|
|
1447
|
-
msgstr "Creato nuovo parametro dell'host"
|
|
1448
|
-
|
|
1449
|
-
#: ../lib/hammer_cli_foreman/host.rb:268
|
|
1450
|
-
msgid "Could not set host parameter"
|
|
1451
|
-
msgstr "Impossibile impostare il parametro dell'host"
|
|
1452
|
-
|
|
1453
|
-
#: ../lib/hammer_cli_foreman/host.rb:280
|
|
1454
|
-
msgid "Delete parameter for a host."
|
|
1455
|
-
msgstr "Cancella il parametro per un host."
|
|
1456
|
-
|
|
1457
|
-
#: ../lib/hammer_cli_foreman/host.rb:282
|
|
1458
|
-
msgid "Host parameter deleted"
|
|
1459
|
-
msgstr "Parametro host cancellato"
|
|
1460
|
-
|
|
1461
|
-
#: ../lib/hammer_cli_foreman/host.rb:297
|
|
1462
|
-
msgid "Power a host on"
|
|
1463
|
-
msgstr "Attiva un host"
|
|
1464
|
-
|
|
1465
|
-
#: ../lib/hammer_cli_foreman/host.rb:298
|
|
1466
|
-
msgid "The host is starting."
|
|
1467
|
-
msgstr "L'host è stato avviato."
|
|
1468
|
-
|
|
1469
|
-
#: ../lib/hammer_cli_foreman/host.rb:315
|
|
1470
|
-
msgid "Force turning off a host"
|
|
1471
|
-
msgstr "Forza la disattivazione di un host."
|
|
1472
|
-
|
|
1473
|
-
#: ../lib/hammer_cli_foreman/host.rb:320
|
|
1474
|
-
msgid "Power a host off"
|
|
1475
|
-
msgstr "Disattiva un host"
|
|
1476
|
-
|
|
1477
|
-
#: ../lib/hammer_cli_foreman/host.rb:332
|
|
1478
|
-
msgid "Power off forced."
|
|
1479
|
-
msgstr "Disattivazione forzata."
|
|
1480
|
-
|
|
1481
|
-
#: ../lib/hammer_cli_foreman/host.rb:334
|
|
1482
|
-
msgid "Powering the host off."
|
|
1483
|
-
msgstr "Disattivazione host in corso."
|
|
1484
|
-
|
|
1485
|
-
#: ../lib/hammer_cli_foreman/host.rb:351
|
|
1486
|
-
msgid "Reboot a host"
|
|
1487
|
-
msgstr "Riavvia un host"
|
|
1488
|
-
|
|
1489
|
-
#: ../lib/hammer_cli_foreman/host.rb:352
|
|
1490
|
-
msgid "Host reboot started."
|
|
1491
|
-
msgstr "Riavvio host iniziato."
|
|
1492
|
-
|
|
1493
|
-
#: ../lib/hammer_cli_foreman/host.rb:388
|
|
1494
|
-
msgid "Rebuild orchestration related configurations for host"
|
|
1495
|
-
msgstr ""
|
|
1496
|
-
|
|
1497
|
-
#: ../lib/hammer_cli_foreman/host.rb:389
|
|
1498
|
-
msgid "Configuration successfully rebuilt."
|
|
1499
|
-
msgstr ""
|
|
1500
|
-
|
|
1501
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:10
|
|
1502
|
-
msgid "List of puppetclass ids"
|
|
1503
|
-
msgstr "Elenco di id puppetclass"
|
|
1504
|
-
|
|
1505
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:12
|
|
1506
|
-
msgid "Name of puppet CA proxy"
|
|
1507
|
-
msgstr "Nome proxy CA del puppet"
|
|
1508
|
-
|
|
1509
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:13
|
|
1510
|
-
msgid "Name of puppet proxy"
|
|
1511
|
-
msgstr "Nome proxy del puppet"
|
|
1512
|
-
|
|
1513
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:14
|
|
1514
|
-
msgid "Name of parent hostgroup"
|
|
1515
|
-
msgstr "Nome dell'hostgroup genitore"
|
|
1516
|
-
|
|
1517
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:17
|
|
1518
|
-
msgid "Root password"
|
|
1519
|
-
msgstr "Password root"
|
|
1520
|
-
|
|
1521
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:23
|
|
1522
|
-
msgid "Enter the root password for the host group:"
|
|
1523
|
-
msgstr ""
|
|
1524
|
-
|
|
1525
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:59 ../lib/hammer_cli_foreman/operating_system.rb:11
|
|
1526
|
-
msgid "Title"
|
|
1527
|
-
msgstr "Qualifica"
|
|
1528
|
-
|
|
1529
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:78
|
|
1530
|
-
msgid "Puppet CA Proxy Id"
|
|
1531
|
-
msgstr "ID CA Proxy del Puppet"
|
|
1532
|
-
|
|
1533
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:79
|
|
1534
|
-
msgid "Puppet Master Proxy Id"
|
|
1535
|
-
msgstr "ID Proxy master del Puppet"
|
|
1536
|
-
|
|
1537
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:80
|
|
1538
|
-
msgid "ComputeProfile"
|
|
1539
|
-
msgstr "ComputeProfile"
|
|
1540
|
-
|
|
1541
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:84
|
|
1542
|
-
msgid "Parent Id"
|
|
1543
|
-
msgstr "ID genitore"
|
|
1544
|
-
|
|
1545
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:94
|
|
1546
|
-
msgid "Hostgroup created"
|
|
1547
|
-
msgstr "Hostgroup creato"
|
|
1548
|
-
|
|
1549
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:95
|
|
1550
|
-
msgid "Could not create the hostgroup"
|
|
1551
|
-
msgstr "Impossibile creare l'hostgroup"
|
|
1552
|
-
|
|
1553
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:104
|
|
1554
|
-
msgid "Hostgroup updated"
|
|
1555
|
-
msgstr "Hostgroup aggiornato"
|
|
1556
|
-
|
|
1557
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:105
|
|
1558
|
-
msgid "Could not update the hostgroup"
|
|
1559
|
-
msgstr "Impossibile aggiornare l'hostgroup"
|
|
1560
|
-
|
|
1561
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:112
|
|
1562
|
-
msgid "Hostgroup deleted"
|
|
1563
|
-
msgstr "Hostgroup rimosso"
|
|
1564
|
-
|
|
1565
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:113
|
|
1566
|
-
msgid "Could not delete the hostgroup"
|
|
1567
|
-
msgstr "Impossibile rimuovere l'hostgroup"
|
|
1568
|
-
|
|
1569
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:137
|
|
1570
|
-
msgid "Create or update parameter for a hostgroup."
|
|
1571
|
-
msgstr "Creare o aggiornare un parametro per un hostgroup."
|
|
1572
|
-
|
|
1573
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:139
|
|
1574
|
-
msgid "Hostgroup parameter updated"
|
|
1575
|
-
msgstr "Parametro hostgroup aggiornato"
|
|
1576
|
-
|
|
1577
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:140
|
|
1578
|
-
msgid "New hostgroup parameter created"
|
|
1579
|
-
msgstr "Creato nuovo parametro hostgroup"
|
|
1580
|
-
|
|
1581
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:141
|
|
1582
|
-
msgid "Could not set hostgroup parameter"
|
|
1583
|
-
msgstr "Impossibile impostare il parametro hostgroup"
|
|
1584
|
-
|
|
1585
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:148
|
|
1586
|
-
msgid "Delete parameter for a hostgroup."
|
|
1587
|
-
msgstr "Cancella il parametro per un hostgroup."
|
|
1588
|
-
|
|
1589
|
-
#: ../lib/hammer_cli_foreman/hostgroup.rb:150
|
|
1590
|
-
msgid "Hostgroup parameter deleted"
|
|
1591
|
-
msgstr "Parametro hostgroup cancellato"
|
|
1592
|
-
|
|
1593
|
-
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:6
|
|
1594
|
-
msgid "Available keys for %{option}"
|
|
1595
|
-
msgstr ""
|
|
1596
|
-
|
|
1597
|
-
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:16
|
|
1598
|
-
msgid "%{value}, each managed hosts needs to have one primary interface."
|
|
1599
|
-
msgstr ""
|
|
1600
|
-
|
|
1601
|
-
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:20 ../lib/hammer_cli_foreman/hosts/common_update_help.rb:26 ../lib/hammer_cli_foreman/hosts/common_update_help.rb:33
|
|
1602
|
-
msgid "For %{condition}"
|
|
1603
|
-
msgstr ""
|
|
1604
|
-
|
|
1605
|
-
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:22
|
|
1606
|
-
#, fuzzy
|
|
1607
|
-
msgid "VLAN tag, this attribute has precedence over the subnet VLAN ID. Only for virtual interfaces."
|
|
1608
|
-
msgstr "VLAN ID"
|
|
1609
|
-
|
|
1610
|
-
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:23
|
|
1611
|
-
#, fuzzy
|
|
1612
|
-
msgid "Identifier of the interface to which this interface belongs, e.g. eth1."
|
|
1613
|
-
msgstr "Indetificatore"
|
|
1614
|
-
|
|
1615
|
-
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:29
|
|
1616
|
-
#, fuzzy
|
|
1617
|
-
msgid "Identifiers of slave interfaces, e.g. [eth1,eth2]"
|
|
1618
|
-
msgstr "Indetificatore"
|
|
1619
|
-
|
|
1620
|
-
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:35
|
|
1621
|
-
#, fuzzy
|
|
1622
|
-
msgid "always IPMI"
|
|
1623
|
-
msgstr "IP"
|
|
1624
|
-
|
|
1625
|
-
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:42
|
|
1626
|
-
#, fuzzy
|
|
1627
|
-
msgid "Provider specific options"
|
|
1628
|
-
msgstr "Provider"
|
|
1629
|
-
|
|
1630
|
-
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:6
|
|
1631
|
-
msgid "Login of the owner"
|
|
1632
|
-
msgstr "Login del proprietario"
|
|
1633
|
-
|
|
1634
|
-
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:8
|
|
1635
|
-
msgid "ID of the owner"
|
|
1636
|
-
msgstr "ID del proprietario"
|
|
1637
|
-
|
|
1638
|
-
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:35
|
|
1639
|
-
msgid "Host parameters."
|
|
1640
|
-
msgstr "Parametri host"
|
|
1641
|
-
|
|
1642
|
-
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:37
|
|
1643
|
-
msgid "Compute resource attributes."
|
|
1644
|
-
msgstr "Attributi risorsa di colacolo."
|
|
1645
|
-
|
|
1646
|
-
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:39
|
|
1647
|
-
msgid "Volume parameters"
|
|
1648
|
-
msgstr "Parametri del volume"
|
|
1649
|
-
|
|
1650
|
-
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:41
|
|
1651
|
-
msgid "Interface parameters."
|
|
1652
|
-
msgstr "Parametri dell'interfaccia."
|
|
1653
|
-
|
|
1654
|
-
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:55
|
|
1655
|
-
msgid "Enter the root password for the host:"
|
|
1656
|
-
msgstr "Inserire la password root per l'host:"
|
|
1657
|
-
|
|
1658
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:36
|
|
1659
|
-
msgid "Architecture name"
|
|
1660
|
-
msgstr "Nome architettura"
|
|
1661
|
-
|
|
1662
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:37
|
|
1663
|
-
msgid "Compute resource name"
|
|
1664
|
-
msgstr "Nome risorsa di calcolo"
|
|
1665
|
-
|
|
1666
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:38
|
|
1667
|
-
msgid "Domain name"
|
|
1668
|
-
msgstr "Nome del dominio"
|
|
1669
|
-
|
|
1670
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:39
|
|
1671
|
-
msgid "Environment name"
|
|
1672
|
-
msgstr "Nome ambiente"
|
|
1673
|
-
|
|
1674
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:42
|
|
1675
|
-
msgid "Host name"
|
|
1676
|
-
msgstr "Hostname"
|
|
1677
|
-
|
|
1678
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:43
|
|
1679
|
-
msgid "Hostgroup name"
|
|
1680
|
-
msgstr "Nome hostgroup"
|
|
1681
|
-
|
|
1682
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:43
|
|
1683
|
-
msgid "Hostgroup title"
|
|
1684
|
-
msgstr ""
|
|
1685
|
-
|
|
1686
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:46
|
|
1687
|
-
msgid "Location name"
|
|
1688
|
-
msgstr "Nome posizione"
|
|
1689
|
-
|
|
1690
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:47
|
|
1691
|
-
msgid "Medium name"
|
|
1692
|
-
msgstr "Nome supporto"
|
|
1693
|
-
|
|
1694
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:48
|
|
1695
|
-
msgid "Model name"
|
|
1696
|
-
msgstr "Nome modello"
|
|
1697
|
-
|
|
1698
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:49
|
|
1699
|
-
msgid "Organization name"
|
|
1700
|
-
msgstr "Nome organizzazione"
|
|
1701
|
-
|
|
1702
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:50
|
|
1703
|
-
msgid "Operating system title"
|
|
1704
|
-
msgstr "Titolo sistema operativo"
|
|
1705
|
-
|
|
1706
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:52
|
|
1707
|
-
msgid "Partition table name"
|
|
1708
|
-
msgstr "Nome tabella delle partizioni"
|
|
1709
|
-
|
|
1710
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:53
|
|
1711
|
-
msgid "Proxy name"
|
|
1712
|
-
msgstr "Nome proxy"
|
|
1713
|
-
|
|
1714
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:54
|
|
1715
|
-
msgid "Puppet class name"
|
|
1716
|
-
msgstr "Nome classe del puppet"
|
|
1717
|
-
|
|
1718
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:55
|
|
1719
|
-
msgid "Report name"
|
|
1720
|
-
msgstr "Nome riporto"
|
|
1721
|
-
|
|
1722
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:56
|
|
1723
|
-
msgid "User role name"
|
|
1724
|
-
msgstr "Nome ruolo utente"
|
|
1725
|
-
|
|
1726
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:57
|
|
1727
|
-
msgid "Setting name"
|
|
1728
|
-
msgstr ""
|
|
1729
|
-
|
|
1730
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:58
|
|
1731
|
-
msgid "Subnet name"
|
|
1732
|
-
msgstr "Nome sottorete"
|
|
1733
|
-
|
|
1734
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:60
|
|
1735
|
-
msgid "User's login to search by"
|
|
1736
|
-
msgstr "Login utente per la ricerca"
|
|
1737
|
-
|
|
1738
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:61
|
|
1739
|
-
msgid "Common parameter name"
|
|
1740
|
-
msgstr "Nome parametro comune"
|
|
1741
|
-
|
|
1742
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:62
|
|
1743
|
-
msgid "Smart class parameter name"
|
|
1744
|
-
msgstr "Nome parametro classe smart"
|
|
1745
|
-
|
|
1746
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:63 ../lib/hammer_cli_foreman/smart_variable.rb:50 ../lib/hammer_cli_foreman/smart_variable.rb:112
|
|
1747
|
-
msgid "Smart variable name"
|
|
1748
|
-
msgstr ""
|
|
1749
|
-
|
|
1750
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:65
|
|
1751
|
-
msgid "Name to search by"
|
|
1752
|
-
msgstr "Nome per la ricerca"
|
|
1753
|
-
|
|
1754
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:153 ../lib/hammer_cli_foreman/id_resolver.rb:161
|
|
1755
|
-
msgid "one of %s not found"
|
|
1756
|
-
msgstr "uno di %s non trovato"
|
|
1757
|
-
|
|
1758
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:208
|
|
1759
|
-
msgid "%s not found"
|
|
1760
|
-
msgstr "%s non trovato"
|
|
1761
|
-
|
|
1762
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:209
|
|
1763
|
-
msgid "found more than one %s"
|
|
1764
|
-
msgstr ""
|
|
1765
|
-
|
|
1766
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:220
|
|
1767
|
-
msgid "Missing options to search %s"
|
|
1768
|
-
msgstr "Opzioni mancanti per la ricerca di %s"
|
|
1769
|
-
|
|
1770
|
-
#: ../lib/hammer_cli_foreman/image.rb:8
|
|
1771
|
-
msgid "View and manage compute resource's images"
|
|
1772
|
-
msgstr "Visualizza e gestisci le immagini della risorsa di calcolo"
|
|
1773
|
-
|
|
1774
|
-
#: ../lib/hammer_cli_foreman/image.rb:32 ../lib/hammer_cli_foreman/interface.rb:59
|
|
1775
|
-
msgid "Username"
|
|
1776
|
-
msgstr "Nome utente"
|
|
1777
|
-
|
|
1778
|
-
#: ../lib/hammer_cli_foreman/image.rb:46
|
|
1779
|
-
msgid "IAM role"
|
|
1780
|
-
msgstr "Ruolo IAM"
|
|
1781
|
-
|
|
1782
|
-
#: ../lib/hammer_cli_foreman/image.rb:56
|
|
1783
|
-
msgid "Show images available for addition"
|
|
1784
|
-
msgstr "Mostra le immagini disponibili da aggiungere"
|
|
1785
|
-
|
|
1786
|
-
#: ../lib/hammer_cli_foreman/image.rb:81
|
|
1787
|
-
msgid "Image created"
|
|
1788
|
-
msgstr "Immagine creata"
|
|
1789
|
-
|
|
1790
|
-
#: ../lib/hammer_cli_foreman/image.rb:82
|
|
1791
|
-
msgid "Could not create the image"
|
|
1792
|
-
msgstr "Impossibile creare l'immagine"
|
|
1793
|
-
|
|
1794
|
-
#: ../lib/hammer_cli_foreman/image.rb:90
|
|
1795
|
-
msgid "Image updated"
|
|
1796
|
-
msgstr "Immagine aggiornata"
|
|
1797
|
-
|
|
1798
|
-
#: ../lib/hammer_cli_foreman/image.rb:91
|
|
1799
|
-
msgid "Could not update the image"
|
|
1800
|
-
msgstr "Impossibile aggiornare l'immagine"
|
|
1801
|
-
|
|
1802
|
-
#: ../lib/hammer_cli_foreman/image.rb:99
|
|
1803
|
-
msgid "Image deleted"
|
|
1804
|
-
msgstr "Immagine cancellata"
|
|
1805
|
-
|
|
1806
|
-
#: ../lib/hammer_cli_foreman/image.rb:100
|
|
1807
|
-
msgid "Could not delete the image"
|
|
1808
|
-
msgstr "Impossibile rimuovere l'immagine"
|
|
1809
|
-
|
|
1810
|
-
#: ../lib/hammer_cli_foreman/interface.rb:6
|
|
1811
|
-
msgid "View and manage host's network interfaces"
|
|
1812
|
-
msgstr ""
|
|
1813
|
-
|
|
1814
|
-
#: ../lib/hammer_cli_foreman/interface.rb:10
|
|
1815
|
-
msgid "primary"
|
|
1816
|
-
msgstr ""
|
|
1817
|
-
|
|
1818
|
-
#: ../lib/hammer_cli_foreman/interface.rb:11
|
|
1819
|
-
msgid "provision"
|
|
1820
|
-
msgstr ""
|
|
1821
|
-
|
|
1822
|
-
#: ../lib/hammer_cli_foreman/interface.rb:28 ../lib/hammer_cli_foreman/interface.rb:48
|
|
1823
|
-
msgid "DNS name"
|
|
1824
|
-
msgstr "Nome DNS"
|
|
1825
|
-
|
|
1826
|
-
#: ../lib/hammer_cli_foreman/interface.rb:52
|
|
1827
|
-
msgid "Primary"
|
|
1828
|
-
msgstr "Primario"
|
|
1829
|
-
|
|
1830
|
-
#: ../lib/hammer_cli_foreman/interface.rb:53
|
|
1831
|
-
msgid "Provision"
|
|
1832
|
-
msgstr "Provisioning"
|
|
1833
|
-
|
|
1834
|
-
#: ../lib/hammer_cli_foreman/interface.rb:54
|
|
1835
|
-
msgid "Virtual"
|
|
1836
|
-
msgstr "Virtuale"
|
|
1837
|
-
|
|
1838
|
-
#: ../lib/hammer_cli_foreman/interface.rb:55
|
|
1839
|
-
msgid "Tag"
|
|
1840
|
-
msgstr "Etichetta"
|
|
1841
|
-
|
|
1842
|
-
#: ../lib/hammer_cli_foreman/interface.rb:56
|
|
1843
|
-
msgid "Attached to"
|
|
1844
|
-
msgstr ""
|
|
1845
|
-
|
|
1846
|
-
#: ../lib/hammer_cli_foreman/interface.rb:58
|
|
1847
|
-
msgid "BMC"
|
|
1848
|
-
msgstr "BMC"
|
|
1849
|
-
|
|
1850
|
-
#: ../lib/hammer_cli_foreman/interface.rb:63
|
|
1851
|
-
msgid "Bond"
|
|
1852
|
-
msgstr "Bond"
|
|
1853
|
-
|
|
1854
|
-
#: ../lib/hammer_cli_foreman/interface.rb:64
|
|
1855
|
-
msgid "Mode"
|
|
1856
|
-
msgstr "Modalità"
|
|
1857
|
-
|
|
1858
|
-
#: ../lib/hammer_cli_foreman/interface.rb:65
|
|
1859
|
-
msgid "Attached devices"
|
|
1860
|
-
msgstr ""
|
|
1861
|
-
|
|
1862
|
-
#: ../lib/hammer_cli_foreman/interface.rb:66
|
|
1863
|
-
msgid "Bond options"
|
|
1864
|
-
msgstr ""
|
|
1865
|
-
|
|
1866
|
-
#: ../lib/hammer_cli_foreman/interface.rb:77
|
|
1867
|
-
msgid "Should this interface be used for constructing the FQDN of the host? Each managed hosts needs to have one primary interface."
|
|
1868
|
-
msgstr ""
|
|
1869
|
-
|
|
1870
|
-
#: ../lib/hammer_cli_foreman/interface.rb:78
|
|
1871
|
-
msgid "Should this interface be used for TFTP of PXELinux (or SSH for image-based hosts)? Each managed hosts needs to have one provision interface."
|
|
1872
|
-
msgstr ""
|
|
1873
|
-
|
|
1874
|
-
#: ../lib/hammer_cli_foreman/interface.rb:128
|
|
1875
|
-
msgid "Interface created"
|
|
1876
|
-
msgstr ""
|
|
1877
|
-
|
|
1878
|
-
#: ../lib/hammer_cli_foreman/interface.rb:129
|
|
1879
|
-
msgid "Could not create the interface"
|
|
1880
|
-
msgstr ""
|
|
1881
|
-
|
|
1882
|
-
#: ../lib/hammer_cli_foreman/interface.rb:131 ../lib/hammer_cli_foreman/interface.rb:144
|
|
1883
|
-
msgid "Compute resource specific attributes."
|
|
1884
|
-
msgstr ""
|
|
1885
|
-
|
|
1886
|
-
#: ../lib/hammer_cli_foreman/interface.rb:141
|
|
1887
|
-
msgid "Interface updated"
|
|
1888
|
-
msgstr ""
|
|
1889
|
-
|
|
1890
|
-
#: ../lib/hammer_cli_foreman/interface.rb:142
|
|
1891
|
-
msgid "Could not update the interface"
|
|
1892
|
-
msgstr ""
|
|
1893
|
-
|
|
1894
|
-
#: ../lib/hammer_cli_foreman/interface.rb:154
|
|
1895
|
-
msgid "Interface deleted"
|
|
1896
|
-
msgstr ""
|
|
1897
|
-
|
|
1898
|
-
#: ../lib/hammer_cli_foreman/interface.rb:155
|
|
1899
|
-
msgid "Could not delete the interface"
|
|
1900
|
-
msgstr ""
|
|
1901
|
-
|
|
1902
|
-
#: ../lib/hammer_cli_foreman/location.rb:25 ../lib/hammer_cli_foreman/location.rb:64 ../lib/hammer_cli_foreman/location.rb:76
|
|
1903
|
-
msgid "Location numeric id to search by"
|
|
1904
|
-
msgstr "ID numerico della posizione per la ricerca"
|
|
1905
|
-
|
|
1906
|
-
#: ../lib/hammer_cli_foreman/location.rb:28 ../lib/hammer_cli_foreman/organization.rb:28
|
|
1907
|
-
msgid "Parent"
|
|
1908
|
-
msgstr ""
|
|
1909
|
-
|
|
1910
|
-
#: ../lib/hammer_cli_foreman/location.rb:39 ../lib/hammer_cli_foreman/references.rb:18
|
|
1911
|
-
msgid "Organizations"
|
|
1912
|
-
msgstr "Organizzazioni"
|
|
1913
|
-
|
|
1914
|
-
#: ../lib/hammer_cli_foreman/location.rb:54
|
|
1915
|
-
msgid "Location created"
|
|
1916
|
-
msgstr "Posizione creata"
|
|
1917
|
-
|
|
1918
|
-
#: ../lib/hammer_cli_foreman/location.rb:55
|
|
1919
|
-
msgid "Could not create the location"
|
|
1920
|
-
msgstr "Impossibile creare la posizione"
|
|
1921
|
-
|
|
1922
|
-
#: ../lib/hammer_cli_foreman/location.rb:66
|
|
1923
|
-
msgid "Location updated"
|
|
1924
|
-
msgstr "Posizione aggiornata"
|
|
1925
|
-
|
|
1926
|
-
#: ../lib/hammer_cli_foreman/location.rb:67
|
|
1927
|
-
msgid "Could not update the location"
|
|
1928
|
-
msgstr "Impossibile aggiornare la posizione"
|
|
1929
|
-
|
|
1930
|
-
#: ../lib/hammer_cli_foreman/location.rb:78
|
|
1931
|
-
msgid "Location deleted"
|
|
1932
|
-
msgstr "Posizione cancellata"
|
|
1933
|
-
|
|
1934
|
-
#: ../lib/hammer_cli_foreman/location.rb:79
|
|
1935
|
-
msgid "Could not delete the location"
|
|
1936
|
-
msgstr "Impossibile cancellare la posizione"
|
|
1937
|
-
|
|
1938
|
-
#: ../lib/hammer_cli_foreman/location.rb:88
|
|
1939
|
-
msgid "Create or update parameter for a location."
|
|
1940
|
-
msgstr ""
|
|
1941
|
-
|
|
1942
|
-
#: ../lib/hammer_cli_foreman/location.rb:90 ../lib/hammer_cli_foreman/organization.rb:91
|
|
1943
|
-
msgid "Parameter [%{name}] updated to value [%{value}]"
|
|
1944
|
-
msgstr ""
|
|
1945
|
-
|
|
1946
|
-
#: ../lib/hammer_cli_foreman/location.rb:91 ../lib/hammer_cli_foreman/organization.rb:92
|
|
1947
|
-
msgid "Parameter [%{name}] created with value [%{value}]"
|
|
1948
|
-
msgstr ""
|
|
1949
|
-
|
|
1950
|
-
#: ../lib/hammer_cli_foreman/location.rb:92
|
|
1951
|
-
msgid "Could not set location parameter"
|
|
1952
|
-
msgstr ""
|
|
1953
|
-
|
|
1954
|
-
#: ../lib/hammer_cli_foreman/location.rb:99
|
|
1955
|
-
msgid "Delete parameter for a location."
|
|
1956
|
-
msgstr ""
|
|
1957
|
-
|
|
1958
|
-
#: ../lib/hammer_cli_foreman/location.rb:101 ../lib/hammer_cli_foreman/organization.rb:102
|
|
1959
|
-
msgid "Parameter [%{name}] deleted"
|
|
1960
|
-
msgstr ""
|
|
1961
|
-
|
|
1962
|
-
#: ../lib/hammer_cli_foreman/location.rb:102
|
|
1963
|
-
msgid "Could not delete location parameter"
|
|
1964
|
-
msgstr ""
|
|
1965
|
-
|
|
1966
|
-
#: ../lib/hammer_cli_foreman/media.rb:11
|
|
1967
|
-
msgid "Path"
|
|
1968
|
-
msgstr "Percorso"
|
|
1969
|
-
|
|
1970
|
-
#: ../lib/hammer_cli_foreman/media.rb:20 ../lib/hammer_cli_foreman/partition_table.rb:12
|
|
1971
|
-
msgid "OS Family"
|
|
1972
|
-
msgstr "Famiglia OS"
|
|
1973
|
-
|
|
1974
|
-
#: ../lib/hammer_cli_foreman/media.rb:32
|
|
1975
|
-
msgid "Installation medium created"
|
|
1976
|
-
msgstr "Supporto d'installazione creato"
|
|
1977
|
-
|
|
1978
|
-
#: ../lib/hammer_cli_foreman/media.rb:33
|
|
1979
|
-
msgid "Could not create the installation medium"
|
|
1980
|
-
msgstr "Impossibile creare il supporto d'installazione"
|
|
1981
|
-
|
|
1982
|
-
#: ../lib/hammer_cli_foreman/media.rb:41
|
|
1983
|
-
msgid "Installation medium updated"
|
|
1984
|
-
msgstr "Supporto d'installazione aggiornato"
|
|
1985
|
-
|
|
1986
|
-
#: ../lib/hammer_cli_foreman/media.rb:42
|
|
1987
|
-
msgid "Could not update the installation media"
|
|
1988
|
-
msgstr "Impossibile aggiornare il supporto d'installazione"
|
|
1989
|
-
|
|
1990
|
-
#: ../lib/hammer_cli_foreman/media.rb:50
|
|
1991
|
-
msgid "Installation medium deleted"
|
|
1992
|
-
msgstr "Supporto d'installazione rimosso"
|
|
1993
|
-
|
|
1994
|
-
#: ../lib/hammer_cli_foreman/media.rb:51
|
|
1995
|
-
msgid "Could not delete the installation media"
|
|
1996
|
-
msgstr "Impossibile rimuovere il dispositivo d'installazione"
|
|
1997
|
-
|
|
1998
|
-
#: ../lib/hammer_cli_foreman/model.rb:12
|
|
1999
|
-
msgid "Vendor class"
|
|
2000
|
-
msgstr "Classe rivenditore"
|
|
2001
|
-
|
|
2002
|
-
#: ../lib/hammer_cli_foreman/model.rb:13
|
|
2003
|
-
msgid "HW model"
|
|
2004
|
-
msgstr "Modello HW"
|
|
2005
|
-
|
|
2006
|
-
#: ../lib/hammer_cli_foreman/model.rb:22
|
|
2007
|
-
msgid "Info"
|
|
2008
|
-
msgstr "Informazioni"
|
|
2009
|
-
|
|
2010
|
-
#: ../lib/hammer_cli_foreman/model.rb:31
|
|
2011
|
-
msgid "Hardware model created"
|
|
2012
|
-
msgstr "Modello hardware creato"
|
|
2013
|
-
|
|
2014
|
-
#: ../lib/hammer_cli_foreman/model.rb:32
|
|
2015
|
-
msgid "Could not create the hardware model"
|
|
2016
|
-
msgstr "Impossibile creare il modello hardware"
|
|
2017
|
-
|
|
2018
|
-
#: ../lib/hammer_cli_foreman/model.rb:38
|
|
2019
|
-
msgid "Hardware model deleted"
|
|
2020
|
-
msgstr "Modello hardware rimosso"
|
|
2021
|
-
|
|
2022
|
-
#: ../lib/hammer_cli_foreman/model.rb:39
|
|
2023
|
-
msgid "Could not delete the hardware model"
|
|
2024
|
-
msgstr "Impossibile rimuovere il modello hardware"
|
|
2025
|
-
|
|
2026
|
-
#: ../lib/hammer_cli_foreman/model.rb:46
|
|
2027
|
-
msgid "Hardware model updated"
|
|
2028
|
-
msgstr "Modello hardware aggiornato"
|
|
2029
|
-
|
|
2030
|
-
#: ../lib/hammer_cli_foreman/model.rb:47
|
|
2031
|
-
msgid "Could not update the hardware model"
|
|
2032
|
-
msgstr "Impossibile aggiornare il modello hardware"
|
|
2033
|
-
|
|
2034
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:12
|
|
2035
|
-
msgid "Release name"
|
|
2036
|
-
msgstr "Nome della release"
|
|
2037
|
-
|
|
2038
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:13
|
|
2039
|
-
msgid "Family"
|
|
2040
|
-
msgstr "Famiglia"
|
|
2041
|
-
|
|
2042
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:23
|
|
2043
|
-
msgid "Major version"
|
|
2044
|
-
msgstr "Versione maggiore"
|
|
2045
|
-
|
|
2046
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:24
|
|
2047
|
-
msgid "Minor version"
|
|
2048
|
-
msgstr "Versione minore"
|
|
2049
|
-
|
|
2050
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:25
|
|
2051
|
-
msgid "Partition tables"
|
|
2052
|
-
msgstr "Tabelle delle partizioni"
|
|
2053
|
-
|
|
2054
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:28
|
|
2055
|
-
msgid "Default templates"
|
|
2056
|
-
msgstr "Modelli predefiniti"
|
|
2057
|
-
|
|
2058
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:31
|
|
2059
|
-
msgid "Architectures"
|
|
2060
|
-
msgstr "Architetture"
|
|
2061
|
-
|
|
2062
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:44
|
|
2063
|
-
msgid "Operating system created"
|
|
2064
|
-
msgstr "Sistema operativo creato"
|
|
2065
|
-
|
|
2066
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:45
|
|
2067
|
-
msgid "Could not create the operating system"
|
|
2068
|
-
msgstr "Impossibile creare un sistema operativo"
|
|
2069
|
-
|
|
2070
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:52
|
|
2071
|
-
msgid "Operating system updated"
|
|
2072
|
-
msgstr "Sistema operativo aggiornato"
|
|
2073
|
-
|
|
2074
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:53
|
|
2075
|
-
msgid "Could not update the operating system"
|
|
2076
|
-
msgstr "Impossibile aggiornare il sistema operativo"
|
|
2077
|
-
|
|
2078
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:60
|
|
2079
|
-
msgid "Operating system deleted"
|
|
2080
|
-
msgstr "Sistema operativo rimosso"
|
|
2081
|
-
|
|
2082
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:61
|
|
2083
|
-
msgid "Could not delete the operating system"
|
|
2084
|
-
msgstr "Impossibile rimuovere il sistema operativo"
|
|
2085
|
-
|
|
2086
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:68
|
|
2087
|
-
msgid "Create or update parameter for an operating system."
|
|
2088
|
-
msgstr "Creare o aggiornare un parametro per un sistema operativo."
|
|
2089
|
-
|
|
2090
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:70
|
|
2091
|
-
msgid "Operating system parameter updated"
|
|
2092
|
-
msgstr "Parametro del sistema operativo aggiornato"
|
|
2093
|
-
|
|
2094
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:71
|
|
2095
|
-
msgid "New operating system parameter created"
|
|
2096
|
-
msgstr "Creato un nuovo parametro del sistema operativo"
|
|
2097
|
-
|
|
2098
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:72
|
|
2099
|
-
msgid "Could not set operating system parameter"
|
|
2100
|
-
msgstr "Impossibile impostare il parametro del sistema operativo"
|
|
2101
|
-
|
|
2102
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:84
|
|
2103
|
-
msgid "Delete parameter for an operating system."
|
|
2104
|
-
msgstr "Rimuovere il parametro per un sistema operativo."
|
|
2105
|
-
|
|
2106
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:86
|
|
2107
|
-
msgid "operating system parameter deleted"
|
|
2108
|
-
msgstr "parametro del sistema operativo rimosso"
|
|
2109
|
-
|
|
2110
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:101 ../lib/hammer_cli_foreman/operating_system.rb:167
|
|
2111
|
-
msgid "operatingsystem id"
|
|
2112
|
-
msgstr "operatingsystem id"
|
|
2113
|
-
|
|
2114
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:102
|
|
2115
|
-
msgid "config template id to be set"
|
|
2116
|
-
msgstr "id modello di configurazione da impostare"
|
|
2117
|
-
|
|
2118
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:105
|
|
2119
|
-
msgid "[%{config_template_name}] was set as default %{template_kind_name} template"
|
|
2120
|
-
msgstr "[%{config_template_name}] è stato impostato come modello %{template_kind_name} predefinito"
|
|
2121
|
-
|
|
2122
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:106
|
|
2123
|
-
msgid "Could not set the os default template"
|
|
2124
|
-
msgstr "Impossibile impostare il modello predefinito del sistema operativo"
|
|
2125
|
-
|
|
2126
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:168
|
|
2127
|
-
msgid "Type of the config template"
|
|
2128
|
-
msgstr "Tipo di modello di configurazione"
|
|
2129
|
-
|
|
2130
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:170
|
|
2131
|
-
msgid "Default template deleted"
|
|
2132
|
-
msgstr "Modello predefinito rimosso"
|
|
2133
|
-
|
|
2134
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:171
|
|
2135
|
-
msgid "Could not delete the default template"
|
|
2136
|
-
msgstr "Impossibile rimuovere il modello predefinito"
|
|
2137
|
-
|
|
2138
|
-
#: ../lib/hammer_cli_foreman/operating_system.rb:178
|
|
2139
|
-
msgid "Default template of type %s not found"
|
|
2140
|
-
msgstr "Template predefinito di tipo %s non trovato"
|
|
2141
|
-
|
|
2142
|
-
#: ../lib/hammer_cli_foreman/organization.rb:39 ../lib/hammer_cli_foreman/references.rb:15
|
|
2143
|
-
msgid "Locations"
|
|
2144
|
-
msgstr "Posizioni"
|
|
2145
|
-
|
|
2146
|
-
#: ../lib/hammer_cli_foreman/organization.rb:55
|
|
2147
|
-
msgid "Organization created"
|
|
2148
|
-
msgstr "Organizzazione creata"
|
|
2149
|
-
|
|
2150
|
-
#: ../lib/hammer_cli_foreman/organization.rb:56
|
|
2151
|
-
msgid "Could not create the organization"
|
|
2152
|
-
msgstr "Impossibile creare l'organizzazione"
|
|
2153
|
-
|
|
2154
|
-
#: ../lib/hammer_cli_foreman/organization.rb:67
|
|
2155
|
-
msgid "Organization updated"
|
|
2156
|
-
msgstr "Organizzazione aggiornata"
|
|
2157
|
-
|
|
2158
|
-
#: ../lib/hammer_cli_foreman/organization.rb:68
|
|
2159
|
-
msgid "Could not update the organization"
|
|
2160
|
-
msgstr "Impossibile aggiornare l'organizzazione"
|
|
2161
|
-
|
|
2162
|
-
#: ../lib/hammer_cli_foreman/organization.rb:79
|
|
2163
|
-
msgid "Organization deleted"
|
|
2164
|
-
msgstr "Organizzazione rimossa"
|
|
2165
|
-
|
|
2166
|
-
#: ../lib/hammer_cli_foreman/organization.rb:80
|
|
2167
|
-
msgid "Could not delete the organization"
|
|
2168
|
-
msgstr "Impossibile rimuovere l'organizzazione"
|
|
2169
|
-
|
|
2170
|
-
#: ../lib/hammer_cli_foreman/organization.rb:89
|
|
2171
|
-
msgid "Create or update parameter for an organization."
|
|
2172
|
-
msgstr ""
|
|
2173
|
-
|
|
2174
|
-
#: ../lib/hammer_cli_foreman/organization.rb:93
|
|
2175
|
-
msgid "Could not set organization parameter"
|
|
2176
|
-
msgstr ""
|
|
2177
|
-
|
|
2178
|
-
#: ../lib/hammer_cli_foreman/organization.rb:100
|
|
2179
|
-
msgid "Delete parameter for an organization."
|
|
2180
|
-
msgstr ""
|
|
2181
|
-
|
|
2182
|
-
#: ../lib/hammer_cli_foreman/organization.rb:103
|
|
2183
|
-
msgid "Could not delete organization parameter"
|
|
2184
|
-
msgstr ""
|
|
2185
|
-
|
|
2186
|
-
#: ../lib/hammer_cli_foreman/partition_table.rb:21 ../lib/hammer_cli_foreman/template.rb:48
|
|
2187
|
-
msgid "Locked"
|
|
2188
|
-
msgstr ""
|
|
2189
|
-
|
|
2190
|
-
#: ../lib/hammer_cli_foreman/partition_table.rb:32
|
|
2191
|
-
msgid "View partition table content."
|
|
2192
|
-
msgstr "Visualizza il contenuto della tabella delle partizioni."
|
|
2193
|
-
|
|
2194
|
-
#: ../lib/hammer_cli_foreman/partition_table.rb:44 ../lib/hammer_cli_foreman/partition_table.rb:55
|
|
2195
|
-
msgid "Path to a file that contains the partition layout"
|
|
2196
|
-
msgstr "Percorso per un file con la disposizione della partizione"
|
|
2197
|
-
|
|
2198
|
-
#: ../lib/hammer_cli_foreman/partition_table.rb:47
|
|
2199
|
-
msgid "Partition table created"
|
|
2200
|
-
msgstr "Tabella delle partizioni creata"
|
|
2201
|
-
|
|
2202
|
-
#: ../lib/hammer_cli_foreman/partition_table.rb:48
|
|
2203
|
-
msgid "Could not create the partition table"
|
|
2204
|
-
msgstr "Impossibile creare la tabellla delle partizioni"
|
|
2205
|
-
|
|
2206
|
-
#: ../lib/hammer_cli_foreman/partition_table.rb:58
|
|
2207
|
-
msgid "Partition table updated"
|
|
2208
|
-
msgstr "Tabella delle partizioni aggiornata"
|
|
2209
|
-
|
|
2210
|
-
#: ../lib/hammer_cli_foreman/partition_table.rb:59
|
|
2211
|
-
msgid "Could not update the partition table"
|
|
2212
|
-
msgstr "Impossibile aggiornare la tabellla delle partizioni"
|
|
2213
|
-
|
|
2214
|
-
#: ../lib/hammer_cli_foreman/partition_table.rb:66
|
|
2215
|
-
msgid "Partition table deleted"
|
|
2216
|
-
msgstr "Tabella delle partizioni rimossa"
|
|
2217
|
-
|
|
2218
|
-
#: ../lib/hammer_cli_foreman/partition_table.rb:67
|
|
2219
|
-
msgid "Could not delete the partition table"
|
|
2220
|
-
msgstr "Impossibile rimuovere la tabellla delle partizioni"
|
|
2221
|
-
|
|
2222
|
-
#: ../lib/hammer_cli_foreman/puppet_class.rb:34
|
|
2223
|
-
msgid "Smart variables"
|
|
2224
|
-
msgstr "Variabili smart"
|
|
2225
|
-
|
|
2226
|
-
#: ../lib/hammer_cli_foreman/puppet_class.rb:35 ../lib/hammer_cli_foreman/smart_class_parameter.rb:10
|
|
2227
|
-
msgid "Parameter"
|
|
2228
|
-
msgstr "Parametro"
|
|
2229
|
-
|
|
2230
|
-
#: ../lib/hammer_cli_foreman/puppet_class.rb:36
|
|
2231
|
-
msgid "Default value"
|
|
2232
|
-
msgstr "Valore predefinito"
|
|
2233
|
-
|
|
2234
|
-
#: ../lib/hammer_cli_foreman/puppet_class.rb:38
|
|
2235
|
-
msgid "Smart class parameters"
|
|
2236
|
-
msgstr "Parametri classe smart"
|
|
2237
|
-
|
|
2238
|
-
#: ../lib/hammer_cli_foreman/realm.rb:18
|
|
2239
|
-
msgid "Realm proxy id"
|
|
2240
|
-
msgstr ""
|
|
2241
|
-
|
|
2242
|
-
#: ../lib/hammer_cli_foreman/realm.rb:19
|
|
2243
|
-
msgid "Realm type"
|
|
2244
|
-
msgstr ""
|
|
2245
|
-
|
|
2246
|
-
#: ../lib/hammer_cli_foreman/realm.rb:29
|
|
2247
|
-
#, fuzzy
|
|
2248
|
-
msgid "Realm [%{name}] created"
|
|
2249
|
-
msgstr "Dominio [%{name}] creato"
|
|
2250
|
-
|
|
2251
|
-
#: ../lib/hammer_cli_foreman/realm.rb:30
|
|
2252
|
-
#, fuzzy
|
|
2253
|
-
msgid "Could not create the realm"
|
|
2254
|
-
msgstr "Impossibile creare l'immagine"
|
|
2255
|
-
|
|
2256
|
-
#: ../lib/hammer_cli_foreman/realm.rb:37
|
|
2257
|
-
#, fuzzy
|
|
2258
|
-
msgid "Realm [%{name}] updated"
|
|
2259
|
-
msgstr "Dominio [%{name}] aggiornato"
|
|
2260
|
-
|
|
2261
|
-
#: ../lib/hammer_cli_foreman/realm.rb:38
|
|
2262
|
-
#, fuzzy
|
|
2263
|
-
msgid "Could not update the realm"
|
|
2264
|
-
msgstr "Impossibile aggiornare l'immagine"
|
|
2265
|
-
|
|
2266
|
-
#: ../lib/hammer_cli_foreman/realm.rb:45
|
|
2267
|
-
#, fuzzy
|
|
2268
|
-
msgid "Realm [%{name}] deleted"
|
|
2269
|
-
msgstr "Dominio [%{name}] rimosso"
|
|
2270
|
-
|
|
2271
|
-
#: ../lib/hammer_cli_foreman/realm.rb:46
|
|
2272
|
-
#, fuzzy
|
|
2273
|
-
msgid "Could not delete the realm"
|
|
2274
|
-
msgstr "Impossibile rimuovere il riporto"
|
|
2275
|
-
|
|
2276
|
-
#: ../lib/hammer_cli_foreman/references.rb:8
|
|
2277
|
-
msgid "Created at"
|
|
2278
|
-
msgstr "Creato"
|
|
2279
|
-
|
|
2280
|
-
#: ../lib/hammer_cli_foreman/references.rb:9
|
|
2281
|
-
msgid "Updated at"
|
|
2282
|
-
msgstr "Aggiornato"
|
|
2283
|
-
|
|
2284
|
-
#: ../lib/hammer_cli_foreman/references.rb:26
|
|
2285
|
-
msgid "Users"
|
|
2286
|
-
msgstr "Utenti"
|
|
2287
|
-
|
|
2288
|
-
#: ../lib/hammer_cli_foreman/references.rb:34
|
|
2289
|
-
msgid "User groups"
|
|
2290
|
-
msgstr "Gruppi utenti"
|
|
2291
|
-
|
|
2292
|
-
#: ../lib/hammer_cli_foreman/references.rb:35 ../lib/hammer_cli_foreman/references.rb:42
|
|
2293
|
-
#, fuzzy
|
|
2294
|
-
msgid "Usergroup"
|
|
2295
|
-
msgstr "Gruppi utenti"
|
|
2296
|
-
|
|
2297
|
-
#: ../lib/hammer_cli_foreman/references.rb:37 ../lib/hammer_cli_foreman/references.rb:44 ../lib/hammer_cli_foreman/references.rb:142
|
|
2298
|
-
msgid "Roles"
|
|
2299
|
-
msgstr "Ruoli"
|
|
2300
|
-
|
|
2301
|
-
#: ../lib/hammer_cli_foreman/references.rb:41
|
|
2302
|
-
#, fuzzy
|
|
2303
|
-
msgid "Inherited User groups"
|
|
2304
|
-
msgstr "Gruppi utenti"
|
|
2305
|
-
|
|
2306
|
-
#: ../lib/hammer_cli_foreman/references.rb:53
|
|
2307
|
-
msgid "Smart proxies"
|
|
2308
|
-
msgstr "Smart proxy"
|
|
2309
|
-
|
|
2310
|
-
#: ../lib/hammer_cli_foreman/references.rb:61
|
|
2311
|
-
msgid "Compute resources"
|
|
2312
|
-
msgstr "Risorse di calcolo"
|
|
2313
|
-
|
|
2314
|
-
#: ../lib/hammer_cli_foreman/references.rb:69
|
|
2315
|
-
msgid "Installation media"
|
|
2316
|
-
msgstr "Dispositivo d'installazione"
|
|
2317
|
-
|
|
2318
|
-
#: ../lib/hammer_cli_foreman/references.rb:77
|
|
2319
|
-
msgid "Templates"
|
|
2320
|
-
msgstr "Modelli"
|
|
2321
|
-
|
|
2322
|
-
#: ../lib/hammer_cli_foreman/references.rb:85
|
|
2323
|
-
msgid "Domains"
|
|
2324
|
-
msgstr "Domini"
|
|
2325
|
-
|
|
2326
|
-
#: ../lib/hammer_cli_foreman/references.rb:93
|
|
2327
|
-
msgid "Environments"
|
|
2328
|
-
msgstr "Ambienti"
|
|
2329
|
-
|
|
2330
|
-
#: ../lib/hammer_cli_foreman/references.rb:101
|
|
2331
|
-
msgid "Hostgroups"
|
|
2332
|
-
msgstr "Hostgroup"
|
|
2333
|
-
|
|
2334
|
-
#: ../lib/hammer_cli_foreman/references.rb:109
|
|
2335
|
-
msgid "Subnets"
|
|
2336
|
-
msgstr "Sottoreti"
|
|
2337
|
-
|
|
2338
|
-
#: ../lib/hammer_cli_foreman/references.rb:118
|
|
2339
|
-
msgid "Parameters"
|
|
2340
|
-
msgstr "Parametri"
|
|
2341
|
-
|
|
2342
|
-
#: ../lib/hammer_cli_foreman/references.rb:126
|
|
2343
|
-
msgid "Puppetclasses"
|
|
2344
|
-
msgstr "Puppetclasses"
|
|
2345
|
-
|
|
2346
|
-
#: ../lib/hammer_cli_foreman/references.rb:134
|
|
2347
|
-
msgid "Operating systems"
|
|
2348
|
-
msgstr "Sistemi operativi"
|
|
2349
|
-
|
|
2350
|
-
#: ../lib/hammer_cli_foreman/references.rb:150
|
|
2351
|
-
msgid "External user groups"
|
|
2352
|
-
msgstr "Gruppi utenti esterni"
|
|
2353
|
-
|
|
2354
|
-
#: ../lib/hammer_cli_foreman/report.rb:14 ../lib/hammer_cli_foreman/report.rb:35
|
|
2355
|
-
msgid "Applied"
|
|
2356
|
-
msgstr "Applicato"
|
|
2357
|
-
|
|
2358
|
-
#: ../lib/hammer_cli_foreman/report.rb:15 ../lib/hammer_cli_foreman/report.rb:36
|
|
2359
|
-
msgid "Restarted"
|
|
2360
|
-
msgstr "Riavviato"
|
|
2361
|
-
|
|
2362
|
-
#: ../lib/hammer_cli_foreman/report.rb:16 ../lib/hammer_cli_foreman/report.rb:37
|
|
2363
|
-
msgid "Failed"
|
|
2364
|
-
msgstr "Fallito"
|
|
2365
|
-
|
|
2366
|
-
#: ../lib/hammer_cli_foreman/report.rb:17 ../lib/hammer_cli_foreman/report.rb:38
|
|
2367
|
-
msgid "Restart Failures"
|
|
2368
|
-
msgstr "Errori riavvio"
|
|
2369
|
-
|
|
2370
|
-
#: ../lib/hammer_cli_foreman/report.rb:18 ../lib/hammer_cli_foreman/report.rb:39
|
|
2371
|
-
msgid "Skipped"
|
|
2372
|
-
msgstr "Saltati"
|
|
2373
|
-
|
|
2374
|
-
#: ../lib/hammer_cli_foreman/report.rb:19 ../lib/hammer_cli_foreman/report.rb:40
|
|
2375
|
-
msgid "Pending"
|
|
2376
|
-
msgstr "In attesa"
|
|
2377
|
-
|
|
2378
|
-
#: ../lib/hammer_cli_foreman/report.rb:32
|
|
2379
|
-
msgid "Reported at"
|
|
2380
|
-
msgstr "Riportato"
|
|
2381
|
-
|
|
2382
|
-
#: ../lib/hammer_cli_foreman/report.rb:33
|
|
2383
|
-
msgid "Report status"
|
|
2384
|
-
msgstr "Stato riporto"
|
|
2385
|
-
|
|
2386
|
-
#: ../lib/hammer_cli_foreman/report.rb:43
|
|
2387
|
-
msgid "Report metrics"
|
|
2388
|
-
msgstr "Metriche riporto"
|
|
2389
|
-
|
|
2390
|
-
#: ../lib/hammer_cli_foreman/report.rb:46
|
|
2391
|
-
msgid "config_retrieval"
|
|
2392
|
-
msgstr "config_retrieval"
|
|
2393
|
-
|
|
2394
|
-
#: ../lib/hammer_cli_foreman/report.rb:47
|
|
2395
|
-
msgid "exec"
|
|
2396
|
-
msgstr "exec"
|
|
2397
|
-
|
|
2398
|
-
#: ../lib/hammer_cli_foreman/report.rb:48
|
|
2399
|
-
msgid "file"
|
|
2400
|
-
msgstr "file"
|
|
2401
|
-
|
|
2402
|
-
#: ../lib/hammer_cli_foreman/report.rb:49
|
|
2403
|
-
msgid "package"
|
|
2404
|
-
msgstr "pacchetto"
|
|
2405
|
-
|
|
2406
|
-
#: ../lib/hammer_cli_foreman/report.rb:50
|
|
2407
|
-
msgid "service"
|
|
2408
|
-
msgstr "servizio"
|
|
2409
|
-
|
|
2410
|
-
#: ../lib/hammer_cli_foreman/report.rb:51
|
|
2411
|
-
msgid "user"
|
|
2412
|
-
msgstr "utente"
|
|
2413
|
-
|
|
2414
|
-
#: ../lib/hammer_cli_foreman/report.rb:52
|
|
2415
|
-
msgid "yumrepo"
|
|
2416
|
-
msgstr "yumrepo"
|
|
2417
|
-
|
|
2418
|
-
#: ../lib/hammer_cli_foreman/report.rb:53
|
|
2419
|
-
msgid "filebucket"
|
|
2420
|
-
msgstr "filebucket"
|
|
2421
|
-
|
|
2422
|
-
#: ../lib/hammer_cli_foreman/report.rb:54
|
|
2423
|
-
msgid "cron"
|
|
2424
|
-
msgstr "cron"
|
|
2425
|
-
|
|
2426
|
-
#: ../lib/hammer_cli_foreman/report.rb:55
|
|
2427
|
-
msgid "total"
|
|
2428
|
-
msgstr "totale"
|
|
2429
|
-
|
|
2430
|
-
#: ../lib/hammer_cli_foreman/report.rb:59
|
|
2431
|
-
msgid "Logs"
|
|
2432
|
-
msgstr "Log"
|
|
2433
|
-
|
|
2434
|
-
#: ../lib/hammer_cli_foreman/report.rb:65
|
|
2435
|
-
msgid "Message"
|
|
2436
|
-
msgstr "Messaggio"
|
|
2437
|
-
|
|
2438
|
-
#: ../lib/hammer_cli_foreman/report.rb:76
|
|
2439
|
-
msgid "Report has been deleted"
|
|
2440
|
-
msgstr "Il riporto è stato rimosso"
|
|
2441
|
-
|
|
2442
|
-
#: ../lib/hammer_cli_foreman/report.rb:77
|
|
2443
|
-
msgid "Could not delete the report"
|
|
2444
|
-
msgstr "Impossibile rimuovere il riporto"
|
|
2445
|
-
|
|
2446
|
-
#: ../lib/hammer_cli_foreman/resource_supported_test.rb:11
|
|
2447
|
-
msgid "The server does not support such operation."
|
|
2448
|
-
msgstr "Il server non supporta questa operazione."
|
|
2449
|
-
|
|
2450
|
-
#: ../lib/hammer_cli_foreman/role.rb:13
|
|
2451
|
-
msgid "Builtin"
|
|
2452
|
-
msgstr ""
|
|
2453
|
-
|
|
2454
|
-
#: ../lib/hammer_cli_foreman/role.rb:32
|
|
2455
|
-
msgid "User role id"
|
|
2456
|
-
msgstr "ID ruolo utente"
|
|
2457
|
-
|
|
2458
|
-
#: ../lib/hammer_cli_foreman/role.rb:60
|
|
2459
|
-
msgid "User role [%<name>s] created"
|
|
2460
|
-
msgstr "Ruolo utente [%<name>s] creato"
|
|
2461
|
-
|
|
2462
|
-
#: ../lib/hammer_cli_foreman/role.rb:61
|
|
2463
|
-
msgid "Could not create the user role"
|
|
2464
|
-
msgstr "Impossibile creare il ruolo utente"
|
|
2465
|
-
|
|
2466
|
-
#: ../lib/hammer_cli_foreman/role.rb:68
|
|
2467
|
-
msgid "User role [%<name>s] updated"
|
|
2468
|
-
msgstr "Ruolo utente [%<name>s] aggiornato"
|
|
2469
|
-
|
|
2470
|
-
#: ../lib/hammer_cli_foreman/role.rb:69
|
|
2471
|
-
msgid "Could not update the user role"
|
|
2472
|
-
msgstr "Impossibile aggiornare il ruolo utente"
|
|
2473
|
-
|
|
2474
|
-
#: ../lib/hammer_cli_foreman/role.rb:76
|
|
2475
|
-
msgid "User role [%<name>s] deleted"
|
|
2476
|
-
msgstr "Ruolo utente [%<name>s] rimosso"
|
|
2477
|
-
|
|
2478
|
-
#: ../lib/hammer_cli_foreman/role.rb:77
|
|
2479
|
-
msgid "Could not delete the user roles"
|
|
2480
|
-
msgstr "Impossibile rimuovere questi ruoli utente"
|
|
2481
|
-
|
|
2482
|
-
#: ../lib/hammer_cli_foreman/settings.rb:28
|
|
2483
|
-
msgid "Setting [%{name}] updated to [%{value}]"
|
|
2484
|
-
msgstr ""
|
|
2485
|
-
|
|
2486
|
-
#: ../lib/hammer_cli_foreman/settings.rb:29
|
|
2487
|
-
msgid "Could not update the setting"
|
|
2488
|
-
msgstr ""
|
|
2489
|
-
|
|
2490
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:11
|
|
2491
|
-
msgid "Default Value"
|
|
2492
|
-
msgstr "Valore predefinito"
|
|
2493
|
-
|
|
2494
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:12
|
|
2495
|
-
msgid "Override"
|
|
2496
|
-
msgstr "Override"
|
|
2497
|
-
|
|
2498
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:35 ../lib/hammer_cli_foreman/smart_variable.rb:27
|
|
2499
|
-
msgid "Puppet class"
|
|
2500
|
-
msgstr "Classe del puppet"
|
|
2501
|
-
|
|
2502
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:36 ../lib/hammer_cli_foreman/smart_variable.rb:28
|
|
2503
|
-
msgid "Class Id"
|
|
2504
|
-
msgstr "ID classe"
|
|
2505
|
-
|
|
2506
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:61 ../lib/hammer_cli_foreman/smart_variable.rb:54
|
|
2507
|
-
msgid "Hidden Value?"
|
|
2508
|
-
msgstr ""
|
|
2509
|
-
|
|
2510
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:79
|
|
2511
|
-
#, fuzzy
|
|
2512
|
-
msgid "Use puppet default"
|
|
2513
|
-
msgstr "predefinito"
|
|
2514
|
-
|
|
2515
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:63
|
|
2516
|
-
msgid "Required"
|
|
2517
|
-
msgstr "Obbligatorio"
|
|
2518
|
-
|
|
2519
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:65 ../lib/hammer_cli_foreman/smart_variable.rb:56
|
|
2520
|
-
msgid "Validator"
|
|
2521
|
-
msgstr "Convalidatore"
|
|
2522
|
-
|
|
2523
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:67 ../lib/hammer_cli_foreman/smart_variable.rb:58
|
|
2524
|
-
msgid "Rule"
|
|
2525
|
-
msgstr "Regola"
|
|
2526
|
-
|
|
2527
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:69 ../lib/hammer_cli_foreman/smart_variable.rb:60
|
|
2528
|
-
msgid "Override values"
|
|
2529
|
-
msgstr "Valori override"
|
|
2530
|
-
|
|
2531
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:70 ../lib/hammer_cli_foreman/smart_variable.rb:61
|
|
2532
|
-
msgid "Merge overrides"
|
|
2533
|
-
msgstr ""
|
|
2534
|
-
|
|
2535
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:71 ../lib/hammer_cli_foreman/smart_variable.rb:62
|
|
2536
|
-
msgid "Merge default value"
|
|
2537
|
-
msgstr ""
|
|
2538
|
-
|
|
2539
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:72 ../lib/hammer_cli_foreman/smart_variable.rb:63
|
|
2540
|
-
msgid "Avoid duplicates"
|
|
2541
|
-
msgstr ""
|
|
2542
|
-
|
|
2543
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:73 ../lib/hammer_cli_foreman/smart_variable.rb:64
|
|
2544
|
-
msgid "Order"
|
|
2545
|
-
msgstr "Ordine"
|
|
2546
|
-
|
|
2547
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_variable.rb:65
|
|
2548
|
-
msgid "Values"
|
|
2549
|
-
msgstr "Valori"
|
|
2550
|
-
|
|
2551
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:77 ../lib/hammer_cli_foreman/smart_variable.rb:67
|
|
2552
|
-
msgid "Match"
|
|
2553
|
-
msgstr "Corrispondenza"
|
|
2554
|
-
|
|
2555
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:105
|
|
2556
|
-
msgid "Parameter updated"
|
|
2557
|
-
msgstr "Parametro aggiornato"
|
|
2558
|
-
|
|
2559
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:106
|
|
2560
|
-
msgid "Could not update the parameter"
|
|
2561
|
-
msgstr "Impossibile aggiornare il parametro"
|
|
2562
|
-
|
|
2563
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:113
|
|
2564
|
-
msgid "Override this parameter."
|
|
2565
|
-
msgstr "Sovrascrivi questo parametro."
|
|
2566
|
-
|
|
2567
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:115
|
|
2568
|
-
msgid "This parameter is required."
|
|
2569
|
-
msgstr "Questo parametro è obbligatorio."
|
|
2570
|
-
|
|
2571
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:117
|
|
2572
|
-
msgid "Type of the parameter."
|
|
2573
|
-
msgstr "Tipo di parametro."
|
|
2574
|
-
|
|
2575
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:120 ../lib/hammer_cli_foreman/smart_variable.rb:92 ../lib/hammer_cli_foreman/smart_variable.rb:106
|
|
2576
|
-
msgid "Type of the validator."
|
|
2577
|
-
msgstr "Tipo di convalidatore."
|
|
2578
|
-
|
|
2579
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:134 ../lib/hammer_cli_foreman/smart_variable.rb:125
|
|
2580
|
-
msgid "Override value created"
|
|
2581
|
-
msgstr ""
|
|
2582
|
-
|
|
2583
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:135 ../lib/hammer_cli_foreman/smart_variable.rb:126
|
|
2584
|
-
msgid "Could not create the override value"
|
|
2585
|
-
msgstr ""
|
|
2586
|
-
|
|
2587
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:145
|
|
2588
|
-
msgid "Cannot use --value when --use-puppet-default is true"
|
|
2589
|
-
msgstr ""
|
|
2590
|
-
|
|
2591
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:158 ../lib/hammer_cli_foreman/smart_variable.rb:138
|
|
2592
|
-
msgid "Override value deleted"
|
|
2593
|
-
msgstr ""
|
|
2594
|
-
|
|
2595
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:159 ../lib/hammer_cli_foreman/smart_variable.rb:139
|
|
2596
|
-
msgid "Could not delete the override value"
|
|
2597
|
-
msgstr ""
|
|
2598
|
-
|
|
2599
|
-
#: ../lib/hammer_cli_foreman/smart_proxy.rb:13
|
|
2600
|
-
msgid "URL"
|
|
2601
|
-
msgstr "URL"
|
|
2602
|
-
|
|
2603
|
-
#: ../lib/hammer_cli_foreman/smart_proxy.rb:14 ../lib/hammer_cli_foreman/smart_proxy.rb:29
|
|
2604
|
-
msgid "Features"
|
|
2605
|
-
msgstr "Funzionalità"
|
|
2606
|
-
|
|
2607
|
-
#: ../lib/hammer_cli_foreman/smart_proxy.rb:41
|
|
2608
|
-
msgid "Smart proxy created"
|
|
2609
|
-
msgstr "Smart proxy creato"
|
|
2610
|
-
|
|
2611
|
-
#: ../lib/hammer_cli_foreman/smart_proxy.rb:42
|
|
2612
|
-
msgid "Could not create the proxy"
|
|
2613
|
-
msgstr "Impossibile creare il proxy"
|
|
2614
|
-
|
|
2615
|
-
#: ../lib/hammer_cli_foreman/smart_proxy.rb:49
|
|
2616
|
-
msgid "Smart proxy updated"
|
|
2617
|
-
msgstr "Smart proxy aggiornato"
|
|
2618
|
-
|
|
2619
|
-
#: ../lib/hammer_cli_foreman/smart_proxy.rb:50
|
|
2620
|
-
msgid "Could not update the proxy"
|
|
2621
|
-
msgstr "Impossibile aggiornare il proxy"
|
|
2622
|
-
|
|
2623
|
-
#: ../lib/hammer_cli_foreman/smart_proxy.rb:57
|
|
2624
|
-
msgid "Smart proxy deleted"
|
|
2625
|
-
msgstr "Smart proxy rimosso"
|
|
2626
|
-
|
|
2627
|
-
#: ../lib/hammer_cli_foreman/smart_proxy.rb:58
|
|
2628
|
-
msgid "Could not delete the proxy"
|
|
2629
|
-
msgstr "Impossibile rimuovere il proxy"
|
|
2630
|
-
|
|
2631
|
-
#: ../lib/hammer_cli_foreman/smart_proxy.rb:69
|
|
2632
|
-
msgid "Puppet classes were imported"
|
|
2633
|
-
msgstr "Importate le classi del puppet"
|
|
2634
|
-
|
|
2635
|
-
#: ../lib/hammer_cli_foreman/smart_proxy.rb:70
|
|
2636
|
-
msgid "Import of puppet classes failed"
|
|
2637
|
-
msgstr "Processo di importazione delle classi del puppet fallito"
|
|
2638
|
-
|
|
2639
|
-
#: ../lib/hammer_cli_foreman/smart_proxy.rb:72
|
|
2640
|
-
msgid "Do not run the import"
|
|
2641
|
-
msgstr "Non eseguire l'importazione"
|
|
2642
|
-
|
|
2643
|
-
#: ../lib/hammer_cli_foreman/smart_proxy.rb:92
|
|
2644
|
-
msgid "Smart proxy features were refreshed"
|
|
2645
|
-
msgstr "Aggiornate le funzionalità di Smart proxy"
|
|
2646
|
-
|
|
2647
|
-
#: ../lib/hammer_cli_foreman/smart_proxy.rb:93
|
|
2648
|
-
msgid "Refresh of smart proxy features failed"
|
|
2649
|
-
msgstr "Aggiornamento funzionalità smart proxy fallito"
|
|
2650
|
-
|
|
2651
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:10
|
|
2652
|
-
msgid "Variable"
|
|
2653
|
-
msgstr ""
|
|
2654
|
-
|
|
2655
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:50 ../lib/hammer_cli_foreman/smart_variable.rb:112
|
|
2656
|
-
msgid "Use --variable instead"
|
|
2657
|
-
msgstr ""
|
|
2658
|
-
|
|
2659
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:84
|
|
2660
|
-
msgid "Smart variable [%{variable}] created"
|
|
2661
|
-
msgstr ""
|
|
2662
|
-
|
|
2663
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:85
|
|
2664
|
-
msgid "Could not create the smart variable"
|
|
2665
|
-
msgstr ""
|
|
2666
|
-
|
|
2667
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:89 ../lib/hammer_cli_foreman/smart_variable.rb:103
|
|
2668
|
-
msgid "Type of the variable."
|
|
2669
|
-
msgstr ""
|
|
2670
|
-
|
|
2671
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:98
|
|
2672
|
-
msgid "Smart variable [%{variable}] updated"
|
|
2673
|
-
msgstr ""
|
|
2674
|
-
|
|
2675
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:99
|
|
2676
|
-
msgid "Could not update the smart variable"
|
|
2677
|
-
msgstr ""
|
|
2678
|
-
|
|
2679
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:114
|
|
2680
|
-
msgid "Smart variable [%{variable}] deleted"
|
|
2681
|
-
msgstr ""
|
|
2682
|
-
|
|
2683
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:115
|
|
2684
|
-
msgid "Could not delete the smart variable"
|
|
2685
|
-
msgstr ""
|
|
2686
|
-
|
|
2687
|
-
#: ../lib/hammer_cli_foreman/subnet.rb:13
|
|
2688
|
-
msgid "Mask"
|
|
2689
|
-
msgstr "Maschera"
|
|
2690
|
-
|
|
2691
|
-
#: ../lib/hammer_cli_foreman/subnet.rb:23
|
|
2692
|
-
msgid "Priority"
|
|
2693
|
-
msgstr "Priorità"
|
|
2694
|
-
|
|
2695
|
-
#: ../lib/hammer_cli_foreman/subnet.rb:24
|
|
2696
|
-
msgid "DNS"
|
|
2697
|
-
msgstr "DNS"
|
|
2698
|
-
|
|
2699
|
-
#: ../lib/hammer_cli_foreman/subnet.rb:25
|
|
2700
|
-
msgid "Primary DNS"
|
|
2701
|
-
msgstr "DNS primario"
|
|
2702
|
-
|
|
2703
|
-
#: ../lib/hammer_cli_foreman/subnet.rb:26
|
|
2704
|
-
msgid "Secondary DNS"
|
|
2705
|
-
msgstr "DNS secondario"
|
|
2706
|
-
|
|
2707
|
-
#: ../lib/hammer_cli_foreman/subnet.rb:27
|
|
2708
|
-
msgid "TFTP"
|
|
2709
|
-
msgstr "TFTP"
|
|
2710
|
-
|
|
2711
|
-
#: ../lib/hammer_cli_foreman/subnet.rb:28
|
|
2712
|
-
msgid "DHCP"
|
|
2713
|
-
msgstr "DHCP"
|
|
2714
|
-
|
|
2715
|
-
#: ../lib/hammer_cli_foreman/subnet.rb:29
|
|
2716
|
-
msgid "IPAM"
|
|
2717
|
-
msgstr "IPAM"
|
|
2718
|
-
|
|
2719
|
-
#: ../lib/hammer_cli_foreman/subnet.rb:30
|
|
2720
|
-
msgid "VLAN ID"
|
|
2721
|
-
msgstr "VLAN ID"
|
|
2722
|
-
|
|
2723
|
-
#: ../lib/hammer_cli_foreman/subnet.rb:31
|
|
2724
|
-
msgid "Gateway"
|
|
2725
|
-
msgstr "Gateway"
|
|
2726
|
-
|
|
2727
|
-
#: ../lib/hammer_cli_foreman/subnet.rb:32
|
|
2728
|
-
msgid "From"
|
|
2729
|
-
msgstr "Da"
|
|
2730
|
-
|
|
2731
|
-
#: ../lib/hammer_cli_foreman/subnet.rb:33
|
|
2732
|
-
msgid "To"
|
|
2733
|
-
msgstr "A"
|
|
2734
|
-
|
|
2735
|
-
#: ../lib/hammer_cli_foreman/subnet.rb:44
|
|
2736
|
-
msgid "Subnet created"
|
|
2737
|
-
msgstr "Sottorete creata"
|
|
2738
|
-
|
|
2739
|
-
#: ../lib/hammer_cli_foreman/subnet.rb:45
|
|
2740
|
-
msgid "Could not create the subnet"
|
|
2741
|
-
msgstr "Impossibile creare la sottorete"
|
|
2742
|
-
|
|
2743
|
-
#: ../lib/hammer_cli_foreman/subnet.rb:53
|
|
2744
|
-
msgid "Subnet updated"
|
|
2745
|
-
msgstr "Sottorete aggiornata"
|
|
2746
|
-
|
|
2747
|
-
#: ../lib/hammer_cli_foreman/subnet.rb:54
|
|
2748
|
-
msgid "Could not update the subnet"
|
|
2749
|
-
msgstr "Impossibile aggiornare la sottorete"
|
|
2750
|
-
|
|
2751
|
-
#: ../lib/hammer_cli_foreman/subnet.rb:62
|
|
2752
|
-
msgid "Subnet deleted"
|
|
2753
|
-
msgstr "Sottorete rimossa"
|
|
2754
|
-
|
|
2755
|
-
#: ../lib/hammer_cli_foreman/subnet.rb:63
|
|
2756
|
-
msgid "Could not delete the subnet"
|
|
2757
|
-
msgstr "Impossibile rimuovere la sottorete"
|
|
2758
|
-
|
|
2759
|
-
#: ../lib/hammer_cli_foreman/template.rb:72
|
|
2760
|
-
msgid "List available config template kinds."
|
|
2761
|
-
msgstr "Elenca i tipi di modelli di configurazione disponibili."
|
|
2762
|
-
|
|
2763
|
-
#: ../lib/hammer_cli_foreman/template.rb:91
|
|
2764
|
-
msgid "View config template content."
|
|
2765
|
-
msgstr "Visualizza il contenuto del modello di configurazione."
|
|
2766
|
-
|
|
2767
|
-
#: ../lib/hammer_cli_foreman/template.rb:103 ../lib/hammer_cli_foreman/template.rb:121
|
|
2768
|
-
msgid "Path to a file that contains the template"
|
|
2769
|
-
msgstr "Percorso per il file con un modello di configurazione"
|
|
2770
|
-
|
|
2771
|
-
#: ../lib/hammer_cli_foreman/template.rb:105 ../lib/hammer_cli_foreman/template.rb:123
|
|
2772
|
-
msgid "Template type. Eg. snippet, script, provision"
|
|
2773
|
-
msgstr "Tipo di modello. Es. snippet, script, provision"
|
|
2774
|
-
|
|
2775
|
-
#: ../lib/hammer_cli_foreman/template.rb:107
|
|
2776
|
-
msgid "Config template created"
|
|
2777
|
-
msgstr "Modello di configurazione creato"
|
|
2778
|
-
|
|
2779
|
-
#: ../lib/hammer_cli_foreman/template.rb:108
|
|
2780
|
-
msgid "Could not create the config template"
|
|
2781
|
-
msgstr "Impossibile creare il modello di configurazione"
|
|
2782
|
-
|
|
2783
|
-
#: ../lib/hammer_cli_foreman/template.rb:125
|
|
2784
|
-
msgid "Config template updated"
|
|
2785
|
-
msgstr "Modello di configurazione aggiornato"
|
|
2786
|
-
|
|
2787
|
-
#: ../lib/hammer_cli_foreman/template.rb:126
|
|
2788
|
-
msgid "Could not update the config template"
|
|
2789
|
-
msgstr "Impossibile aggiornare il modello di configurazione"
|
|
2790
|
-
|
|
2791
|
-
#: ../lib/hammer_cli_foreman/template.rb:139
|
|
2792
|
-
msgid "Config template deleted"
|
|
2793
|
-
msgstr "Modello di configurazione rimosso"
|
|
2794
|
-
|
|
2795
|
-
#: ../lib/hammer_cli_foreman/template.rb:140
|
|
2796
|
-
msgid "Could not delete the config template"
|
|
2797
|
-
msgstr "Impossibile rimuovere il modello di configurazione"
|
|
2798
|
-
|
|
2799
|
-
#: ../lib/hammer_cli_foreman/template.rb:151
|
|
2800
|
-
msgid "Update the default PXE menu on all configured TFTP servers"
|
|
2801
|
-
msgstr "Aggiorna il menu predefinito di PXE su tutti i server TFTP configurati"
|
|
2802
|
-
|
|
2803
|
-
#: ../lib/hammer_cli_foreman/template.rb:164
|
|
2804
|
-
msgid "Config template cloned"
|
|
2805
|
-
msgstr ""
|
|
2806
|
-
|
|
2807
|
-
#: ../lib/hammer_cli_foreman/template.rb:165
|
|
2808
|
-
msgid "Could not clone the config template"
|
|
2809
|
-
msgstr ""
|
|
2810
|
-
|
|
2811
|
-
#: ../lib/hammer_cli_foreman/user.rb:11
|
|
2812
|
-
msgid "Login"
|
|
2813
|
-
msgstr "Registrazione"
|
|
2814
|
-
|
|
2815
|
-
#: ../lib/hammer_cli_foreman/user.rb:13
|
|
2816
|
-
msgid "Email"
|
|
2817
|
-
msgstr "Email"
|
|
2818
|
-
|
|
2819
|
-
#: ../lib/hammer_cli_foreman/user.rb:28 ../lib/hammer_cli_foreman/usergroup.rb:13
|
|
2820
|
-
msgid "Admin"
|
|
2821
|
-
msgstr "Ammin"
|
|
2822
|
-
|
|
2823
|
-
#: ../lib/hammer_cli_foreman/user.rb:29
|
|
2824
|
-
msgid "Effective admin"
|
|
2825
|
-
msgstr ""
|
|
2826
|
-
|
|
2827
|
-
#: ../lib/hammer_cli_foreman/user.rb:30
|
|
2828
|
-
msgid "Authorized by"
|
|
2829
|
-
msgstr "Autorizzato da"
|
|
2830
|
-
|
|
2831
|
-
#: ../lib/hammer_cli_foreman/user.rb:31
|
|
2832
|
-
msgid "Locale"
|
|
2833
|
-
msgstr "Locale"
|
|
2834
|
-
|
|
2835
|
-
#: ../lib/hammer_cli_foreman/user.rb:32
|
|
2836
|
-
msgid "Timezone"
|
|
2837
|
-
msgstr "Fuso orario"
|
|
2838
|
-
|
|
2839
|
-
#: ../lib/hammer_cli_foreman/user.rb:33
|
|
2840
|
-
msgid "Last login"
|
|
2841
|
-
msgstr "Ultima registrazione"
|
|
2842
|
-
|
|
2843
|
-
#: ../lib/hammer_cli_foreman/user.rb:35
|
|
2844
|
-
msgid "Default organization"
|
|
2845
|
-
msgstr "Organizzazione predefinita"
|
|
2846
|
-
|
|
2847
|
-
#: ../lib/hammer_cli_foreman/user.rb:36
|
|
2848
|
-
msgid "Default location"
|
|
2849
|
-
msgstr "Località predefinita"
|
|
2850
|
-
|
|
2851
|
-
#: ../lib/hammer_cli_foreman/user.rb:44 ../lib/hammer_cli_foreman/user.rb:45
|
|
2852
|
-
msgid "default"
|
|
2853
|
-
msgstr "predefinito"
|
|
2854
|
-
|
|
2855
|
-
#: ../lib/hammer_cli_foreman/user.rb:56
|
|
2856
|
-
msgid "User [%{login}] created"
|
|
2857
|
-
msgstr ""
|
|
2858
|
-
|
|
2859
|
-
#: ../lib/hammer_cli_foreman/user.rb:57
|
|
2860
|
-
msgid "Could not create the user"
|
|
2861
|
-
msgstr "Impossibile creare l'utente"
|
|
2862
|
-
|
|
2863
|
-
#: ../lib/hammer_cli_foreman/user.rb:64
|
|
2864
|
-
msgid "User [%{login}] updated"
|
|
2865
|
-
msgstr ""
|
|
2866
|
-
|
|
2867
|
-
#: ../lib/hammer_cli_foreman/user.rb:65
|
|
2868
|
-
msgid "Could not update the user"
|
|
2869
|
-
msgstr "Impossibile aggiornare l'utente"
|
|
2870
|
-
|
|
2871
|
-
#: ../lib/hammer_cli_foreman/user.rb:72
|
|
2872
|
-
msgid "User [%{login}] deleted"
|
|
2873
|
-
msgstr ""
|
|
2874
|
-
|
|
2875
|
-
#: ../lib/hammer_cli_foreman/user.rb:73
|
|
2876
|
-
msgid "Could not delete the user"
|
|
2877
|
-
msgstr "Impossibile cancellare l'utente"
|
|
2878
|
-
|
|
2879
|
-
#: ../lib/hammer_cli_foreman/usergroup.rb:32
|
|
2880
|
-
msgid "User group [%<name>s] created"
|
|
2881
|
-
msgstr "Gruppo utenti [%<name>s] creato"
|
|
2882
|
-
|
|
2883
|
-
#: ../lib/hammer_cli_foreman/usergroup.rb:33
|
|
2884
|
-
msgid "Could not create the user group"
|
|
2885
|
-
msgstr "Impossibile creare il gruppo di utenti"
|
|
2886
|
-
|
|
2887
|
-
#: ../lib/hammer_cli_foreman/usergroup.rb:39
|
|
2888
|
-
msgid "User group [%<name>s] updated"
|
|
2889
|
-
msgstr "Gruppo utenti [%<name>s] aggiornato"
|
|
2890
|
-
|
|
2891
|
-
#: ../lib/hammer_cli_foreman/usergroup.rb:40
|
|
2892
|
-
msgid "Could not update the user group"
|
|
2893
|
-
msgstr "Impossibile aggiornare il gruppo di utenti"
|
|
2894
|
-
|
|
2895
|
-
#: ../lib/hammer_cli_foreman/usergroup.rb:46
|
|
2896
|
-
msgid "User group [%<name>s] deleted"
|
|
2897
|
-
msgstr "Gruppo utenti [%<name>s] rimosso"
|
|
2898
|
-
|
|
2899
|
-
#: ../lib/hammer_cli_foreman/usergroup.rb:47
|
|
2900
|
-
msgid "Could not delete the user group"
|
|
2901
|
-
msgstr "Impossibile cancellare il gruppo di utenti"
|
|
2902
|
-
|
|
2903
|
-
#: ../lib/hammer_cli_foreman/role.rb:24
|
|
2904
|
-
#~ msgid "Yes"
|
|
2905
|
-
#~ msgstr "Sì"
|
|
2906
|
-
|
|
2907
|
-
#: ../lib/hammer_cli_foreman/role.rb:24
|
|
2908
|
-
#~ msgid "No"
|
|
2909
|
-
#~ msgstr "No"
|