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