hammer_cli_foreman 0.6.2 → 0.7.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/config/foreman.yml +4 -0
- data/doc/host_create.md +4 -4
- data/doc/release_notes.md +24 -6
- data/lib/hammer_cli_foreman/associating_commands.rb +54 -0
- data/lib/hammer_cli_foreman/commands.rb +28 -7
- data/lib/hammer_cli_foreman/exception_handler.rb +18 -0
- data/lib/hammer_cli_foreman/exceptions.rb +1 -1
- data/lib/hammer_cli_foreman/host.rb +11 -6
- data/lib/hammer_cli_foreman/id_resolver.rb +10 -2
- data/lib/hammer_cli_foreman/partition_table.rb +1 -0
- data/lib/hammer_cli_foreman/smart_class_parameter.rb +5 -1
- data/lib/hammer_cli_foreman/smart_variable.rb +1 -1
- data/lib/hammer_cli_foreman/template.rb +29 -5
- data/lib/hammer_cli_foreman/testing/api_expectations.rb +6 -6
- data/lib/hammer_cli_foreman/user.rb +2 -1
- data/lib/hammer_cli_foreman/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ca/hammer-cli-foreman.edit.po +2622 -0
- data/locale/ca/hammer-cli-foreman.po +2544 -0
- data/locale/ca/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/de/hammer-cli-foreman.edit.po +2613 -0
- data/locale/de/hammer-cli-foreman.po +132 -122
- data/locale/de/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en/hammer-cli-foreman.edit.po +2575 -0
- data/locale/en/hammer-cli-foreman.po +157 -8
- data/locale/en/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en_GB/hammer-cli-foreman.edit.po +2582 -0
- data/locale/en_GB/hammer-cli-foreman.po +151 -141
- data/locale/en_GB/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/es/hammer-cli-foreman.edit.po +2625 -0
- data/locale/es/hammer-cli-foreman.po +110 -100
- data/locale/es/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/fr/hammer-cli-foreman.edit.po +2626 -0
- data/locale/fr/hammer-cli-foreman.po +110 -100
- data/locale/fr/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/hammer-cli-foreman.pot +390 -190
- data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/it/hammer-cli-foreman.edit.po +2601 -0
- data/locale/it/hammer-cli-foreman.po +139 -129
- data/locale/it/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ja/hammer-cli-foreman.edit.po +2601 -0
- data/locale/ja/hammer-cli-foreman.po +140 -130
- data/locale/ja/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ko/hammer-cli-foreman.edit.po +2599 -0
- data/locale/ko/hammer-cli-foreman.po +138 -128
- data/locale/ko/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/pt_BR/hammer-cli-foreman.edit.po +2628 -0
- data/locale/pt_BR/hammer-cli-foreman.po +112 -102
- data/locale/pt_BR/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ru/hammer-cli-foreman.edit.po +2602 -0
- data/locale/ru/hammer-cli-foreman.po +265 -254
- data/locale/ru/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_CN/hammer-cli-foreman.edit.po +2599 -0
- data/locale/zh_CN/hammer-cli-foreman.po +136 -126
- data/locale/zh_CN/hammer-cli-foreman.po.time_stamp +0 -0
- data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_TW/hammer-cli-foreman.edit.po +2599 -0
- data/locale/zh_TW/hammer-cli-foreman.po +137 -127
- data/locale/zh_TW/hammer-cli-foreman.po.time_stamp +0 -0
- data/test/data/README.md +6 -1
- data/test/functional/commands/list_test.rb +141 -0
- data/test/functional/organization_test.rb +71 -0
- data/test/functional/smart_class_parameter_test.rb +61 -0
- data/test/functional/template_test.rb +80 -0
- data/test/functional/test_helper.rb +3 -0
- data/test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand-parameters.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-output.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-output.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand-parameters.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Architecture.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand-parameters.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-output.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-CommonParameter.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand-parameters.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-output.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-output.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand-parameters.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-ComputeResource.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Domain-CreateCommand-parameters.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Domain-CreateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand-parameters.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-output.xml +21 -0
- data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand-output.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand-parameters.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Domain.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Environment-CreateCommand-parameters.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Environment-CreateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-output.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand-output.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand-parameters.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Environment.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-ExceptionHandler.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Host-CreateCommand-parameters.xml +46 -0
- data/test/reports/TEST-HammerCLIForeman-Host-CreateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand-parameters.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand-output.xml +85 -0
- data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Host-ListCommand-output.xml +21 -0
- data/test/reports/TEST-HammerCLIForeman-Host-ListCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-Host-ListCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand-output.xml +9 -0
- data/test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Host-StatusCommand-output.xml +9 -0
- data/test/reports/TEST-HammerCLIForeman-Host-StatusCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Host-UpdateCommand-parameters.xml +40 -0
- data/test/reports/TEST-HammerCLIForeman-Host-UpdateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Host.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand-parameters.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand-parameters.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-output.xml +29 -0
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-parameters.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-output.xml +27 -0
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand-parameters.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Hostgroup.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand-parameters.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand-resource-disabled.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-resource-disabled.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-output.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-resource-disabled.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-output.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-resource-disabled.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-parameters.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-resource-disabled.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Location.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Medium-CreateCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Medium-CreateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-output.xml +23 -0
- data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand-output.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Medium.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand-parameters.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-output.xml +27 -0
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-output.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand-parameters.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-parameters.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-resource-disabled.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-resource-disabled.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-output.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-resource-disabled.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-output.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-resource-disabled.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-parameters.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-resource-disabled.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Organization.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand-parameters.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-output.xml +19 -0
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-output.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-PartitionTable.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-output.xml +21 -0
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-output.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-parameters.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand-parameters.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-SmartProxy.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand-parameters.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-output.xml +43 -0
- data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-parameters.xml +13 -0
- data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-output.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand-parameters.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Subnet.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Template-CreateCommand-parameters.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-Template-CreateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Template-DeleteCommand-parameters.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Template-DeleteCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Template-DumpCommand-parameters.xml +12 -0
- data/test/reports/TEST-HammerCLIForeman-Template-DumpCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand-output.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand-parameters.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Template-ListCommand-output.xml +15 -0
- data/test/reports/TEST-HammerCLIForeman-Template-ListCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-Template-ListCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand-parameters.xml +9 -0
- data/test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Template-UpdateCommand-parameters.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-Template-UpdateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-Template.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-User-CreateCommand-parameters.xml +19 -0
- data/test/reports/TEST-HammerCLIForeman-User-CreateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-User-DeleteCommand-parameters.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-User-DeleteCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-User-InfoCommand-output.xml +23 -0
- data/test/reports/TEST-HammerCLIForeman-User-InfoCommand-parameters.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-User-InfoCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-User-ListCommand-output.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-User-ListCommand-parameters.xml +17 -0
- data/test/reports/TEST-HammerCLIForeman-User-ListCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-User-UpdateCommand-parameters.xml +11 -0
- data/test/reports/TEST-HammerCLIForeman-User-UpdateCommand.xml +7 -0
- data/test/reports/TEST-HammerCLIForeman-User.xml +7 -0
- data/test/reports/TEST-MiniTest-Spec.xml +7 -0
- data/test/unit/commands_test.rb +9 -9
- data/test/unit/data/test_api.json +43 -0
- data/test/unit/exception_handler_test.rb +20 -1
- data/test/unit/host_test.rb +12 -0
- data/test/unit/id_resolver_test.rb +18 -2
- data/test/unit/user_test.rb +1 -1
- metadata +561 -46
|
File without changes
|
|
Binary file
|
|
@@ -0,0 +1,2625 @@
|
|
|
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
|
+
# Dominic Cleal <dominic@cleal.org>, 2014
|
|
7
|
+
# elobato <elobatocs@gmail.com>, 2014
|
|
8
|
+
# elobato <elobatocs@gmail.com>, 2014
|
|
9
|
+
# francis <hackgo@gmail.com>, 2014-2015
|
|
10
|
+
# Sergio Ocón <sergio.ocon@redhat.com>, 2014-2015
|
|
11
|
+
# Sergio Ocón <sergio.ocon@redhat.com>, 2014
|
|
12
|
+
msgid ""
|
|
13
|
+
msgstr ""
|
|
14
|
+
"Project-Id-Version: hammer-cli-foreman 0.6.0\n"
|
|
15
|
+
"Report-Msgid-Bugs-To: \n"
|
|
16
|
+
"POT-Creation-Date: 2016-06-14 23:53+0200\n"
|
|
17
|
+
"PO-Revision-Date: 2015-12-15 09:31+0000\n"
|
|
18
|
+
"Last-Translator: Lukáš Zapletal\n"
|
|
19
|
+
"Language-Team: Spanish (http://www.transifex.com/foreman/foreman/language/es/)"
|
|
20
|
+
"\n"
|
|
21
|
+
"MIME-Version: 1.0\n"
|
|
22
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
23
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
24
|
+
"Language: es\n"
|
|
25
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
26
|
+
|
|
27
|
+
#: ../lib/hammer_cli_foreman.rb:32
|
|
28
|
+
msgid "Foreman connection login/logout."
|
|
29
|
+
msgstr "Ingresar/Salir de la conexión de Foreman"
|
|
30
|
+
|
|
31
|
+
#: ../lib/hammer_cli_foreman.rb:36
|
|
32
|
+
msgid "Manipulate architectures."
|
|
33
|
+
msgstr "Manipular arquitecturas."
|
|
34
|
+
|
|
35
|
+
#: ../lib/hammer_cli_foreman.rb:40
|
|
36
|
+
msgid "Manipulate auth sources."
|
|
37
|
+
msgstr "Manipular las fuentes de autenticación."
|
|
38
|
+
|
|
39
|
+
#: ../lib/hammer_cli_foreman.rb:44
|
|
40
|
+
msgid "Manipulate compute resources."
|
|
41
|
+
msgstr "Manipular recursos de cómputo."
|
|
42
|
+
|
|
43
|
+
#: ../lib/hammer_cli_foreman.rb:48
|
|
44
|
+
msgid "Manipulate domains."
|
|
45
|
+
msgstr "Manipular dominios."
|
|
46
|
+
|
|
47
|
+
#: ../lib/hammer_cli_foreman.rb:52
|
|
48
|
+
msgid "Manipulate environments."
|
|
49
|
+
msgstr "Manipular entornos."
|
|
50
|
+
|
|
51
|
+
#: ../lib/hammer_cli_foreman.rb:56
|
|
52
|
+
msgid "Search facts."
|
|
53
|
+
msgstr "Buscar datos."
|
|
54
|
+
|
|
55
|
+
#: ../lib/hammer_cli_foreman.rb:60
|
|
56
|
+
msgid "Manage permission filters."
|
|
57
|
+
msgstr "Administrar filtros de permisos."
|
|
58
|
+
|
|
59
|
+
#: ../lib/hammer_cli_foreman.rb:64
|
|
60
|
+
msgid "Manipulate hosts."
|
|
61
|
+
msgstr "Manipular hosts."
|
|
62
|
+
|
|
63
|
+
#: ../lib/hammer_cli_foreman.rb:68
|
|
64
|
+
msgid "Manipulate hostgroups."
|
|
65
|
+
msgstr "Manipular grupos de hosts."
|
|
66
|
+
|
|
67
|
+
#: ../lib/hammer_cli_foreman.rb:72
|
|
68
|
+
msgid "Manipulate locations."
|
|
69
|
+
msgstr "Manipular ubicaciones."
|
|
70
|
+
|
|
71
|
+
#: ../lib/hammer_cli_foreman.rb:76
|
|
72
|
+
msgid "Manipulate installation media."
|
|
73
|
+
msgstr "Manipular el medio de instalación."
|
|
74
|
+
|
|
75
|
+
#: ../lib/hammer_cli_foreman.rb:80
|
|
76
|
+
msgid "Manipulate hardware models."
|
|
77
|
+
msgstr "Manipular modelos de hardware."
|
|
78
|
+
|
|
79
|
+
#: ../lib/hammer_cli_foreman.rb:84
|
|
80
|
+
msgid "Manipulate operating system."
|
|
81
|
+
msgstr "Manipular sistemas operativos"
|
|
82
|
+
|
|
83
|
+
#: ../lib/hammer_cli_foreman.rb:88
|
|
84
|
+
msgid "Manipulate organizations."
|
|
85
|
+
msgstr "Manipular organizaciones."
|
|
86
|
+
|
|
87
|
+
#: ../lib/hammer_cli_foreman.rb:92
|
|
88
|
+
msgid "Manipulate partition tables."
|
|
89
|
+
msgstr "Manipular tablas de particiones."
|
|
90
|
+
|
|
91
|
+
#: ../lib/hammer_cli_foreman.rb:96
|
|
92
|
+
msgid "Search puppet modules."
|
|
93
|
+
msgstr "Buscar módulos Puppet."
|
|
94
|
+
|
|
95
|
+
#: ../lib/hammer_cli_foreman.rb:100
|
|
96
|
+
msgid "Browse and read reports."
|
|
97
|
+
msgstr "Buscar y leer informes."
|
|
98
|
+
|
|
99
|
+
#: ../lib/hammer_cli_foreman.rb:104
|
|
100
|
+
msgid "Manage user roles."
|
|
101
|
+
msgstr "Administrar roles de usuario."
|
|
102
|
+
|
|
103
|
+
#: ../lib/hammer_cli_foreman.rb:108
|
|
104
|
+
msgid "Manipulate smart class parameters."
|
|
105
|
+
msgstr "Manipular parámetros de clase inteligente."
|
|
106
|
+
|
|
107
|
+
#: ../lib/hammer_cli_foreman.rb:112
|
|
108
|
+
msgid "Manipulate smart variables."
|
|
109
|
+
msgstr "Manipular variables inteligentes."
|
|
110
|
+
|
|
111
|
+
#: ../lib/hammer_cli_foreman.rb:116
|
|
112
|
+
msgid "Manipulate smart proxies."
|
|
113
|
+
msgstr "Manipular proxis inteligentes."
|
|
114
|
+
|
|
115
|
+
#: ../lib/hammer_cli_foreman.rb:120
|
|
116
|
+
msgid "Change server settings."
|
|
117
|
+
msgstr "Cambiar configuración del servidor."
|
|
118
|
+
|
|
119
|
+
#: ../lib/hammer_cli_foreman.rb:124
|
|
120
|
+
msgid "Manipulate subnets."
|
|
121
|
+
msgstr "Manipular subredes."
|
|
122
|
+
|
|
123
|
+
#: ../lib/hammer_cli_foreman.rb:128
|
|
124
|
+
msgid "Manipulate config templates."
|
|
125
|
+
msgstr "Manipular plantillas de configuración"
|
|
126
|
+
|
|
127
|
+
#: ../lib/hammer_cli_foreman.rb:132
|
|
128
|
+
msgid "Manipulate users."
|
|
129
|
+
msgstr "Manipular usuarios."
|
|
130
|
+
|
|
131
|
+
#: ../lib/hammer_cli_foreman.rb:136
|
|
132
|
+
msgid "Manage user groups."
|
|
133
|
+
msgstr "Administrar grupos de usuarios."
|
|
134
|
+
|
|
135
|
+
#: ../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:72 ../lib/hammer_cli_foreman/host.rb:159 ../lib/hammer_cli_foreman/host.rb:196 ../lib/hammer_cli_foreman/host.rb:227 ../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/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:74 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:64 ../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
|
|
136
|
+
msgid "Id"
|
|
137
|
+
msgstr "ID"
|
|
138
|
+
|
|
139
|
+
#: ../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:73 ../lib/hammer_cli_foreman/filter.rb:90 ../lib/hammer_cli_foreman/host.rb:160 ../lib/hammer_cli_foreman/host.rb:198 ../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/role.rb:12 ../lib/hammer_cli_foreman/settings.rb:12 ../lib/hammer_cli_foreman/smart_proxy.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:10 ../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
|
|
140
|
+
msgid "Name"
|
|
141
|
+
msgstr "Nombre"
|
|
142
|
+
|
|
143
|
+
#: ../lib/hammer_cli_foreman/architecture.rb:31
|
|
144
|
+
msgid "Architecture created"
|
|
145
|
+
msgstr "Se creó la arquitectura"
|
|
146
|
+
|
|
147
|
+
#: ../lib/hammer_cli_foreman/architecture.rb:32
|
|
148
|
+
msgid "Could not create the architecture"
|
|
149
|
+
msgstr "No se pudo crear la arquitectura"
|
|
150
|
+
|
|
151
|
+
#: ../lib/hammer_cli_foreman/architecture.rb:39
|
|
152
|
+
msgid "Architecture deleted"
|
|
153
|
+
msgstr "Se borró la arquitectura"
|
|
154
|
+
|
|
155
|
+
#: ../lib/hammer_cli_foreman/architecture.rb:40
|
|
156
|
+
msgid "Could not delete the architecture"
|
|
157
|
+
msgstr "No se pudo borrar la arquitectura"
|
|
158
|
+
|
|
159
|
+
#: ../lib/hammer_cli_foreman/architecture.rb:47
|
|
160
|
+
msgid "Architecture updated"
|
|
161
|
+
msgstr "Arquitectura actualizada"
|
|
162
|
+
|
|
163
|
+
#: ../lib/hammer_cli_foreman/architecture.rb:48
|
|
164
|
+
msgid "Could not update the architecture"
|
|
165
|
+
msgstr "No se pudo actualizar la arquitectura"
|
|
166
|
+
|
|
167
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:41
|
|
168
|
+
msgid "Associate a hostgroup"
|
|
169
|
+
msgstr "Asociar un grupo de hosts"
|
|
170
|
+
|
|
171
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:43
|
|
172
|
+
#, fuzzy
|
|
173
|
+
msgid "The hostgroup has been associated"
|
|
174
|
+
msgstr "El grupo de usuario ha sido asociado"
|
|
175
|
+
|
|
176
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:44
|
|
177
|
+
#, fuzzy
|
|
178
|
+
msgid "Could not associate the hostgroup"
|
|
179
|
+
msgstr "No se pudo asociar el grupo de usuario"
|
|
180
|
+
|
|
181
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:49
|
|
182
|
+
msgid "Disassociate a hostgroup"
|
|
183
|
+
msgstr "Disociar un grupo de hosts"
|
|
184
|
+
|
|
185
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:51
|
|
186
|
+
#, fuzzy
|
|
187
|
+
msgid "The hostgroup has been disassociated"
|
|
188
|
+
msgstr "El grupo de usuario se ha desasociado"
|
|
189
|
+
|
|
190
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:52
|
|
191
|
+
#, fuzzy
|
|
192
|
+
msgid "Could not disassociate the hostgroup"
|
|
193
|
+
msgstr "No se pudo desasociar el grupo de usuario"
|
|
194
|
+
|
|
195
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:61
|
|
196
|
+
msgid "Associate an environment"
|
|
197
|
+
msgstr "Asociar un entorno"
|
|
198
|
+
|
|
199
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:63
|
|
200
|
+
#, fuzzy
|
|
201
|
+
msgid "The environment has been associated"
|
|
202
|
+
msgstr "El usuario ha sido asociado"
|
|
203
|
+
|
|
204
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:64
|
|
205
|
+
#, fuzzy
|
|
206
|
+
msgid "Could not associate the environment"
|
|
207
|
+
msgstr "No se pudo crear el entorno"
|
|
208
|
+
|
|
209
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:69
|
|
210
|
+
msgid "Disassociate an environment"
|
|
211
|
+
msgstr "Disociar un entorno"
|
|
212
|
+
|
|
213
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:71
|
|
214
|
+
#, fuzzy
|
|
215
|
+
msgid "The environment has been disassociated"
|
|
216
|
+
msgstr "El usuario se ha desasociado"
|
|
217
|
+
|
|
218
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:72
|
|
219
|
+
#, fuzzy
|
|
220
|
+
msgid "Could not disassociate the environment"
|
|
221
|
+
msgstr "No se pudo crear el entorno"
|
|
222
|
+
|
|
223
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:81
|
|
224
|
+
msgid "Associate a domain"
|
|
225
|
+
msgstr "Asociar un dominio"
|
|
226
|
+
|
|
227
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:83
|
|
228
|
+
#, fuzzy
|
|
229
|
+
msgid "The domain has been associated"
|
|
230
|
+
msgstr "El usuario ha sido asociado"
|
|
231
|
+
|
|
232
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:84
|
|
233
|
+
#, fuzzy
|
|
234
|
+
msgid "Could not associate the domain"
|
|
235
|
+
msgstr "No se pudo asociar el usuario"
|
|
236
|
+
|
|
237
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:89
|
|
238
|
+
msgid "Disassociate a domain"
|
|
239
|
+
msgstr "Disociar un dominio"
|
|
240
|
+
|
|
241
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:91
|
|
242
|
+
#, fuzzy
|
|
243
|
+
msgid "The domain has been disassociated"
|
|
244
|
+
msgstr "El usuario se ha desasociado"
|
|
245
|
+
|
|
246
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:92
|
|
247
|
+
#, fuzzy
|
|
248
|
+
msgid "Could not disassociate the domain"
|
|
249
|
+
msgstr "No se pudo desasociar el usuario"
|
|
250
|
+
|
|
251
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:101
|
|
252
|
+
msgid "Associate a medium"
|
|
253
|
+
msgstr "Asociar un medio"
|
|
254
|
+
|
|
255
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:103
|
|
256
|
+
#, fuzzy
|
|
257
|
+
msgid "The medium has been associated"
|
|
258
|
+
msgstr "El usuario ha sido asociado"
|
|
259
|
+
|
|
260
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:104
|
|
261
|
+
#, fuzzy
|
|
262
|
+
msgid "Could not associate the medium"
|
|
263
|
+
msgstr "No se pudo asociar el usuario"
|
|
264
|
+
|
|
265
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:109
|
|
266
|
+
msgid "Disassociate a medium"
|
|
267
|
+
msgstr "Disociar un medio"
|
|
268
|
+
|
|
269
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:111
|
|
270
|
+
#, fuzzy
|
|
271
|
+
msgid "The medium has been disassociated"
|
|
272
|
+
msgstr "El usuario se ha desasociado"
|
|
273
|
+
|
|
274
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:112
|
|
275
|
+
#, fuzzy
|
|
276
|
+
msgid "Could not disassociate the medium"
|
|
277
|
+
msgstr "No se pudo desasociar el usuario"
|
|
278
|
+
|
|
279
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:121
|
|
280
|
+
msgid "Associate a subnet"
|
|
281
|
+
msgstr "Asociar una subred"
|
|
282
|
+
|
|
283
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:123
|
|
284
|
+
#, fuzzy
|
|
285
|
+
msgid "The subnet has been associated"
|
|
286
|
+
msgstr "El usuario ha sido asociado"
|
|
287
|
+
|
|
288
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:124
|
|
289
|
+
#, fuzzy
|
|
290
|
+
msgid "Could not associate the subnet"
|
|
291
|
+
msgstr "No se pudo asociar el usuario"
|
|
292
|
+
|
|
293
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:129
|
|
294
|
+
msgid "Disassociate a subnet"
|
|
295
|
+
msgstr "Disociar una subred"
|
|
296
|
+
|
|
297
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:131
|
|
298
|
+
#, fuzzy
|
|
299
|
+
msgid "The subnet has been disassociated"
|
|
300
|
+
msgstr "El usuario se ha desasociado"
|
|
301
|
+
|
|
302
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:132
|
|
303
|
+
#, fuzzy
|
|
304
|
+
msgid "Could not disassociate the subnet"
|
|
305
|
+
msgstr "No se pudo desasociar el usuario"
|
|
306
|
+
|
|
307
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:141
|
|
308
|
+
msgid "Associate a compute resource"
|
|
309
|
+
msgstr "Asociar un recurso de cómputo"
|
|
310
|
+
|
|
311
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:143
|
|
312
|
+
msgid "The compute resource has been associated"
|
|
313
|
+
msgstr ""
|
|
314
|
+
|
|
315
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:144
|
|
316
|
+
#, fuzzy
|
|
317
|
+
msgid "Could not associate the compute resource"
|
|
318
|
+
msgstr "No se pudo crear el recurso de cómputo"
|
|
319
|
+
|
|
320
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:149
|
|
321
|
+
msgid "Disassociate a compute resource"
|
|
322
|
+
msgstr "Disociar un recurso de cómputo"
|
|
323
|
+
|
|
324
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:151
|
|
325
|
+
msgid "The compute resource has been disassociated"
|
|
326
|
+
msgstr ""
|
|
327
|
+
|
|
328
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:152
|
|
329
|
+
#, fuzzy
|
|
330
|
+
msgid "Could not disassociate the compute resource"
|
|
331
|
+
msgstr "No se pudo crear el recurso de cómputo"
|
|
332
|
+
|
|
333
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:161
|
|
334
|
+
msgid "Associate a smart proxy"
|
|
335
|
+
msgstr "Asociar un proxy inteligente"
|
|
336
|
+
|
|
337
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:163
|
|
338
|
+
#, fuzzy
|
|
339
|
+
msgid "The smart proxy has been associated"
|
|
340
|
+
msgstr "El grupo de usuario ha sido asociado"
|
|
341
|
+
|
|
342
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:164
|
|
343
|
+
#, fuzzy
|
|
344
|
+
msgid "Could not associate the smart proxy"
|
|
345
|
+
msgstr "No se pudo asociar el grupo de usuario"
|
|
346
|
+
|
|
347
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:173
|
|
348
|
+
msgid "Disassociate a smart proxy"
|
|
349
|
+
msgstr "Disociar un proxy inteligente"
|
|
350
|
+
|
|
351
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:175
|
|
352
|
+
#, fuzzy
|
|
353
|
+
msgid "The smart proxy has been disassociated"
|
|
354
|
+
msgstr "El grupo de usuario se ha desasociado"
|
|
355
|
+
|
|
356
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:176
|
|
357
|
+
#, fuzzy
|
|
358
|
+
msgid "Could not disassociate the smart proxy"
|
|
359
|
+
msgstr "No se pudo desasociar el grupo de usuario"
|
|
360
|
+
|
|
361
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:189
|
|
362
|
+
msgid "Associate an user"
|
|
363
|
+
msgstr "Asociar un usuario"
|
|
364
|
+
|
|
365
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:191
|
|
366
|
+
msgid "The user has been associated"
|
|
367
|
+
msgstr "El usuario ha sido asociado"
|
|
368
|
+
|
|
369
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:192
|
|
370
|
+
msgid "Could not associate the user"
|
|
371
|
+
msgstr "No se pudo asociar el usuario"
|
|
372
|
+
|
|
373
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:197
|
|
374
|
+
msgid "Disassociate an user"
|
|
375
|
+
msgstr "Disociar un usuario"
|
|
376
|
+
|
|
377
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:199
|
|
378
|
+
msgid "The user has been disassociated"
|
|
379
|
+
msgstr "El usuario se ha desasociado"
|
|
380
|
+
|
|
381
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:200
|
|
382
|
+
msgid "Could not disassociate the user"
|
|
383
|
+
msgstr "No se pudo desasociar el usuario"
|
|
384
|
+
|
|
385
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:209
|
|
386
|
+
msgid "Associate an user group"
|
|
387
|
+
msgstr "Asociar un grupo de usuarios"
|
|
388
|
+
|
|
389
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:213
|
|
390
|
+
msgid "The user group has been associated"
|
|
391
|
+
msgstr "El grupo de usuario ha sido asociado"
|
|
392
|
+
|
|
393
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:214
|
|
394
|
+
msgid "Could not associate the user group"
|
|
395
|
+
msgstr "No se pudo asociar el grupo de usuario"
|
|
396
|
+
|
|
397
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:219
|
|
398
|
+
msgid "Disassociate an user group"
|
|
399
|
+
msgstr "Disociar un grupo de usuarios"
|
|
400
|
+
|
|
401
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:223
|
|
402
|
+
msgid "The user group has been disassociated"
|
|
403
|
+
msgstr "El grupo de usuario se ha desasociado"
|
|
404
|
+
|
|
405
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:224
|
|
406
|
+
msgid "Could not disassociate the user group"
|
|
407
|
+
msgstr "No se pudo desasociar el grupo de usuario"
|
|
408
|
+
|
|
409
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:233
|
|
410
|
+
msgid "Associate a configuration template"
|
|
411
|
+
msgstr "Asociar una plantilla de configuración"
|
|
412
|
+
|
|
413
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:235
|
|
414
|
+
msgid "The configuration template has been associated"
|
|
415
|
+
msgstr ""
|
|
416
|
+
|
|
417
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:236
|
|
418
|
+
msgid "Could not associate the configuration template"
|
|
419
|
+
msgstr ""
|
|
420
|
+
|
|
421
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:241
|
|
422
|
+
msgid "Disassociate a configuration template"
|
|
423
|
+
msgstr "Disociar una plantilla de configuración"
|
|
424
|
+
|
|
425
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:243
|
|
426
|
+
msgid "The configuration template has been disassociated"
|
|
427
|
+
msgstr ""
|
|
428
|
+
|
|
429
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:244
|
|
430
|
+
msgid "Could not disassociate the configuration template"
|
|
431
|
+
msgstr ""
|
|
432
|
+
|
|
433
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:253
|
|
434
|
+
msgid "Associate an organization"
|
|
435
|
+
msgstr "Asociar una organización"
|
|
436
|
+
|
|
437
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:255
|
|
438
|
+
msgid "The organization has been associated"
|
|
439
|
+
msgstr ""
|
|
440
|
+
|
|
441
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:256
|
|
442
|
+
#, fuzzy
|
|
443
|
+
msgid "Could not associate the organization"
|
|
444
|
+
msgstr "No se pudo crear organización"
|
|
445
|
+
|
|
446
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:261
|
|
447
|
+
msgid "Disassociate an organization"
|
|
448
|
+
msgstr "Disociar una organización"
|
|
449
|
+
|
|
450
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:263
|
|
451
|
+
msgid "The organization has been disassociated"
|
|
452
|
+
msgstr ""
|
|
453
|
+
|
|
454
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:264
|
|
455
|
+
#, fuzzy
|
|
456
|
+
msgid "Could not disassociate the organization"
|
|
457
|
+
msgstr "No se pudo crear organización"
|
|
458
|
+
|
|
459
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:273
|
|
460
|
+
msgid "Associate an operating system"
|
|
461
|
+
msgstr "Asociar un sistema operativo"
|
|
462
|
+
|
|
463
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:275
|
|
464
|
+
msgid "Operating system has been associated"
|
|
465
|
+
msgstr "Se ha asociado el sistema operativo"
|
|
466
|
+
|
|
467
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:276
|
|
468
|
+
msgid "Could not associate the operating system"
|
|
469
|
+
msgstr "No se pudo asociar el sistema operativo"
|
|
470
|
+
|
|
471
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:282
|
|
472
|
+
msgid "Disassociate an operating system"
|
|
473
|
+
msgstr "Disociar un sistema operativo"
|
|
474
|
+
|
|
475
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:284
|
|
476
|
+
msgid "Operating system has been disassociated"
|
|
477
|
+
msgstr "Se ha disociado el sistema operativo"
|
|
478
|
+
|
|
479
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:285
|
|
480
|
+
msgid "Could not disassociate the operating system"
|
|
481
|
+
msgstr "No se pudo disociar el sistema operativo"
|
|
482
|
+
|
|
483
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:294
|
|
484
|
+
msgid "Associate an architecture"
|
|
485
|
+
msgstr "Asociar una arquitectura"
|
|
486
|
+
|
|
487
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:296
|
|
488
|
+
msgid "Architecture has been associated"
|
|
489
|
+
msgstr "Se ha asociado la arquitectura"
|
|
490
|
+
|
|
491
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:297
|
|
492
|
+
msgid "Could not associate the architecture"
|
|
493
|
+
msgstr "No se pudo asociar la arquitectura"
|
|
494
|
+
|
|
495
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:303
|
|
496
|
+
msgid "Disassociate an architecture"
|
|
497
|
+
msgstr "Disociar una arquitectura"
|
|
498
|
+
|
|
499
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:305
|
|
500
|
+
msgid "Architecture has been disassociated"
|
|
501
|
+
msgstr "Se ha disociado la arquitectura"
|
|
502
|
+
|
|
503
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:306
|
|
504
|
+
msgid "Could not disassociate the architecture"
|
|
505
|
+
msgstr "No se pudo disociar la arquitectura"
|
|
506
|
+
|
|
507
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:315
|
|
508
|
+
msgid "Associate a partition table"
|
|
509
|
+
msgstr "Asociar una tabla de particiones"
|
|
510
|
+
|
|
511
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:317
|
|
512
|
+
msgid "Partition table has been associated"
|
|
513
|
+
msgstr "Se ha asociado la tabla de particiones"
|
|
514
|
+
|
|
515
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:318
|
|
516
|
+
msgid "Could not associate the partition table"
|
|
517
|
+
msgstr "No se pudo asociar la tabla de particiones"
|
|
518
|
+
|
|
519
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:324
|
|
520
|
+
msgid "Disassociate a partition table"
|
|
521
|
+
msgstr "Disociar una tabla de particiones"
|
|
522
|
+
|
|
523
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:326
|
|
524
|
+
msgid "Partition table has been disassociated"
|
|
525
|
+
msgstr "Se ha disociado la tabla de particiones"
|
|
526
|
+
|
|
527
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:327
|
|
528
|
+
msgid "Could not disassociate the partition table"
|
|
529
|
+
msgstr "No se ha podido disociar la tabla de particiones"
|
|
530
|
+
|
|
531
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:336
|
|
532
|
+
msgid "Assign a user role"
|
|
533
|
+
msgstr "Asignar un rol de usuario"
|
|
534
|
+
|
|
535
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:338
|
|
536
|
+
msgid "User role has been assigned"
|
|
537
|
+
msgstr "Se ha asignado el rol de usuario"
|
|
538
|
+
|
|
539
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:339
|
|
540
|
+
msgid "Could not assign the user role"
|
|
541
|
+
msgstr "No se pudo asignar el rol de usuario"
|
|
542
|
+
|
|
543
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:345
|
|
544
|
+
msgid "Remove a user role"
|
|
545
|
+
msgstr "Eliminar un rol de usuario"
|
|
546
|
+
|
|
547
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:347
|
|
548
|
+
msgid "User role has been removed"
|
|
549
|
+
msgstr "El rol de usuario ha sido eliminado"
|
|
550
|
+
|
|
551
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:348
|
|
552
|
+
msgid "Could not remove the user role"
|
|
553
|
+
msgstr "No se pudo eliminar el rol de usuario"
|
|
554
|
+
|
|
555
|
+
#: ../lib/hammer_cli_foreman/auth.rb:7
|
|
556
|
+
msgid "Set credentials"
|
|
557
|
+
msgstr "Establecer credenciales"
|
|
558
|
+
|
|
559
|
+
#: ../lib/hammer_cli_foreman/auth.rb:20
|
|
560
|
+
msgid "Wipe your credentials"
|
|
561
|
+
msgstr "Borrar credenciales"
|
|
562
|
+
|
|
563
|
+
#: ../lib/hammer_cli_foreman/auth.rb:26
|
|
564
|
+
msgid "Credentials deleted."
|
|
565
|
+
msgstr "Se han borrado las credenciales."
|
|
566
|
+
|
|
567
|
+
#: ../lib/hammer_cli_foreman/auth.rb:33
|
|
568
|
+
msgid "Information about current connections"
|
|
569
|
+
msgstr "Información sobre conexiones vigentes"
|
|
570
|
+
|
|
571
|
+
#: ../lib/hammer_cli_foreman/auth.rb:37
|
|
572
|
+
msgid "You are logged in as '%s'"
|
|
573
|
+
msgstr "Ha ingresado como '%s'"
|
|
574
|
+
|
|
575
|
+
#: ../lib/hammer_cli_foreman/auth.rb:39
|
|
576
|
+
msgid ""
|
|
577
|
+
"You are currently not logged in to any service.\n"
|
|
578
|
+
"Use the service to set credentials."
|
|
579
|
+
msgstr ""
|
|
580
|
+
"Actualmente no estás identificado en ningún servicio.\n"
|
|
581
|
+
"Utiliza el servicio para establecer las credenciales."
|
|
582
|
+
|
|
583
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:7
|
|
584
|
+
msgid "Manage LDAP auth sources."
|
|
585
|
+
msgstr "Administrar fuentes de autenticación LDAP"
|
|
586
|
+
|
|
587
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:15
|
|
588
|
+
msgid "LDAPS?"
|
|
589
|
+
msgstr "¿LDAP?"
|
|
590
|
+
|
|
591
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:16
|
|
592
|
+
msgid "Port"
|
|
593
|
+
msgstr "Puerto"
|
|
594
|
+
|
|
595
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:17
|
|
596
|
+
msgid "Server Type"
|
|
597
|
+
msgstr "Tipo de servidor"
|
|
598
|
+
|
|
599
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:27
|
|
600
|
+
msgid "Account Username"
|
|
601
|
+
msgstr "Nombre de usuario de la cuenta"
|
|
602
|
+
|
|
603
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:28
|
|
604
|
+
msgid "Base DN"
|
|
605
|
+
msgstr "DN base"
|
|
606
|
+
|
|
607
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:29
|
|
608
|
+
msgid "LDAP filter"
|
|
609
|
+
msgstr "Filtro LDAP"
|
|
610
|
+
|
|
611
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:30
|
|
612
|
+
msgid "Automatically Create Accounts?"
|
|
613
|
+
msgstr "¿Crear cuentas automáticamente?"
|
|
614
|
+
|
|
615
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:31
|
|
616
|
+
msgid "Login Name Attribute"
|
|
617
|
+
msgstr "Atributo nombre de usuario"
|
|
618
|
+
|
|
619
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:32
|
|
620
|
+
msgid "First Name Attribute"
|
|
621
|
+
msgstr "Atributo nombre"
|
|
622
|
+
|
|
623
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:33
|
|
624
|
+
msgid "Last Name Attribute"
|
|
625
|
+
msgstr "Atributo apellido"
|
|
626
|
+
|
|
627
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:34
|
|
628
|
+
msgid "Email Address Attribute"
|
|
629
|
+
msgstr "Atributo correo-e"
|
|
630
|
+
|
|
631
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:35
|
|
632
|
+
msgid "Photo Attribute"
|
|
633
|
+
msgstr "Atributo foto"
|
|
634
|
+
|
|
635
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:43
|
|
636
|
+
msgid "Auth source created"
|
|
637
|
+
msgstr "Se creó la fuente de autenticación"
|
|
638
|
+
|
|
639
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:44
|
|
640
|
+
msgid "Could not create the Auth Source"
|
|
641
|
+
msgstr "No se pudo crear la fuente de autenticación"
|
|
642
|
+
|
|
643
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:51
|
|
644
|
+
msgid "Auth source deleted"
|
|
645
|
+
msgstr "Se borró la fuente de autenticación"
|
|
646
|
+
|
|
647
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:52
|
|
648
|
+
msgid "Could not delete the Auth Source"
|
|
649
|
+
msgstr "No se pudo borrar fuente de autenticación"
|
|
650
|
+
|
|
651
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:59
|
|
652
|
+
msgid "Auth source updated"
|
|
653
|
+
msgstr "Se actualizó fuente de autenticación"
|
|
654
|
+
|
|
655
|
+
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:60
|
|
656
|
+
msgid "Could not update the Auth Source"
|
|
657
|
+
msgstr "No se pudo actualizar fuente de autenticación"
|
|
658
|
+
|
|
659
|
+
#: ../lib/hammer_cli_foreman/commands.rb:88
|
|
660
|
+
msgid "Received data of unknown format"
|
|
661
|
+
msgstr "Se ha recibido dato en formato desconocido"
|
|
662
|
+
|
|
663
|
+
#: ../lib/hammer_cli_foreman/commands.rb:196
|
|
664
|
+
msgid "Could not find %{resource}. Some search options were missing, please see --help."
|
|
665
|
+
msgstr "No se encontró %{resource}. Faltaron algunas opciones de búsqueda, por favor, consulte --help."
|
|
666
|
+
|
|
667
|
+
#: ../lib/hammer_cli_foreman/commands.rb:198
|
|
668
|
+
msgid "Could not find %{resource}, please set option %{switches}."
|
|
669
|
+
msgstr "No se pudo encontrar %{resource}, por favor establezca la opción %{switches}."
|
|
670
|
+
|
|
671
|
+
#: ../lib/hammer_cli_foreman/commands.rb:200
|
|
672
|
+
msgid "Could not find %{resource}, please set one of options %{switches}."
|
|
673
|
+
msgstr "No se pudo encontrar %{resource}, por favor establezca una de las opciones %{switches}."
|
|
674
|
+
|
|
675
|
+
#: ../lib/hammer_cli_foreman/commands.rb:529
|
|
676
|
+
msgid "Associate a resource"
|
|
677
|
+
msgstr "Asociar un recurso"
|
|
678
|
+
|
|
679
|
+
#: ../lib/hammer_cli_foreman/commands.rb:533
|
|
680
|
+
msgid "Could not associate the %{resource_name}"
|
|
681
|
+
msgstr ""
|
|
682
|
+
|
|
683
|
+
#: ../lib/hammer_cli_foreman/commands.rb:537
|
|
684
|
+
msgid "The %{resource_name} has been associated"
|
|
685
|
+
msgstr ""
|
|
686
|
+
|
|
687
|
+
#: ../lib/hammer_cli_foreman/commands.rb:559
|
|
688
|
+
msgid "Disassociate a resource"
|
|
689
|
+
msgstr "Disociar un recurso"
|
|
690
|
+
|
|
691
|
+
#: ../lib/hammer_cli_foreman/commands.rb:571
|
|
692
|
+
msgid "Could not disassociate the %{resource_name}"
|
|
693
|
+
msgstr ""
|
|
694
|
+
|
|
695
|
+
#: ../lib/hammer_cli_foreman/commands.rb:575
|
|
696
|
+
msgid "The %{resource_name} has been disassociated"
|
|
697
|
+
msgstr ""
|
|
698
|
+
|
|
699
|
+
#: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:323 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:76 ../lib/hammer_cli_foreman/smart_variable.rb:66
|
|
700
|
+
msgid "Value"
|
|
701
|
+
msgstr "Valor"
|
|
702
|
+
|
|
703
|
+
#: ../lib/hammer_cli_foreman/common_parameter.rb:22
|
|
704
|
+
msgid "Set a global parameter."
|
|
705
|
+
msgstr "Establecer un parámetro global."
|
|
706
|
+
|
|
707
|
+
#: ../lib/hammer_cli_foreman/common_parameter.rb:24
|
|
708
|
+
msgid "Created parameter [%{name}] with value [%{value}]."
|
|
709
|
+
msgstr "Se creó el parámetro [%{name}] con valor [%{value}]."
|
|
710
|
+
|
|
711
|
+
#: ../lib/hammer_cli_foreman/common_parameter.rb:25
|
|
712
|
+
msgid "Parameter [%{name}] updated to [%{value}]."
|
|
713
|
+
msgstr "Se actualizó el parámetro [%{name}] a [%{value}]."
|
|
714
|
+
|
|
715
|
+
#: ../lib/hammer_cli_foreman/common_parameter.rb:27 ../lib/hammer_cli_foreman/parameter.rb:49 ../lib/hammer_cli_foreman/parameter.rb:96
|
|
716
|
+
msgid "parameter name"
|
|
717
|
+
msgstr "nombre del parámetro"
|
|
718
|
+
|
|
719
|
+
#: ../lib/hammer_cli_foreman/common_parameter.rb:28 ../lib/hammer_cli_foreman/parameter.rb:50
|
|
720
|
+
msgid "parameter value"
|
|
721
|
+
msgstr "valor del parámetro"
|
|
722
|
+
|
|
723
|
+
#: ../lib/hammer_cli_foreman/common_parameter.rb:53
|
|
724
|
+
msgid "Global parameter [%{name}] deleted."
|
|
725
|
+
msgstr "Se borró el parámetro global [%{name}]."
|
|
726
|
+
|
|
727
|
+
#: ../lib/hammer_cli_foreman/common_parameter.rb:54
|
|
728
|
+
msgid "Could not delete the global parameter [%{name}]"
|
|
729
|
+
msgstr "No se pudo borrar el parámetro global [%{name}]"
|
|
730
|
+
|
|
731
|
+
#: ../lib/hammer_cli_foreman/common_parameter.rb:67
|
|
732
|
+
msgid "Manipulate global parameters."
|
|
733
|
+
msgstr "Manipular parámetros globales."
|
|
734
|
+
|
|
735
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:22 ../lib/hammer_cli_foreman/interface.rb:60
|
|
736
|
+
msgid "Provider"
|
|
737
|
+
msgstr "Proveedor"
|
|
738
|
+
|
|
739
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40 ../lib/hammer_cli_foreman/host.rb:197 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
|
|
740
|
+
msgid "UUID"
|
|
741
|
+
msgstr "UUID"
|
|
742
|
+
|
|
743
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:37 ../lib/hammer_cli_foreman/compute_resource.rb:47
|
|
744
|
+
msgid "Region"
|
|
745
|
+
msgstr "Región"
|
|
746
|
+
|
|
747
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:41
|
|
748
|
+
msgid "Server"
|
|
749
|
+
msgstr "Servidor"
|
|
750
|
+
|
|
751
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:44
|
|
752
|
+
msgid "Tenant"
|
|
753
|
+
msgstr "Inquilino"
|
|
754
|
+
|
|
755
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:54
|
|
756
|
+
msgid "Url"
|
|
757
|
+
msgstr "Url"
|
|
758
|
+
|
|
759
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:55 ../lib/hammer_cli_foreman/domain.rb:42 ../lib/hammer_cli_foreman/settings.rb:14 ../lib/hammer_cli_foreman/smart_class_parameter.rb:59 ../lib/hammer_cli_foreman/smart_variable.rb:51
|
|
760
|
+
msgid "Description"
|
|
761
|
+
msgstr "Descripción"
|
|
762
|
+
|
|
763
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:56
|
|
764
|
+
msgid "User"
|
|
765
|
+
msgstr "Usuario"
|
|
766
|
+
|
|
767
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:73
|
|
768
|
+
msgid "Compute resource created"
|
|
769
|
+
msgstr "Se creó el recurso de cómputo"
|
|
770
|
+
|
|
771
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:74
|
|
772
|
+
msgid "Could not create the compute resource"
|
|
773
|
+
msgstr "No se pudo crear el recurso de cómputo"
|
|
774
|
+
|
|
775
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:85
|
|
776
|
+
msgid "Compute resource updated"
|
|
777
|
+
msgstr "Se actualizó el recurso de cómputo"
|
|
778
|
+
|
|
779
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:86
|
|
780
|
+
msgid "Could not update the compute resource"
|
|
781
|
+
msgstr "No se pudo actualizar el recurso de cómputo"
|
|
782
|
+
|
|
783
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:93
|
|
784
|
+
msgid "Compute resource deleted"
|
|
785
|
+
msgstr "Se borró el recurso de cómputo"
|
|
786
|
+
|
|
787
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:94
|
|
788
|
+
msgid "Could not delete the compute resource"
|
|
789
|
+
msgstr "No se pudo borrar el recurso de cómputo"
|
|
790
|
+
|
|
791
|
+
#: ../lib/hammer_cli_foreman/credentials.rb:26
|
|
792
|
+
msgid "[Foreman] Username: "
|
|
793
|
+
msgstr "[Foreman] Nombre de usuario: "
|
|
794
|
+
|
|
795
|
+
#: ../lib/hammer_cli_foreman/credentials.rb:33
|
|
796
|
+
msgid "[Foreman] Password for %s: "
|
|
797
|
+
msgstr "[Foreman] Contraseña para %s: "
|
|
798
|
+
|
|
799
|
+
#: ../lib/hammer_cli_foreman/defaults.rb:7
|
|
800
|
+
msgid "Use the default organization and/or location from the server"
|
|
801
|
+
msgstr "Utiliza la organización por defecto y/o ubicación desde el servidor"
|
|
802
|
+
|
|
803
|
+
#: ../lib/hammer_cli_foreman/domain.rb:6
|
|
804
|
+
msgid "ID of DNS proxy to use within this domain"
|
|
805
|
+
msgstr "ID de proxy DNS a usar dentro de este dominio"
|
|
806
|
+
|
|
807
|
+
#: ../lib/hammer_cli_foreman/domain.rb:7
|
|
808
|
+
msgid "Name of DNS proxy to use within this domain"
|
|
809
|
+
msgstr "Nombre de proxy DNS a usar dentro de este dominio"
|
|
810
|
+
|
|
811
|
+
#: ../lib/hammer_cli_foreman/domain.rb:43
|
|
812
|
+
msgid "DNS Id"
|
|
813
|
+
msgstr "ID de DNS"
|
|
814
|
+
|
|
815
|
+
#: ../lib/hammer_cli_foreman/domain.rb:57
|
|
816
|
+
msgid "Domain [%{name}] created"
|
|
817
|
+
msgstr "Se creó el dominio [%{name}]"
|
|
818
|
+
|
|
819
|
+
#: ../lib/hammer_cli_foreman/domain.rb:58
|
|
820
|
+
msgid "Could not create the domain"
|
|
821
|
+
msgstr "No se pudo crear el dominio"
|
|
822
|
+
|
|
823
|
+
#: ../lib/hammer_cli_foreman/domain.rb:60 ../lib/hammer_cli_foreman/domain.rb:71
|
|
824
|
+
msgid "Full name describing the domain"
|
|
825
|
+
msgstr "Nombre completo que describe el dominio"
|
|
826
|
+
|
|
827
|
+
#: ../lib/hammer_cli_foreman/domain.rb:68
|
|
828
|
+
msgid "Domain [%{name}] updated"
|
|
829
|
+
msgstr "Se actualizó el dominio [%{name}]"
|
|
830
|
+
|
|
831
|
+
#: ../lib/hammer_cli_foreman/domain.rb:69
|
|
832
|
+
msgid "Could not update the domain"
|
|
833
|
+
msgstr "No se pudo actualizar el dominio"
|
|
834
|
+
|
|
835
|
+
#: ../lib/hammer_cli_foreman/domain.rb:78
|
|
836
|
+
msgid "Domain [%{name}] deleted"
|
|
837
|
+
msgstr "Se borró el dominio [%{name}]"
|
|
838
|
+
|
|
839
|
+
#: ../lib/hammer_cli_foreman/domain.rb:79
|
|
840
|
+
msgid "Could not delete the domain"
|
|
841
|
+
msgstr "No se pudo borrar el dominio"
|
|
842
|
+
|
|
843
|
+
#: ../lib/hammer_cli_foreman/domain.rb:86
|
|
844
|
+
msgid "Create or update parameter for a domain."
|
|
845
|
+
msgstr "Crear o actualizar parámetro de dominio."
|
|
846
|
+
|
|
847
|
+
#: ../lib/hammer_cli_foreman/domain.rb:88
|
|
848
|
+
msgid "Domain parameter updated"
|
|
849
|
+
msgstr "Parámetro de dominio actualizado"
|
|
850
|
+
|
|
851
|
+
#: ../lib/hammer_cli_foreman/domain.rb:89
|
|
852
|
+
msgid "New domain parameter created"
|
|
853
|
+
msgstr "Se creó un parámetro de dominio"
|
|
854
|
+
|
|
855
|
+
#: ../lib/hammer_cli_foreman/domain.rb:90
|
|
856
|
+
msgid "Could not set domain parameter"
|
|
857
|
+
msgstr "No se pudo establecer el parámetro de dominio"
|
|
858
|
+
|
|
859
|
+
#: ../lib/hammer_cli_foreman/domain.rb:102
|
|
860
|
+
msgid "Delete parameter for a domain."
|
|
861
|
+
msgstr "Borrar parámetro de dominio"
|
|
862
|
+
|
|
863
|
+
#: ../lib/hammer_cli_foreman/domain.rb:104
|
|
864
|
+
msgid "Domain parameter deleted"
|
|
865
|
+
msgstr "Se borró el parámetro de dominio"
|
|
866
|
+
|
|
867
|
+
#: ../lib/hammer_cli_foreman/environment.rb:34
|
|
868
|
+
msgid "Environment created"
|
|
869
|
+
msgstr "Entorno creado"
|
|
870
|
+
|
|
871
|
+
#: ../lib/hammer_cli_foreman/environment.rb:35
|
|
872
|
+
msgid "Could not create the environment"
|
|
873
|
+
msgstr "No se pudo crear el entorno"
|
|
874
|
+
|
|
875
|
+
#: ../lib/hammer_cli_foreman/environment.rb:42
|
|
876
|
+
msgid "Environment updated"
|
|
877
|
+
msgstr "Entorno actualizado"
|
|
878
|
+
|
|
879
|
+
#: ../lib/hammer_cli_foreman/environment.rb:43
|
|
880
|
+
msgid "Could not update the environment"
|
|
881
|
+
msgstr "No se pudo actualizar el entorno"
|
|
882
|
+
|
|
883
|
+
#: ../lib/hammer_cli_foreman/environment.rb:50
|
|
884
|
+
msgid "Environment deleted"
|
|
885
|
+
msgstr "Entorno eliminado"
|
|
886
|
+
|
|
887
|
+
#: ../lib/hammer_cli_foreman/environment.rb:51
|
|
888
|
+
msgid "Could not delete the environment"
|
|
889
|
+
msgstr "No se pudo borrar el entorno"
|
|
890
|
+
|
|
891
|
+
#: ../lib/hammer_cli_foreman/exception_handler.rb:29
|
|
892
|
+
msgid "Redirection of API call detected."
|
|
893
|
+
msgstr ""
|
|
894
|
+
|
|
895
|
+
#: ../lib/hammer_cli_foreman/exception_handler.rb:30
|
|
896
|
+
msgid "It seems hammer is configured to use HTTP and the server prefers HTTPS."
|
|
897
|
+
msgstr ""
|
|
898
|
+
|
|
899
|
+
#: ../lib/hammer_cli_foreman/exception_handler.rb:32
|
|
900
|
+
msgid "Update your server url configuration"
|
|
901
|
+
msgstr ""
|
|
902
|
+
|
|
903
|
+
#: ../lib/hammer_cli_foreman/exception_handler.rb:33
|
|
904
|
+
msgid "you can set 'follow_redirects' to one of :default or :always to enable redirects following"
|
|
905
|
+
msgstr ""
|
|
906
|
+
|
|
907
|
+
#: ../lib/hammer_cli_foreman/exception_handler.rb:54
|
|
908
|
+
msgid "Forbidden - server refused to process the request"
|
|
909
|
+
msgstr "Prohibido - el servidor se negó a procesar la solicitud"
|
|
910
|
+
|
|
911
|
+
#: ../lib/hammer_cli_foreman/exception_handler.rb:88
|
|
912
|
+
msgid "Could not load the API description from the server"
|
|
913
|
+
msgstr "No se pudo cargar la descripción de la API desde el servidor"
|
|
914
|
+
|
|
915
|
+
#: ../lib/hammer_cli_foreman/exception_handler.rb:89
|
|
916
|
+
msgid "is the server down?"
|
|
917
|
+
msgstr "¿Está apagado el servidor?"
|
|
918
|
+
|
|
919
|
+
#: ../lib/hammer_cli_foreman/exception_handler.rb:90
|
|
920
|
+
msgid "was '%s' run on the server when using apipie cache? (typical production settings)"
|
|
921
|
+
msgstr "¿Se ejecutó '%s' en el servidor al usar la caché apipe? (configuración típica de producción)"
|
|
922
|
+
|
|
923
|
+
#: ../lib/hammer_cli_foreman/external_usergroup.rb:6
|
|
924
|
+
msgid "View and manage user group's external user groups"
|
|
925
|
+
msgstr "Ver y administrar los grupos de usuarios externos de los grupos de usuarios"
|
|
926
|
+
|
|
927
|
+
#: ../lib/hammer_cli_foreman/external_usergroup.rb:12 ../lib/hammer_cli_foreman/external_usergroup.rb:43
|
|
928
|
+
msgid "Auth source"
|
|
929
|
+
msgstr "Fuente de autenticación"
|
|
930
|
+
|
|
931
|
+
#: ../lib/hammer_cli_foreman/external_usergroup.rb:39
|
|
932
|
+
msgid "Refresh external user group"
|
|
933
|
+
msgstr "Actualizar los grupos de usuarios externos"
|
|
934
|
+
|
|
935
|
+
#: ../lib/hammer_cli_foreman/external_usergroup.rb:57
|
|
936
|
+
msgid "External user group created"
|
|
937
|
+
msgstr "Grupo de usuarios externos creados"
|
|
938
|
+
|
|
939
|
+
#: ../lib/hammer_cli_foreman/external_usergroup.rb:58
|
|
940
|
+
msgid "Could not create external user group"
|
|
941
|
+
msgstr "No se pudo crear un grupo de usuario externo"
|
|
942
|
+
|
|
943
|
+
#: ../lib/hammer_cli_foreman/external_usergroup.rb:65
|
|
944
|
+
msgid "External user group updated"
|
|
945
|
+
msgstr "Se actualizó el grupo de usuario externo"
|
|
946
|
+
|
|
947
|
+
#: ../lib/hammer_cli_foreman/external_usergroup.rb:66
|
|
948
|
+
msgid "Could not update external user group"
|
|
949
|
+
msgstr "No se pudo actualizar el grupo de usuario externo"
|
|
950
|
+
|
|
951
|
+
#: ../lib/hammer_cli_foreman/external_usergroup.rb:73
|
|
952
|
+
msgid "External user group deleted"
|
|
953
|
+
msgstr "Se borró el grupo de usuario externo"
|
|
954
|
+
|
|
955
|
+
#: ../lib/hammer_cli_foreman/external_usergroup.rb:74
|
|
956
|
+
msgid "Could not delete the external user group"
|
|
957
|
+
msgstr "No se pudo borrar el grupo de usuario externo"
|
|
958
|
+
|
|
959
|
+
#: ../lib/hammer_cli_foreman/fact.rb:12 ../lib/hammer_cli_foreman/report.rb:11 ../lib/hammer_cli_foreman/report.rb:31
|
|
960
|
+
msgid "Host"
|
|
961
|
+
msgstr "Host"
|
|
962
|
+
|
|
963
|
+
#: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:322
|
|
964
|
+
msgid "Fact"
|
|
965
|
+
msgstr "Evento"
|
|
966
|
+
|
|
967
|
+
#: ../lib/hammer_cli_foreman/filter.rb:10
|
|
968
|
+
msgid "Resource type"
|
|
969
|
+
msgstr "Tipo de recurso"
|
|
970
|
+
|
|
971
|
+
#: ../lib/hammer_cli_foreman/filter.rb:11
|
|
972
|
+
msgid "Search"
|
|
973
|
+
msgstr "Buscar"
|
|
974
|
+
|
|
975
|
+
#: ../lib/hammer_cli_foreman/filter.rb:12
|
|
976
|
+
msgid "Unlimited?"
|
|
977
|
+
msgstr "¿Ilimitado?"
|
|
978
|
+
|
|
979
|
+
#: ../lib/hammer_cli_foreman/filter.rb:13
|
|
980
|
+
msgid "Role"
|
|
981
|
+
msgstr "Rol"
|
|
982
|
+
|
|
983
|
+
#: ../lib/hammer_cli_foreman/filter.rb:14
|
|
984
|
+
msgid "Permissions"
|
|
985
|
+
msgstr "Permisos"
|
|
986
|
+
|
|
987
|
+
#: ../lib/hammer_cli_foreman/filter.rb:18 ../lib/hammer_cli_foreman/filter.rb:34 ../lib/hammer_cli_foreman/filter.rb:78 ../lib/hammer_cli_foreman/role.rb:46
|
|
988
|
+
msgid "(Miscellaneous)"
|
|
989
|
+
msgstr "(Varios)"
|
|
990
|
+
|
|
991
|
+
#: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:47
|
|
992
|
+
msgid "none"
|
|
993
|
+
msgstr "nada"
|
|
994
|
+
|
|
995
|
+
#: ../lib/hammer_cli_foreman/filter.rb:44
|
|
996
|
+
msgid "Permission filter for [%<resource_type>s] created"
|
|
997
|
+
msgstr "Se creó el filtro de permisos para [%<resource_type>s]"
|
|
998
|
+
|
|
999
|
+
#: ../lib/hammer_cli_foreman/filter.rb:45
|
|
1000
|
+
msgid "Could not create the permission filter"
|
|
1001
|
+
msgstr "No se pudo crear el filtro de permisos"
|
|
1002
|
+
|
|
1003
|
+
#: ../lib/hammer_cli_foreman/filter.rb:52
|
|
1004
|
+
msgid "Permission filter for [%<resource_type>s] updated"
|
|
1005
|
+
msgstr "Se actualizó el filtro de permisos para [%<resource_type>s]"
|
|
1006
|
+
|
|
1007
|
+
#: ../lib/hammer_cli_foreman/filter.rb:53
|
|
1008
|
+
msgid "Could not update the permission filter"
|
|
1009
|
+
msgstr "No se pudo actualizar el filtro de permisos"
|
|
1010
|
+
|
|
1011
|
+
#: ../lib/hammer_cli_foreman/filter.rb:60
|
|
1012
|
+
msgid "Permission filter deleted"
|
|
1013
|
+
msgstr "Se borró el filtro de permisos"
|
|
1014
|
+
|
|
1015
|
+
#: ../lib/hammer_cli_foreman/filter.rb:61
|
|
1016
|
+
msgid "Could not delete the permission filter"
|
|
1017
|
+
msgstr "No se pudo borrar el filtro de permisos"
|
|
1018
|
+
|
|
1019
|
+
#: ../lib/hammer_cli_foreman/filter.rb:74 ../lib/hammer_cli_foreman/report.rb:62
|
|
1020
|
+
msgid "Resource"
|
|
1021
|
+
msgstr "Recurso"
|
|
1022
|
+
|
|
1023
|
+
#: ../lib/hammer_cli_foreman/host.rb:15
|
|
1024
|
+
msgid "Login of the owner"
|
|
1025
|
+
msgstr "Autenticación del propietario"
|
|
1026
|
+
|
|
1027
|
+
#: ../lib/hammer_cli_foreman/host.rb:17
|
|
1028
|
+
msgid "ID of the owner"
|
|
1029
|
+
msgstr "ID del propietario"
|
|
1030
|
+
|
|
1031
|
+
#: ../lib/hammer_cli_foreman/host.rb:44
|
|
1032
|
+
msgid "Host parameters."
|
|
1033
|
+
msgstr "Parámetros de host."
|
|
1034
|
+
|
|
1035
|
+
#: ../lib/hammer_cli_foreman/host.rb:46
|
|
1036
|
+
msgid "Compute resource attributes."
|
|
1037
|
+
msgstr "Atributos de recursos de cómputo."
|
|
1038
|
+
|
|
1039
|
+
#: ../lib/hammer_cli_foreman/host.rb:48
|
|
1040
|
+
msgid "Volume parameters"
|
|
1041
|
+
msgstr "Parámetros de volumen"
|
|
1042
|
+
|
|
1043
|
+
#: ../lib/hammer_cli_foreman/host.rb:50
|
|
1044
|
+
msgid "Interface parameters."
|
|
1045
|
+
msgstr "Parámetros de la interfaz."
|
|
1046
|
+
|
|
1047
|
+
#: ../lib/hammer_cli_foreman/host.rb:64
|
|
1048
|
+
msgid "Enter the root password for the host:"
|
|
1049
|
+
msgstr "Introduzca la contraseña de root para el host:"
|
|
1050
|
+
|
|
1051
|
+
#: ../lib/hammer_cli_foreman/host.rb:161 ../lib/hammer_cli_foreman/host.rb:237 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
|
|
1052
|
+
msgid "Operating System"
|
|
1053
|
+
msgstr "Sistema operativo"
|
|
1054
|
+
|
|
1055
|
+
#: ../lib/hammer_cli_foreman/host.rb:162 ../lib/hammer_cli_foreman/host.rb:201
|
|
1056
|
+
msgid "Host Group"
|
|
1057
|
+
msgstr "Grupo de hosts"
|
|
1058
|
+
|
|
1059
|
+
#: ../lib/hammer_cli_foreman/host.rb:163 ../lib/hammer_cli_foreman/host.rb:214
|
|
1060
|
+
msgid "IP"
|
|
1061
|
+
msgstr "IP"
|
|
1062
|
+
|
|
1063
|
+
#: ../lib/hammer_cli_foreman/host.rb:164 ../lib/hammer_cli_foreman/host.rb:215
|
|
1064
|
+
msgid "MAC"
|
|
1065
|
+
msgstr "Dirección MAC"
|
|
1066
|
+
|
|
1067
|
+
#: ../lib/hammer_cli_foreman/host.rb:174
|
|
1068
|
+
msgid "Bare Metal"
|
|
1069
|
+
msgstr "Bare Metal"
|
|
1070
|
+
|
|
1071
|
+
#: ../lib/hammer_cli_foreman/host.rb:199
|
|
1072
|
+
msgid "Organization"
|
|
1073
|
+
msgstr "Organización"
|
|
1074
|
+
|
|
1075
|
+
#: ../lib/hammer_cli_foreman/host.rb:200
|
|
1076
|
+
msgid "Location"
|
|
1077
|
+
msgstr "Ubicación"
|
|
1078
|
+
|
|
1079
|
+
#: ../lib/hammer_cli_foreman/host.rb:202
|
|
1080
|
+
msgid "Compute Resource"
|
|
1081
|
+
msgstr "Recurso de cómputo"
|
|
1082
|
+
|
|
1083
|
+
#: ../lib/hammer_cli_foreman/host.rb:203
|
|
1084
|
+
msgid "Compute Profile"
|
|
1085
|
+
msgstr "Perfil de Cómputo"
|
|
1086
|
+
|
|
1087
|
+
#: ../lib/hammer_cli_foreman/host.rb:204 ../lib/hammer_cli_foreman/hostgroup.rb:61
|
|
1088
|
+
msgid "Environment"
|
|
1089
|
+
msgstr "Entorno"
|
|
1090
|
+
|
|
1091
|
+
#: ../lib/hammer_cli_foreman/host.rb:205
|
|
1092
|
+
msgid "Puppet CA Id"
|
|
1093
|
+
msgstr "Puppet CA Id"
|
|
1094
|
+
|
|
1095
|
+
#: ../lib/hammer_cli_foreman/host.rb:206
|
|
1096
|
+
msgid "Puppet Master Id"
|
|
1097
|
+
msgstr "Puppet Master Id"
|
|
1098
|
+
|
|
1099
|
+
#: ../lib/hammer_cli_foreman/host.rb:207
|
|
1100
|
+
msgid "Cert name"
|
|
1101
|
+
msgstr "Nombre de certificado"
|
|
1102
|
+
|
|
1103
|
+
#: ../lib/hammer_cli_foreman/host.rb:208 ../lib/hammer_cli_foreman/interface.rb:51
|
|
1104
|
+
msgid "Managed"
|
|
1105
|
+
msgstr "Administrado"
|
|
1106
|
+
|
|
1107
|
+
#: ../lib/hammer_cli_foreman/host.rb:210
|
|
1108
|
+
msgid "Installed at"
|
|
1109
|
+
msgstr "Instalado en"
|
|
1110
|
+
|
|
1111
|
+
#: ../lib/hammer_cli_foreman/host.rb:211 ../lib/hammer_cli_foreman/report.rb:12
|
|
1112
|
+
msgid "Last report"
|
|
1113
|
+
msgstr "Último informe"
|
|
1114
|
+
|
|
1115
|
+
#: ../lib/hammer_cli_foreman/host.rb:213 ../lib/hammer_cli_foreman/subnet.rb:12
|
|
1116
|
+
msgid "Network"
|
|
1117
|
+
msgstr "Red"
|
|
1118
|
+
|
|
1119
|
+
#: ../lib/hammer_cli_foreman/host.rb:216 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
|
|
1120
|
+
msgid "Subnet"
|
|
1121
|
+
msgstr "Subred"
|
|
1122
|
+
|
|
1123
|
+
#: ../lib/hammer_cli_foreman/host.rb:217 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
|
|
1124
|
+
msgid "Domain"
|
|
1125
|
+
msgstr "Dominio"
|
|
1126
|
+
|
|
1127
|
+
#: ../lib/hammer_cli_foreman/host.rb:218
|
|
1128
|
+
msgid "Service provider"
|
|
1129
|
+
msgstr "Proveedor de Servicio"
|
|
1130
|
+
|
|
1131
|
+
#: ../lib/hammer_cli_foreman/host.rb:219
|
|
1132
|
+
msgid "SP Name"
|
|
1133
|
+
msgstr "Nombre de SP"
|
|
1134
|
+
|
|
1135
|
+
#: ../lib/hammer_cli_foreman/host.rb:220
|
|
1136
|
+
msgid "SP IP"
|
|
1137
|
+
msgstr "IP de SP"
|
|
1138
|
+
|
|
1139
|
+
#: ../lib/hammer_cli_foreman/host.rb:221
|
|
1140
|
+
msgid "SP MAC"
|
|
1141
|
+
msgstr "MAC de SP"
|
|
1142
|
+
|
|
1143
|
+
#: ../lib/hammer_cli_foreman/host.rb:222
|
|
1144
|
+
msgid "SP Subnet"
|
|
1145
|
+
msgstr "Subred de SP"
|
|
1146
|
+
|
|
1147
|
+
#: ../lib/hammer_cli_foreman/host.rb:226
|
|
1148
|
+
msgid "Network interfaces"
|
|
1149
|
+
msgstr "Interfaces de red"
|
|
1150
|
+
|
|
1151
|
+
#: ../lib/hammer_cli_foreman/host.rb:228 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
|
|
1152
|
+
msgid "Identifier"
|
|
1153
|
+
msgstr "Identificador"
|
|
1154
|
+
|
|
1155
|
+
#: ../lib/hammer_cli_foreman/host.rb:229 ../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:65 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:55 ../lib/hammer_cli_foreman/template.rb:27
|
|
1156
|
+
msgid "Type"
|
|
1157
|
+
msgstr "Tipo"
|
|
1158
|
+
|
|
1159
|
+
#: ../lib/hammer_cli_foreman/host.rb:230 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
|
|
1160
|
+
msgid "MAC address"
|
|
1161
|
+
msgstr "Dirección MAC"
|
|
1162
|
+
|
|
1163
|
+
#: ../lib/hammer_cli_foreman/host.rb:231 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
|
|
1164
|
+
msgid "IP address"
|
|
1165
|
+
msgstr "Dirección IP"
|
|
1166
|
+
|
|
1167
|
+
#: ../lib/hammer_cli_foreman/host.rb:232
|
|
1168
|
+
msgid "FQDN"
|
|
1169
|
+
msgstr "FQDN"
|
|
1170
|
+
|
|
1171
|
+
#: ../lib/hammer_cli_foreman/host.rb:235
|
|
1172
|
+
msgid "Operating system"
|
|
1173
|
+
msgstr "Sistema Operativo"
|
|
1174
|
+
|
|
1175
|
+
#: ../lib/hammer_cli_foreman/host.rb:236 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
|
|
1176
|
+
msgid "Architecture"
|
|
1177
|
+
msgstr "Arquitectura"
|
|
1178
|
+
|
|
1179
|
+
#: ../lib/hammer_cli_foreman/host.rb:240
|
|
1180
|
+
msgid "Build"
|
|
1181
|
+
msgstr "Compilar"
|
|
1182
|
+
|
|
1183
|
+
#: ../lib/hammer_cli_foreman/host.rb:241 ../lib/hammer_cli_foreman/hostgroup.rb:77
|
|
1184
|
+
msgid "Medium"
|
|
1185
|
+
msgstr "Medio"
|
|
1186
|
+
|
|
1187
|
+
#: ../lib/hammer_cli_foreman/host.rb:242 ../lib/hammer_cli_foreman/hostgroup.rb:76
|
|
1188
|
+
msgid "Partition Table"
|
|
1189
|
+
msgstr "Tabla de particiones"
|
|
1190
|
+
|
|
1191
|
+
#: ../lib/hammer_cli_foreman/host.rb:243
|
|
1192
|
+
msgid "Custom partition table"
|
|
1193
|
+
msgstr "Tabla de particiones personalizadas"
|
|
1194
|
+
|
|
1195
|
+
#: ../lib/hammer_cli_foreman/host.rb:246
|
|
1196
|
+
msgid "Image"
|
|
1197
|
+
msgstr "Imagen"
|
|
1198
|
+
|
|
1199
|
+
#: ../lib/hammer_cli_foreman/host.rb:247
|
|
1200
|
+
msgid "Image file"
|
|
1201
|
+
msgstr "Archivo de imagen"
|
|
1202
|
+
|
|
1203
|
+
#: ../lib/hammer_cli_foreman/host.rb:248
|
|
1204
|
+
msgid "Use image"
|
|
1205
|
+
msgstr "Usar imagen"
|
|
1206
|
+
|
|
1207
|
+
#: ../lib/hammer_cli_foreman/host.rb:254
|
|
1208
|
+
msgid "Additional info"
|
|
1209
|
+
msgstr "Información adicional"
|
|
1210
|
+
|
|
1211
|
+
#: ../lib/hammer_cli_foreman/host.rb:255
|
|
1212
|
+
msgid "Owner Id"
|
|
1213
|
+
msgstr "ID de propietario"
|
|
1214
|
+
|
|
1215
|
+
#: ../lib/hammer_cli_foreman/host.rb:256
|
|
1216
|
+
msgid "Owner Type"
|
|
1217
|
+
msgstr "Tipo de propietario"
|
|
1218
|
+
|
|
1219
|
+
#: ../lib/hammer_cli_foreman/host.rb:257
|
|
1220
|
+
msgid "Enabled"
|
|
1221
|
+
msgstr "Habilitado"
|
|
1222
|
+
|
|
1223
|
+
#: ../lib/hammer_cli_foreman/host.rb:258 ../lib/hammer_cli_foreman/hostgroup.rb:62
|
|
1224
|
+
msgid "Model"
|
|
1225
|
+
msgstr "Modelo"
|
|
1226
|
+
|
|
1227
|
+
#: ../lib/hammer_cli_foreman/host.rb:259
|
|
1228
|
+
msgid "Comment"
|
|
1229
|
+
msgstr "Comentario"
|
|
1230
|
+
|
|
1231
|
+
#: ../lib/hammer_cli_foreman/host.rb:272
|
|
1232
|
+
msgid "Status"
|
|
1233
|
+
msgstr "Estatus"
|
|
1234
|
+
|
|
1235
|
+
#: ../lib/hammer_cli_foreman/host.rb:273
|
|
1236
|
+
msgid "Power"
|
|
1237
|
+
msgstr "Energía"
|
|
1238
|
+
|
|
1239
|
+
#: ../lib/hammer_cli_foreman/host.rb:309
|
|
1240
|
+
msgid "Puppet run triggered"
|
|
1241
|
+
msgstr "Se activó una ejecución de Puppet"
|
|
1242
|
+
|
|
1243
|
+
#: ../lib/hammer_cli_foreman/host.rb:362
|
|
1244
|
+
msgid "Host created"
|
|
1245
|
+
msgstr "Host creado"
|
|
1246
|
+
|
|
1247
|
+
#: ../lib/hammer_cli_foreman/host.rb:363
|
|
1248
|
+
msgid "Could not create the host"
|
|
1249
|
+
msgstr "No se pudo crear el host"
|
|
1250
|
+
|
|
1251
|
+
#: ../lib/hammer_cli_foreman/host.rb:380
|
|
1252
|
+
msgid "Host updated"
|
|
1253
|
+
msgstr "Se actualizó el host"
|
|
1254
|
+
|
|
1255
|
+
#: ../lib/hammer_cli_foreman/host.rb:381
|
|
1256
|
+
msgid "Could not update the host"
|
|
1257
|
+
msgstr "No se pudo actualizar el host"
|
|
1258
|
+
|
|
1259
|
+
#: ../lib/hammer_cli_foreman/host.rb:388
|
|
1260
|
+
msgid "Host deleted"
|
|
1261
|
+
msgstr "Host borrado"
|
|
1262
|
+
|
|
1263
|
+
#: ../lib/hammer_cli_foreman/host.rb:389
|
|
1264
|
+
msgid "Could not delete the host"
|
|
1265
|
+
msgstr "No se pudo borrar el host"
|
|
1266
|
+
|
|
1267
|
+
#: ../lib/hammer_cli_foreman/host.rb:396
|
|
1268
|
+
msgid "Create or update parameter for a host."
|
|
1269
|
+
msgstr "Crear o actualizar parámetro de un host."
|
|
1270
|
+
|
|
1271
|
+
#: ../lib/hammer_cli_foreman/host.rb:398
|
|
1272
|
+
msgid "Host parameter updated"
|
|
1273
|
+
msgstr "Se actualizó el parámetro de host"
|
|
1274
|
+
|
|
1275
|
+
#: ../lib/hammer_cli_foreman/host.rb:399
|
|
1276
|
+
msgid "New host parameter created"
|
|
1277
|
+
msgstr "Se ha creado parámetro de host"
|
|
1278
|
+
|
|
1279
|
+
#: ../lib/hammer_cli_foreman/host.rb:400
|
|
1280
|
+
msgid "Could not set host parameter"
|
|
1281
|
+
msgstr "No se pudo establecer el parámetro de host"
|
|
1282
|
+
|
|
1283
|
+
#: ../lib/hammer_cli_foreman/host.rb:412
|
|
1284
|
+
msgid "Delete parameter for a host."
|
|
1285
|
+
msgstr "Borrar parámetro de un host."
|
|
1286
|
+
|
|
1287
|
+
#: ../lib/hammer_cli_foreman/host.rb:414
|
|
1288
|
+
msgid "Host parameter deleted"
|
|
1289
|
+
msgstr "Parámetro de host borrado"
|
|
1290
|
+
|
|
1291
|
+
#: ../lib/hammer_cli_foreman/host.rb:429
|
|
1292
|
+
msgid "Power a host on"
|
|
1293
|
+
msgstr "Encender un host"
|
|
1294
|
+
|
|
1295
|
+
#: ../lib/hammer_cli_foreman/host.rb:430
|
|
1296
|
+
msgid "The host is starting."
|
|
1297
|
+
msgstr "El host está arrancando."
|
|
1298
|
+
|
|
1299
|
+
#: ../lib/hammer_cli_foreman/host.rb:447
|
|
1300
|
+
msgid "Force turning off a host"
|
|
1301
|
+
msgstr "Forzar apagado de un host"
|
|
1302
|
+
|
|
1303
|
+
#: ../lib/hammer_cli_foreman/host.rb:452
|
|
1304
|
+
msgid "Power a host off"
|
|
1305
|
+
msgstr "Apagar un host"
|
|
1306
|
+
|
|
1307
|
+
#: ../lib/hammer_cli_foreman/host.rb:464
|
|
1308
|
+
msgid "Power off forced."
|
|
1309
|
+
msgstr "Se forzó el apagado"
|
|
1310
|
+
|
|
1311
|
+
#: ../lib/hammer_cli_foreman/host.rb:466
|
|
1312
|
+
msgid "Powering the host off."
|
|
1313
|
+
msgstr "Apagando el host a la fuerza."
|
|
1314
|
+
|
|
1315
|
+
#: ../lib/hammer_cli_foreman/host.rb:483
|
|
1316
|
+
msgid "Reboot a host"
|
|
1317
|
+
msgstr "Reiniciar un host"
|
|
1318
|
+
|
|
1319
|
+
#: ../lib/hammer_cli_foreman/host.rb:484
|
|
1320
|
+
msgid "Host reboot started."
|
|
1321
|
+
msgstr "Reinicio del host en proceso."
|
|
1322
|
+
|
|
1323
|
+
#: ../lib/hammer_cli_foreman/host.rb:520
|
|
1324
|
+
msgid "Rebuild orchestration related configurations for host"
|
|
1325
|
+
msgstr ""
|
|
1326
|
+
|
|
1327
|
+
#: ../lib/hammer_cli_foreman/host.rb:521
|
|
1328
|
+
msgid "Configuration successfully rebuilt."
|
|
1329
|
+
msgstr ""
|
|
1330
|
+
|
|
1331
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:10
|
|
1332
|
+
msgid "List of puppetclass ids"
|
|
1333
|
+
msgstr "Lista de ID de puppetclasses"
|
|
1334
|
+
|
|
1335
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:12
|
|
1336
|
+
msgid "Name of puppet CA proxy"
|
|
1337
|
+
msgstr "Nombre de proxy Puppet CA"
|
|
1338
|
+
|
|
1339
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:13
|
|
1340
|
+
msgid "Name of puppet proxy"
|
|
1341
|
+
msgstr "Nombre del proxy de Puppet"
|
|
1342
|
+
|
|
1343
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:14
|
|
1344
|
+
msgid "Name of parent hostgroup"
|
|
1345
|
+
msgstr "Nombre de hostgroup padre"
|
|
1346
|
+
|
|
1347
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:17
|
|
1348
|
+
msgid "Root password"
|
|
1349
|
+
msgstr "Contraseña de root"
|
|
1350
|
+
|
|
1351
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:23
|
|
1352
|
+
msgid "Enter the root password for the host group:"
|
|
1353
|
+
msgstr "Introduzca la contraseña de root para el grupo de host"
|
|
1354
|
+
|
|
1355
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:59 ../lib/hammer_cli_foreman/operating_system.rb:11
|
|
1356
|
+
msgid "Title"
|
|
1357
|
+
msgstr "Título"
|
|
1358
|
+
|
|
1359
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:78
|
|
1360
|
+
msgid "Puppet CA Proxy Id"
|
|
1361
|
+
msgstr "Id del Proxy Puppet CA"
|
|
1362
|
+
|
|
1363
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:79
|
|
1364
|
+
msgid "Puppet Master Proxy Id"
|
|
1365
|
+
msgstr "ID del Proxy de Puppet Master"
|
|
1366
|
+
|
|
1367
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:80
|
|
1368
|
+
msgid "ComputeProfile"
|
|
1369
|
+
msgstr "Perfil de cómputo"
|
|
1370
|
+
|
|
1371
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:84
|
|
1372
|
+
msgid "Parent Id"
|
|
1373
|
+
msgstr "ID de padre"
|
|
1374
|
+
|
|
1375
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:94
|
|
1376
|
+
msgid "Hostgroup created"
|
|
1377
|
+
msgstr "Grupo de hosts creado"
|
|
1378
|
+
|
|
1379
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:95
|
|
1380
|
+
msgid "Could not create the hostgroup"
|
|
1381
|
+
msgstr "No se pudo crear el grupo de hosts"
|
|
1382
|
+
|
|
1383
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:104
|
|
1384
|
+
msgid "Hostgroup updated"
|
|
1385
|
+
msgstr "Grupo de hosts actualizado"
|
|
1386
|
+
|
|
1387
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:105
|
|
1388
|
+
msgid "Could not update the hostgroup"
|
|
1389
|
+
msgstr "No se pudo actualizar el grupo de hosts"
|
|
1390
|
+
|
|
1391
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:112
|
|
1392
|
+
msgid "Hostgroup deleted"
|
|
1393
|
+
msgstr "Grupo de hosts borrado"
|
|
1394
|
+
|
|
1395
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:113
|
|
1396
|
+
msgid "Could not delete the hostgroup"
|
|
1397
|
+
msgstr "No se pudo borrar el grupo de hosts"
|
|
1398
|
+
|
|
1399
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:137
|
|
1400
|
+
msgid "Create or update parameter for a hostgroup."
|
|
1401
|
+
msgstr "Crear o actualizar parámetro de un grupo de hosts."
|
|
1402
|
+
|
|
1403
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:139
|
|
1404
|
+
msgid "Hostgroup parameter updated"
|
|
1405
|
+
msgstr "Parámetro de grupo de hosts actualizado"
|
|
1406
|
+
|
|
1407
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:140
|
|
1408
|
+
msgid "New hostgroup parameter created"
|
|
1409
|
+
msgstr "Se ha creado parámetro de grupo de hosts"
|
|
1410
|
+
|
|
1411
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:141
|
|
1412
|
+
msgid "Could not set hostgroup parameter"
|
|
1413
|
+
msgstr "No se pudo establecer el parámetro del grupo de hosts"
|
|
1414
|
+
|
|
1415
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:148
|
|
1416
|
+
msgid "Delete parameter for a hostgroup."
|
|
1417
|
+
msgstr "Borrar parámetro de un grupo de hosts."
|
|
1418
|
+
|
|
1419
|
+
#: ../lib/hammer_cli_foreman/hostgroup.rb:150
|
|
1420
|
+
msgid "Hostgroup parameter deleted"
|
|
1421
|
+
msgstr "Parámetro del grupo de hosts borrado"
|
|
1422
|
+
|
|
1423
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:36
|
|
1424
|
+
msgid "Architecture name"
|
|
1425
|
+
msgstr "Nombre de arquitectura"
|
|
1426
|
+
|
|
1427
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:37
|
|
1428
|
+
msgid "Compute resource name"
|
|
1429
|
+
msgstr "Nombre de recurso de cómputo"
|
|
1430
|
+
|
|
1431
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:38
|
|
1432
|
+
msgid "Domain name"
|
|
1433
|
+
msgstr "Nombre de dominio"
|
|
1434
|
+
|
|
1435
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:39
|
|
1436
|
+
msgid "Environment name"
|
|
1437
|
+
msgstr "Nombre de entorno"
|
|
1438
|
+
|
|
1439
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:42
|
|
1440
|
+
msgid "Host name"
|
|
1441
|
+
msgstr "Nombre de host"
|
|
1442
|
+
|
|
1443
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:43
|
|
1444
|
+
msgid "Hostgroup name"
|
|
1445
|
+
msgstr "Nombre de grupo de hosts"
|
|
1446
|
+
|
|
1447
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:43
|
|
1448
|
+
msgid "Hostgroup title"
|
|
1449
|
+
msgstr "Título del grupo de host"
|
|
1450
|
+
|
|
1451
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:46
|
|
1452
|
+
msgid "Location name"
|
|
1453
|
+
msgstr "Nombre de ubicación"
|
|
1454
|
+
|
|
1455
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:47
|
|
1456
|
+
msgid "Medium name"
|
|
1457
|
+
msgstr "Nombre de medio"
|
|
1458
|
+
|
|
1459
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:48
|
|
1460
|
+
msgid "Model name"
|
|
1461
|
+
msgstr "Nombre de modelo"
|
|
1462
|
+
|
|
1463
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:49
|
|
1464
|
+
msgid "Organization name"
|
|
1465
|
+
msgstr "Nombre de organización"
|
|
1466
|
+
|
|
1467
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:50
|
|
1468
|
+
msgid "Operating system title"
|
|
1469
|
+
msgstr "Título de sistema operativo"
|
|
1470
|
+
|
|
1471
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:52
|
|
1472
|
+
msgid "Partition table name"
|
|
1473
|
+
msgstr "Nombre de tabla de particiones"
|
|
1474
|
+
|
|
1475
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:53
|
|
1476
|
+
msgid "Proxy name"
|
|
1477
|
+
msgstr "Nombre de proxy"
|
|
1478
|
+
|
|
1479
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:54
|
|
1480
|
+
msgid "Puppet class name"
|
|
1481
|
+
msgstr "Nombre de clase Puppet"
|
|
1482
|
+
|
|
1483
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:55
|
|
1484
|
+
msgid "Report name"
|
|
1485
|
+
msgstr "Nombre de informe"
|
|
1486
|
+
|
|
1487
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:56
|
|
1488
|
+
msgid "User role name"
|
|
1489
|
+
msgstr "Nombre de rol de usuario"
|
|
1490
|
+
|
|
1491
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:57
|
|
1492
|
+
msgid "Setting name"
|
|
1493
|
+
msgstr "Establecer nombre"
|
|
1494
|
+
|
|
1495
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:58
|
|
1496
|
+
msgid "Subnet name"
|
|
1497
|
+
msgstr "Nombre de subred"
|
|
1498
|
+
|
|
1499
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:60
|
|
1500
|
+
msgid "User's login to search by"
|
|
1501
|
+
msgstr "Nombre de usuario a buscar"
|
|
1502
|
+
|
|
1503
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:61
|
|
1504
|
+
msgid "Common parameter name"
|
|
1505
|
+
msgstr "Nombre de parámetro común"
|
|
1506
|
+
|
|
1507
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:62
|
|
1508
|
+
msgid "Smart class parameter name"
|
|
1509
|
+
msgstr "Nombre de parámetro de clase inteligente"
|
|
1510
|
+
|
|
1511
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:63
|
|
1512
|
+
msgid "Smart variable name"
|
|
1513
|
+
msgstr "Nombre de la variable inteligente"
|
|
1514
|
+
|
|
1515
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:65
|
|
1516
|
+
msgid "Name to search by"
|
|
1517
|
+
msgstr "Nombre a buscar"
|
|
1518
|
+
|
|
1519
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:153 ../lib/hammer_cli_foreman/id_resolver.rb:161
|
|
1520
|
+
msgid "one of %s not found"
|
|
1521
|
+
msgstr "No se encuentra uno de %s "
|
|
1522
|
+
|
|
1523
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:208
|
|
1524
|
+
msgid "%s not found"
|
|
1525
|
+
msgstr "no se encuentra %s"
|
|
1526
|
+
|
|
1527
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:209
|
|
1528
|
+
msgid "found more than one %s"
|
|
1529
|
+
msgstr "Se encontró más de un %s"
|
|
1530
|
+
|
|
1531
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:220
|
|
1532
|
+
msgid "Missing options to search %s"
|
|
1533
|
+
msgstr "Faltan opciones para buscar %s"
|
|
1534
|
+
|
|
1535
|
+
#: ../lib/hammer_cli_foreman/image.rb:8
|
|
1536
|
+
msgid "View and manage compute resource's images"
|
|
1537
|
+
msgstr "Ver y administrar imágenes de recursos de cómputo."
|
|
1538
|
+
|
|
1539
|
+
#: ../lib/hammer_cli_foreman/image.rb:32 ../lib/hammer_cli_foreman/interface.rb:59
|
|
1540
|
+
msgid "Username"
|
|
1541
|
+
msgstr "Nombre de usuario"
|
|
1542
|
+
|
|
1543
|
+
#: ../lib/hammer_cli_foreman/image.rb:46
|
|
1544
|
+
msgid "IAM role"
|
|
1545
|
+
msgstr "rol de IAM"
|
|
1546
|
+
|
|
1547
|
+
#: ../lib/hammer_cli_foreman/image.rb:56
|
|
1548
|
+
msgid "Show images available for addition"
|
|
1549
|
+
msgstr "Mostrar imágenes disponibles para añadir"
|
|
1550
|
+
|
|
1551
|
+
#: ../lib/hammer_cli_foreman/image.rb:81
|
|
1552
|
+
msgid "Image created"
|
|
1553
|
+
msgstr "Se creó la imagen"
|
|
1554
|
+
|
|
1555
|
+
#: ../lib/hammer_cli_foreman/image.rb:82
|
|
1556
|
+
msgid "Could not create the image"
|
|
1557
|
+
msgstr "No se pudo crear la imagen"
|
|
1558
|
+
|
|
1559
|
+
#: ../lib/hammer_cli_foreman/image.rb:90
|
|
1560
|
+
msgid "Image updated"
|
|
1561
|
+
msgstr "Se actualizó la imagen"
|
|
1562
|
+
|
|
1563
|
+
#: ../lib/hammer_cli_foreman/image.rb:91
|
|
1564
|
+
msgid "Could not update the image"
|
|
1565
|
+
msgstr "No se pudo actualizar la imagen"
|
|
1566
|
+
|
|
1567
|
+
#: ../lib/hammer_cli_foreman/image.rb:99
|
|
1568
|
+
msgid "Image deleted"
|
|
1569
|
+
msgstr "Se borró la imagen"
|
|
1570
|
+
|
|
1571
|
+
#: ../lib/hammer_cli_foreman/image.rb:100
|
|
1572
|
+
msgid "Could not delete the image"
|
|
1573
|
+
msgstr "No se pudo borrar la imagen"
|
|
1574
|
+
|
|
1575
|
+
#: ../lib/hammer_cli_foreman/interface.rb:6
|
|
1576
|
+
msgid "View and manage host's network interfaces"
|
|
1577
|
+
msgstr "Ver y administrar interfaces de red de hosts"
|
|
1578
|
+
|
|
1579
|
+
#: ../lib/hammer_cli_foreman/interface.rb:10
|
|
1580
|
+
msgid "primary"
|
|
1581
|
+
msgstr "primario"
|
|
1582
|
+
|
|
1583
|
+
#: ../lib/hammer_cli_foreman/interface.rb:11
|
|
1584
|
+
msgid "provision"
|
|
1585
|
+
msgstr "provisión"
|
|
1586
|
+
|
|
1587
|
+
#: ../lib/hammer_cli_foreman/interface.rb:28 ../lib/hammer_cli_foreman/interface.rb:48
|
|
1588
|
+
msgid "DNS name"
|
|
1589
|
+
msgstr "Nombre DNS"
|
|
1590
|
+
|
|
1591
|
+
#: ../lib/hammer_cli_foreman/interface.rb:52
|
|
1592
|
+
msgid "Primary"
|
|
1593
|
+
msgstr "Primary"
|
|
1594
|
+
|
|
1595
|
+
#: ../lib/hammer_cli_foreman/interface.rb:53
|
|
1596
|
+
msgid "Provision"
|
|
1597
|
+
msgstr "Provisión"
|
|
1598
|
+
|
|
1599
|
+
#: ../lib/hammer_cli_foreman/interface.rb:54
|
|
1600
|
+
msgid "Virtual"
|
|
1601
|
+
msgstr "Virtual"
|
|
1602
|
+
|
|
1603
|
+
#: ../lib/hammer_cli_foreman/interface.rb:55
|
|
1604
|
+
msgid "Tag"
|
|
1605
|
+
msgstr "Etiqueta"
|
|
1606
|
+
|
|
1607
|
+
#: ../lib/hammer_cli_foreman/interface.rb:56
|
|
1608
|
+
msgid "Attached to"
|
|
1609
|
+
msgstr "Ligado a"
|
|
1610
|
+
|
|
1611
|
+
#: ../lib/hammer_cli_foreman/interface.rb:58
|
|
1612
|
+
msgid "BMC"
|
|
1613
|
+
msgstr "BMC"
|
|
1614
|
+
|
|
1615
|
+
#: ../lib/hammer_cli_foreman/interface.rb:63
|
|
1616
|
+
msgid "Bond"
|
|
1617
|
+
msgstr "Enlace"
|
|
1618
|
+
|
|
1619
|
+
#: ../lib/hammer_cli_foreman/interface.rb:64
|
|
1620
|
+
msgid "Mode"
|
|
1621
|
+
msgstr "Modo"
|
|
1622
|
+
|
|
1623
|
+
#: ../lib/hammer_cli_foreman/interface.rb:65
|
|
1624
|
+
msgid "Attached devices"
|
|
1625
|
+
msgstr "Dispositivos asociados"
|
|
1626
|
+
|
|
1627
|
+
#: ../lib/hammer_cli_foreman/interface.rb:66
|
|
1628
|
+
msgid "Bond options"
|
|
1629
|
+
msgstr "Opciones de enlace"
|
|
1630
|
+
|
|
1631
|
+
#: ../lib/hammer_cli_foreman/interface.rb:77
|
|
1632
|
+
msgid "Should this interface be used for constructing the FQDN of the host? Each managed hosts needs to have one primary interface."
|
|
1633
|
+
msgstr "¿Debería ser usada esta interface para construir el FQDN del host? Cada host gestionado necesita tener una interfaz primaria."
|
|
1634
|
+
|
|
1635
|
+
#: ../lib/hammer_cli_foreman/interface.rb:78
|
|
1636
|
+
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."
|
|
1637
|
+
msgstr "¿Debería ser usada esta interfaz para TFTP o PXELinux (o SSH para hosts basados en imágenes)? Cada host gestionado necesita tener una interfaz de provisión."
|
|
1638
|
+
|
|
1639
|
+
#: ../lib/hammer_cli_foreman/interface.rb:128
|
|
1640
|
+
msgid "Interface created"
|
|
1641
|
+
msgstr "Interfaz creada"
|
|
1642
|
+
|
|
1643
|
+
#: ../lib/hammer_cli_foreman/interface.rb:129
|
|
1644
|
+
msgid "Could not create the interface"
|
|
1645
|
+
msgstr "No se pudo crear la interfaz"
|
|
1646
|
+
|
|
1647
|
+
#: ../lib/hammer_cli_foreman/interface.rb:131 ../lib/hammer_cli_foreman/interface.rb:144
|
|
1648
|
+
msgid "Compute resource specific attributes."
|
|
1649
|
+
msgstr "Atributos específicos del recurso de cómputo."
|
|
1650
|
+
|
|
1651
|
+
#: ../lib/hammer_cli_foreman/interface.rb:141
|
|
1652
|
+
msgid "Interface updated"
|
|
1653
|
+
msgstr "Interfaz actualizada"
|
|
1654
|
+
|
|
1655
|
+
#: ../lib/hammer_cli_foreman/interface.rb:142
|
|
1656
|
+
msgid "Could not update the interface"
|
|
1657
|
+
msgstr "No se pudo actualizar la interfaz"
|
|
1658
|
+
|
|
1659
|
+
#: ../lib/hammer_cli_foreman/interface.rb:154
|
|
1660
|
+
msgid "Interface deleted"
|
|
1661
|
+
msgstr "Interfaz borrada"
|
|
1662
|
+
|
|
1663
|
+
#: ../lib/hammer_cli_foreman/interface.rb:155
|
|
1664
|
+
msgid "Could not delete the interface"
|
|
1665
|
+
msgstr "No se pudo borrar la interfaz"
|
|
1666
|
+
|
|
1667
|
+
#: ../lib/hammer_cli_foreman/location.rb:24 ../lib/hammer_cli_foreman/location.rb:63 ../lib/hammer_cli_foreman/location.rb:75
|
|
1668
|
+
msgid "Location numeric id to search by"
|
|
1669
|
+
msgstr "ID numérico de ubicación para la búsqueda"
|
|
1670
|
+
|
|
1671
|
+
#: ../lib/hammer_cli_foreman/location.rb:27 ../lib/hammer_cli_foreman/organization.rb:27
|
|
1672
|
+
#, fuzzy
|
|
1673
|
+
msgid "Parent"
|
|
1674
|
+
msgstr "ID de padre"
|
|
1675
|
+
|
|
1676
|
+
#: ../lib/hammer_cli_foreman/location.rb:38 ../lib/hammer_cli_foreman/references.rb:18
|
|
1677
|
+
msgid "Organizations"
|
|
1678
|
+
msgstr "Organizaciones"
|
|
1679
|
+
|
|
1680
|
+
#: ../lib/hammer_cli_foreman/location.rb:53
|
|
1681
|
+
msgid "Location created"
|
|
1682
|
+
msgstr "Ubicación creada"
|
|
1683
|
+
|
|
1684
|
+
#: ../lib/hammer_cli_foreman/location.rb:54
|
|
1685
|
+
msgid "Could not create the location"
|
|
1686
|
+
msgstr "No se pudo crear la ubicación"
|
|
1687
|
+
|
|
1688
|
+
#: ../lib/hammer_cli_foreman/location.rb:65
|
|
1689
|
+
msgid "Location updated"
|
|
1690
|
+
msgstr "Ubicación actualizada"
|
|
1691
|
+
|
|
1692
|
+
#: ../lib/hammer_cli_foreman/location.rb:66
|
|
1693
|
+
msgid "Could not update the location"
|
|
1694
|
+
msgstr "No se pudo actualizar la ubicación"
|
|
1695
|
+
|
|
1696
|
+
#: ../lib/hammer_cli_foreman/location.rb:77
|
|
1697
|
+
msgid "Location deleted"
|
|
1698
|
+
msgstr "Se borró la ubicación"
|
|
1699
|
+
|
|
1700
|
+
#: ../lib/hammer_cli_foreman/location.rb:78
|
|
1701
|
+
msgid "Could not delete the location"
|
|
1702
|
+
msgstr "No se pudo borrar la ubicación"
|
|
1703
|
+
|
|
1704
|
+
#: ../lib/hammer_cli_foreman/location.rb:87
|
|
1705
|
+
msgid "Create or update parameter for a location."
|
|
1706
|
+
msgstr "Crear o actualizar parámetro para ubicación."
|
|
1707
|
+
|
|
1708
|
+
#: ../lib/hammer_cli_foreman/location.rb:89 ../lib/hammer_cli_foreman/organization.rb:90
|
|
1709
|
+
msgid "Parameter [%{name}] updated to value [%{value}]"
|
|
1710
|
+
msgstr "Parámetro [%{name}] actualizado al valor [%{value}]"
|
|
1711
|
+
|
|
1712
|
+
#: ../lib/hammer_cli_foreman/location.rb:90 ../lib/hammer_cli_foreman/organization.rb:91
|
|
1713
|
+
msgid "Parameter [%{name}] created with value [%{value}]"
|
|
1714
|
+
msgstr ""
|
|
1715
|
+
|
|
1716
|
+
#: ../lib/hammer_cli_foreman/location.rb:91
|
|
1717
|
+
msgid "Could not set location parameter"
|
|
1718
|
+
msgstr ""
|
|
1719
|
+
|
|
1720
|
+
#: ../lib/hammer_cli_foreman/location.rb:98
|
|
1721
|
+
msgid "Delete parameter for a location."
|
|
1722
|
+
msgstr ""
|
|
1723
|
+
|
|
1724
|
+
#: ../lib/hammer_cli_foreman/location.rb:100 ../lib/hammer_cli_foreman/organization.rb:101
|
|
1725
|
+
msgid "Parameter [%{name}] deleted"
|
|
1726
|
+
msgstr ""
|
|
1727
|
+
|
|
1728
|
+
#: ../lib/hammer_cli_foreman/location.rb:101
|
|
1729
|
+
msgid "Could not delete location parameter"
|
|
1730
|
+
msgstr ""
|
|
1731
|
+
|
|
1732
|
+
#: ../lib/hammer_cli_foreman/media.rb:11
|
|
1733
|
+
msgid "Path"
|
|
1734
|
+
msgstr "Ruta"
|
|
1735
|
+
|
|
1736
|
+
#: ../lib/hammer_cli_foreman/media.rb:20 ../lib/hammer_cli_foreman/partition_table.rb:12
|
|
1737
|
+
msgid "OS Family"
|
|
1738
|
+
msgstr "Familia SO"
|
|
1739
|
+
|
|
1740
|
+
#: ../lib/hammer_cli_foreman/media.rb:32
|
|
1741
|
+
msgid "Installation medium created"
|
|
1742
|
+
msgstr "Se creó el medio de instalación"
|
|
1743
|
+
|
|
1744
|
+
#: ../lib/hammer_cli_foreman/media.rb:33
|
|
1745
|
+
msgid "Could not create the installation medium"
|
|
1746
|
+
msgstr "No se pudo crear el medio de instalación"
|
|
1747
|
+
|
|
1748
|
+
#: ../lib/hammer_cli_foreman/media.rb:41
|
|
1749
|
+
msgid "Installation medium updated"
|
|
1750
|
+
msgstr "Se actualizó el medio de instalación"
|
|
1751
|
+
|
|
1752
|
+
#: ../lib/hammer_cli_foreman/media.rb:42
|
|
1753
|
+
msgid "Could not update the installation media"
|
|
1754
|
+
msgstr "No se pudo actualizar el medio de instalación"
|
|
1755
|
+
|
|
1756
|
+
#: ../lib/hammer_cli_foreman/media.rb:50
|
|
1757
|
+
msgid "Installation medium deleted"
|
|
1758
|
+
msgstr "Se borró el medio de instalación"
|
|
1759
|
+
|
|
1760
|
+
#: ../lib/hammer_cli_foreman/media.rb:51
|
|
1761
|
+
msgid "Could not delete the installation media"
|
|
1762
|
+
msgstr "No se pudo borrar el medio de instalación"
|
|
1763
|
+
|
|
1764
|
+
#: ../lib/hammer_cli_foreman/model.rb:12
|
|
1765
|
+
msgid "Vendor class"
|
|
1766
|
+
msgstr "Clase de proveedor"
|
|
1767
|
+
|
|
1768
|
+
#: ../lib/hammer_cli_foreman/model.rb:13
|
|
1769
|
+
msgid "HW model"
|
|
1770
|
+
msgstr "modelo de HW"
|
|
1771
|
+
|
|
1772
|
+
#: ../lib/hammer_cli_foreman/model.rb:22
|
|
1773
|
+
msgid "Info"
|
|
1774
|
+
msgstr "Información"
|
|
1775
|
+
|
|
1776
|
+
#: ../lib/hammer_cli_foreman/model.rb:31
|
|
1777
|
+
msgid "Hardware model created"
|
|
1778
|
+
msgstr "Se creó el modelo de hardware"
|
|
1779
|
+
|
|
1780
|
+
#: ../lib/hammer_cli_foreman/model.rb:32
|
|
1781
|
+
msgid "Could not create the hardware model"
|
|
1782
|
+
msgstr "No se pudo crear el modelo de hardware"
|
|
1783
|
+
|
|
1784
|
+
#: ../lib/hammer_cli_foreman/model.rb:38
|
|
1785
|
+
msgid "Hardware model deleted"
|
|
1786
|
+
msgstr "Se detectó el modelo de hardware"
|
|
1787
|
+
|
|
1788
|
+
#: ../lib/hammer_cli_foreman/model.rb:39
|
|
1789
|
+
msgid "Could not delete the hardware model"
|
|
1790
|
+
msgstr "No se pudo borrar el modelo de hardware"
|
|
1791
|
+
|
|
1792
|
+
#: ../lib/hammer_cli_foreman/model.rb:46
|
|
1793
|
+
msgid "Hardware model updated"
|
|
1794
|
+
msgstr "Se actualizó el modelo de hardware"
|
|
1795
|
+
|
|
1796
|
+
#: ../lib/hammer_cli_foreman/model.rb:47
|
|
1797
|
+
msgid "Could not update the hardware model"
|
|
1798
|
+
msgstr "No se pudo actualizar el modelo de hardware"
|
|
1799
|
+
|
|
1800
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:12
|
|
1801
|
+
msgid "Release name"
|
|
1802
|
+
msgstr "Nombre de versión"
|
|
1803
|
+
|
|
1804
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:13
|
|
1805
|
+
msgid "Family"
|
|
1806
|
+
msgstr "Familia"
|
|
1807
|
+
|
|
1808
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:23
|
|
1809
|
+
msgid "Major version"
|
|
1810
|
+
msgstr "Versión principal"
|
|
1811
|
+
|
|
1812
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:24
|
|
1813
|
+
msgid "Minor version"
|
|
1814
|
+
msgstr "Versión secundaria"
|
|
1815
|
+
|
|
1816
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:25
|
|
1817
|
+
msgid "Partition tables"
|
|
1818
|
+
msgstr "Tablas de particiones"
|
|
1819
|
+
|
|
1820
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:28
|
|
1821
|
+
msgid "Default templates"
|
|
1822
|
+
msgstr "Plantillas predeterminadas"
|
|
1823
|
+
|
|
1824
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:31
|
|
1825
|
+
msgid "Architectures"
|
|
1826
|
+
msgstr "Arquitecturas"
|
|
1827
|
+
|
|
1828
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:44
|
|
1829
|
+
msgid "Operating system created"
|
|
1830
|
+
msgstr "Se creó el sistema operativo"
|
|
1831
|
+
|
|
1832
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:45
|
|
1833
|
+
msgid "Could not create the operating system"
|
|
1834
|
+
msgstr "No se pudo crear el sistema operativo"
|
|
1835
|
+
|
|
1836
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:52
|
|
1837
|
+
msgid "Operating system updated"
|
|
1838
|
+
msgstr "Se actualizó el sistema operativo"
|
|
1839
|
+
|
|
1840
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:53
|
|
1841
|
+
msgid "Could not update the operating system"
|
|
1842
|
+
msgstr "No se pudo actualizar el sistema operativo"
|
|
1843
|
+
|
|
1844
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:60
|
|
1845
|
+
msgid "Operating system deleted"
|
|
1846
|
+
msgstr "Sistema operativo borrado"
|
|
1847
|
+
|
|
1848
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:61
|
|
1849
|
+
msgid "Could not delete the operating system"
|
|
1850
|
+
msgstr "No se pudo borrar el sistema operativo"
|
|
1851
|
+
|
|
1852
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:68
|
|
1853
|
+
msgid "Create or update parameter for an operating system."
|
|
1854
|
+
msgstr "Crear o actualizar un parámetro de un sistema operativo."
|
|
1855
|
+
|
|
1856
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:70
|
|
1857
|
+
msgid "Operating system parameter updated"
|
|
1858
|
+
msgstr "Se actualizó el parámetro del sistema operativo"
|
|
1859
|
+
|
|
1860
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:71
|
|
1861
|
+
msgid "New operating system parameter created"
|
|
1862
|
+
msgstr "Se creó un parámetro de sistema operativo"
|
|
1863
|
+
|
|
1864
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:72
|
|
1865
|
+
msgid "Could not set operating system parameter"
|
|
1866
|
+
msgstr "No se pudo establecer el parámetro de sistema operativo"
|
|
1867
|
+
|
|
1868
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:84
|
|
1869
|
+
msgid "Delete parameter for an operating system."
|
|
1870
|
+
msgstr "Borrar parámetro de un sistema operativo."
|
|
1871
|
+
|
|
1872
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:86
|
|
1873
|
+
msgid "operating system parameter deleted"
|
|
1874
|
+
msgstr "Parámetro de sistema operativo ha sido borrado"
|
|
1875
|
+
|
|
1876
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:101 ../lib/hammer_cli_foreman/operating_system.rb:167
|
|
1877
|
+
msgid "operatingsystem id"
|
|
1878
|
+
msgstr "ID de sistema operativo"
|
|
1879
|
+
|
|
1880
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:102
|
|
1881
|
+
msgid "config template id to be set"
|
|
1882
|
+
msgstr "ID de plantilla de configuración a establecer"
|
|
1883
|
+
|
|
1884
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:105
|
|
1885
|
+
msgid "[%{config_template_name}] was set as default %{template_kind_name} template"
|
|
1886
|
+
msgstr "[%{config_template_name}] se estableció como plantilla %{template_kind_name} predeterminada"
|
|
1887
|
+
|
|
1888
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:106
|
|
1889
|
+
msgid "Could not set the os default template"
|
|
1890
|
+
msgstr "No se pudo establecer la plantilla de SO predeterminada"
|
|
1891
|
+
|
|
1892
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:168
|
|
1893
|
+
msgid "Type of the config template"
|
|
1894
|
+
msgstr "Tipo de la plantilla de configuración"
|
|
1895
|
+
|
|
1896
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:170
|
|
1897
|
+
msgid "Default template deleted"
|
|
1898
|
+
msgstr "Ha sido borrada la plantilla predeterminada "
|
|
1899
|
+
|
|
1900
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:171
|
|
1901
|
+
msgid "Could not delete the default template"
|
|
1902
|
+
msgstr "No se pudo borrar la plantilla predeterminada"
|
|
1903
|
+
|
|
1904
|
+
#: ../lib/hammer_cli_foreman/operating_system.rb:178
|
|
1905
|
+
msgid "Default template of type %s not found"
|
|
1906
|
+
msgstr "No se encontró la plantilla predeterminada del tipo %s"
|
|
1907
|
+
|
|
1908
|
+
#: ../lib/hammer_cli_foreman/organization.rb:38 ../lib/hammer_cli_foreman/references.rb:15
|
|
1909
|
+
msgid "Locations"
|
|
1910
|
+
msgstr "Ubicaciones"
|
|
1911
|
+
|
|
1912
|
+
#: ../lib/hammer_cli_foreman/organization.rb:54
|
|
1913
|
+
msgid "Organization created"
|
|
1914
|
+
msgstr "Se creó organización"
|
|
1915
|
+
|
|
1916
|
+
#: ../lib/hammer_cli_foreman/organization.rb:55
|
|
1917
|
+
msgid "Could not create the organization"
|
|
1918
|
+
msgstr "No se pudo crear organización"
|
|
1919
|
+
|
|
1920
|
+
#: ../lib/hammer_cli_foreman/organization.rb:66
|
|
1921
|
+
msgid "Organization updated"
|
|
1922
|
+
msgstr "Se actualizó organización"
|
|
1923
|
+
|
|
1924
|
+
#: ../lib/hammer_cli_foreman/organization.rb:67
|
|
1925
|
+
msgid "Could not update the organization"
|
|
1926
|
+
msgstr "No se pudo actualizar la organización"
|
|
1927
|
+
|
|
1928
|
+
#: ../lib/hammer_cli_foreman/organization.rb:78
|
|
1929
|
+
msgid "Organization deleted"
|
|
1930
|
+
msgstr "Se borró organización"
|
|
1931
|
+
|
|
1932
|
+
#: ../lib/hammer_cli_foreman/organization.rb:79
|
|
1933
|
+
msgid "Could not delete the organization"
|
|
1934
|
+
msgstr "No se pudo borrar la organización"
|
|
1935
|
+
|
|
1936
|
+
#: ../lib/hammer_cli_foreman/organization.rb:88
|
|
1937
|
+
msgid "Create or update parameter for an organization."
|
|
1938
|
+
msgstr ""
|
|
1939
|
+
|
|
1940
|
+
#: ../lib/hammer_cli_foreman/organization.rb:92
|
|
1941
|
+
msgid "Could not set organization parameter"
|
|
1942
|
+
msgstr ""
|
|
1943
|
+
|
|
1944
|
+
#: ../lib/hammer_cli_foreman/organization.rb:99
|
|
1945
|
+
msgid "Delete parameter for an organization."
|
|
1946
|
+
msgstr ""
|
|
1947
|
+
|
|
1948
|
+
#: ../lib/hammer_cli_foreman/organization.rb:102
|
|
1949
|
+
msgid "Could not delete organization parameter"
|
|
1950
|
+
msgstr ""
|
|
1951
|
+
|
|
1952
|
+
#: ../lib/hammer_cli_foreman/partition_table.rb:21 ../lib/hammer_cli_foreman/template.rb:48
|
|
1953
|
+
msgid "Locked"
|
|
1954
|
+
msgstr ""
|
|
1955
|
+
|
|
1956
|
+
#: ../lib/hammer_cli_foreman/partition_table.rb:32
|
|
1957
|
+
msgid "View partition table content."
|
|
1958
|
+
msgstr "Mostrar contenido de la tabla de particiones."
|
|
1959
|
+
|
|
1960
|
+
#: ../lib/hammer_cli_foreman/partition_table.rb:44 ../lib/hammer_cli_foreman/partition_table.rb:55
|
|
1961
|
+
msgid "Path to a file that contains the partition layout"
|
|
1962
|
+
msgstr "Ruta al archivo que contiene el diseño de particiones"
|
|
1963
|
+
|
|
1964
|
+
#: ../lib/hammer_cli_foreman/partition_table.rb:47
|
|
1965
|
+
msgid "Partition table created"
|
|
1966
|
+
msgstr "Se creó la tabla de particiones"
|
|
1967
|
+
|
|
1968
|
+
#: ../lib/hammer_cli_foreman/partition_table.rb:48
|
|
1969
|
+
msgid "Could not create the partition table"
|
|
1970
|
+
msgstr "No se pudo crear la tabla de particiones"
|
|
1971
|
+
|
|
1972
|
+
#: ../lib/hammer_cli_foreman/partition_table.rb:58
|
|
1973
|
+
msgid "Partition table updated"
|
|
1974
|
+
msgstr "Se actualizó la tabla de particiones"
|
|
1975
|
+
|
|
1976
|
+
#: ../lib/hammer_cli_foreman/partition_table.rb:59
|
|
1977
|
+
msgid "Could not update the partition table"
|
|
1978
|
+
msgstr "No se pudo actualizar la tabla de particiones"
|
|
1979
|
+
|
|
1980
|
+
#: ../lib/hammer_cli_foreman/partition_table.rb:66
|
|
1981
|
+
msgid "Partition table deleted"
|
|
1982
|
+
msgstr "Se borró la tabla de particiones"
|
|
1983
|
+
|
|
1984
|
+
#: ../lib/hammer_cli_foreman/partition_table.rb:67
|
|
1985
|
+
msgid "Could not delete the partition table"
|
|
1986
|
+
msgstr "No se pudo borrar la tabla de particiones"
|
|
1987
|
+
|
|
1988
|
+
#: ../lib/hammer_cli_foreman/puppet_class.rb:34
|
|
1989
|
+
msgid "Smart variables"
|
|
1990
|
+
msgstr "Variables inteligentes"
|
|
1991
|
+
|
|
1992
|
+
#: ../lib/hammer_cli_foreman/puppet_class.rb:35 ../lib/hammer_cli_foreman/smart_class_parameter.rb:10
|
|
1993
|
+
msgid "Parameter"
|
|
1994
|
+
msgstr "Parámetro"
|
|
1995
|
+
|
|
1996
|
+
#: ../lib/hammer_cli_foreman/puppet_class.rb:36
|
|
1997
|
+
msgid "Default value"
|
|
1998
|
+
msgstr "Valor predeterminado"
|
|
1999
|
+
|
|
2000
|
+
#: ../lib/hammer_cli_foreman/puppet_class.rb:38
|
|
2001
|
+
msgid "Smart class parameters"
|
|
2002
|
+
msgstr "Parámetros de clase inteligentes"
|
|
2003
|
+
|
|
2004
|
+
#: ../lib/hammer_cli_foreman/references.rb:8
|
|
2005
|
+
msgid "Created at"
|
|
2006
|
+
msgstr "Creado"
|
|
2007
|
+
|
|
2008
|
+
#: ../lib/hammer_cli_foreman/references.rb:9
|
|
2009
|
+
msgid "Updated at"
|
|
2010
|
+
msgstr "Actualizado"
|
|
2011
|
+
|
|
2012
|
+
#: ../lib/hammer_cli_foreman/references.rb:26
|
|
2013
|
+
msgid "Users"
|
|
2014
|
+
msgstr "Usuarios"
|
|
2015
|
+
|
|
2016
|
+
#: ../lib/hammer_cli_foreman/references.rb:34
|
|
2017
|
+
msgid "User groups"
|
|
2018
|
+
msgstr "Grupos de usuarios"
|
|
2019
|
+
|
|
2020
|
+
#: ../lib/hammer_cli_foreman/references.rb:42
|
|
2021
|
+
msgid "Smart proxies"
|
|
2022
|
+
msgstr "Proxis inteligentes"
|
|
2023
|
+
|
|
2024
|
+
#: ../lib/hammer_cli_foreman/references.rb:50
|
|
2025
|
+
msgid "Compute resources"
|
|
2026
|
+
msgstr "Recursos de cómputo"
|
|
2027
|
+
|
|
2028
|
+
#: ../lib/hammer_cli_foreman/references.rb:58
|
|
2029
|
+
msgid "Installation media"
|
|
2030
|
+
msgstr "Medio de Instalación"
|
|
2031
|
+
|
|
2032
|
+
#: ../lib/hammer_cli_foreman/references.rb:66
|
|
2033
|
+
msgid "Templates"
|
|
2034
|
+
msgstr "Plantillas"
|
|
2035
|
+
|
|
2036
|
+
#: ../lib/hammer_cli_foreman/references.rb:74
|
|
2037
|
+
msgid "Domains"
|
|
2038
|
+
msgstr "Dominios"
|
|
2039
|
+
|
|
2040
|
+
#: ../lib/hammer_cli_foreman/references.rb:82
|
|
2041
|
+
msgid "Environments"
|
|
2042
|
+
msgstr "Entornos"
|
|
2043
|
+
|
|
2044
|
+
#: ../lib/hammer_cli_foreman/references.rb:90
|
|
2045
|
+
msgid "Hostgroups"
|
|
2046
|
+
msgstr "Grupos de hosts"
|
|
2047
|
+
|
|
2048
|
+
#: ../lib/hammer_cli_foreman/references.rb:98
|
|
2049
|
+
msgid "Subnets"
|
|
2050
|
+
msgstr "Subredes"
|
|
2051
|
+
|
|
2052
|
+
#: ../lib/hammer_cli_foreman/references.rb:107
|
|
2053
|
+
msgid "Parameters"
|
|
2054
|
+
msgstr "Parámetros"
|
|
2055
|
+
|
|
2056
|
+
#: ../lib/hammer_cli_foreman/references.rb:115
|
|
2057
|
+
msgid "Puppetclasses"
|
|
2058
|
+
msgstr "Puppetclasses"
|
|
2059
|
+
|
|
2060
|
+
#: ../lib/hammer_cli_foreman/references.rb:123
|
|
2061
|
+
msgid "Operating systems"
|
|
2062
|
+
msgstr "Sistemas operativos"
|
|
2063
|
+
|
|
2064
|
+
#: ../lib/hammer_cli_foreman/references.rb:131
|
|
2065
|
+
msgid "Roles"
|
|
2066
|
+
msgstr "Roles"
|
|
2067
|
+
|
|
2068
|
+
#: ../lib/hammer_cli_foreman/references.rb:139
|
|
2069
|
+
msgid "External user groups"
|
|
2070
|
+
msgstr "Grupos de usuarios externos"
|
|
2071
|
+
|
|
2072
|
+
#: ../lib/hammer_cli_foreman/report.rb:14 ../lib/hammer_cli_foreman/report.rb:35
|
|
2073
|
+
msgid "Applied"
|
|
2074
|
+
msgstr "Aplicado"
|
|
2075
|
+
|
|
2076
|
+
#: ../lib/hammer_cli_foreman/report.rb:15 ../lib/hammer_cli_foreman/report.rb:36
|
|
2077
|
+
msgid "Restarted"
|
|
2078
|
+
msgstr "Reiniciado"
|
|
2079
|
+
|
|
2080
|
+
#: ../lib/hammer_cli_foreman/report.rb:16 ../lib/hammer_cli_foreman/report.rb:37
|
|
2081
|
+
msgid "Failed"
|
|
2082
|
+
msgstr "Falló"
|
|
2083
|
+
|
|
2084
|
+
#: ../lib/hammer_cli_foreman/report.rb:17 ../lib/hammer_cli_foreman/report.rb:38
|
|
2085
|
+
msgid "Restart Failures"
|
|
2086
|
+
msgstr "Reiniciar fallos"
|
|
2087
|
+
|
|
2088
|
+
#: ../lib/hammer_cli_foreman/report.rb:18 ../lib/hammer_cli_foreman/report.rb:39
|
|
2089
|
+
msgid "Skipped"
|
|
2090
|
+
msgstr "Omitido"
|
|
2091
|
+
|
|
2092
|
+
#: ../lib/hammer_cli_foreman/report.rb:19 ../lib/hammer_cli_foreman/report.rb:40
|
|
2093
|
+
msgid "Pending"
|
|
2094
|
+
msgstr "Pendiente"
|
|
2095
|
+
|
|
2096
|
+
#: ../lib/hammer_cli_foreman/report.rb:32
|
|
2097
|
+
msgid "Reported at"
|
|
2098
|
+
msgstr "Reportado en"
|
|
2099
|
+
|
|
2100
|
+
#: ../lib/hammer_cli_foreman/report.rb:33
|
|
2101
|
+
msgid "Report status"
|
|
2102
|
+
msgstr "Estado del informe"
|
|
2103
|
+
|
|
2104
|
+
#: ../lib/hammer_cli_foreman/report.rb:43
|
|
2105
|
+
msgid "Report metrics"
|
|
2106
|
+
msgstr "Métricas del informe"
|
|
2107
|
+
|
|
2108
|
+
#: ../lib/hammer_cli_foreman/report.rb:46
|
|
2109
|
+
msgid "config_retrieval"
|
|
2110
|
+
msgstr "config_retrieval"
|
|
2111
|
+
|
|
2112
|
+
#: ../lib/hammer_cli_foreman/report.rb:47
|
|
2113
|
+
msgid "exec"
|
|
2114
|
+
msgstr "ejecución"
|
|
2115
|
+
|
|
2116
|
+
#: ../lib/hammer_cli_foreman/report.rb:48
|
|
2117
|
+
msgid "file"
|
|
2118
|
+
msgstr "archivo"
|
|
2119
|
+
|
|
2120
|
+
#: ../lib/hammer_cli_foreman/report.rb:49
|
|
2121
|
+
msgid "package"
|
|
2122
|
+
msgstr "paquete"
|
|
2123
|
+
|
|
2124
|
+
#: ../lib/hammer_cli_foreman/report.rb:50
|
|
2125
|
+
msgid "service"
|
|
2126
|
+
msgstr "servicio"
|
|
2127
|
+
|
|
2128
|
+
#: ../lib/hammer_cli_foreman/report.rb:51
|
|
2129
|
+
msgid "user"
|
|
2130
|
+
msgstr "usuario"
|
|
2131
|
+
|
|
2132
|
+
#: ../lib/hammer_cli_foreman/report.rb:52
|
|
2133
|
+
msgid "yumrepo"
|
|
2134
|
+
msgstr "yumrepo"
|
|
2135
|
+
|
|
2136
|
+
#: ../lib/hammer_cli_foreman/report.rb:53
|
|
2137
|
+
msgid "filebucket"
|
|
2138
|
+
msgstr "filebucket"
|
|
2139
|
+
|
|
2140
|
+
#: ../lib/hammer_cli_foreman/report.rb:54
|
|
2141
|
+
msgid "cron"
|
|
2142
|
+
msgstr "cron"
|
|
2143
|
+
|
|
2144
|
+
#: ../lib/hammer_cli_foreman/report.rb:55
|
|
2145
|
+
msgid "total"
|
|
2146
|
+
msgstr "total"
|
|
2147
|
+
|
|
2148
|
+
#: ../lib/hammer_cli_foreman/report.rb:59
|
|
2149
|
+
msgid "Logs"
|
|
2150
|
+
msgstr "Registros"
|
|
2151
|
+
|
|
2152
|
+
#: ../lib/hammer_cli_foreman/report.rb:65
|
|
2153
|
+
msgid "Message"
|
|
2154
|
+
msgstr "Mensaje"
|
|
2155
|
+
|
|
2156
|
+
#: ../lib/hammer_cli_foreman/report.rb:76
|
|
2157
|
+
msgid "Report has been deleted"
|
|
2158
|
+
msgstr "Se ha borrado el informe"
|
|
2159
|
+
|
|
2160
|
+
#: ../lib/hammer_cli_foreman/report.rb:77
|
|
2161
|
+
msgid "Could not delete the report"
|
|
2162
|
+
msgstr "No se pudo borrar el informe"
|
|
2163
|
+
|
|
2164
|
+
#: ../lib/hammer_cli_foreman/resource_supported_test.rb:11
|
|
2165
|
+
msgid "The server does not support such operation."
|
|
2166
|
+
msgstr "El servidor no soporta esa operación."
|
|
2167
|
+
|
|
2168
|
+
#: ../lib/hammer_cli_foreman/role.rb:20
|
|
2169
|
+
msgid "Builtin"
|
|
2170
|
+
msgstr ""
|
|
2171
|
+
|
|
2172
|
+
#: ../lib/hammer_cli_foreman/role.rb:24
|
|
2173
|
+
msgid "Yes"
|
|
2174
|
+
msgstr ""
|
|
2175
|
+
|
|
2176
|
+
#: ../lib/hammer_cli_foreman/role.rb:24
|
|
2177
|
+
msgid "No"
|
|
2178
|
+
msgstr ""
|
|
2179
|
+
|
|
2180
|
+
#: ../lib/hammer_cli_foreman/role.rb:36
|
|
2181
|
+
msgid "User role id"
|
|
2182
|
+
msgstr "ID de rol de usuario"
|
|
2183
|
+
|
|
2184
|
+
#: ../lib/hammer_cli_foreman/role.rb:64
|
|
2185
|
+
msgid "User role [%<name>s] created"
|
|
2186
|
+
msgstr "Rol de usuario [%<name>s] creado"
|
|
2187
|
+
|
|
2188
|
+
#: ../lib/hammer_cli_foreman/role.rb:65
|
|
2189
|
+
msgid "Could not create the user role"
|
|
2190
|
+
msgstr "No se pudo crear el rol de usuario"
|
|
2191
|
+
|
|
2192
|
+
#: ../lib/hammer_cli_foreman/role.rb:72
|
|
2193
|
+
msgid "User role [%<name>s] updated"
|
|
2194
|
+
msgstr "Rol de usuario [%<name>s] actualizado"
|
|
2195
|
+
|
|
2196
|
+
#: ../lib/hammer_cli_foreman/role.rb:73
|
|
2197
|
+
msgid "Could not update the user role"
|
|
2198
|
+
msgstr "No se pudo actualizar el rol de usuario"
|
|
2199
|
+
|
|
2200
|
+
#: ../lib/hammer_cli_foreman/role.rb:80
|
|
2201
|
+
msgid "User role [%<name>s] deleted"
|
|
2202
|
+
msgstr "Rol de usuario [%<name>s] borrado"
|
|
2203
|
+
|
|
2204
|
+
#: ../lib/hammer_cli_foreman/role.rb:81
|
|
2205
|
+
msgid "Could not delete the user roles"
|
|
2206
|
+
msgstr "No se pudieron borrar los roles del usuario"
|
|
2207
|
+
|
|
2208
|
+
#: ../lib/hammer_cli_foreman/settings.rb:28
|
|
2209
|
+
msgid "Setting [%{name}] updated to [%{value}]"
|
|
2210
|
+
msgstr ""
|
|
2211
|
+
|
|
2212
|
+
#: ../lib/hammer_cli_foreman/settings.rb:29
|
|
2213
|
+
msgid "Could not update the setting"
|
|
2214
|
+
msgstr ""
|
|
2215
|
+
|
|
2216
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:11
|
|
2217
|
+
msgid "Default Value"
|
|
2218
|
+
msgstr "Valor predeterminado"
|
|
2219
|
+
|
|
2220
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:12
|
|
2221
|
+
msgid "Override"
|
|
2222
|
+
msgstr "Sobrescribir"
|
|
2223
|
+
|
|
2224
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:35 ../lib/hammer_cli_foreman/smart_variable.rb:27
|
|
2225
|
+
msgid "Puppet class"
|
|
2226
|
+
msgstr "Clase Puppet"
|
|
2227
|
+
|
|
2228
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:36 ../lib/hammer_cli_foreman/smart_variable.rb:28
|
|
2229
|
+
msgid "Class Id"
|
|
2230
|
+
msgstr "Id de clase"
|
|
2231
|
+
|
|
2232
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:61 ../lib/hammer_cli_foreman/smart_variable.rb:52
|
|
2233
|
+
msgid "Hidden Value?"
|
|
2234
|
+
msgstr ""
|
|
2235
|
+
|
|
2236
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:62
|
|
2237
|
+
msgid "Required"
|
|
2238
|
+
msgstr "Obligatorio"
|
|
2239
|
+
|
|
2240
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:64 ../lib/hammer_cli_foreman/smart_variable.rb:54
|
|
2241
|
+
msgid "Validator"
|
|
2242
|
+
msgstr "Validador"
|
|
2243
|
+
|
|
2244
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:56
|
|
2245
|
+
msgid "Rule"
|
|
2246
|
+
msgstr "Regla"
|
|
2247
|
+
|
|
2248
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:68 ../lib/hammer_cli_foreman/smart_variable.rb:58
|
|
2249
|
+
msgid "Override values"
|
|
2250
|
+
msgstr "Sobrescribir valores"
|
|
2251
|
+
|
|
2252
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:69 ../lib/hammer_cli_foreman/smart_variable.rb:59
|
|
2253
|
+
msgid "Merge overrides"
|
|
2254
|
+
msgstr ""
|
|
2255
|
+
|
|
2256
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:70 ../lib/hammer_cli_foreman/smart_variable.rb:60
|
|
2257
|
+
msgid "Merge default value"
|
|
2258
|
+
msgstr ""
|
|
2259
|
+
|
|
2260
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:71 ../lib/hammer_cli_foreman/smart_variable.rb:61
|
|
2261
|
+
msgid "Avoid duplicates"
|
|
2262
|
+
msgstr ""
|
|
2263
|
+
|
|
2264
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:72 ../lib/hammer_cli_foreman/smart_variable.rb:62
|
|
2265
|
+
msgid "Order"
|
|
2266
|
+
msgstr "Orden"
|
|
2267
|
+
|
|
2268
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:73 ../lib/hammer_cli_foreman/smart_variable.rb:63
|
|
2269
|
+
msgid "Values"
|
|
2270
|
+
msgstr ""
|
|
2271
|
+
|
|
2272
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_variable.rb:65
|
|
2273
|
+
msgid "Match"
|
|
2274
|
+
msgstr "Corresponder"
|
|
2275
|
+
|
|
2276
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:102
|
|
2277
|
+
msgid "Parameter updated"
|
|
2278
|
+
msgstr "Parámetro actualizado"
|
|
2279
|
+
|
|
2280
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:103
|
|
2281
|
+
msgid "Could not update the parameter"
|
|
2282
|
+
msgstr "No se pudo actualizar el parámetro"
|
|
2283
|
+
|
|
2284
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:110
|
|
2285
|
+
msgid "Override this parameter."
|
|
2286
|
+
msgstr "Sobrescribir este parámetro."
|
|
2287
|
+
|
|
2288
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:112
|
|
2289
|
+
msgid "This parameter is required."
|
|
2290
|
+
msgstr "El parámetro es obligatorio."
|
|
2291
|
+
|
|
2292
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:114
|
|
2293
|
+
msgid "Type of the parameter."
|
|
2294
|
+
msgstr "Tipo de parámetro."
|
|
2295
|
+
|
|
2296
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:117 ../lib/hammer_cli_foreman/smart_variable.rb:91 ../lib/hammer_cli_foreman/smart_variable.rb:105
|
|
2297
|
+
msgid "Type of the validator."
|
|
2298
|
+
msgstr "Tipo de validador."
|
|
2299
|
+
|
|
2300
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:131 ../lib/hammer_cli_foreman/smart_variable.rb:123
|
|
2301
|
+
msgid "Override value created"
|
|
2302
|
+
msgstr ""
|
|
2303
|
+
|
|
2304
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:132 ../lib/hammer_cli_foreman/smart_variable.rb:124
|
|
2305
|
+
#, fuzzy
|
|
2306
|
+
msgid "Could not create the override value"
|
|
2307
|
+
msgstr "No se pudo crear el rol de usuario"
|
|
2308
|
+
|
|
2309
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:142
|
|
2310
|
+
msgid "Cannot use --value when --use-puppet-default is true"
|
|
2311
|
+
msgstr ""
|
|
2312
|
+
|
|
2313
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:155 ../lib/hammer_cli_foreman/smart_variable.rb:136
|
|
2314
|
+
msgid "Override value deleted"
|
|
2315
|
+
msgstr ""
|
|
2316
|
+
|
|
2317
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:156 ../lib/hammer_cli_foreman/smart_variable.rb:137
|
|
2318
|
+
msgid "Could not delete the override value"
|
|
2319
|
+
msgstr ""
|
|
2320
|
+
|
|
2321
|
+
#: ../lib/hammer_cli_foreman/smart_proxy.rb:13
|
|
2322
|
+
msgid "URL"
|
|
2323
|
+
msgstr "URL"
|
|
2324
|
+
|
|
2325
|
+
#: ../lib/hammer_cli_foreman/smart_proxy.rb:14 ../lib/hammer_cli_foreman/smart_proxy.rb:29
|
|
2326
|
+
msgid "Features"
|
|
2327
|
+
msgstr "Funcionalidades"
|
|
2328
|
+
|
|
2329
|
+
#: ../lib/hammer_cli_foreman/smart_proxy.rb:41
|
|
2330
|
+
msgid "Smart proxy created"
|
|
2331
|
+
msgstr "Se creó proxy inteligente"
|
|
2332
|
+
|
|
2333
|
+
#: ../lib/hammer_cli_foreman/smart_proxy.rb:42
|
|
2334
|
+
msgid "Could not create the proxy"
|
|
2335
|
+
msgstr "No se pudo crear el proxy"
|
|
2336
|
+
|
|
2337
|
+
#: ../lib/hammer_cli_foreman/smart_proxy.rb:49
|
|
2338
|
+
msgid "Smart proxy updated"
|
|
2339
|
+
msgstr "Se actualizó el proxy inteligente"
|
|
2340
|
+
|
|
2341
|
+
#: ../lib/hammer_cli_foreman/smart_proxy.rb:50
|
|
2342
|
+
msgid "Could not update the proxy"
|
|
2343
|
+
msgstr "No se pudo actualizar el proxy"
|
|
2344
|
+
|
|
2345
|
+
#: ../lib/hammer_cli_foreman/smart_proxy.rb:57
|
|
2346
|
+
msgid "Smart proxy deleted"
|
|
2347
|
+
msgstr "Se borró el proxy inteligente"
|
|
2348
|
+
|
|
2349
|
+
#: ../lib/hammer_cli_foreman/smart_proxy.rb:58
|
|
2350
|
+
msgid "Could not delete the proxy"
|
|
2351
|
+
msgstr "No se pudo borrar el proxy"
|
|
2352
|
+
|
|
2353
|
+
#: ../lib/hammer_cli_foreman/smart_proxy.rb:69
|
|
2354
|
+
msgid "Puppet classes were imported"
|
|
2355
|
+
msgstr "Se importaron las clases Puppet"
|
|
2356
|
+
|
|
2357
|
+
#: ../lib/hammer_cli_foreman/smart_proxy.rb:70
|
|
2358
|
+
msgid "Import of puppet classes failed"
|
|
2359
|
+
msgstr "Falló la importación de clases Puppet"
|
|
2360
|
+
|
|
2361
|
+
#: ../lib/hammer_cli_foreman/smart_proxy.rb:72
|
|
2362
|
+
msgid "Do not run the import"
|
|
2363
|
+
msgstr "No ejecutar la importación"
|
|
2364
|
+
|
|
2365
|
+
#: ../lib/hammer_cli_foreman/smart_proxy.rb:92
|
|
2366
|
+
msgid "Smart proxy features were refreshed"
|
|
2367
|
+
msgstr "Se actualizaron las funcionalidades del proxy inteligente"
|
|
2368
|
+
|
|
2369
|
+
#: ../lib/hammer_cli_foreman/smart_proxy.rb:93
|
|
2370
|
+
msgid "Refresh of smart proxy features failed"
|
|
2371
|
+
msgstr "Error al actualizar las funcionalidades del proxy inteligente"
|
|
2372
|
+
|
|
2373
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:83
|
|
2374
|
+
msgid "Smart variable [%{variable}] created"
|
|
2375
|
+
msgstr ""
|
|
2376
|
+
|
|
2377
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:84
|
|
2378
|
+
msgid "Could not create the smart variable"
|
|
2379
|
+
msgstr ""
|
|
2380
|
+
|
|
2381
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:88 ../lib/hammer_cli_foreman/smart_variable.rb:102
|
|
2382
|
+
msgid "Type of the variable."
|
|
2383
|
+
msgstr ""
|
|
2384
|
+
|
|
2385
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:97
|
|
2386
|
+
msgid "Smart variable [%{variable}] updated"
|
|
2387
|
+
msgstr ""
|
|
2388
|
+
|
|
2389
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:98
|
|
2390
|
+
msgid "Could not update the smart variable"
|
|
2391
|
+
msgstr ""
|
|
2392
|
+
|
|
2393
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:112
|
|
2394
|
+
msgid "Smart variable [%{variable}] deleted"
|
|
2395
|
+
msgstr ""
|
|
2396
|
+
|
|
2397
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:113
|
|
2398
|
+
msgid "Could not delete the smart variable"
|
|
2399
|
+
msgstr ""
|
|
2400
|
+
|
|
2401
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:13
|
|
2402
|
+
msgid "Mask"
|
|
2403
|
+
msgstr "Máscara"
|
|
2404
|
+
|
|
2405
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:23
|
|
2406
|
+
msgid "Priority"
|
|
2407
|
+
msgstr "Prioridad"
|
|
2408
|
+
|
|
2409
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:24
|
|
2410
|
+
msgid "DNS"
|
|
2411
|
+
msgstr "DNS"
|
|
2412
|
+
|
|
2413
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:25
|
|
2414
|
+
msgid "Primary DNS"
|
|
2415
|
+
msgstr "DNS primario"
|
|
2416
|
+
|
|
2417
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:26
|
|
2418
|
+
msgid "Secondary DNS"
|
|
2419
|
+
msgstr "DNS secundario"
|
|
2420
|
+
|
|
2421
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:27
|
|
2422
|
+
msgid "TFTP"
|
|
2423
|
+
msgstr "TFTP"
|
|
2424
|
+
|
|
2425
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:28
|
|
2426
|
+
msgid "DHCP"
|
|
2427
|
+
msgstr "DHCP"
|
|
2428
|
+
|
|
2429
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:29
|
|
2430
|
+
msgid "IPAM"
|
|
2431
|
+
msgstr ""
|
|
2432
|
+
|
|
2433
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:30
|
|
2434
|
+
msgid "VLAN ID"
|
|
2435
|
+
msgstr "ID de VLAN"
|
|
2436
|
+
|
|
2437
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:31
|
|
2438
|
+
msgid "Gateway"
|
|
2439
|
+
msgstr "Puerta de enlace"
|
|
2440
|
+
|
|
2441
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:32
|
|
2442
|
+
msgid "From"
|
|
2443
|
+
msgstr "Desde"
|
|
2444
|
+
|
|
2445
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:33
|
|
2446
|
+
msgid "To"
|
|
2447
|
+
msgstr "A"
|
|
2448
|
+
|
|
2449
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:44
|
|
2450
|
+
msgid "Subnet created"
|
|
2451
|
+
msgstr "Se creó subred"
|
|
2452
|
+
|
|
2453
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:45
|
|
2454
|
+
msgid "Could not create the subnet"
|
|
2455
|
+
msgstr "No se pudo crear la subred"
|
|
2456
|
+
|
|
2457
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:53
|
|
2458
|
+
msgid "Subnet updated"
|
|
2459
|
+
msgstr "Se actualizó subred"
|
|
2460
|
+
|
|
2461
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:54
|
|
2462
|
+
msgid "Could not update the subnet"
|
|
2463
|
+
msgstr "No se pudo actualizar la subred"
|
|
2464
|
+
|
|
2465
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:62
|
|
2466
|
+
msgid "Subnet deleted"
|
|
2467
|
+
msgstr "Se borró la subred"
|
|
2468
|
+
|
|
2469
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:63
|
|
2470
|
+
msgid "Could not delete the subnet"
|
|
2471
|
+
msgstr "No pudo borrarse la subred"
|
|
2472
|
+
|
|
2473
|
+
#: ../lib/hammer_cli_foreman/template.rb:72
|
|
2474
|
+
msgid "List available config template kinds."
|
|
2475
|
+
msgstr "Listar tipos de plantillas de configuración."
|
|
2476
|
+
|
|
2477
|
+
#: ../lib/hammer_cli_foreman/template.rb:91
|
|
2478
|
+
msgid "View config template content."
|
|
2479
|
+
msgstr "Ver contenido de las plantillas de configuración."
|
|
2480
|
+
|
|
2481
|
+
#: ../lib/hammer_cli_foreman/template.rb:103 ../lib/hammer_cli_foreman/template.rb:121
|
|
2482
|
+
msgid "Path to a file that contains the template"
|
|
2483
|
+
msgstr "Ruta al fichero que contiene la plantilla"
|
|
2484
|
+
|
|
2485
|
+
#: ../lib/hammer_cli_foreman/template.rb:105 ../lib/hammer_cli_foreman/template.rb:123
|
|
2486
|
+
msgid "Template type. Eg. snippet, script, provision"
|
|
2487
|
+
msgstr "Tipo de plantilla. P. ej. sinppet, script, provisión"
|
|
2488
|
+
|
|
2489
|
+
#: ../lib/hammer_cli_foreman/template.rb:107
|
|
2490
|
+
msgid "Config template created"
|
|
2491
|
+
msgstr "Se creó la plantilla de configuración"
|
|
2492
|
+
|
|
2493
|
+
#: ../lib/hammer_cli_foreman/template.rb:108
|
|
2494
|
+
msgid "Could not create the config template"
|
|
2495
|
+
msgstr "No se pudo crear la plantilla de configuración"
|
|
2496
|
+
|
|
2497
|
+
#: ../lib/hammer_cli_foreman/template.rb:125
|
|
2498
|
+
msgid "Config template updated"
|
|
2499
|
+
msgstr "Se actualizó la plantilla de configuración"
|
|
2500
|
+
|
|
2501
|
+
#: ../lib/hammer_cli_foreman/template.rb:126
|
|
2502
|
+
msgid "Could not update the config template"
|
|
2503
|
+
msgstr "No se pudo actualizar la plantilla de configuración"
|
|
2504
|
+
|
|
2505
|
+
#: ../lib/hammer_cli_foreman/template.rb:139
|
|
2506
|
+
msgid "Config template deleted"
|
|
2507
|
+
msgstr "Se borró la plantilla de configuración"
|
|
2508
|
+
|
|
2509
|
+
#: ../lib/hammer_cli_foreman/template.rb:140
|
|
2510
|
+
msgid "Could not delete the config template"
|
|
2511
|
+
msgstr "No se pudo borrar la plantilla de configuración"
|
|
2512
|
+
|
|
2513
|
+
#: ../lib/hammer_cli_foreman/template.rb:151
|
|
2514
|
+
msgid "Update the default PXE menu on all configured TFTP servers"
|
|
2515
|
+
msgstr "Actualizar el menú por defecto de PXE en todos los servidores TFTP configurados"
|
|
2516
|
+
|
|
2517
|
+
#: ../lib/hammer_cli_foreman/template.rb:164
|
|
2518
|
+
#, fuzzy
|
|
2519
|
+
msgid "Config template cloned"
|
|
2520
|
+
msgstr "Se creó la plantilla de configuración"
|
|
2521
|
+
|
|
2522
|
+
#: ../lib/hammer_cli_foreman/template.rb:165
|
|
2523
|
+
#, fuzzy
|
|
2524
|
+
msgid "Could not clone the config template"
|
|
2525
|
+
msgstr "No se pudo crear la plantilla de configuración"
|
|
2526
|
+
|
|
2527
|
+
#: ../lib/hammer_cli_foreman/user.rb:11
|
|
2528
|
+
msgid "Login"
|
|
2529
|
+
msgstr "Registro"
|
|
2530
|
+
|
|
2531
|
+
#: ../lib/hammer_cli_foreman/user.rb:13
|
|
2532
|
+
msgid "Email"
|
|
2533
|
+
msgstr "Correo-e"
|
|
2534
|
+
|
|
2535
|
+
#: ../lib/hammer_cli_foreman/user.rb:28
|
|
2536
|
+
msgid "Admin"
|
|
2537
|
+
msgstr "Administrar"
|
|
2538
|
+
|
|
2539
|
+
#: ../lib/hammer_cli_foreman/user.rb:29
|
|
2540
|
+
msgid "Effective admin"
|
|
2541
|
+
msgstr ""
|
|
2542
|
+
|
|
2543
|
+
#: ../lib/hammer_cli_foreman/user.rb:30
|
|
2544
|
+
msgid "Authorized by"
|
|
2545
|
+
msgstr "Autorizado por"
|
|
2546
|
+
|
|
2547
|
+
#: ../lib/hammer_cli_foreman/user.rb:31
|
|
2548
|
+
msgid "Locale"
|
|
2549
|
+
msgstr "Idioma"
|
|
2550
|
+
|
|
2551
|
+
#: ../lib/hammer_cli_foreman/user.rb:32
|
|
2552
|
+
msgid "Timezone"
|
|
2553
|
+
msgstr ""
|
|
2554
|
+
|
|
2555
|
+
#: ../lib/hammer_cli_foreman/user.rb:33
|
|
2556
|
+
msgid "Last login"
|
|
2557
|
+
msgstr "Último inicio de sesión"
|
|
2558
|
+
|
|
2559
|
+
#: ../lib/hammer_cli_foreman/user.rb:34
|
|
2560
|
+
msgid "Default organization"
|
|
2561
|
+
msgstr "Organización por defecto"
|
|
2562
|
+
|
|
2563
|
+
#: ../lib/hammer_cli_foreman/user.rb:35
|
|
2564
|
+
msgid "Default location"
|
|
2565
|
+
msgstr "Ubicación por defecto"
|
|
2566
|
+
|
|
2567
|
+
#: ../lib/hammer_cli_foreman/user.rb:43 ../lib/hammer_cli_foreman/user.rb:44
|
|
2568
|
+
msgid "default"
|
|
2569
|
+
msgstr "por defecto"
|
|
2570
|
+
|
|
2571
|
+
#: ../lib/hammer_cli_foreman/user.rb:54
|
|
2572
|
+
msgid "User [%{login}] created"
|
|
2573
|
+
msgstr "Se creó el usuario [%{login}]"
|
|
2574
|
+
|
|
2575
|
+
#: ../lib/hammer_cli_foreman/user.rb:55
|
|
2576
|
+
msgid "Could not create the user"
|
|
2577
|
+
msgstr "No se pudo crear el usuario"
|
|
2578
|
+
|
|
2579
|
+
#: ../lib/hammer_cli_foreman/user.rb:62
|
|
2580
|
+
msgid "User [%{login}] updated"
|
|
2581
|
+
msgstr "Se actualizó el usuario [%{login}] "
|
|
2582
|
+
|
|
2583
|
+
#: ../lib/hammer_cli_foreman/user.rb:63
|
|
2584
|
+
msgid "Could not update the user"
|
|
2585
|
+
msgstr "No se pudo actualizar el usuario"
|
|
2586
|
+
|
|
2587
|
+
#: ../lib/hammer_cli_foreman/user.rb:70
|
|
2588
|
+
msgid "User [%{login}] deleted"
|
|
2589
|
+
msgstr "Se borró el usuario [%{login}]"
|
|
2590
|
+
|
|
2591
|
+
#: ../lib/hammer_cli_foreman/user.rb:71
|
|
2592
|
+
msgid "Could not delete the user"
|
|
2593
|
+
msgstr "No se pudo borrar el usuario"
|
|
2594
|
+
|
|
2595
|
+
#: ../lib/hammer_cli_foreman/usergroup.rb:31
|
|
2596
|
+
msgid "User group [%<name>s] created"
|
|
2597
|
+
msgstr "Se creó el grupo de usuario [%<name>s]"
|
|
2598
|
+
|
|
2599
|
+
#: ../lib/hammer_cli_foreman/usergroup.rb:32
|
|
2600
|
+
msgid "Could not create the user group"
|
|
2601
|
+
msgstr "No se pudo crear el grupo de usuarios"
|
|
2602
|
+
|
|
2603
|
+
#: ../lib/hammer_cli_foreman/usergroup.rb:38
|
|
2604
|
+
msgid "User group [%<name>s] updated"
|
|
2605
|
+
msgstr "Se actualizó el grupo de usuarios [%<name>s]"
|
|
2606
|
+
|
|
2607
|
+
#: ../lib/hammer_cli_foreman/usergroup.rb:39
|
|
2608
|
+
msgid "Could not update the user group"
|
|
2609
|
+
msgstr "No se pudo actualizar el grupo de usuarios"
|
|
2610
|
+
|
|
2611
|
+
#: ../lib/hammer_cli_foreman/usergroup.rb:45
|
|
2612
|
+
msgid "User group [%<name>s] deleted"
|
|
2613
|
+
msgstr "Se borró el grupo de usuarios [%<name>s]"
|
|
2614
|
+
|
|
2615
|
+
#: ../lib/hammer_cli_foreman/usergroup.rb:46
|
|
2616
|
+
msgid "Could not delete the user group"
|
|
2617
|
+
msgstr "No se pudo borrar el grupo de usuarios"
|
|
2618
|
+
|
|
2619
|
+
#: ../lib/hammer_cli_foreman/host.rb:153
|
|
2620
|
+
#~ msgid "At least one interface must be set as primary"
|
|
2621
|
+
#~ msgstr "Al menos una interfaz debe ser establecida como primaria"
|
|
2622
|
+
|
|
2623
|
+
#: ../lib/hammer_cli_foreman/host.rb:156
|
|
2624
|
+
#~ msgid "At least one interface must be set as provision"
|
|
2625
|
+
#~ msgstr "Al menos una interfaz debe ser establecida como provisión"
|