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