hammer_cli_foreman 0.4.0 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of hammer_cli_foreman might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +13 -2
- data/doc/host_create.md +15 -7
- data/doc/release_notes.md +11 -0
- data/lib/hammer_cli_foreman/commands.rb +5 -1
- data/lib/hammer_cli_foreman/defaults.rb +29 -0
- data/lib/hammer_cli_foreman/host.rb +8 -1
- data/lib/hammer_cli_foreman/id_resolver.rb +1 -1
- data/lib/hammer_cli_foreman/location.rb +21 -0
- data/lib/hammer_cli_foreman/organization.rb +21 -0
- data/lib/hammer_cli_foreman/parameter.rb +7 -7
- data/lib/hammer_cli_foreman/role.rb +13 -0
- data/lib/hammer_cli_foreman/subnet.rb +1 -1
- data/lib/hammer_cli_foreman/version.rb +1 -1
- data/lib/hammer_cli_foreman.rb +2 -0
- data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/de/hammer-cli-foreman.edit.po +394 -423
- data/locale/de/hammer-cli-foreman.po +1920 -1511
- data/locale/en/hammer-cli-foreman.edit.po +188 -124
- data/locale/en/hammer-cli-foreman.po +49 -1
- data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en_GB/hammer-cli-foreman.edit.po +208 -152
- data/locale/en_GB/hammer-cli-foreman.po +1554 -1145
- data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/es/hammer-cli-foreman.edit.po +438 -464
- data/locale/es/hammer-cli-foreman.po +1930 -1519
- data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/fr/hammer-cli-foreman.edit.po +301 -328
- data/locale/fr/hammer-cli-foreman.po +1922 -1513
- data/locale/hammer-cli-foreman.pot +194 -127
- data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/it/hammer-cli-foreman.edit.po +303 -331
- data/locale/it/hammer-cli-foreman.po +1909 -1500
- data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ja/hammer-cli-foreman.edit.po +302 -330
- data/locale/ja/hammer-cli-foreman.po +1920 -1511
- data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ko/hammer-cli-foreman.edit.po +303 -332
- data/locale/ko/hammer-cli-foreman.po +1910 -1501
- data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/pt_BR/hammer-cli-foreman.edit.po +369 -393
- data/locale/pt_BR/hammer-cli-foreman.po +1916 -1506
- data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ru/hammer-cli-foreman.edit.po +344 -372
- data/locale/ru/hammer-cli-foreman.po +1940 -1531
- data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_CN/hammer-cli-foreman.edit.po +303 -331
- data/locale/zh_CN/hammer-cli-foreman.po +1905 -1496
- data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_TW/hammer-cli-foreman.edit.po +306 -334
- data/locale/zh_TW/hammer-cli-foreman.po +1908 -1499
- data/test/functional/api_expectations.rb +65 -0
- data/test/functional/command_assertions.rb +76 -0
- data/test/functional/location_test.rb +140 -0
- data/test/functional/organization_test.rb +140 -0
- data/test/functional/test_helper.rb +7 -0
- data/test/test_helper.rb +27 -0
- data/test/unit/apipie_resource_mock.rb +24 -6
- data/test/unit/architecture_test.rb +1 -1
- data/test/unit/auth_source_ldap_test.rb +1 -3
- data/test/unit/common_parameter_test.rb +1 -1
- data/test/unit/compute_resource_test.rb +1 -1
- data/test/unit/data/1.10/foreman_api.json +1 -0
- data/test/unit/data/README.md +22 -0
- data/test/unit/data/test_api.json +609 -0
- data/test/unit/defaults_test.rb +32 -0
- data/test/unit/dependency_resolver_test.rb +21 -16
- data/test/unit/domain_test.rb +1 -1
- data/test/unit/environment_test.rb +1 -1
- data/test/unit/external_usergroup_test.rb +1 -1
- data/test/unit/helpers/command.rb +5 -1
- data/test/unit/host_test.rb +16 -8
- data/test/unit/hostgroup_test.rb +1 -1
- data/test/unit/id_resolver_test.rb +40 -37
- data/test/unit/image_test.rb +1 -3
- data/test/unit/location_test.rb +1 -1
- data/test/unit/media_test.rb +3 -3
- data/test/unit/model_test.rb +1 -1
- data/test/unit/operating_system_test.rb +1 -2
- data/test/unit/option_builders_test.rb +106 -116
- data/test/unit/organization_test.rb +1 -1
- data/test/unit/partition_table_test.rb +1 -1
- data/test/unit/puppet_class_test.rb +4 -1
- data/test/unit/report_test.rb +1 -1
- data/test/unit/role_test.rb +15 -0
- data/test/unit/smart_class_parameter_test.rb +1 -1
- data/test/unit/smart_proxy_test.rb +1 -1
- data/test/unit/smart_variable_test.rb +1 -1
- data/test/unit/subnet_test.rb +1 -1
- data/test/unit/template_test.rb +1 -1
- data/test/unit/test_helper.rb +2 -29
- data/test/unit/user_test.rb +1 -2
- metadata +67 -539
- data/test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-CommonParameter.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Domain-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-output.xml +0 -21
- data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Environment-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ExceptionHandler.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Host-CreateCommand-parameters.xml +0 -46
- data/test/reports/TEST-HammerCLIForeman-Host-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand-output.xml +0 -85
- data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-ListCommand-output.xml +0 -21
- data/test/reports/TEST-HammerCLIForeman-Host-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Host-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand-output.xml +0 -9
- data/test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-StatusCommand-output.xml +0 -9
- data/test/reports/TEST-HammerCLIForeman-Host-StatusCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-UpdateCommand-parameters.xml +0 -40
- data/test/reports/TEST-HammerCLIForeman-Host-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-output.xml +0 -29
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-output.xml +0 -27
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-CreateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Medium-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-output.xml +0 -23
- data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-output.xml +0 -27
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-output.xml +0 -19
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-output.xml +0 -21
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-output.xml +0 -43
- data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-CreateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Template-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-DeleteCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Template-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-DumpCommand-parameters.xml +0 -12
- data/test/reports/TEST-HammerCLIForeman-Template-DumpCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Template-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Template-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand-parameters.xml +0 -9
- data/test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-UpdateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Template-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-CreateCommand-parameters.xml +0 -19
- data/test/reports/TEST-HammerCLIForeman-User-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-DeleteCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-User-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-InfoCommand-output.xml +0 -23
- data/test/reports/TEST-HammerCLIForeman-User-InfoCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-User-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-ListCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-User-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-User-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-UpdateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-User-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User.xml +0 -7
- data/test/reports/TEST-MiniTest-Spec.xml +0 -7
- data/test/unit/data/1.4/foreman_api.json +0 -10387
- data/test/unit/data/1.5/foreman_api.json +0 -14130
- data/test/unit/data/1.6/foreman_api.json +0 -1
- data/test/unit/data/1.6/foreman_api_back.json +0 -1
- data/test/unit/data/1.6/whatever.json +0 -1
- data/test/unit/data/1.7/foreman_api.json +0 -1
Binary file
|
@@ -4,136 +4,137 @@
|
|
4
4
|
#
|
5
5
|
# Translators:
|
6
6
|
# Diego de Souza Lopes <djkakaroto@gmail.com>, 2015
|
7
|
-
#
|
7
|
+
# Junior Alvim <alvin@intechne.com.br>, 2014
|
8
|
+
# Fabio Dias <fabioqos@gmail.com>, 2015
|
9
|
+
# Valeria S Silva <valeriassilva@live.com>, 2015
|
8
10
|
msgid ""
|
9
11
|
msgstr ""
|
10
|
-
"Project-Id-Version: hammer-cli-foreman 0.
|
12
|
+
"Project-Id-Version: hammer-cli-foreman 0.4.0\n"
|
11
13
|
"Report-Msgid-Bugs-To: \n"
|
12
|
-
"POT-Creation-Date: 2015-
|
13
|
-
"PO-Revision-Date: 2015-
|
14
|
-
"Last-Translator:
|
15
|
-
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/
|
16
|
-
"
|
14
|
+
"POT-Creation-Date: 2015-12-11 04:48+0000\n"
|
15
|
+
"PO-Revision-Date: 2015-11-18 13:52+0000\n"
|
16
|
+
"Last-Translator: Valeria S Silva <valeriassilva@live.com>\n"
|
17
|
+
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/foreman/foreman/l"
|
18
|
+
"anguage/pt_BR/)\n"
|
17
19
|
"MIME-Version: 1.0\n"
|
18
20
|
"Content-Type: text/plain; charset=UTF-8\n"
|
19
21
|
"Content-Transfer-Encoding: 8bit\n"
|
20
22
|
"Language: pt_BR\n"
|
21
23
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
22
24
|
|
23
|
-
#: ../lib/hammer_cli_foreman.rb:
|
25
|
+
#: ../lib/hammer_cli_foreman.rb:32
|
24
26
|
msgid "Foreman connection login/logout."
|
25
27
|
msgstr "A conexão de login/logout do Foreman"
|
26
28
|
|
27
|
-
#: ../lib/hammer_cli_foreman.rb:
|
29
|
+
#: ../lib/hammer_cli_foreman.rb:36
|
28
30
|
msgid "Manipulate architectures."
|
29
31
|
msgstr "Manipular Arquiteturas"
|
30
32
|
|
31
|
-
#: ../lib/hammer_cli_foreman.rb:
|
33
|
+
#: ../lib/hammer_cli_foreman.rb:40
|
32
34
|
msgid "Manipulate auth sources."
|
33
|
-
msgstr ""
|
35
|
+
msgstr "Manipular fontes do auth."
|
34
36
|
|
35
|
-
#: ../lib/hammer_cli_foreman.rb:
|
37
|
+
#: ../lib/hammer_cli_foreman.rb:44
|
36
38
|
msgid "Manipulate compute resources."
|
37
39
|
msgstr "Manipular Recursos de Computador."
|
38
40
|
|
39
|
-
#: ../lib/hammer_cli_foreman.rb:
|
41
|
+
#: ../lib/hammer_cli_foreman.rb:48
|
40
42
|
msgid "Manipulate domains."
|
41
43
|
msgstr "Manipular domínios."
|
42
44
|
|
43
|
-
#: ../lib/hammer_cli_foreman.rb:
|
45
|
+
#: ../lib/hammer_cli_foreman.rb:52
|
44
46
|
msgid "Manipulate environments."
|
45
47
|
msgstr "Manipular ambientes."
|
46
48
|
|
47
|
-
#: ../lib/hammer_cli_foreman.rb:
|
49
|
+
#: ../lib/hammer_cli_foreman.rb:56
|
48
50
|
msgid "Search facts."
|
49
51
|
msgstr "Procurar por fatos."
|
50
52
|
|
51
|
-
#: ../lib/hammer_cli_foreman.rb:
|
53
|
+
#: ../lib/hammer_cli_foreman.rb:60
|
52
54
|
msgid "Manage permission filters."
|
53
55
|
msgstr "Gerenciar filtros de permissão."
|
54
56
|
|
55
|
-
#: ../lib/hammer_cli_foreman.rb:
|
57
|
+
#: ../lib/hammer_cli_foreman.rb:64
|
56
58
|
msgid "Manipulate hosts."
|
57
59
|
msgstr "Manipular hosts."
|
58
60
|
|
59
|
-
#: ../lib/hammer_cli_foreman.rb:
|
61
|
+
#: ../lib/hammer_cli_foreman.rb:68
|
60
62
|
msgid "Manipulate hostgroups."
|
61
63
|
msgstr "Manipular hostgroups"
|
62
64
|
|
63
|
-
#: ../lib/hammer_cli_foreman.rb:
|
65
|
+
#: ../lib/hammer_cli_foreman.rb:72
|
64
66
|
msgid "Manipulate locations."
|
65
67
|
msgstr "Manipular locais."
|
66
68
|
|
67
|
-
#: ../lib/hammer_cli_foreman.rb:
|
69
|
+
#: ../lib/hammer_cli_foreman.rb:76
|
68
70
|
msgid "Manipulate installation media."
|
69
|
-
msgstr "Manipular meio instalação"
|
71
|
+
msgstr "Manipular meio de instalação"
|
70
72
|
|
71
|
-
#: ../lib/hammer_cli_foreman.rb:
|
73
|
+
#: ../lib/hammer_cli_foreman.rb:80
|
72
74
|
msgid "Manipulate hardware models."
|
73
75
|
msgstr "Manipular os modelos de hardware."
|
74
76
|
|
75
|
-
#: ../lib/hammer_cli_foreman.rb:
|
77
|
+
#: ../lib/hammer_cli_foreman.rb:84
|
76
78
|
msgid "Manipulate operating system."
|
77
|
-
msgstr "Manipular
|
79
|
+
msgstr "Manipular Sistema Operacional:"
|
78
80
|
|
79
|
-
#: ../lib/hammer_cli_foreman.rb:
|
81
|
+
#: ../lib/hammer_cli_foreman.rb:88
|
80
82
|
msgid "Manipulate organizations."
|
81
|
-
msgstr "Manipular as organizações"
|
83
|
+
msgstr "Manipular as organizações."
|
82
84
|
|
83
|
-
#: ../lib/hammer_cli_foreman.rb:
|
85
|
+
#: ../lib/hammer_cli_foreman.rb:92
|
84
86
|
msgid "Manipulate partition tables."
|
85
87
|
msgstr "Manipular as tabelas de partição."
|
86
88
|
|
87
|
-
#: ../lib/hammer_cli_foreman.rb:
|
89
|
+
#: ../lib/hammer_cli_foreman.rb:96
|
88
90
|
msgid "Search puppet modules."
|
89
91
|
msgstr "Buscar módulos de puppet"
|
90
92
|
|
91
|
-
#: ../lib/hammer_cli_foreman.rb:
|
93
|
+
#: ../lib/hammer_cli_foreman.rb:100
|
92
94
|
msgid "Browse and read reports."
|
93
95
|
msgstr "Navegar e ler relatórios"
|
94
96
|
|
95
|
-
#: ../lib/hammer_cli_foreman.rb:
|
97
|
+
#: ../lib/hammer_cli_foreman.rb:104
|
96
98
|
msgid "Manage user roles."
|
97
99
|
msgstr "Gerenciar função de usuário"
|
98
100
|
|
99
|
-
#: ../lib/hammer_cli_foreman.rb:
|
101
|
+
#: ../lib/hammer_cli_foreman.rb:108
|
100
102
|
msgid "Manipulate smart class parameters."
|
101
|
-
msgstr "Manipular os parâmetros de classe
|
103
|
+
msgstr "Manipular os parâmetros de classe inteligente."
|
102
104
|
|
103
|
-
#: ../lib/hammer_cli_foreman.rb:
|
104
|
-
#, fuzzy
|
105
|
+
#: ../lib/hammer_cli_foreman.rb:112
|
105
106
|
msgid "Manipulate smart variables."
|
106
|
-
msgstr "
|
107
|
+
msgstr "Manipule variaveis smart"
|
107
108
|
|
108
|
-
#: ../lib/hammer_cli_foreman.rb:
|
109
|
+
#: ../lib/hammer_cli_foreman.rb:116
|
109
110
|
msgid "Manipulate smart proxies."
|
110
|
-
msgstr "Manipular os
|
111
|
+
msgstr "Manipular os proxies inteligentes."
|
111
112
|
|
112
|
-
#: ../lib/hammer_cli_foreman.rb:
|
113
|
+
#: ../lib/hammer_cli_foreman.rb:120
|
113
114
|
msgid "Change server settings."
|
114
|
-
msgstr ""
|
115
|
+
msgstr "Modifique as configurações do servidor"
|
115
116
|
|
116
|
-
#: ../lib/hammer_cli_foreman.rb:
|
117
|
+
#: ../lib/hammer_cli_foreman.rb:124
|
117
118
|
msgid "Manipulate subnets."
|
118
|
-
msgstr "Manipular
|
119
|
+
msgstr "Manipular subredes."
|
119
120
|
|
120
|
-
#: ../lib/hammer_cli_foreman.rb:
|
121
|
+
#: ../lib/hammer_cli_foreman.rb:128
|
121
122
|
msgid "Manipulate config templates."
|
122
123
|
msgstr "Manipular modelos de config."
|
123
124
|
|
124
|
-
#: ../lib/hammer_cli_foreman.rb:
|
125
|
+
#: ../lib/hammer_cli_foreman.rb:132
|
125
126
|
msgid "Manipulate users."
|
126
127
|
msgstr "Manipular usuários."
|
127
128
|
|
128
|
-
#: ../lib/hammer_cli_foreman.rb:
|
129
|
+
#: ../lib/hammer_cli_foreman.rb:136
|
129
130
|
msgid "Manage user groups."
|
130
131
|
msgstr "Gerenciar grupos de usuário"
|
131
132
|
|
132
|
-
#: ../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:
|
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:170 ../lib/hammer_cli_foreman/host.rb:207 ../lib/hammer_cli_foreman/host.rb:238 ../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:75 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:63 ../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
|
133
134
|
msgid "Id"
|
134
135
|
msgstr "Id"
|
135
136
|
|
136
|
-
#: ../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:
|
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:171 ../lib/hammer_cli_foreman/host.rb:209 ../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:74 ../lib/hammer_cli_foreman/user.rb:12 ../lib/hammer_cli_foreman/usergroup.rb:12
|
137
138
|
msgid "Name"
|
138
139
|
msgstr "Nome"
|
139
140
|
|
@@ -195,11 +196,11 @@ msgstr "Desassociar um meio"
|
|
195
196
|
|
196
197
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:97
|
197
198
|
msgid "Associate a subnet"
|
198
|
-
msgstr "Associar uma
|
199
|
+
msgstr "Associar uma subrede"
|
199
200
|
|
200
201
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:102
|
201
202
|
msgid "Disassociate a subnet"
|
202
|
-
msgstr "Desassociar uma
|
203
|
+
msgstr "Desassociar uma subrede"
|
203
204
|
|
204
205
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:111
|
205
206
|
msgid "Associate a compute resource"
|
@@ -211,39 +212,35 @@ msgstr "Desassociar um recurso de computador"
|
|
211
212
|
|
212
213
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:125
|
213
214
|
msgid "Associate a smart proxy"
|
214
|
-
msgstr "Associar um
|
215
|
+
msgstr "Associar um proxy inteligente"
|
215
216
|
|
216
217
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:134
|
217
218
|
msgid "Disassociate a smart proxy"
|
218
|
-
msgstr "Desassociar um
|
219
|
+
msgstr "Desassociar um proxy inteligente"
|
219
220
|
|
220
221
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:147
|
221
222
|
msgid "Associate an user"
|
222
223
|
msgstr "Associar um usuário"
|
223
224
|
|
224
225
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:149
|
225
|
-
#, fuzzy
|
226
226
|
msgid "The user has been associated"
|
227
|
-
msgstr "
|
227
|
+
msgstr "O usuario esta associado"
|
228
228
|
|
229
229
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:150
|
230
|
-
#, fuzzy
|
231
230
|
msgid "Could not associate the user"
|
232
|
-
msgstr "Não
|
231
|
+
msgstr "Não pode associar o usuário"
|
233
232
|
|
234
233
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:155
|
235
234
|
msgid "Disassociate an user"
|
236
235
|
msgstr "Desassociar um usuário"
|
237
236
|
|
238
237
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:157
|
239
|
-
#, fuzzy
|
240
238
|
msgid "The user has been disassociated"
|
241
|
-
msgstr "
|
239
|
+
msgstr "Usuário desassociado"
|
242
240
|
|
243
241
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:158
|
244
|
-
#, fuzzy
|
245
242
|
msgid "Could not disassociate the user"
|
246
|
-
msgstr "Não
|
243
|
+
msgstr "Não pode desassociar o usuário"
|
247
244
|
|
248
245
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:167
|
249
246
|
msgid "Associate an user group"
|
@@ -251,12 +248,11 @@ msgstr "Associar um grupo de usuário"
|
|
251
248
|
|
252
249
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:171
|
253
250
|
msgid "The user group has been associated"
|
254
|
-
msgstr ""
|
251
|
+
msgstr "Grupo de usuário associado"
|
255
252
|
|
256
253
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:172
|
257
|
-
#, fuzzy
|
258
254
|
msgid "Could not associate the user group"
|
259
|
-
msgstr "Não
|
255
|
+
msgstr "Não pode associar o grupo de usuário"
|
260
256
|
|
261
257
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:177
|
262
258
|
msgid "Disassociate an user group"
|
@@ -264,12 +260,11 @@ msgstr "Desassociar um grupo de usuário"
|
|
264
260
|
|
265
261
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:181
|
266
262
|
msgid "The user group has been disassociated"
|
267
|
-
msgstr ""
|
263
|
+
msgstr "o grupo de usuários foi desassociados"
|
268
264
|
|
269
265
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:182
|
270
|
-
#, fuzzy
|
271
266
|
msgid "Could not disassociate the user group"
|
272
|
-
msgstr "Não
|
267
|
+
msgstr "Não pode desassociar o grupo de usuários"
|
273
268
|
|
274
269
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:191
|
275
270
|
msgid "Associate a configuration template"
|
@@ -408,12 +403,12 @@ msgid ""
|
|
408
403
|
"You are currently not logged in to any service.\n"
|
409
404
|
"Use the service to set credentials."
|
410
405
|
msgstr ""
|
411
|
-
"
|
412
|
-
"
|
406
|
+
"No momento você não esta logado em nenhum serviço. \n"
|
407
|
+
"Usar o serviço para definir credenciais."
|
413
408
|
|
414
409
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:7
|
415
410
|
msgid "Manage LDAP auth sources."
|
416
|
-
msgstr ""
|
411
|
+
msgstr "Gerenciar fontes de autenticação LDAP"
|
417
412
|
|
418
413
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:15
|
419
414
|
msgid "LDAPS?"
|
@@ -425,11 +420,11 @@ msgstr "Porta"
|
|
425
420
|
|
426
421
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:17
|
427
422
|
msgid "Server Type"
|
428
|
-
msgstr "Tipo de
|
423
|
+
msgstr "Tipo de servidor"
|
429
424
|
|
430
425
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:27
|
431
426
|
msgid "Account Username"
|
432
|
-
msgstr ""
|
427
|
+
msgstr "Nome de usuário da Conta"
|
433
428
|
|
434
429
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:28
|
435
430
|
msgid "Base DN"
|
@@ -441,11 +436,11 @@ msgstr "Filtro LDAP"
|
|
441
436
|
|
442
437
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:30
|
443
438
|
msgid "Automatically Create Accounts?"
|
444
|
-
msgstr ""
|
439
|
+
msgstr "Criar contas automaticamente?"
|
445
440
|
|
446
441
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:31
|
447
442
|
msgid "Login Name Attribute"
|
448
|
-
msgstr "Atributo
|
443
|
+
msgstr "Atributo de nome de Login"
|
449
444
|
|
450
445
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:32
|
451
446
|
msgid "First Name Attribute"
|
@@ -453,65 +448,65 @@ msgstr "Atributo de Primeiro Nome"
|
|
453
448
|
|
454
449
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:33
|
455
450
|
msgid "Last Name Attribute"
|
456
|
-
msgstr "Atributo
|
451
|
+
msgstr "Atributo do Sobrenome"
|
457
452
|
|
458
453
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:34
|
459
454
|
msgid "Email Address Attribute"
|
460
|
-
msgstr "Atributo de
|
455
|
+
msgstr "Atributo de endereço de email"
|
461
456
|
|
462
457
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:35
|
463
458
|
msgid "Photo Attribute"
|
464
|
-
msgstr "Atributo de
|
459
|
+
msgstr "Atributo de foto"
|
465
460
|
|
466
461
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:43
|
467
462
|
msgid "Auth source created"
|
468
|
-
msgstr ""
|
463
|
+
msgstr "Fonte de autenticação criada"
|
469
464
|
|
470
465
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:44
|
471
466
|
msgid "Could not create the Auth Source"
|
472
|
-
msgstr ""
|
467
|
+
msgstr "Não foi possível criar a Fonte de Autenticação"
|
473
468
|
|
474
469
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:51
|
475
470
|
msgid "Auth source deleted"
|
476
|
-
msgstr ""
|
471
|
+
msgstr "Fonte de autenticação removida"
|
477
472
|
|
478
473
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:52
|
479
474
|
msgid "Could not delete the Auth Source"
|
480
|
-
msgstr ""
|
475
|
+
msgstr "Não foi possível remover a Fonte de Autenticação"
|
481
476
|
|
482
477
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:59
|
483
478
|
msgid "Auth source updated"
|
484
|
-
msgstr ""
|
479
|
+
msgstr "Fonte de autenticação atualizada"
|
485
480
|
|
486
481
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:60
|
487
482
|
msgid "Could not update the Auth Source"
|
488
|
-
msgstr ""
|
483
|
+
msgstr "Não foi possível atualizar a Fonte de Autenticação"
|
489
484
|
|
490
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
485
|
+
#: ../lib/hammer_cli_foreman/commands.rb:87
|
491
486
|
msgid "Received data of unknown format"
|
492
487
|
msgstr "Dados recebidos de formato desconhecido"
|
493
488
|
|
494
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
489
|
+
#: ../lib/hammer_cli_foreman/commands.rb:195
|
495
490
|
msgid "Could not find %{resource}. Some search options were missing, please see --help."
|
496
|
-
msgstr ""
|
491
|
+
msgstr "Não foi possível encontrar o %{resource}. Algumas opções estavam faltando, por favor veja --help."
|
497
492
|
|
498
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
493
|
+
#: ../lib/hammer_cli_foreman/commands.rb:197
|
499
494
|
msgid "Could not find %{resource}, please set option %{switches}."
|
500
|
-
msgstr ""
|
495
|
+
msgstr "Não foi possível encontrar %{resource}, por favor defina a opção %{switches}."
|
501
496
|
|
502
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
497
|
+
#: ../lib/hammer_cli_foreman/commands.rb:199
|
503
498
|
msgid "Could not find %{resource}, please set one of options %{switches}."
|
504
|
-
msgstr ""
|
499
|
+
msgstr "Não foi possível encontrar %{resource}, por favor defina uma das opções %{switches}."
|
505
500
|
|
506
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
501
|
+
#: ../lib/hammer_cli_foreman/commands.rb:521
|
507
502
|
msgid "Associate a resource"
|
508
503
|
msgstr "Associar um recurso"
|
509
504
|
|
510
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
505
|
+
#: ../lib/hammer_cli_foreman/commands.rb:543
|
511
506
|
msgid "Disassociate a resource"
|
512
507
|
msgstr "Desassociar um recurso"
|
513
508
|
|
514
|
-
#: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:
|
509
|
+
#: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:334 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:77 ../lib/hammer_cli_foreman/smart_variable.rb:65
|
515
510
|
msgid "Value"
|
516
511
|
msgstr "Valor"
|
517
512
|
|
@@ -551,7 +546,7 @@ msgstr "Manipular parâmetros globais."
|
|
551
546
|
msgid "Provider"
|
552
547
|
msgstr "Provedor"
|
553
548
|
|
554
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40 ../lib/hammer_cli_foreman/host.rb:
|
549
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40 ../lib/hammer_cli_foreman/host.rb:208 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
|
555
550
|
msgid "UUID"
|
556
551
|
msgstr "UUID"
|
557
552
|
|
@@ -605,23 +600,27 @@ msgstr "Não foi possível remover um recurso de computador"
|
|
605
600
|
|
606
601
|
#: ../lib/hammer_cli_foreman/credentials.rb:26
|
607
602
|
msgid "[Foreman] Username: "
|
608
|
-
msgstr "[Foreman]
|
603
|
+
msgstr "[Foreman] nome de usuário: "
|
609
604
|
|
610
605
|
#: ../lib/hammer_cli_foreman/credentials.rb:33
|
611
606
|
msgid "[Foreman] Password for %s: "
|
612
|
-
msgstr "[Foreman]
|
607
|
+
msgstr "[Foreman] senha para %s: "
|
608
|
+
|
609
|
+
#: ../lib/hammer_cli_foreman/defaults.rb:7
|
610
|
+
msgid "Use the default organization and/or location from the server"
|
611
|
+
msgstr ""
|
613
612
|
|
614
613
|
#: ../lib/hammer_cli_foreman/domain.rb:6
|
615
614
|
msgid "ID of DNS proxy to use within this domain"
|
616
|
-
msgstr ""
|
615
|
+
msgstr "ID do Proxy DNS para usar dentro deste domínio"
|
617
616
|
|
618
617
|
#: ../lib/hammer_cli_foreman/domain.rb:7
|
619
618
|
msgid "Name of DNS proxy to use within this domain"
|
620
|
-
msgstr ""
|
619
|
+
msgstr "Nome do Proxy DNS para usar dentro deste domínio"
|
621
620
|
|
622
621
|
#: ../lib/hammer_cli_foreman/domain.rb:43
|
623
622
|
msgid "DNS Id"
|
624
|
-
msgstr "DNS
|
623
|
+
msgstr "ID de DNS "
|
625
624
|
|
626
625
|
#: ../lib/hammer_cli_foreman/domain.rb:57
|
627
626
|
msgid "Domain [%{name}] created"
|
@@ -693,27 +692,27 @@ msgstr "Não foi possível atualizar o ambiente"
|
|
693
692
|
|
694
693
|
#: ../lib/hammer_cli_foreman/environment.rb:50
|
695
694
|
msgid "Environment deleted"
|
696
|
-
msgstr "Ambiente
|
695
|
+
msgstr "Ambiente removido"
|
697
696
|
|
698
697
|
#: ../lib/hammer_cli_foreman/environment.rb:51
|
699
698
|
msgid "Could not delete the environment"
|
700
|
-
msgstr "Não foi possivel
|
699
|
+
msgstr "Não foi possivel remover o ambiente"
|
701
700
|
|
702
701
|
#: ../lib/hammer_cli_foreman/exception_handler.rb:41
|
703
702
|
msgid "Forbidden - server refused to process the request"
|
704
|
-
msgstr "Proibído - servidor recusou
|
703
|
+
msgstr "Proibído - servidor recusou o processamento da requisição"
|
705
704
|
|
706
705
|
#: ../lib/hammer_cli_foreman/exception_handler.rb:75
|
707
706
|
msgid "Could not load the API description from the server"
|
708
|
-
msgstr ""
|
707
|
+
msgstr "Não foi possível carregar a descrição do API do servidor"
|
709
708
|
|
710
709
|
#: ../lib/hammer_cli_foreman/exception_handler.rb:76
|
711
710
|
msgid "is the server down?"
|
712
|
-
msgstr ""
|
711
|
+
msgstr "o servidor está desligado?"
|
713
712
|
|
714
713
|
#: ../lib/hammer_cli_foreman/exception_handler.rb:77
|
715
714
|
msgid "was '%s' run on the server when using apipie cache? (typical production settings)"
|
716
|
-
msgstr ""
|
715
|
+
msgstr "o '%s' foi executado no servidor ao utilizar o apipie cache? (configurações de produção típicas)"
|
717
716
|
|
718
717
|
#: ../lib/hammer_cli_foreman/external_usergroup.rb:6
|
719
718
|
msgid "View and manage user group's external user groups"
|
@@ -755,7 +754,7 @@ msgstr "Não foi possível excluir o grupo de usuário externo"
|
|
755
754
|
msgid "Host"
|
756
755
|
msgstr "Host"
|
757
756
|
|
758
|
-
#: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:
|
757
|
+
#: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:333
|
759
758
|
msgid "Fact"
|
760
759
|
msgstr "Fato"
|
761
760
|
|
@@ -779,11 +778,11 @@ msgstr "Papel"
|
|
779
778
|
msgid "Permissions"
|
780
779
|
msgstr "Permissões"
|
781
780
|
|
782
|
-
#: ../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:
|
781
|
+
#: ../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
|
783
782
|
msgid "(Miscellaneous)"
|
784
783
|
msgstr "(Miscelânea)"
|
785
784
|
|
786
|
-
#: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:
|
785
|
+
#: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:47
|
787
786
|
msgid "none"
|
788
787
|
msgstr "nenhum"
|
789
788
|
|
@@ -817,348 +816,339 @@ msgstr "Recurso"
|
|
817
816
|
|
818
817
|
#: ../lib/hammer_cli_foreman/host.rb:15
|
819
818
|
msgid "Login of the owner"
|
820
|
-
msgstr ""
|
819
|
+
msgstr "Login do Proprietário"
|
821
820
|
|
822
821
|
#: ../lib/hammer_cli_foreman/host.rb:17
|
823
822
|
msgid "ID of the owner"
|
824
|
-
msgstr ""
|
823
|
+
msgstr "ID do Proprietário"
|
825
824
|
|
826
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
825
|
+
#: ../lib/hammer_cli_foreman/host.rb:44
|
827
826
|
msgid "Host parameters."
|
828
827
|
msgstr "Parâmetros de host."
|
829
828
|
|
830
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
829
|
+
#: ../lib/hammer_cli_foreman/host.rb:46
|
831
830
|
msgid "Compute resource attributes."
|
832
831
|
msgstr "Atributos de recurso de computador"
|
833
832
|
|
834
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
833
|
+
#: ../lib/hammer_cli_foreman/host.rb:48
|
835
834
|
msgid "Volume parameters"
|
836
835
|
msgstr "Parâmetros de volume"
|
837
836
|
|
838
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
837
|
+
#: ../lib/hammer_cli_foreman/host.rb:50
|
839
838
|
msgid "Interface parameters."
|
840
839
|
msgstr "Parâmetros de interface"
|
841
840
|
|
842
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
841
|
+
#: ../lib/hammer_cli_foreman/host.rb:64
|
843
842
|
msgid "Enter the root password for the host:"
|
844
|
-
msgstr ""
|
843
|
+
msgstr "Entre a senha original para o host"
|
845
844
|
|
846
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
845
|
+
#: ../lib/hammer_cli_foreman/host.rb:153
|
847
846
|
msgid "At least one interface must be set as primary"
|
848
|
-
msgstr ""
|
847
|
+
msgstr "Pelo menos uma interface deve ser definido como primário "
|
849
848
|
|
850
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
849
|
+
#: ../lib/hammer_cli_foreman/host.rb:156
|
851
850
|
msgid "At least one interface must be set as provision"
|
852
|
-
msgstr ""
|
851
|
+
msgstr "Pelo menos uma interface deve ser definida como fornecida"
|
853
852
|
|
854
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
853
|
+
#: ../lib/hammer_cli_foreman/host.rb:172 ../lib/hammer_cli_foreman/host.rb:248 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
|
855
854
|
msgid "Operating System"
|
856
855
|
msgstr "Sistema Operacional"
|
857
856
|
|
858
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
857
|
+
#: ../lib/hammer_cli_foreman/host.rb:173 ../lib/hammer_cli_foreman/host.rb:212
|
859
858
|
msgid "Host Group"
|
860
859
|
msgstr "Grupo de Host"
|
861
860
|
|
862
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
861
|
+
#: ../lib/hammer_cli_foreman/host.rb:174 ../lib/hammer_cli_foreman/host.rb:225
|
863
862
|
msgid "IP"
|
864
863
|
msgstr "IP"
|
865
864
|
|
866
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
865
|
+
#: ../lib/hammer_cli_foreman/host.rb:175 ../lib/hammer_cli_foreman/host.rb:226
|
867
866
|
msgid "MAC"
|
868
867
|
msgstr "MAC"
|
869
868
|
|
870
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
869
|
+
#: ../lib/hammer_cli_foreman/host.rb:185
|
871
870
|
msgid "Bare Metal"
|
872
|
-
msgstr ""
|
871
|
+
msgstr "Puro metal"
|
873
872
|
|
874
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
875
|
-
#, fuzzy
|
873
|
+
#: ../lib/hammer_cli_foreman/host.rb:210
|
876
874
|
msgid "Organization"
|
877
|
-
msgstr "
|
875
|
+
msgstr "Organizacao "
|
878
876
|
|
879
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
880
|
-
#, fuzzy
|
877
|
+
#: ../lib/hammer_cli_foreman/host.rb:211
|
881
878
|
msgid "Location"
|
882
|
-
msgstr "
|
879
|
+
msgstr "Localizacao "
|
883
880
|
|
884
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
881
|
+
#: ../lib/hammer_cli_foreman/host.rb:213
|
885
882
|
msgid "Compute Resource"
|
886
883
|
msgstr "Recurso de computação"
|
887
884
|
|
888
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
889
|
-
#, fuzzy
|
885
|
+
#: ../lib/hammer_cli_foreman/host.rb:214
|
890
886
|
msgid "Compute Profile"
|
891
|
-
msgstr "Perfil
|
887
|
+
msgstr "Perfil do computador"
|
892
888
|
|
893
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
889
|
+
#: ../lib/hammer_cli_foreman/host.rb:215 ../lib/hammer_cli_foreman/hostgroup.rb:61
|
894
890
|
msgid "Environment"
|
895
891
|
msgstr "Ambiente"
|
896
892
|
|
897
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
898
|
-
#, fuzzy
|
893
|
+
#: ../lib/hammer_cli_foreman/host.rb:216
|
899
894
|
msgid "Puppet CA Id"
|
900
|
-
msgstr "
|
895
|
+
msgstr "Marionete CA Id"
|
901
896
|
|
902
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
903
|
-
#, fuzzy
|
897
|
+
#: ../lib/hammer_cli_foreman/host.rb:217
|
904
898
|
msgid "Puppet Master Id"
|
905
|
-
msgstr "
|
899
|
+
msgstr "Marionete Master Id"
|
906
900
|
|
907
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
901
|
+
#: ../lib/hammer_cli_foreman/host.rb:218
|
908
902
|
msgid "Cert name"
|
909
|
-
msgstr "Nome do
|
903
|
+
msgstr "Nome do Certificado"
|
910
904
|
|
911
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
905
|
+
#: ../lib/hammer_cli_foreman/host.rb:219 ../lib/hammer_cli_foreman/interface.rb:51
|
912
906
|
msgid "Managed"
|
913
907
|
msgstr "Gerenciado"
|
914
908
|
|
915
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
909
|
+
#: ../lib/hammer_cli_foreman/host.rb:221
|
916
910
|
msgid "Installed at"
|
917
911
|
msgstr "Instalado em"
|
918
912
|
|
919
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
913
|
+
#: ../lib/hammer_cli_foreman/host.rb:222 ../lib/hammer_cli_foreman/report.rb:12
|
920
914
|
msgid "Last report"
|
921
915
|
msgstr "Último relatório"
|
922
916
|
|
923
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
917
|
+
#: ../lib/hammer_cli_foreman/host.rb:224 ../lib/hammer_cli_foreman/subnet.rb:12
|
924
918
|
msgid "Network"
|
925
919
|
msgstr "Rede"
|
926
920
|
|
927
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
921
|
+
#: ../lib/hammer_cli_foreman/host.rb:227 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
|
928
922
|
msgid "Subnet"
|
929
|
-
msgstr "
|
923
|
+
msgstr "Subrede"
|
930
924
|
|
931
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
925
|
+
#: ../lib/hammer_cli_foreman/host.rb:228 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
|
932
926
|
msgid "Domain"
|
933
927
|
msgstr "Domínio"
|
934
928
|
|
935
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
929
|
+
#: ../lib/hammer_cli_foreman/host.rb:229
|
936
930
|
msgid "Service provider"
|
937
|
-
msgstr ""
|
931
|
+
msgstr "Provedor de servico "
|
938
932
|
|
939
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
933
|
+
#: ../lib/hammer_cli_foreman/host.rb:230
|
940
934
|
msgid "SP Name"
|
941
935
|
msgstr "Nome do SP"
|
942
936
|
|
943
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
937
|
+
#: ../lib/hammer_cli_foreman/host.rb:231
|
944
938
|
msgid "SP IP"
|
945
939
|
msgstr "SP IP"
|
946
940
|
|
947
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
941
|
+
#: ../lib/hammer_cli_foreman/host.rb:232
|
948
942
|
msgid "SP MAC"
|
949
943
|
msgstr "SP MAC"
|
950
944
|
|
951
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
945
|
+
#: ../lib/hammer_cli_foreman/host.rb:233
|
952
946
|
msgid "SP Subnet"
|
953
947
|
msgstr "SP Subnet"
|
954
948
|
|
955
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
956
|
-
#, fuzzy
|
949
|
+
#: ../lib/hammer_cli_foreman/host.rb:237
|
957
950
|
msgid "Network interfaces"
|
958
|
-
msgstr "
|
951
|
+
msgstr "Interfaces da rede"
|
959
952
|
|
960
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
953
|
+
#: ../lib/hammer_cli_foreman/host.rb:239 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
|
961
954
|
msgid "Identifier"
|
962
|
-
msgstr ""
|
955
|
+
msgstr "Identificador "
|
963
956
|
|
964
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
957
|
+
#: ../lib/hammer_cli_foreman/host.rb:240 ../lib/hammer_cli_foreman/interface.rb:25 ../lib/hammer_cli_foreman/interface.rb:45 ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:54 ../lib/hammer_cli_foreman/template.rb:27
|
965
958
|
msgid "Type"
|
966
959
|
msgstr "Tipo"
|
967
960
|
|
968
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
961
|
+
#: ../lib/hammer_cli_foreman/host.rb:241 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
|
969
962
|
msgid "MAC address"
|
970
|
-
msgstr ""
|
963
|
+
msgstr "Endereço MAC "
|
971
964
|
|
972
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
965
|
+
#: ../lib/hammer_cli_foreman/host.rb:242 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
|
973
966
|
msgid "IP address"
|
974
|
-
msgstr ""
|
967
|
+
msgstr "Endereco de IP"
|
975
968
|
|
976
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
969
|
+
#: ../lib/hammer_cli_foreman/host.rb:243
|
977
970
|
msgid "FQDN"
|
978
|
-
msgstr ""
|
971
|
+
msgstr "FQDN"
|
979
972
|
|
980
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
981
|
-
#, fuzzy
|
973
|
+
#: ../lib/hammer_cli_foreman/host.rb:246
|
982
974
|
msgid "Operating system"
|
983
|
-
msgstr "Sistema
|
975
|
+
msgstr "Sistema operacional"
|
984
976
|
|
985
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
977
|
+
#: ../lib/hammer_cli_foreman/host.rb:247 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
|
986
978
|
msgid "Architecture"
|
987
979
|
msgstr "Arquitetura"
|
988
980
|
|
989
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
981
|
+
#: ../lib/hammer_cli_foreman/host.rb:251
|
990
982
|
msgid "Build"
|
991
983
|
msgstr "Construir"
|
992
984
|
|
993
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
985
|
+
#: ../lib/hammer_cli_foreman/host.rb:252 ../lib/hammer_cli_foreman/hostgroup.rb:77
|
994
986
|
msgid "Medium"
|
995
987
|
msgstr "Meio"
|
996
988
|
|
997
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
989
|
+
#: ../lib/hammer_cli_foreman/host.rb:253 ../lib/hammer_cli_foreman/hostgroup.rb:76
|
998
990
|
msgid "Partition Table"
|
999
991
|
msgstr "Tabela de Partição"
|
1000
992
|
|
1001
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1002
|
-
#, fuzzy
|
993
|
+
#: ../lib/hammer_cli_foreman/host.rb:254
|
1003
994
|
msgid "Custom partition table"
|
1004
|
-
msgstr "
|
995
|
+
msgstr "Tabela de partição personalizada "
|
1005
996
|
|
1006
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
997
|
+
#: ../lib/hammer_cli_foreman/host.rb:257
|
1007
998
|
msgid "Image"
|
1008
999
|
msgstr "Imagem"
|
1009
1000
|
|
1010
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1001
|
+
#: ../lib/hammer_cli_foreman/host.rb:258
|
1011
1002
|
msgid "Image file"
|
1012
1003
|
msgstr "Arquivo de Imagem"
|
1013
1004
|
|
1014
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1005
|
+
#: ../lib/hammer_cli_foreman/host.rb:259
|
1015
1006
|
msgid "Use image"
|
1016
1007
|
msgstr "Usar imagem"
|
1017
1008
|
|
1018
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1009
|
+
#: ../lib/hammer_cli_foreman/host.rb:265
|
1019
1010
|
msgid "Additional info"
|
1020
|
-
msgstr ""
|
1011
|
+
msgstr "Informação adicional "
|
1021
1012
|
|
1022
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1013
|
+
#: ../lib/hammer_cli_foreman/host.rb:266
|
1023
1014
|
msgid "Owner Id"
|
1024
1015
|
msgstr "ID de Proprietário"
|
1025
1016
|
|
1026
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1017
|
+
#: ../lib/hammer_cli_foreman/host.rb:267
|
1027
1018
|
msgid "Owner Type"
|
1028
1019
|
msgstr "Tipo de Proprietário"
|
1029
1020
|
|
1030
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1021
|
+
#: ../lib/hammer_cli_foreman/host.rb:268
|
1031
1022
|
msgid "Enabled"
|
1032
1023
|
msgstr "Habilitado"
|
1033
1024
|
|
1034
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1025
|
+
#: ../lib/hammer_cli_foreman/host.rb:269 ../lib/hammer_cli_foreman/hostgroup.rb:62
|
1035
1026
|
msgid "Model"
|
1036
1027
|
msgstr "Modelo"
|
1037
1028
|
|
1038
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1029
|
+
#: ../lib/hammer_cli_foreman/host.rb:270
|
1039
1030
|
msgid "Comment"
|
1040
1031
|
msgstr "Comentário"
|
1041
1032
|
|
1042
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1033
|
+
#: ../lib/hammer_cli_foreman/host.rb:283
|
1043
1034
|
msgid "Status"
|
1044
|
-
msgstr "
|
1035
|
+
msgstr "Estado"
|
1045
1036
|
|
1046
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1037
|
+
#: ../lib/hammer_cli_foreman/host.rb:284
|
1047
1038
|
msgid "Power"
|
1048
1039
|
msgstr "Energia"
|
1049
1040
|
|
1050
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1041
|
+
#: ../lib/hammer_cli_foreman/host.rb:320
|
1051
1042
|
msgid "Puppet run triggered"
|
1052
1043
|
msgstr "Execução de Puppet foi disparada"
|
1053
1044
|
|
1054
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1045
|
+
#: ../lib/hammer_cli_foreman/host.rb:373
|
1055
1046
|
msgid "Host created"
|
1056
1047
|
msgstr "Host foi criado"
|
1057
1048
|
|
1058
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1049
|
+
#: ../lib/hammer_cli_foreman/host.rb:374
|
1059
1050
|
msgid "Could not create the host"
|
1060
1051
|
msgstr "Não foi possível criar o host"
|
1061
1052
|
|
1062
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1053
|
+
#: ../lib/hammer_cli_foreman/host.rb:395
|
1063
1054
|
msgid "Host updated"
|
1064
1055
|
msgstr "Host atualizado"
|
1065
1056
|
|
1066
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1057
|
+
#: ../lib/hammer_cli_foreman/host.rb:396
|
1067
1058
|
msgid "Could not update the host"
|
1068
1059
|
msgstr "Não foi possível atualizar o host"
|
1069
1060
|
|
1070
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1061
|
+
#: ../lib/hammer_cli_foreman/host.rb:403
|
1071
1062
|
msgid "Host deleted"
|
1072
1063
|
msgstr "Host removido"
|
1073
1064
|
|
1074
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1065
|
+
#: ../lib/hammer_cli_foreman/host.rb:404
|
1075
1066
|
msgid "Could not delete the host"
|
1076
1067
|
msgstr "Não foi possível remover o host"
|
1077
1068
|
|
1078
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1069
|
+
#: ../lib/hammer_cli_foreman/host.rb:411
|
1079
1070
|
msgid "Create or update parameter for a host."
|
1080
1071
|
msgstr "Criar ou atualizar o parâmetro para um hos."
|
1081
1072
|
|
1082
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1073
|
+
#: ../lib/hammer_cli_foreman/host.rb:413
|
1083
1074
|
msgid "Host parameter updated"
|
1084
1075
|
msgstr "Host do parâmetro atualizado"
|
1085
1076
|
|
1086
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1077
|
+
#: ../lib/hammer_cli_foreman/host.rb:414
|
1087
1078
|
msgid "New host parameter created"
|
1088
1079
|
msgstr "Novo parâmetro do host criado"
|
1089
1080
|
|
1090
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1081
|
+
#: ../lib/hammer_cli_foreman/host.rb:415
|
1091
1082
|
msgid "Could not set host parameter"
|
1092
1083
|
msgstr "Não foi possível definir parâmetro do host"
|
1093
1084
|
|
1094
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1085
|
+
#: ../lib/hammer_cli_foreman/host.rb:427
|
1095
1086
|
msgid "Delete parameter for a host."
|
1096
1087
|
msgstr "Remover parâmetro para um host."
|
1097
1088
|
|
1098
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1089
|
+
#: ../lib/hammer_cli_foreman/host.rb:429
|
1099
1090
|
msgid "Host parameter deleted"
|
1100
1091
|
msgstr "Parâmetro do host removido"
|
1101
1092
|
|
1102
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1093
|
+
#: ../lib/hammer_cli_foreman/host.rb:444
|
1103
1094
|
msgid "Power a host on"
|
1104
1095
|
msgstr "Ligar um host"
|
1105
1096
|
|
1106
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1097
|
+
#: ../lib/hammer_cli_foreman/host.rb:445
|
1107
1098
|
msgid "The host is starting."
|
1108
1099
|
msgstr "O host está iniciando"
|
1109
1100
|
|
1110
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1101
|
+
#: ../lib/hammer_cli_foreman/host.rb:462
|
1111
1102
|
msgid "Force turning off a host"
|
1112
1103
|
msgstr "Forçar desligar um host"
|
1113
1104
|
|
1114
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1105
|
+
#: ../lib/hammer_cli_foreman/host.rb:467
|
1115
1106
|
msgid "Power a host off"
|
1116
1107
|
msgstr "Desligar um host"
|
1117
1108
|
|
1118
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1109
|
+
#: ../lib/hammer_cli_foreman/host.rb:479
|
1119
1110
|
msgid "Power off forced."
|
1120
1111
|
msgstr "Desligar forçado"
|
1121
1112
|
|
1122
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1113
|
+
#: ../lib/hammer_cli_foreman/host.rb:481
|
1123
1114
|
msgid "Powering the host off."
|
1124
1115
|
msgstr "Desligando o host."
|
1125
1116
|
|
1126
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1117
|
+
#: ../lib/hammer_cli_foreman/host.rb:498
|
1127
1118
|
msgid "Reboot a host"
|
1128
1119
|
msgstr "Reinicializar o host"
|
1129
1120
|
|
1130
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1121
|
+
#: ../lib/hammer_cli_foreman/host.rb:499
|
1131
1122
|
msgid "Host reboot started."
|
1132
1123
|
msgstr "Reinicialização do host iniciou."
|
1133
1124
|
|
1134
1125
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:10
|
1135
1126
|
msgid "List of puppetclass ids"
|
1136
|
-
msgstr ""
|
1127
|
+
msgstr "Lista de ids de puppetclass"
|
1137
1128
|
|
1138
1129
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:12
|
1139
1130
|
msgid "Name of puppet CA proxy"
|
1140
|
-
msgstr ""
|
1131
|
+
msgstr "nome do proxy CA do puppet"
|
1141
1132
|
|
1142
1133
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:13
|
1143
1134
|
msgid "Name of puppet proxy"
|
1144
|
-
msgstr ""
|
1135
|
+
msgstr "nome do puppet proxy"
|
1145
1136
|
|
1146
1137
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:14
|
1147
1138
|
msgid "Name of parent hostgroup"
|
1148
|
-
msgstr ""
|
1139
|
+
msgstr "Nome do hostgroup pai"
|
1149
1140
|
|
1150
1141
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:17
|
1151
|
-
#, fuzzy
|
1152
1142
|
msgid "Root password"
|
1153
|
-
msgstr "Senha
|
1143
|
+
msgstr "Senha Root"
|
1154
1144
|
|
1155
1145
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:23
|
1156
1146
|
msgid "Enter the root password for the host group:"
|
1157
|
-
msgstr ""
|
1147
|
+
msgstr "Insira a senha do root para o grupo host"
|
1158
1148
|
|
1159
1149
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:59 ../lib/hammer_cli_foreman/operating_system.rb:11
|
1160
1150
|
msgid "Title"
|
1161
|
-
msgstr "
|
1151
|
+
msgstr "Tratamento"
|
1162
1152
|
|
1163
1153
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:78
|
1164
1154
|
msgid "Puppet CA Proxy Id"
|
@@ -1166,7 +1156,7 @@ msgstr "Puppet CA Proxy Id"
|
|
1166
1156
|
|
1167
1157
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:79
|
1168
1158
|
msgid "Puppet Master Proxy Id"
|
1169
|
-
msgstr "Puppet Master Proxy
|
1159
|
+
msgstr "ID do Puppet Master Proxy"
|
1170
1160
|
|
1171
1161
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:80
|
1172
1162
|
msgid "ComputeProfile"
|
@@ -1174,7 +1164,7 @@ msgstr "Perfil de Computador"
|
|
1174
1164
|
|
1175
1165
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:84
|
1176
1166
|
msgid "Parent Id"
|
1177
|
-
msgstr ""
|
1167
|
+
msgstr "ID de Pais"
|
1178
1168
|
|
1179
1169
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:94
|
1180
1170
|
msgid "Hostgroup created"
|
@@ -1245,9 +1235,8 @@ msgid "Host name"
|
|
1245
1235
|
msgstr "Nome do Host"
|
1246
1236
|
|
1247
1237
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:43
|
1248
|
-
#, fuzzy
|
1249
1238
|
msgid "Hostgroup title"
|
1250
|
-
msgstr "
|
1239
|
+
msgstr "Titulo do grupo host"
|
1251
1240
|
|
1252
1241
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:43
|
1253
1242
|
msgid "Hostgroup name"
|
@@ -1271,7 +1260,7 @@ msgstr "Nome da Organização"
|
|
1271
1260
|
|
1272
1261
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:50
|
1273
1262
|
msgid "Operating system title"
|
1274
|
-
msgstr "Título do
|
1263
|
+
msgstr "Título do sistema operacional"
|
1275
1264
|
|
1276
1265
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:52
|
1277
1266
|
msgid "Partition table name"
|
@@ -1294,45 +1283,44 @@ msgid "User role name"
|
|
1294
1283
|
msgstr "Nome da função de usuário"
|
1295
1284
|
|
1296
1285
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:57
|
1297
|
-
#, fuzzy
|
1298
1286
|
msgid "Setting name"
|
1299
|
-
msgstr "Nome
|
1287
|
+
msgstr "Nome da configuracao "
|
1300
1288
|
|
1301
1289
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:58
|
1302
1290
|
msgid "Subnet name"
|
1303
|
-
msgstr "Nome da
|
1291
|
+
msgstr "Nome da subrede"
|
1304
1292
|
|
1305
1293
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:60
|
1306
1294
|
msgid "User's login to search by"
|
1307
|
-
msgstr "Login de usuário a buscar
|
1295
|
+
msgstr "Login de usuário a buscar"
|
1308
1296
|
|
1309
1297
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:61
|
1310
1298
|
msgid "Common parameter name"
|
1311
|
-
msgstr "Nome parâmetro comum"
|
1299
|
+
msgstr "Nome do parâmetro comum"
|
1312
1300
|
|
1313
1301
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:62
|
1314
1302
|
msgid "Smart class parameter name"
|
1315
|
-
msgstr "Nome de parâmetro de classe
|
1303
|
+
msgstr "Nome de parâmetro de classe inteligente"
|
1316
1304
|
|
1317
1305
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:63
|
1318
|
-
#, fuzzy
|
1319
1306
|
msgid "Smart variable name"
|
1320
|
-
msgstr "
|
1307
|
+
msgstr "Nome da variável inteligente"
|
1321
1308
|
|
1322
1309
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:65
|
1323
1310
|
msgid "Name to search by"
|
1324
|
-
msgstr "Nome a procurar
|
1311
|
+
msgstr "Nome a procurar"
|
1325
1312
|
|
1326
1313
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:153
|
1327
1314
|
msgid "one of %s not found"
|
1328
|
-
msgstr "um
|
1315
|
+
msgstr "um dos %s não foi encontrado"
|
1329
1316
|
|
1330
1317
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:200
|
1331
1318
|
msgid "%s not found"
|
1332
1319
|
msgstr "%s não foi encontrado"
|
1333
1320
|
|
1334
1321
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:201
|
1335
|
-
|
1322
|
+
#, fuzzy
|
1323
|
+
msgid "found more than one %s"
|
1336
1324
|
msgstr "%s encontrado mais de uma vez"
|
1337
1325
|
|
1338
1326
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:212
|
@@ -1381,111 +1369,99 @@ msgstr "Não foi possível remover a imagem"
|
|
1381
1369
|
|
1382
1370
|
#: ../lib/hammer_cli_foreman/interface.rb:6
|
1383
1371
|
msgid "View and manage host's network interfaces"
|
1384
|
-
msgstr ""
|
1372
|
+
msgstr "Ver e gerir as interfaces de rede do host's"
|
1385
1373
|
|
1386
1374
|
#: ../lib/hammer_cli_foreman/interface.rb:10
|
1387
|
-
#, fuzzy
|
1388
1375
|
msgid "primary"
|
1389
|
-
msgstr "
|
1376
|
+
msgstr "Primário"
|
1390
1377
|
|
1391
1378
|
#: ../lib/hammer_cli_foreman/interface.rb:11
|
1392
1379
|
msgid "provision"
|
1393
|
-
msgstr ""
|
1380
|
+
msgstr "provisao "
|
1394
1381
|
|
1395
1382
|
#: ../lib/hammer_cli_foreman/interface.rb:28 ../lib/hammer_cli_foreman/interface.rb:48
|
1396
|
-
#, fuzzy
|
1397
1383
|
msgid "DNS name"
|
1398
|
-
msgstr "Nome do
|
1384
|
+
msgstr "Nome do DNS"
|
1399
1385
|
|
1400
1386
|
#: ../lib/hammer_cli_foreman/interface.rb:52
|
1401
|
-
#, fuzzy
|
1402
1387
|
msgid "Primary"
|
1403
|
-
msgstr "
|
1388
|
+
msgstr "Primário"
|
1404
1389
|
|
1405
1390
|
#: ../lib/hammer_cli_foreman/interface.rb:53
|
1406
|
-
#, fuzzy
|
1407
1391
|
msgid "Provision"
|
1408
|
-
msgstr "
|
1392
|
+
msgstr "Provisão"
|
1409
1393
|
|
1410
1394
|
#: ../lib/hammer_cli_foreman/interface.rb:54
|
1411
1395
|
msgid "Virtual"
|
1412
|
-
msgstr ""
|
1396
|
+
msgstr "Virtual"
|
1413
1397
|
|
1414
1398
|
#: ../lib/hammer_cli_foreman/interface.rb:55
|
1415
1399
|
msgid "Tag"
|
1416
|
-
msgstr ""
|
1400
|
+
msgstr "Etiqueta"
|
1417
1401
|
|
1418
1402
|
#: ../lib/hammer_cli_foreman/interface.rb:56
|
1419
1403
|
msgid "Attached to"
|
1420
|
-
msgstr ""
|
1404
|
+
msgstr "Anexado para"
|
1421
1405
|
|
1422
1406
|
#: ../lib/hammer_cli_foreman/interface.rb:58
|
1423
1407
|
msgid "BMC"
|
1424
|
-
msgstr ""
|
1408
|
+
msgstr "BMC"
|
1425
1409
|
|
1426
1410
|
#: ../lib/hammer_cli_foreman/interface.rb:63
|
1427
1411
|
msgid "Bond"
|
1428
|
-
msgstr ""
|
1412
|
+
msgstr "Bond"
|
1429
1413
|
|
1430
1414
|
#: ../lib/hammer_cli_foreman/interface.rb:64
|
1431
|
-
#, fuzzy
|
1432
1415
|
msgid "Mode"
|
1433
|
-
msgstr "
|
1416
|
+
msgstr "Modo"
|
1434
1417
|
|
1435
1418
|
#: ../lib/hammer_cli_foreman/interface.rb:65
|
1436
1419
|
msgid "Attached devices"
|
1437
|
-
msgstr ""
|
1420
|
+
msgstr "Dispositivos conectados "
|
1438
1421
|
|
1439
1422
|
#: ../lib/hammer_cli_foreman/interface.rb:66
|
1440
1423
|
msgid "Bond options"
|
1441
|
-
msgstr ""
|
1424
|
+
msgstr "Opcoes de Bond"
|
1442
1425
|
|
1443
1426
|
#: ../lib/hammer_cli_foreman/interface.rb:77
|
1444
1427
|
msgid "Should this interface be used for constructing the FQDN of the host? Each managed hosts needs to have one primary interface."
|
1445
|
-
msgstr ""
|
1428
|
+
msgstr "Está interface deverá ser usada para a construção do FQDN do host? Cada gerenciamento de host precisa ter uma interface primária."
|
1446
1429
|
|
1447
1430
|
#: ../lib/hammer_cli_foreman/interface.rb:78
|
1448
1431
|
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."
|
1449
|
-
msgstr ""
|
1432
|
+
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."
|
1450
1433
|
|
1451
1434
|
#: ../lib/hammer_cli_foreman/interface.rb:128
|
1452
|
-
#, fuzzy
|
1453
1435
|
msgid "Interface created"
|
1454
|
-
msgstr "
|
1436
|
+
msgstr "Interface criada"
|
1455
1437
|
|
1456
1438
|
#: ../lib/hammer_cli_foreman/interface.rb:129
|
1457
|
-
#, fuzzy
|
1458
1439
|
msgid "Could not create the interface"
|
1459
|
-
msgstr "
|
1440
|
+
msgstr "Nao foi possível criar a interface"
|
1460
1441
|
|
1461
1442
|
#: ../lib/hammer_cli_foreman/interface.rb:131 ../lib/hammer_cli_foreman/interface.rb:144
|
1462
|
-
#, fuzzy
|
1463
1443
|
msgid "Compute resource specific attributes."
|
1464
|
-
msgstr "Atributos de
|
1444
|
+
msgstr "Atributos específicos de recursos de computação"
|
1465
1445
|
|
1466
1446
|
#: ../lib/hammer_cli_foreman/interface.rb:141
|
1467
|
-
#, fuzzy
|
1468
1447
|
msgid "Interface updated"
|
1469
|
-
msgstr "
|
1448
|
+
msgstr "Interface atualizada"
|
1470
1449
|
|
1471
1450
|
#: ../lib/hammer_cli_foreman/interface.rb:142
|
1472
|
-
#, fuzzy
|
1473
1451
|
msgid "Could not update the interface"
|
1474
|
-
msgstr "Não foi possível atualizar a
|
1452
|
+
msgstr "Não foi possível atualizar a interface"
|
1475
1453
|
|
1476
1454
|
#: ../lib/hammer_cli_foreman/interface.rb:154
|
1477
|
-
#, fuzzy
|
1478
1455
|
msgid "Interface deleted"
|
1479
|
-
msgstr "
|
1456
|
+
msgstr "Interface excluída"
|
1480
1457
|
|
1481
1458
|
#: ../lib/hammer_cli_foreman/interface.rb:155
|
1482
|
-
#, fuzzy
|
1483
1459
|
msgid "Could not delete the interface"
|
1484
|
-
msgstr "Não foi possível
|
1460
|
+
msgstr "Não foi possível excluir a interface"
|
1485
1461
|
|
1486
1462
|
#: ../lib/hammer_cli_foreman/location.rb:24 ../lib/hammer_cli_foreman/location.rb:62 ../lib/hammer_cli_foreman/location.rb:74
|
1487
1463
|
msgid "Location numeric id to search by"
|
1488
|
-
msgstr "ID do local numérico a procurar
|
1464
|
+
msgstr "ID do local numérico a procurar "
|
1489
1465
|
|
1490
1466
|
#: ../lib/hammer_cli_foreman/location.rb:37 ../lib/hammer_cli_foreman/references.rb:18
|
1491
1467
|
msgid "Organizations"
|
@@ -1515,6 +1491,40 @@ msgstr "Local removido"
|
|
1515
1491
|
msgid "Could not delete the location"
|
1516
1492
|
msgstr "Não foi possível remover o local"
|
1517
1493
|
|
1494
|
+
#: ../lib/hammer_cli_foreman/location.rb:86
|
1495
|
+
#, fuzzy
|
1496
|
+
msgid "Create or update parameter for a location."
|
1497
|
+
msgstr "Criar ou atualizar o parâmetro para um domínio."
|
1498
|
+
|
1499
|
+
#: ../lib/hammer_cli_foreman/location.rb:88 ../lib/hammer_cli_foreman/organization.rb:89
|
1500
|
+
#, fuzzy
|
1501
|
+
msgid "Parameter [%{name}] updated to value [%{value}]"
|
1502
|
+
msgstr "Parâmetro [%{name}] atualizado para [%{value}]."
|
1503
|
+
|
1504
|
+
#: ../lib/hammer_cli_foreman/location.rb:89 ../lib/hammer_cli_foreman/organization.rb:90
|
1505
|
+
msgid "Parameter [%{name}] created with value [%{value}]"
|
1506
|
+
msgstr ""
|
1507
|
+
|
1508
|
+
#: ../lib/hammer_cli_foreman/location.rb:90
|
1509
|
+
#, fuzzy
|
1510
|
+
msgid "Could not set location parameter"
|
1511
|
+
msgstr "Não foi possível definir parâmetro de domínio"
|
1512
|
+
|
1513
|
+
#: ../lib/hammer_cli_foreman/location.rb:97
|
1514
|
+
#, fuzzy
|
1515
|
+
msgid "Delete parameter for a location."
|
1516
|
+
msgstr "Remover o parâmetro para um domínio"
|
1517
|
+
|
1518
|
+
#: ../lib/hammer_cli_foreman/location.rb:99 ../lib/hammer_cli_foreman/organization.rb:100
|
1519
|
+
#, fuzzy
|
1520
|
+
msgid "Parameter [%{name}] deleted"
|
1521
|
+
msgstr "Parâmetro global [%{name}] removido."
|
1522
|
+
|
1523
|
+
#: ../lib/hammer_cli_foreman/location.rb:100
|
1524
|
+
#, fuzzy
|
1525
|
+
msgid "Could not delete location parameter"
|
1526
|
+
msgstr "Não foi possível definir parâmetro de domínio"
|
1527
|
+
|
1518
1528
|
#: ../lib/hammer_cli_foreman/media.rb:11
|
1519
1529
|
msgid "Path"
|
1520
1530
|
msgstr "Caminho"
|
@@ -1689,7 +1699,7 @@ msgstr "Não foi possível remover o modelo padrão"
|
|
1689
1699
|
|
1690
1700
|
#: ../lib/hammer_cli_foreman/operating_system.rb:178
|
1691
1701
|
msgid "Default template of type %s not found"
|
1692
|
-
msgstr ""
|
1702
|
+
msgstr "Modelo padrão do tipo %s não foi encontrado"
|
1693
1703
|
|
1694
1704
|
#: ../lib/hammer_cli_foreman/organization.rb:37 ../lib/hammer_cli_foreman/references.rb:15
|
1695
1705
|
msgid "Locations"
|
@@ -1719,6 +1729,25 @@ msgstr "Organização removida"
|
|
1719
1729
|
msgid "Could not delete the organization"
|
1720
1730
|
msgstr "Não foi possível remover a organização"
|
1721
1731
|
|
1732
|
+
#: ../lib/hammer_cli_foreman/organization.rb:87
|
1733
|
+
#, fuzzy
|
1734
|
+
msgid "Create or update parameter for an organization."
|
1735
|
+
msgstr "Criar ou atualizar o parâmetro para um domínio."
|
1736
|
+
|
1737
|
+
#: ../lib/hammer_cli_foreman/organization.rb:91
|
1738
|
+
#, fuzzy
|
1739
|
+
msgid "Could not set organization parameter"
|
1740
|
+
msgstr "Não foi possível definir parâmetro de domínio"
|
1741
|
+
|
1742
|
+
#: ../lib/hammer_cli_foreman/organization.rb:98
|
1743
|
+
#, fuzzy
|
1744
|
+
msgid "Delete parameter for an organization."
|
1745
|
+
msgstr "Remover o parâmetro para um domínio"
|
1746
|
+
|
1747
|
+
#: ../lib/hammer_cli_foreman/organization.rb:101
|
1748
|
+
msgid "Could not delete organization parameter"
|
1749
|
+
msgstr ""
|
1750
|
+
|
1722
1751
|
#: ../lib/hammer_cli_foreman/partition_table.rb:31
|
1723
1752
|
msgid "View partition table content."
|
1724
1753
|
msgstr "Visualizar conteúdo de tabela de partição"
|
@@ -1785,7 +1814,7 @@ msgstr "Grupos de usuários"
|
|
1785
1814
|
|
1786
1815
|
#: ../lib/hammer_cli_foreman/references.rb:42
|
1787
1816
|
msgid "Smart proxies"
|
1788
|
-
msgstr "
|
1817
|
+
msgstr "Proxies Inteligentes"
|
1789
1818
|
|
1790
1819
|
#: ../lib/hammer_cli_foreman/references.rb:50
|
1791
1820
|
msgid "Compute resources"
|
@@ -1801,7 +1830,7 @@ msgstr "Modelos"
|
|
1801
1830
|
|
1802
1831
|
#: ../lib/hammer_cli_foreman/references.rb:74
|
1803
1832
|
msgid "Domains"
|
1804
|
-
msgstr "
|
1833
|
+
msgstr "Domínios"
|
1805
1834
|
|
1806
1835
|
#: ../lib/hammer_cli_foreman/references.rb:82
|
1807
1836
|
msgid "Environments"
|
@@ -1833,7 +1862,7 @@ msgstr "Papéis"
|
|
1833
1862
|
|
1834
1863
|
#: ../lib/hammer_cli_foreman/references.rb:139
|
1835
1864
|
msgid "External user groups"
|
1836
|
-
msgstr ""
|
1865
|
+
msgstr "Grupos de usuários externos"
|
1837
1866
|
|
1838
1867
|
#: ../lib/hammer_cli_foreman/report.rb:14 ../lib/hammer_cli_foreman/report.rb:35
|
1839
1868
|
msgid "Applied"
|
@@ -1865,7 +1894,7 @@ msgstr "Relatar em"
|
|
1865
1894
|
|
1866
1895
|
#: ../lib/hammer_cli_foreman/report.rb:33
|
1867
1896
|
msgid "Report status"
|
1868
|
-
msgstr "
|
1897
|
+
msgstr "Estado do relatório"
|
1869
1898
|
|
1870
1899
|
#: ../lib/hammer_cli_foreman/report.rb:43
|
1871
1900
|
msgid "Report metrics"
|
@@ -1931,43 +1960,54 @@ msgstr "Não foi possível remover o relatório"
|
|
1931
1960
|
msgid "The server does not support such operation."
|
1932
1961
|
msgstr "O servidor não suporta tal operação"
|
1933
1962
|
|
1934
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
1963
|
+
#: ../lib/hammer_cli_foreman/role.rb:20
|
1964
|
+
#, fuzzy
|
1965
|
+
msgid "Builtin"
|
1966
|
+
msgstr "Construir"
|
1967
|
+
|
1968
|
+
#: ../lib/hammer_cli_foreman/role.rb:24
|
1969
|
+
msgid "No"
|
1970
|
+
msgstr ""
|
1971
|
+
|
1972
|
+
#: ../lib/hammer_cli_foreman/role.rb:24
|
1973
|
+
msgid "Yes"
|
1974
|
+
msgstr ""
|
1975
|
+
|
1976
|
+
#: ../lib/hammer_cli_foreman/role.rb:36
|
1935
1977
|
msgid "User role id"
|
1936
1978
|
msgstr "ID da função de usuário"
|
1937
1979
|
|
1938
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
1980
|
+
#: ../lib/hammer_cli_foreman/role.rb:60
|
1939
1981
|
msgid "User role [%<name>s] created"
|
1940
1982
|
msgstr "Função de usuário [%<name>s] criada"
|
1941
1983
|
|
1942
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
1984
|
+
#: ../lib/hammer_cli_foreman/role.rb:61
|
1943
1985
|
msgid "Could not create the user role"
|
1944
1986
|
msgstr "Não foi possível criar função de usuário"
|
1945
1987
|
|
1946
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
1988
|
+
#: ../lib/hammer_cli_foreman/role.rb:68
|
1947
1989
|
msgid "User role [%<name>s] updated"
|
1948
1990
|
msgstr "Função de usuário [%<name>s] atualizada"
|
1949
1991
|
|
1950
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
1992
|
+
#: ../lib/hammer_cli_foreman/role.rb:69
|
1951
1993
|
msgid "Could not update the user role"
|
1952
1994
|
msgstr "Não foi possível atualizar a função de usuário"
|
1953
1995
|
|
1954
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
1996
|
+
#: ../lib/hammer_cli_foreman/role.rb:76
|
1955
1997
|
msgid "User role [%<name>s] deleted"
|
1956
1998
|
msgstr "Função de usuário [%<name>s] removida"
|
1957
1999
|
|
1958
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
2000
|
+
#: ../lib/hammer_cli_foreman/role.rb:77
|
1959
2001
|
msgid "Could not delete the user roles"
|
1960
2002
|
msgstr "Não foi possível remover funções de usuário"
|
1961
2003
|
|
1962
2004
|
#: ../lib/hammer_cli_foreman/settings.rb:28
|
1963
|
-
#, fuzzy
|
1964
2005
|
msgid "Setting [%{name}] updated to [%{value}]"
|
1965
|
-
msgstr "
|
2006
|
+
msgstr "Configuração [%[nome]] atualizada para [%{valor}]"
|
1966
2007
|
|
1967
2008
|
#: ../lib/hammer_cli_foreman/settings.rb:29
|
1968
|
-
#, fuzzy
|
1969
2009
|
msgid "Could not update the setting"
|
1970
|
-
msgstr "Não foi possível atualizar
|
2010
|
+
msgstr "Não foi possível atualizar a configuração"
|
1971
2011
|
|
1972
2012
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:11
|
1973
2013
|
msgid "Default Value"
|
@@ -2003,25 +2043,23 @@ msgstr "Sobrescrever Valores"
|
|
2003
2043
|
|
2004
2044
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:70 ../lib/hammer_cli_foreman/smart_variable.rb:58
|
2005
2045
|
msgid "Merge overrides"
|
2006
|
-
msgstr ""
|
2046
|
+
msgstr "Mesclar substituições"
|
2007
2047
|
|
2008
2048
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:71 ../lib/hammer_cli_foreman/smart_variable.rb:59
|
2009
|
-
#, fuzzy
|
2010
2049
|
msgid "Merge default value"
|
2011
|
-
msgstr "
|
2050
|
+
msgstr "Mesclar valor padrão"
|
2012
2051
|
|
2013
2052
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:72 ../lib/hammer_cli_foreman/smart_variable.rb:60
|
2014
2053
|
msgid "Avoid duplicates"
|
2015
|
-
msgstr ""
|
2054
|
+
msgstr "Evitar duplicações"
|
2016
2055
|
|
2017
2056
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:73 ../lib/hammer_cli_foreman/smart_variable.rb:61
|
2018
2057
|
msgid "Order"
|
2019
2058
|
msgstr "Ordem"
|
2020
2059
|
|
2021
2060
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:74 ../lib/hammer_cli_foreman/smart_variable.rb:62
|
2022
|
-
#, fuzzy
|
2023
2061
|
msgid "Values"
|
2024
|
-
msgstr "
|
2062
|
+
msgstr "Valores"
|
2025
2063
|
|
2026
2064
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:76 ../lib/hammer_cli_foreman/smart_variable.rb:64
|
2027
2065
|
msgid "Match"
|
@@ -2052,24 +2090,20 @@ msgid "Type of the validator."
|
|
2052
2090
|
msgstr "Tipo de validador."
|
2053
2091
|
|
2054
2092
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:132 ../lib/hammer_cli_foreman/smart_variable.rb:122
|
2055
|
-
#, fuzzy
|
2056
2093
|
msgid "Override value created"
|
2057
|
-
msgstr "
|
2094
|
+
msgstr "Substituir valor criado"
|
2058
2095
|
|
2059
2096
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:133 ../lib/hammer_cli_foreman/smart_variable.rb:123
|
2060
|
-
#, fuzzy
|
2061
2097
|
msgid "Could not create the override_value"
|
2062
|
-
msgstr "Não foi possível criar
|
2098
|
+
msgstr "Não foi possível criar um valor_substituto"
|
2063
2099
|
|
2064
2100
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:152 ../lib/hammer_cli_foreman/smart_variable.rb:135
|
2065
|
-
#, fuzzy
|
2066
2101
|
msgid "Override value deleted"
|
2067
|
-
msgstr "
|
2102
|
+
msgstr "Valor substituto excluído"
|
2068
2103
|
|
2069
2104
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:153 ../lib/hammer_cli_foreman/smart_variable.rb:136
|
2070
|
-
#, fuzzy
|
2071
2105
|
msgid "Could not delete the override value"
|
2072
|
-
msgstr "Não foi possível
|
2106
|
+
msgstr "Não foi possível excluir o valor substituto"
|
2073
2107
|
|
2074
2108
|
#: ../lib/hammer_cli_foreman/smart_proxy.rb:13
|
2075
2109
|
msgid "URL"
|
@@ -2077,11 +2111,11 @@ msgstr "URL"
|
|
2077
2111
|
|
2078
2112
|
#: ../lib/hammer_cli_foreman/smart_proxy.rb:14 ../lib/hammer_cli_foreman/smart_proxy.rb:29
|
2079
2113
|
msgid "Features"
|
2080
|
-
msgstr "
|
2114
|
+
msgstr "Recursos"
|
2081
2115
|
|
2082
2116
|
#: ../lib/hammer_cli_foreman/smart_proxy.rb:41
|
2083
2117
|
msgid "Smart proxy created"
|
2084
|
-
msgstr "
|
2118
|
+
msgstr "Proxy inteligente criado"
|
2085
2119
|
|
2086
2120
|
#: ../lib/hammer_cli_foreman/smart_proxy.rb:42
|
2087
2121
|
msgid "Could not create the proxy"
|
@@ -2089,7 +2123,7 @@ msgstr "Não foi possível criar um proxy"
|
|
2089
2123
|
|
2090
2124
|
#: ../lib/hammer_cli_foreman/smart_proxy.rb:49
|
2091
2125
|
msgid "Smart proxy updated"
|
2092
|
-
msgstr "
|
2126
|
+
msgstr "Proxy inteligente atualizado"
|
2093
2127
|
|
2094
2128
|
#: ../lib/hammer_cli_foreman/smart_proxy.rb:50
|
2095
2129
|
msgid "Could not update the proxy"
|
@@ -2097,7 +2131,7 @@ msgstr "Não foi possível atualizar o proxy"
|
|
2097
2131
|
|
2098
2132
|
#: ../lib/hammer_cli_foreman/smart_proxy.rb:57
|
2099
2133
|
msgid "Smart proxy deleted"
|
2100
|
-
msgstr "
|
2134
|
+
msgstr "Proxy Inteligente removido"
|
2101
2135
|
|
2102
2136
|
#: ../lib/hammer_cli_foreman/smart_proxy.rb:58
|
2103
2137
|
msgid "Could not delete the proxy"
|
@@ -2117,43 +2151,39 @@ msgstr "Não execute a importação"
|
|
2117
2151
|
|
2118
2152
|
#: ../lib/hammer_cli_foreman/smart_proxy.rb:92
|
2119
2153
|
msgid "Smart proxy features were refreshed"
|
2120
|
-
msgstr "Recursos de
|
2154
|
+
msgstr "Recursos de proxy inteligentes foram atualizados"
|
2121
2155
|
|
2122
2156
|
#: ../lib/hammer_cli_foreman/smart_proxy.rb:93
|
2123
2157
|
msgid "Refresh of smart proxy features failed"
|
2124
|
-
msgstr "Falha ao atualizar os recursos do
|
2158
|
+
msgstr "Falha ao atualizar os recursos do proxy inteligente "
|
2125
2159
|
|
2126
2160
|
#: ../lib/hammer_cli_foreman/smart_variable.rb:82
|
2127
2161
|
msgid "Smart variable [%{variable}] created"
|
2128
|
-
msgstr ""
|
2162
|
+
msgstr "Variável inteligente [%{variável}] criada"
|
2129
2163
|
|
2130
2164
|
#: ../lib/hammer_cli_foreman/smart_variable.rb:83
|
2131
|
-
#, fuzzy
|
2132
2165
|
msgid "Could not create the smart variable"
|
2133
|
-
msgstr "Não foi possível criar
|
2166
|
+
msgstr "Não foi possível criar uma variável inteligente"
|
2134
2167
|
|
2135
2168
|
#: ../lib/hammer_cli_foreman/smart_variable.rb:87 ../lib/hammer_cli_foreman/smart_variable.rb:101
|
2136
|
-
#, fuzzy
|
2137
2169
|
msgid "Type of the variable."
|
2138
|
-
msgstr "Tipo de
|
2170
|
+
msgstr "Tipo de variável"
|
2139
2171
|
|
2140
2172
|
#: ../lib/hammer_cli_foreman/smart_variable.rb:96
|
2141
2173
|
msgid "Smart variable [%{variable}] updated"
|
2142
|
-
msgstr ""
|
2174
|
+
msgstr "Variável inteligente [%{variável}] atualizada"
|
2143
2175
|
|
2144
2176
|
#: ../lib/hammer_cli_foreman/smart_variable.rb:97
|
2145
|
-
#, fuzzy
|
2146
2177
|
msgid "Could not update the smart variable"
|
2147
|
-
msgstr "Não foi possível atualizar
|
2178
|
+
msgstr "Não foi possível atualizar a variável inteligente"
|
2148
2179
|
|
2149
2180
|
#: ../lib/hammer_cli_foreman/smart_variable.rb:111
|
2150
2181
|
msgid "Smart variable [%{variable}] deleted"
|
2151
|
-
msgstr ""
|
2182
|
+
msgstr "Variável inteligente [%{variável}] excluída"
|
2152
2183
|
|
2153
2184
|
#: ../lib/hammer_cli_foreman/smart_variable.rb:112
|
2154
|
-
#, fuzzy
|
2155
2185
|
msgid "Could not delete the smart variable"
|
2156
|
-
msgstr "Não foi possível
|
2186
|
+
msgstr "Não foi possível excluir a variável inteligente"
|
2157
2187
|
|
2158
2188
|
#: ../lib/hammer_cli_foreman/subnet.rb:13
|
2159
2189
|
msgid "Mask"
|
@@ -2183,6 +2213,10 @@ msgstr "TFTP"
|
|
2183
2213
|
msgid "DHCP"
|
2184
2214
|
msgstr "DHCP"
|
2185
2215
|
|
2216
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:29
|
2217
|
+
msgid "IPAM"
|
2218
|
+
msgstr ""
|
2219
|
+
|
2186
2220
|
#: ../lib/hammer_cli_foreman/subnet.rb:30
|
2187
2221
|
msgid "VLAN ID"
|
2188
2222
|
msgstr "VLAN ID"
|
@@ -2205,23 +2239,23 @@ msgstr "Subnet criada"
|
|
2205
2239
|
|
2206
2240
|
#: ../lib/hammer_cli_foreman/subnet.rb:45
|
2207
2241
|
msgid "Could not create the subnet"
|
2208
|
-
msgstr "Não foi possível criar
|
2242
|
+
msgstr "Não foi possível criar subrede"
|
2209
2243
|
|
2210
2244
|
#: ../lib/hammer_cli_foreman/subnet.rb:53
|
2211
2245
|
msgid "Subnet updated"
|
2212
|
-
msgstr "
|
2246
|
+
msgstr "Subrede atualizada"
|
2213
2247
|
|
2214
2248
|
#: ../lib/hammer_cli_foreman/subnet.rb:54
|
2215
2249
|
msgid "Could not update the subnet"
|
2216
|
-
msgstr "Não foi possível atualizar a
|
2250
|
+
msgstr "Não foi possível atualizar a subrede"
|
2217
2251
|
|
2218
2252
|
#: ../lib/hammer_cli_foreman/subnet.rb:62
|
2219
2253
|
msgid "Subnet deleted"
|
2220
|
-
msgstr "
|
2254
|
+
msgstr "Subrede removida"
|
2221
2255
|
|
2222
2256
|
#: ../lib/hammer_cli_foreman/subnet.rb:63
|
2223
2257
|
msgid "Could not delete the subnet"
|
2224
|
-
msgstr "Não foi possível remover a
|
2258
|
+
msgstr "Não foi possível remover a subrede"
|
2225
2259
|
|
2226
2260
|
#: ../lib/hammer_cli_foreman/template.rb:71
|
2227
2261
|
msgid "List available config template kinds."
|
@@ -2265,7 +2299,7 @@ msgstr "Não foi possível remover modelo de config"
|
|
2265
2299
|
|
2266
2300
|
#: ../lib/hammer_cli_foreman/template.rb:150
|
2267
2301
|
msgid "Update the default PXE menu on all configured TFTP servers"
|
2268
|
-
msgstr ""
|
2302
|
+
msgstr "Atualizado o menu padrão PXE e todas as configurações TFTP dos servidores"
|
2269
2303
|
|
2270
2304
|
#: ../lib/hammer_cli_foreman/user.rb:11
|
2271
2305
|
msgid "Login"
|
@@ -2285,33 +2319,31 @@ msgstr "Autorizado por"
|
|
2285
2319
|
|
2286
2320
|
#: ../lib/hammer_cli_foreman/user.rb:30
|
2287
2321
|
msgid "Locale"
|
2288
|
-
msgstr ""
|
2322
|
+
msgstr "Localizar"
|
2289
2323
|
|
2290
2324
|
#: ../lib/hammer_cli_foreman/user.rb:31
|
2291
2325
|
msgid "Timezone"
|
2292
|
-
msgstr ""
|
2326
|
+
msgstr "Fuso horário"
|
2293
2327
|
|
2294
2328
|
#: ../lib/hammer_cli_foreman/user.rb:32
|
2295
2329
|
msgid "Last login"
|
2296
2330
|
msgstr "Último Login em"
|
2297
2331
|
|
2298
2332
|
#: ../lib/hammer_cli_foreman/user.rb:33
|
2299
|
-
#, fuzzy
|
2300
2333
|
msgid "Default organization"
|
2301
|
-
msgstr "
|
2334
|
+
msgstr "Organização padrão"
|
2302
2335
|
|
2303
2336
|
#: ../lib/hammer_cli_foreman/user.rb:34
|
2304
|
-
#, fuzzy
|
2305
2337
|
msgid "Default location"
|
2306
|
-
msgstr "
|
2338
|
+
msgstr "Localização padrão"
|
2307
2339
|
|
2308
2340
|
#: ../lib/hammer_cli_foreman/user.rb:42 ../lib/hammer_cli_foreman/user.rb:43
|
2309
2341
|
msgid "default"
|
2310
|
-
msgstr ""
|
2342
|
+
msgstr "padrão"
|
2311
2343
|
|
2312
2344
|
#: ../lib/hammer_cli_foreman/user.rb:53
|
2313
2345
|
msgid "User [%{login}] created"
|
2314
|
-
msgstr ""
|
2346
|
+
msgstr "Usuário [%{login}] criado"
|
2315
2347
|
|
2316
2348
|
#: ../lib/hammer_cli_foreman/user.rb:54
|
2317
2349
|
msgid "Could not create the user"
|
@@ -2319,7 +2351,7 @@ msgstr "Não foi possível criar usuário"
|
|
2319
2351
|
|
2320
2352
|
#: ../lib/hammer_cli_foreman/user.rb:61
|
2321
2353
|
msgid "User [%{login}] updated"
|
2322
|
-
msgstr ""
|
2354
|
+
msgstr "Usuário [%{login}] atualizado"
|
2323
2355
|
|
2324
2356
|
#: ../lib/hammer_cli_foreman/user.rb:62
|
2325
2357
|
msgid "Could not update the user"
|
@@ -2327,7 +2359,7 @@ msgstr "Não foi possível atualizar usuário"
|
|
2327
2359
|
|
2328
2360
|
#: ../lib/hammer_cli_foreman/user.rb:69
|
2329
2361
|
msgid "User [%{login}] deleted"
|
2330
|
-
msgstr ""
|
2362
|
+
msgstr "Usuário [%{login}] excluido"
|
2331
2363
|
|
2332
2364
|
#: ../lib/hammer_cli_foreman/user.rb:70
|
2333
2365
|
msgid "Could not delete the user"
|
@@ -2357,62 +2389,6 @@ msgstr "Grupo de usuário [%<name>s] removido"
|
|
2357
2389
|
msgid "Could not delete the user group"
|
2358
2390
|
msgstr "Não foi possível remover o grupo de usuário"
|
2359
2391
|
|
2360
|
-
#: lib/hammer_cli_foreman/
|
2361
|
-
#~ msgid "
|
2362
|
-
#~ msgstr "
|
2363
|
-
|
2364
|
-
#: lib/hammer_cli_foreman/host.rb:189
|
2365
|
-
#~ msgid "Puppet Proxy Id"
|
2366
|
-
#~ msgstr "Puppet Proxy Id"
|
2367
|
-
|
2368
|
-
#: lib/hammer_cli_foreman/host.rb:198
|
2369
|
-
#~ msgid "BMC Network Interfaces"
|
2370
|
-
#~ msgstr "BMC Network Interfaces"
|
2371
|
-
|
2372
|
-
#: lib/hammer_cli_foreman/host.rb:203 lib/hammer_cli_foreman/host.rb:216
|
2373
|
-
#~ msgid "Domain Id"
|
2374
|
-
#~ msgstr "Dominio Id"
|
2375
|
-
|
2376
|
-
#: lib/hammer_cli_foreman/host.rb:204 lib/hammer_cli_foreman/host.rb:217
|
2377
|
-
#~ msgid "Domain Name"
|
2378
|
-
#~ msgstr "Nome de Domínio"
|
2379
|
-
|
2380
|
-
#: lib/hammer_cli_foreman/host.rb:205 lib/hammer_cli_foreman/host.rb:218
|
2381
|
-
#~ msgid "Subnet Id"
|
2382
|
-
#~ msgstr "Subnet Id"
|
2383
|
-
|
2384
|
-
#: lib/hammer_cli_foreman/host.rb:206 lib/hammer_cli_foreman/host.rb:219
|
2385
|
-
#~ msgid "Subnet Name"
|
2386
|
-
#~ msgstr "Nome da subnet"
|
2387
|
-
|
2388
|
-
#: lib/hammer_cli_foreman/host.rb:207
|
2389
|
-
#~ msgid "BMC Username"
|
2390
|
-
#~ msgstr "Nome de usuário de BMC"
|
2391
|
-
|
2392
|
-
#: lib/hammer_cli_foreman/host.rb:208
|
2393
|
-
#~ msgid "BMC Password"
|
2394
|
-
#~ msgstr "Senha do BMC"
|
2395
|
-
|
2396
|
-
#: lib/hammer_cli_foreman/host.rb:211
|
2397
|
-
#~ msgid "Managed Network Interfaces"
|
2398
|
-
#~ msgstr "Interfaces de Rede Gerenciadas"
|
2399
|
-
|
2400
|
-
#: lib/hammer_cli_foreman/commands.rb:288
|
2401
|
-
#~ msgid "List next page? (%s): "
|
2402
|
-
#~ msgstr "Listar próxima página? (%s): "
|
2403
|
-
|
2404
|
-
#: lib/hammer_cli_foreman/smart_class_parameter.rb:63
|
2405
|
-
#~ msgid "Count"
|
2406
|
-
#~ msgstr "Contar"
|
2407
|
-
|
2408
|
-
#: lib/hammer_cli_foreman/user.rb:47
|
2409
|
-
#~ msgid "User created"
|
2410
|
-
#~ msgstr "Usuário criado"
|
2411
|
-
|
2412
|
-
#: lib/hammer_cli_foreman/user.rb:55
|
2413
|
-
#~ msgid "User updated"
|
2414
|
-
#~ msgstr "Usuário atualizado"
|
2415
|
-
|
2416
|
-
#: lib/hammer_cli_foreman/user.rb:63
|
2417
|
-
#~ msgid "User deleted"
|
2418
|
-
#~ msgstr "Usuário removido"
|
2392
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:201
|
2393
|
+
#~ msgid "%s found more than once"
|
2394
|
+
#~ msgstr "%s encontrado mais de uma vez"
|