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
|
@@ -3,138 +3,136 @@
|
|
3
3
|
# This file is distributed under the same license as the hammer-cli-foreman package.
|
4
4
|
#
|
5
5
|
# Translators:
|
6
|
-
# Claer <transiblu@claer.hammock.fr>, 2014
|
6
|
+
# Claer <transiblu@claer.hammock.fr>, 2014-2015
|
7
7
|
# Dominic Cleal <dcleal@redhat.com>, 2014
|
8
8
|
# Pierre-Emmanuel Dutang <dutangp@gmail.com>, 2014
|
9
9
|
msgid ""
|
10
10
|
msgstr ""
|
11
|
-
"Project-Id-Version: hammer-cli-foreman 0.
|
11
|
+
"Project-Id-Version: hammer-cli-foreman 0.4.0\n"
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
13
|
-
"POT-Creation-Date: 2015-
|
14
|
-
"PO-Revision-Date: 2015-
|
15
|
-
"Last-Translator:
|
16
|
-
"Language-Team: French (http://www.transifex.com/
|
17
|
-
"/)\n"
|
13
|
+
"POT-Creation-Date: 2015-12-11 04:48+0000\n"
|
14
|
+
"PO-Revision-Date: 2015-10-08 11:28+0000\n"
|
15
|
+
"Last-Translator: mbacovsky <martin.bacovsky@gmail.com>\n"
|
16
|
+
"Language-Team: French (http://www.transifex.com/foreman/foreman/language/fr/)\n"
|
18
17
|
"MIME-Version: 1.0\n"
|
19
18
|
"Content-Type: text/plain; charset=UTF-8\n"
|
20
19
|
"Content-Transfer-Encoding: 8bit\n"
|
21
20
|
"Language: fr\n"
|
22
21
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
23
22
|
|
24
|
-
#: ../lib/hammer_cli_foreman.rb:
|
23
|
+
#: ../lib/hammer_cli_foreman.rb:32
|
25
24
|
msgid "Foreman connection login/logout."
|
26
25
|
msgstr "Connexion/Déconnexion à Foreman."
|
27
26
|
|
28
|
-
#: ../lib/hammer_cli_foreman.rb:
|
27
|
+
#: ../lib/hammer_cli_foreman.rb:36
|
29
28
|
msgid "Manipulate architectures."
|
30
29
|
msgstr "Gestion des architectures."
|
31
30
|
|
32
|
-
#: ../lib/hammer_cli_foreman.rb:
|
31
|
+
#: ../lib/hammer_cli_foreman.rb:40
|
33
32
|
msgid "Manipulate auth sources."
|
34
33
|
msgstr "Gérer les sources d'authentification"
|
35
34
|
|
36
|
-
#: ../lib/hammer_cli_foreman.rb:
|
35
|
+
#: ../lib/hammer_cli_foreman.rb:44
|
37
36
|
msgid "Manipulate compute resources."
|
38
37
|
msgstr "Gestion des ressources d'ordinateur."
|
39
38
|
|
40
|
-
#: ../lib/hammer_cli_foreman.rb:
|
39
|
+
#: ../lib/hammer_cli_foreman.rb:48
|
41
40
|
msgid "Manipulate domains."
|
42
41
|
msgstr "Gestion des domaines."
|
43
42
|
|
44
|
-
#: ../lib/hammer_cli_foreman.rb:
|
43
|
+
#: ../lib/hammer_cli_foreman.rb:52
|
45
44
|
msgid "Manipulate environments."
|
46
45
|
msgstr "Manipulation des environnements"
|
47
46
|
|
48
|
-
#: ../lib/hammer_cli_foreman.rb:
|
47
|
+
#: ../lib/hammer_cli_foreman.rb:56
|
49
48
|
msgid "Search facts."
|
50
49
|
msgstr "Rechercher les facts."
|
51
50
|
|
52
|
-
#: ../lib/hammer_cli_foreman.rb:
|
51
|
+
#: ../lib/hammer_cli_foreman.rb:60
|
53
52
|
msgid "Manage permission filters."
|
54
53
|
msgstr "Gérer les filtres de permission"
|
55
54
|
|
56
|
-
#: ../lib/hammer_cli_foreman.rb:
|
55
|
+
#: ../lib/hammer_cli_foreman.rb:64
|
57
56
|
msgid "Manipulate hosts."
|
58
57
|
msgstr "Manipulation des hôtes"
|
59
58
|
|
60
|
-
#: ../lib/hammer_cli_foreman.rb:
|
59
|
+
#: ../lib/hammer_cli_foreman.rb:68
|
61
60
|
msgid "Manipulate hostgroups."
|
62
61
|
msgstr "Gestion des groupes d'hôtes"
|
63
62
|
|
64
|
-
#: ../lib/hammer_cli_foreman.rb:
|
63
|
+
#: ../lib/hammer_cli_foreman.rb:72
|
65
64
|
msgid "Manipulate locations."
|
66
65
|
msgstr "Gestion des localisations."
|
67
66
|
|
68
|
-
#: ../lib/hammer_cli_foreman.rb:
|
67
|
+
#: ../lib/hammer_cli_foreman.rb:76
|
69
68
|
msgid "Manipulate installation media."
|
70
69
|
msgstr "Gestion des médias d'installation."
|
71
70
|
|
72
|
-
#: ../lib/hammer_cli_foreman.rb:
|
71
|
+
#: ../lib/hammer_cli_foreman.rb:80
|
73
72
|
msgid "Manipulate hardware models."
|
74
73
|
msgstr "Gestion des modèles matériel."
|
75
74
|
|
76
|
-
#: ../lib/hammer_cli_foreman.rb:
|
75
|
+
#: ../lib/hammer_cli_foreman.rb:84
|
77
76
|
msgid "Manipulate operating system."
|
78
77
|
msgstr "Manipulation des systèmes d'exploitation"
|
79
78
|
|
80
|
-
#: ../lib/hammer_cli_foreman.rb:
|
79
|
+
#: ../lib/hammer_cli_foreman.rb:88
|
81
80
|
msgid "Manipulate organizations."
|
82
81
|
msgstr "Gestion des organisations."
|
83
82
|
|
84
|
-
#: ../lib/hammer_cli_foreman.rb:
|
83
|
+
#: ../lib/hammer_cli_foreman.rb:92
|
85
84
|
msgid "Manipulate partition tables."
|
86
85
|
msgstr "Gestion des tables de partitions."
|
87
86
|
|
88
|
-
#: ../lib/hammer_cli_foreman.rb:
|
87
|
+
#: ../lib/hammer_cli_foreman.rb:96
|
89
88
|
msgid "Search puppet modules."
|
90
89
|
msgstr "Recherche des modules Puppet."
|
91
90
|
|
92
|
-
#: ../lib/hammer_cli_foreman.rb:
|
91
|
+
#: ../lib/hammer_cli_foreman.rb:100
|
93
92
|
msgid "Browse and read reports."
|
94
93
|
msgstr "Consulter les rapports."
|
95
94
|
|
96
|
-
#: ../lib/hammer_cli_foreman.rb:
|
95
|
+
#: ../lib/hammer_cli_foreman.rb:104
|
97
96
|
msgid "Manage user roles."
|
98
97
|
msgstr "Gérer les rôles utilisateur"
|
99
98
|
|
100
|
-
#: ../lib/hammer_cli_foreman.rb:
|
99
|
+
#: ../lib/hammer_cli_foreman.rb:108
|
101
100
|
msgid "Manipulate smart class parameters."
|
102
101
|
msgstr "Gestion des paramètres Smart Class"
|
103
102
|
|
104
|
-
#: ../lib/hammer_cli_foreman.rb:
|
105
|
-
#, fuzzy
|
103
|
+
#: ../lib/hammer_cli_foreman.rb:112
|
106
104
|
msgid "Manipulate smart variables."
|
107
|
-
msgstr "
|
105
|
+
msgstr "Manipuler les smart variables."
|
108
106
|
|
109
|
-
#: ../lib/hammer_cli_foreman.rb:
|
107
|
+
#: ../lib/hammer_cli_foreman.rb:116
|
110
108
|
msgid "Manipulate smart proxies."
|
111
109
|
msgstr "Gestion des Smart Proxies."
|
112
110
|
|
113
|
-
#: ../lib/hammer_cli_foreman.rb:
|
111
|
+
#: ../lib/hammer_cli_foreman.rb:120
|
114
112
|
msgid "Change server settings."
|
115
|
-
msgstr ""
|
113
|
+
msgstr "Modifier les paramètres serveur."
|
116
114
|
|
117
|
-
#: ../lib/hammer_cli_foreman.rb:
|
115
|
+
#: ../lib/hammer_cli_foreman.rb:124
|
118
116
|
msgid "Manipulate subnets."
|
119
117
|
msgstr "Gestion des sous-réseaux."
|
120
118
|
|
121
|
-
#: ../lib/hammer_cli_foreman.rb:
|
119
|
+
#: ../lib/hammer_cli_foreman.rb:128
|
122
120
|
msgid "Manipulate config templates."
|
123
121
|
msgstr "Gestion des modèles de configuration."
|
124
122
|
|
125
|
-
#: ../lib/hammer_cli_foreman.rb:
|
123
|
+
#: ../lib/hammer_cli_foreman.rb:132
|
126
124
|
msgid "Manipulate users."
|
127
125
|
msgstr "Gestion des utilisateurs."
|
128
126
|
|
129
|
-
#: ../lib/hammer_cli_foreman.rb:
|
127
|
+
#: ../lib/hammer_cli_foreman.rb:136
|
130
128
|
msgid "Manage user groups."
|
131
129
|
msgstr "Gérer les groupes d'utilisateurs."
|
132
130
|
|
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:
|
131
|
+
#: ../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
|
134
132
|
msgid "Id"
|
135
133
|
msgstr "Id"
|
136
134
|
|
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:
|
135
|
+
#: ../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
|
138
136
|
msgid "Name"
|
139
137
|
msgstr "Nom"
|
140
138
|
|
@@ -223,28 +221,24 @@ msgid "Associate an user"
|
|
223
221
|
msgstr "Associer un utilisateur"
|
224
222
|
|
225
223
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:149
|
226
|
-
#, fuzzy
|
227
224
|
msgid "The user has been associated"
|
228
|
-
msgstr "L'
|
225
|
+
msgstr "L'utilisateur a été associé"
|
229
226
|
|
230
227
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:150
|
231
|
-
#, fuzzy
|
232
228
|
msgid "Could not associate the user"
|
233
|
-
msgstr "Impossible
|
229
|
+
msgstr "Impossible d'associer l'utilisateur"
|
234
230
|
|
235
231
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:155
|
236
232
|
msgid "Disassociate an user"
|
237
233
|
msgstr "Dissocier un utilisateur"
|
238
234
|
|
239
235
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:157
|
240
|
-
#, fuzzy
|
241
236
|
msgid "The user has been disassociated"
|
242
|
-
msgstr "L'
|
237
|
+
msgstr "L'utilisateur a été dissocié"
|
243
238
|
|
244
239
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:158
|
245
|
-
#, fuzzy
|
246
240
|
msgid "Could not disassociate the user"
|
247
|
-
msgstr "Impossible de dissocier l'
|
241
|
+
msgstr "Impossible de dissocier l'utilisateur"
|
248
242
|
|
249
243
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:167
|
250
244
|
msgid "Associate an user group"
|
@@ -252,12 +246,11 @@ msgstr "Associer un groupe d'utilisateurs"
|
|
252
246
|
|
253
247
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:171
|
254
248
|
msgid "The user group has been associated"
|
255
|
-
msgstr ""
|
249
|
+
msgstr "Le groupe d'utilisateurs a été associé"
|
256
250
|
|
257
251
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:172
|
258
|
-
#, fuzzy
|
259
252
|
msgid "Could not associate the user group"
|
260
|
-
msgstr "Impossible
|
253
|
+
msgstr "Impossible d'associer le groupe d'utilisateurs"
|
261
254
|
|
262
255
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:177
|
263
256
|
msgid "Disassociate an user group"
|
@@ -265,12 +258,11 @@ msgstr "Dissocier un groupe d'utilisateurs"
|
|
265
258
|
|
266
259
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:181
|
267
260
|
msgid "The user group has been disassociated"
|
268
|
-
msgstr ""
|
261
|
+
msgstr "Le groupe d'utilisateurs a été dissocié"
|
269
262
|
|
270
263
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:182
|
271
|
-
#, fuzzy
|
272
264
|
msgid "Could not disassociate the user group"
|
273
|
-
msgstr "Impossible de
|
265
|
+
msgstr "Impossible de dissocier le groupe d'utilisateurs"
|
274
266
|
|
275
267
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:191
|
276
268
|
msgid "Associate a configuration template"
|
@@ -488,31 +480,31 @@ msgstr "Source d'authentification mis à jour"
|
|
488
480
|
msgid "Could not update the Auth Source"
|
489
481
|
msgstr "Impossible de mettre à jour la source d'authentification"
|
490
482
|
|
491
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
483
|
+
#: ../lib/hammer_cli_foreman/commands.rb:87
|
492
484
|
msgid "Received data of unknown format"
|
493
485
|
msgstr "Format inconnu de la donnée reçue"
|
494
486
|
|
495
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
487
|
+
#: ../lib/hammer_cli_foreman/commands.rb:195
|
496
488
|
msgid "Could not find %{resource}. Some search options were missing, please see --help."
|
497
|
-
msgstr "
|
489
|
+
msgstr "%{resource} introuvable. Certaines options de recherche sont manquantes, veuillez consulter --help"
|
498
490
|
|
499
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
491
|
+
#: ../lib/hammer_cli_foreman/commands.rb:197
|
500
492
|
msgid "Could not find %{resource}, please set option %{switches}."
|
501
|
-
msgstr "
|
493
|
+
msgstr "%{resource} introuvable, veuillez définir l'option %{switches}."
|
502
494
|
|
503
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
495
|
+
#: ../lib/hammer_cli_foreman/commands.rb:199
|
504
496
|
msgid "Could not find %{resource}, please set one of options %{switches}."
|
505
|
-
msgstr "
|
497
|
+
msgstr "%{resource} introuvable, veuillez définir l'une des options %{switches}."
|
506
498
|
|
507
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
499
|
+
#: ../lib/hammer_cli_foreman/commands.rb:521
|
508
500
|
msgid "Associate a resource"
|
509
501
|
msgstr "Associer à une ressource"
|
510
502
|
|
511
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
503
|
+
#: ../lib/hammer_cli_foreman/commands.rb:543
|
512
504
|
msgid "Disassociate a resource"
|
513
505
|
msgstr "Dissocier la ressource"
|
514
506
|
|
515
|
-
#: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:
|
507
|
+
#: ../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
|
516
508
|
msgid "Value"
|
517
509
|
msgstr "Valeur"
|
518
510
|
|
@@ -552,7 +544,7 @@ msgstr "Gestion des paramètres globaux."
|
|
552
544
|
msgid "Provider"
|
553
545
|
msgstr "Fournisseur"
|
554
546
|
|
555
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40 ../lib/hammer_cli_foreman/host.rb:
|
547
|
+
#: ../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
|
556
548
|
msgid "UUID"
|
557
549
|
msgstr "UUID"
|
558
550
|
|
@@ -606,19 +598,23 @@ msgstr "Impossible de supprimer la ressource d'ordinateur"
|
|
606
598
|
|
607
599
|
#: ../lib/hammer_cli_foreman/credentials.rb:26
|
608
600
|
msgid "[Foreman] Username: "
|
609
|
-
msgstr "[Foreman]
|
601
|
+
msgstr "[Foreman] nom d'utilisateur :"
|
610
602
|
|
611
603
|
#: ../lib/hammer_cli_foreman/credentials.rb:33
|
612
604
|
msgid "[Foreman] Password for %s: "
|
613
|
-
msgstr "[Foreman]
|
605
|
+
msgstr "[Foreman] mot de passe pour %s :"
|
606
|
+
|
607
|
+
#: ../lib/hammer_cli_foreman/defaults.rb:7
|
608
|
+
msgid "Use the default organization and/or location from the server"
|
609
|
+
msgstr ""
|
614
610
|
|
615
611
|
#: ../lib/hammer_cli_foreman/domain.rb:6
|
616
612
|
msgid "ID of DNS proxy to use within this domain"
|
617
|
-
msgstr ""
|
613
|
+
msgstr "ID du proxy DNS à utiliser dans ce domaine"
|
618
614
|
|
619
615
|
#: ../lib/hammer_cli_foreman/domain.rb:7
|
620
616
|
msgid "Name of DNS proxy to use within this domain"
|
621
|
-
msgstr ""
|
617
|
+
msgstr "Nom du proxy DNS à utiliser dans ce domaine"
|
622
618
|
|
623
619
|
#: ../lib/hammer_cli_foreman/domain.rb:43
|
624
620
|
msgid "DNS Id"
|
@@ -756,7 +752,7 @@ msgstr "Impossible de supprimer le groupe externe d'utilisateurs"
|
|
756
752
|
msgid "Host"
|
757
753
|
msgstr "Hôte"
|
758
754
|
|
759
|
-
#: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:
|
755
|
+
#: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:333
|
760
756
|
msgid "Fact"
|
761
757
|
msgstr "Fact"
|
762
758
|
|
@@ -780,11 +776,11 @@ msgstr "Rôle"
|
|
780
776
|
msgid "Permissions"
|
781
777
|
msgstr "Permissions"
|
782
778
|
|
783
|
-
#: ../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:
|
779
|
+
#: ../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
|
784
780
|
msgid "(Miscellaneous)"
|
785
781
|
msgstr "(Divers)"
|
786
782
|
|
787
|
-
#: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:
|
783
|
+
#: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:47
|
788
784
|
msgid "none"
|
789
785
|
msgstr "Aucun"
|
790
786
|
|
@@ -818,317 +814,309 @@ msgstr "Ressource"
|
|
818
814
|
|
819
815
|
#: ../lib/hammer_cli_foreman/host.rb:15
|
820
816
|
msgid "Login of the owner"
|
821
|
-
msgstr "
|
817
|
+
msgstr "Informations d'identification du propriétaire"
|
822
818
|
|
823
819
|
#: ../lib/hammer_cli_foreman/host.rb:17
|
824
820
|
msgid "ID of the owner"
|
825
821
|
msgstr "ID du propriétaire"
|
826
822
|
|
827
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
823
|
+
#: ../lib/hammer_cli_foreman/host.rb:44
|
828
824
|
msgid "Host parameters."
|
829
825
|
msgstr "Paramètres de l'Hôte"
|
830
826
|
|
831
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
827
|
+
#: ../lib/hammer_cli_foreman/host.rb:46
|
832
828
|
msgid "Compute resource attributes."
|
833
829
|
msgstr "Attributs des Ressources d'Ordinateur."
|
834
830
|
|
835
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
831
|
+
#: ../lib/hammer_cli_foreman/host.rb:48
|
836
832
|
msgid "Volume parameters"
|
837
833
|
msgstr "Paramètres du Volume"
|
838
834
|
|
839
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
835
|
+
#: ../lib/hammer_cli_foreman/host.rb:50
|
840
836
|
msgid "Interface parameters."
|
841
837
|
msgstr "Paramètres d'interface"
|
842
838
|
|
843
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
839
|
+
#: ../lib/hammer_cli_foreman/host.rb:64
|
844
840
|
msgid "Enter the root password for the host:"
|
845
|
-
msgstr ""
|
841
|
+
msgstr "Saisir le mot de passe root de l'hôte :"
|
846
842
|
|
847
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
843
|
+
#: ../lib/hammer_cli_foreman/host.rb:153
|
848
844
|
msgid "At least one interface must be set as primary"
|
849
|
-
msgstr ""
|
845
|
+
msgstr "Au moins une interface doit être définie comme primaire"
|
850
846
|
|
851
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
847
|
+
#: ../lib/hammer_cli_foreman/host.rb:156
|
852
848
|
msgid "At least one interface must be set as provision"
|
853
|
-
msgstr ""
|
849
|
+
msgstr "Au moins une interface doit être définie pour le provisioning"
|
854
850
|
|
855
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
851
|
+
#: ../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
|
856
852
|
msgid "Operating System"
|
857
853
|
msgstr "Système d'Exploitation"
|
858
854
|
|
859
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
855
|
+
#: ../lib/hammer_cli_foreman/host.rb:173 ../lib/hammer_cli_foreman/host.rb:212
|
860
856
|
msgid "Host Group"
|
861
857
|
msgstr "Groupe d'hôtes"
|
862
858
|
|
863
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
859
|
+
#: ../lib/hammer_cli_foreman/host.rb:174 ../lib/hammer_cli_foreman/host.rb:225
|
864
860
|
msgid "IP"
|
865
861
|
msgstr "IP"
|
866
862
|
|
867
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
863
|
+
#: ../lib/hammer_cli_foreman/host.rb:175 ../lib/hammer_cli_foreman/host.rb:226
|
868
864
|
msgid "MAC"
|
869
865
|
msgstr "MAC"
|
870
866
|
|
871
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
867
|
+
#: ../lib/hammer_cli_foreman/host.rb:185
|
872
868
|
msgid "Bare Metal"
|
873
|
-
msgstr ""
|
869
|
+
msgstr "Bare Metal"
|
874
870
|
|
875
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
876
|
-
#, fuzzy
|
871
|
+
#: ../lib/hammer_cli_foreman/host.rb:210
|
877
872
|
msgid "Organization"
|
878
|
-
msgstr "
|
873
|
+
msgstr "Organisation"
|
879
874
|
|
880
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
881
|
-
#, fuzzy
|
875
|
+
#: ../lib/hammer_cli_foreman/host.rb:211
|
882
876
|
msgid "Location"
|
883
|
-
msgstr "
|
877
|
+
msgstr "Emplacement"
|
884
878
|
|
885
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
879
|
+
#: ../lib/hammer_cli_foreman/host.rb:213
|
886
880
|
msgid "Compute Resource"
|
887
881
|
msgstr "Ressources d'Ordinateur"
|
888
882
|
|
889
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
890
|
-
#, fuzzy
|
883
|
+
#: ../lib/hammer_cli_foreman/host.rb:214
|
891
884
|
msgid "Compute Profile"
|
892
|
-
msgstr "
|
885
|
+
msgstr "Profil de calcul"
|
893
886
|
|
894
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
887
|
+
#: ../lib/hammer_cli_foreman/host.rb:215 ../lib/hammer_cli_foreman/hostgroup.rb:61
|
895
888
|
msgid "Environment"
|
896
889
|
msgstr "Environnement"
|
897
890
|
|
898
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
899
|
-
#, fuzzy
|
891
|
+
#: ../lib/hammer_cli_foreman/host.rb:216
|
900
892
|
msgid "Puppet CA Id"
|
901
|
-
msgstr "
|
893
|
+
msgstr "ID de Puppet CA"
|
902
894
|
|
903
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
904
|
-
#, fuzzy
|
895
|
+
#: ../lib/hammer_cli_foreman/host.rb:217
|
905
896
|
msgid "Puppet Master Id"
|
906
|
-
msgstr "
|
897
|
+
msgstr "ID du Puppet Master"
|
907
898
|
|
908
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
899
|
+
#: ../lib/hammer_cli_foreman/host.rb:218
|
909
900
|
msgid "Cert name"
|
910
901
|
msgstr "Nom du certificat"
|
911
902
|
|
912
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
903
|
+
#: ../lib/hammer_cli_foreman/host.rb:219 ../lib/hammer_cli_foreman/interface.rb:51
|
913
904
|
msgid "Managed"
|
914
905
|
msgstr "Géré"
|
915
906
|
|
916
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
907
|
+
#: ../lib/hammer_cli_foreman/host.rb:221
|
917
908
|
msgid "Installed at"
|
918
909
|
msgstr "Installé le"
|
919
910
|
|
920
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
911
|
+
#: ../lib/hammer_cli_foreman/host.rb:222 ../lib/hammer_cli_foreman/report.rb:12
|
921
912
|
msgid "Last report"
|
922
913
|
msgstr "Dernier rapport"
|
923
914
|
|
924
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
915
|
+
#: ../lib/hammer_cli_foreman/host.rb:224 ../lib/hammer_cli_foreman/subnet.rb:12
|
925
916
|
msgid "Network"
|
926
917
|
msgstr "Réseau"
|
927
918
|
|
928
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
919
|
+
#: ../lib/hammer_cli_foreman/host.rb:227 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
|
929
920
|
msgid "Subnet"
|
930
921
|
msgstr "Sous-Réseau"
|
931
922
|
|
932
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
923
|
+
#: ../lib/hammer_cli_foreman/host.rb:228 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
|
933
924
|
msgid "Domain"
|
934
925
|
msgstr "Domaine"
|
935
926
|
|
936
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
927
|
+
#: ../lib/hammer_cli_foreman/host.rb:229
|
937
928
|
msgid "Service provider"
|
938
|
-
msgstr ""
|
929
|
+
msgstr "Fournisseur de service"
|
939
930
|
|
940
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
931
|
+
#: ../lib/hammer_cli_foreman/host.rb:230
|
941
932
|
msgid "SP Name"
|
942
933
|
msgstr "SP Nom"
|
943
934
|
|
944
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
935
|
+
#: ../lib/hammer_cli_foreman/host.rb:231
|
945
936
|
msgid "SP IP"
|
946
937
|
msgstr "SP IP"
|
947
938
|
|
948
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
939
|
+
#: ../lib/hammer_cli_foreman/host.rb:232
|
949
940
|
msgid "SP MAC"
|
950
941
|
msgstr "SP MAC"
|
951
942
|
|
952
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
943
|
+
#: ../lib/hammer_cli_foreman/host.rb:233
|
953
944
|
msgid "SP Subnet"
|
954
945
|
msgstr "SP sous réseau"
|
955
946
|
|
956
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
957
|
-
#, fuzzy
|
947
|
+
#: ../lib/hammer_cli_foreman/host.rb:237
|
958
948
|
msgid "Network interfaces"
|
959
|
-
msgstr "
|
949
|
+
msgstr "Interfaces réseau"
|
960
950
|
|
961
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
951
|
+
#: ../lib/hammer_cli_foreman/host.rb:239 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
|
962
952
|
msgid "Identifier"
|
963
|
-
msgstr ""
|
953
|
+
msgstr "Identifiant"
|
964
954
|
|
965
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
955
|
+
#: ../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
|
966
956
|
msgid "Type"
|
967
957
|
msgstr "Type"
|
968
958
|
|
969
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
959
|
+
#: ../lib/hammer_cli_foreman/host.rb:241 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
|
970
960
|
msgid "MAC address"
|
971
|
-
msgstr ""
|
961
|
+
msgstr "Adresse MAC"
|
972
962
|
|
973
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
963
|
+
#: ../lib/hammer_cli_foreman/host.rb:242 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
|
974
964
|
msgid "IP address"
|
975
|
-
msgstr ""
|
965
|
+
msgstr "Adresse IP"
|
976
966
|
|
977
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
967
|
+
#: ../lib/hammer_cli_foreman/host.rb:243
|
978
968
|
msgid "FQDN"
|
979
|
-
msgstr ""
|
969
|
+
msgstr "FQDN"
|
980
970
|
|
981
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
982
|
-
#, fuzzy
|
971
|
+
#: ../lib/hammer_cli_foreman/host.rb:246
|
983
972
|
msgid "Operating system"
|
984
|
-
msgstr "
|
973
|
+
msgstr "Système d'exploitation"
|
985
974
|
|
986
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
975
|
+
#: ../lib/hammer_cli_foreman/host.rb:247 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
|
987
976
|
msgid "Architecture"
|
988
977
|
msgstr "Architecture"
|
989
978
|
|
990
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
979
|
+
#: ../lib/hammer_cli_foreman/host.rb:251
|
991
980
|
msgid "Build"
|
992
981
|
msgstr "Construire"
|
993
982
|
|
994
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
983
|
+
#: ../lib/hammer_cli_foreman/host.rb:252 ../lib/hammer_cli_foreman/hostgroup.rb:77
|
995
984
|
msgid "Medium"
|
996
985
|
msgstr "Medium"
|
997
986
|
|
998
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
987
|
+
#: ../lib/hammer_cli_foreman/host.rb:253 ../lib/hammer_cli_foreman/hostgroup.rb:76
|
999
988
|
msgid "Partition Table"
|
1000
989
|
msgstr "Table de partition"
|
1001
990
|
|
1002
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1003
|
-
#, fuzzy
|
991
|
+
#: ../lib/hammer_cli_foreman/host.rb:254
|
1004
992
|
msgid "Custom partition table"
|
1005
|
-
msgstr "
|
993
|
+
msgstr "Table de partition spécifique"
|
1006
994
|
|
1007
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
995
|
+
#: ../lib/hammer_cli_foreman/host.rb:257
|
1008
996
|
msgid "Image"
|
1009
997
|
msgstr "Image"
|
1010
998
|
|
1011
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
999
|
+
#: ../lib/hammer_cli_foreman/host.rb:258
|
1012
1000
|
msgid "Image file"
|
1013
1001
|
msgstr "Fichier Image"
|
1014
1002
|
|
1015
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1003
|
+
#: ../lib/hammer_cli_foreman/host.rb:259
|
1016
1004
|
msgid "Use image"
|
1017
1005
|
msgstr "Utiliser l'image"
|
1018
1006
|
|
1019
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1007
|
+
#: ../lib/hammer_cli_foreman/host.rb:265
|
1020
1008
|
msgid "Additional info"
|
1021
|
-
msgstr ""
|
1009
|
+
msgstr "Informations complémentaires"
|
1022
1010
|
|
1023
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1011
|
+
#: ../lib/hammer_cli_foreman/host.rb:266
|
1024
1012
|
msgid "Owner Id"
|
1025
1013
|
msgstr "Id du Propriétaire"
|
1026
1014
|
|
1027
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1015
|
+
#: ../lib/hammer_cli_foreman/host.rb:267
|
1028
1016
|
msgid "Owner Type"
|
1029
1017
|
msgstr "Type de Propriétaire"
|
1030
1018
|
|
1031
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1019
|
+
#: ../lib/hammer_cli_foreman/host.rb:268
|
1032
1020
|
msgid "Enabled"
|
1033
1021
|
msgstr "Activé"
|
1034
1022
|
|
1035
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1023
|
+
#: ../lib/hammer_cli_foreman/host.rb:269 ../lib/hammer_cli_foreman/hostgroup.rb:62
|
1036
1024
|
msgid "Model"
|
1037
1025
|
msgstr "Modèle"
|
1038
1026
|
|
1039
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1027
|
+
#: ../lib/hammer_cli_foreman/host.rb:270
|
1040
1028
|
msgid "Comment"
|
1041
1029
|
msgstr "Commentaire"
|
1042
1030
|
|
1043
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1031
|
+
#: ../lib/hammer_cli_foreman/host.rb:283
|
1044
1032
|
msgid "Status"
|
1045
1033
|
msgstr "Statut"
|
1046
1034
|
|
1047
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1035
|
+
#: ../lib/hammer_cli_foreman/host.rb:284
|
1048
1036
|
msgid "Power"
|
1049
1037
|
msgstr "Alimentation"
|
1050
1038
|
|
1051
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1039
|
+
#: ../lib/hammer_cli_foreman/host.rb:320
|
1052
1040
|
msgid "Puppet run triggered"
|
1053
1041
|
msgstr "Puppet Run déclenché"
|
1054
1042
|
|
1055
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1043
|
+
#: ../lib/hammer_cli_foreman/host.rb:373
|
1056
1044
|
msgid "Host created"
|
1057
1045
|
msgstr "Hôte créé"
|
1058
1046
|
|
1059
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1047
|
+
#: ../lib/hammer_cli_foreman/host.rb:374
|
1060
1048
|
msgid "Could not create the host"
|
1061
1049
|
msgstr "Impossible de créer l'hôte"
|
1062
1050
|
|
1063
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1051
|
+
#: ../lib/hammer_cli_foreman/host.rb:395
|
1064
1052
|
msgid "Host updated"
|
1065
1053
|
msgstr "Hôte mis à jour"
|
1066
1054
|
|
1067
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1055
|
+
#: ../lib/hammer_cli_foreman/host.rb:396
|
1068
1056
|
msgid "Could not update the host"
|
1069
1057
|
msgstr "Impossible de mettre à jour l'hôte"
|
1070
1058
|
|
1071
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1059
|
+
#: ../lib/hammer_cli_foreman/host.rb:403
|
1072
1060
|
msgid "Host deleted"
|
1073
1061
|
msgstr "Hôte supprimé"
|
1074
1062
|
|
1075
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1063
|
+
#: ../lib/hammer_cli_foreman/host.rb:404
|
1076
1064
|
msgid "Could not delete the host"
|
1077
1065
|
msgstr "Impossible de supprimer l'hôte"
|
1078
1066
|
|
1079
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1067
|
+
#: ../lib/hammer_cli_foreman/host.rb:411
|
1080
1068
|
msgid "Create or update parameter for a host."
|
1081
1069
|
msgstr "Créer ou changer un paramètre d'un hôte."
|
1082
1070
|
|
1083
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1071
|
+
#: ../lib/hammer_cli_foreman/host.rb:413
|
1084
1072
|
msgid "Host parameter updated"
|
1085
1073
|
msgstr "Paramètre de l'hôte mis à jour"
|
1086
1074
|
|
1087
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1075
|
+
#: ../lib/hammer_cli_foreman/host.rb:414
|
1088
1076
|
msgid "New host parameter created"
|
1089
1077
|
msgstr "Nouveau paramètre de l'hôte créé"
|
1090
1078
|
|
1091
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1079
|
+
#: ../lib/hammer_cli_foreman/host.rb:415
|
1092
1080
|
msgid "Could not set host parameter"
|
1093
1081
|
msgstr "Impossible de positionner le paramètre de l'hôte"
|
1094
1082
|
|
1095
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1083
|
+
#: ../lib/hammer_cli_foreman/host.rb:427
|
1096
1084
|
msgid "Delete parameter for a host."
|
1097
1085
|
msgstr "Suppression du paramètre d'un hôte."
|
1098
1086
|
|
1099
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1087
|
+
#: ../lib/hammer_cli_foreman/host.rb:429
|
1100
1088
|
msgid "Host parameter deleted"
|
1101
1089
|
msgstr "Paramètre de l'hôte supprimé"
|
1102
1090
|
|
1103
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1091
|
+
#: ../lib/hammer_cli_foreman/host.rb:444
|
1104
1092
|
msgid "Power a host on"
|
1105
1093
|
msgstr "Allumer une machine"
|
1106
1094
|
|
1107
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1095
|
+
#: ../lib/hammer_cli_foreman/host.rb:445
|
1108
1096
|
msgid "The host is starting."
|
1109
1097
|
msgstr "L'hôte démarre."
|
1110
1098
|
|
1111
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1099
|
+
#: ../lib/hammer_cli_foreman/host.rb:462
|
1112
1100
|
msgid "Force turning off a host"
|
1113
1101
|
msgstr "Forcer l'extinction d'un hôte"
|
1114
1102
|
|
1115
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1103
|
+
#: ../lib/hammer_cli_foreman/host.rb:467
|
1116
1104
|
msgid "Power a host off"
|
1117
1105
|
msgstr "Éteindre un hôte "
|
1118
1106
|
|
1119
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1107
|
+
#: ../lib/hammer_cli_foreman/host.rb:479
|
1120
1108
|
msgid "Power off forced."
|
1121
1109
|
msgstr "Extinction forcée."
|
1122
1110
|
|
1123
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1111
|
+
#: ../lib/hammer_cli_foreman/host.rb:481
|
1124
1112
|
msgid "Powering the host off."
|
1125
1113
|
msgstr "Extinction de l'hôte."
|
1126
1114
|
|
1127
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1115
|
+
#: ../lib/hammer_cli_foreman/host.rb:498
|
1128
1116
|
msgid "Reboot a host"
|
1129
1117
|
msgstr "Redémarrage d'un hôte"
|
1130
1118
|
|
1131
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1119
|
+
#: ../lib/hammer_cli_foreman/host.rb:499
|
1132
1120
|
msgid "Host reboot started."
|
1133
1121
|
msgstr "Redémarrage de l'hôte lancé"
|
1134
1122
|
|
@@ -1146,16 +1134,15 @@ msgstr "Nom du proxy pour Puppet"
|
|
1146
1134
|
|
1147
1135
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:14
|
1148
1136
|
msgid "Name of parent hostgroup"
|
1149
|
-
msgstr "Nom du groupe d'
|
1137
|
+
msgstr "Nom du groupe d'hôtes parent"
|
1150
1138
|
|
1151
1139
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:17
|
1152
|
-
#, fuzzy
|
1153
1140
|
msgid "Root password"
|
1154
|
-
msgstr "Mot de passe
|
1141
|
+
msgstr "Mot de passe root"
|
1155
1142
|
|
1156
1143
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:23
|
1157
1144
|
msgid "Enter the root password for the host group:"
|
1158
|
-
msgstr ""
|
1145
|
+
msgstr "Saisir le mot de passe root du groupe d'hôtes :"
|
1159
1146
|
|
1160
1147
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:59 ../lib/hammer_cli_foreman/operating_system.rb:11
|
1161
1148
|
msgid "Title"
|
@@ -1175,7 +1162,7 @@ msgstr "Ressource d'ordinateur"
|
|
1175
1162
|
|
1176
1163
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:84
|
1177
1164
|
msgid "Parent Id"
|
1178
|
-
msgstr "
|
1165
|
+
msgstr "ID du parent"
|
1179
1166
|
|
1180
1167
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:94
|
1181
1168
|
msgid "Hostgroup created"
|
@@ -1246,9 +1233,8 @@ msgid "Host name"
|
|
1246
1233
|
msgstr "Nom d'hôte"
|
1247
1234
|
|
1248
1235
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:43
|
1249
|
-
#, fuzzy
|
1250
1236
|
msgid "Hostgroup title"
|
1251
|
-
msgstr "
|
1237
|
+
msgstr "Titre du groupe d'hôtes"
|
1252
1238
|
|
1253
1239
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:43
|
1254
1240
|
msgid "Hostgroup name"
|
@@ -1295,9 +1281,8 @@ msgid "User role name"
|
|
1295
1281
|
msgstr "Nom du rôle utilisateur"
|
1296
1282
|
|
1297
1283
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:57
|
1298
|
-
#, fuzzy
|
1299
1284
|
msgid "Setting name"
|
1300
|
-
msgstr "Nom du
|
1285
|
+
msgstr "Nom du paramètre"
|
1301
1286
|
|
1302
1287
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:58
|
1303
1288
|
msgid "Subnet name"
|
@@ -1316,9 +1301,8 @@ msgid "Smart class parameter name"
|
|
1316
1301
|
msgstr "Nom du paramètre de la smart class"
|
1317
1302
|
|
1318
1303
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:63
|
1319
|
-
#, fuzzy
|
1320
1304
|
msgid "Smart variable name"
|
1321
|
-
msgstr "Smart
|
1305
|
+
msgstr "Nom de la Smart variable"
|
1322
1306
|
|
1323
1307
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:65
|
1324
1308
|
msgid "Name to search by"
|
@@ -1326,14 +1310,15 @@ msgstr "Recherche par nom"
|
|
1326
1310
|
|
1327
1311
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:153
|
1328
1312
|
msgid "one of %s not found"
|
1329
|
-
msgstr "
|
1313
|
+
msgstr "un sur %s introuvable"
|
1330
1314
|
|
1331
1315
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:200
|
1332
1316
|
msgid "%s not found"
|
1333
1317
|
msgstr "%s non trouvé"
|
1334
1318
|
|
1335
1319
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:201
|
1336
|
-
|
1320
|
+
#, fuzzy
|
1321
|
+
msgid "found more than one %s"
|
1337
1322
|
msgstr "%s a été trouvé plus d'une fois"
|
1338
1323
|
|
1339
1324
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:212
|
@@ -1382,107 +1367,95 @@ msgstr "Impossible de supprimer l'image"
|
|
1382
1367
|
|
1383
1368
|
#: ../lib/hammer_cli_foreman/interface.rb:6
|
1384
1369
|
msgid "View and manage host's network interfaces"
|
1385
|
-
msgstr ""
|
1370
|
+
msgstr "Voir et gérer les interfaces réseau de cet hôte"
|
1386
1371
|
|
1387
1372
|
#: ../lib/hammer_cli_foreman/interface.rb:10
|
1388
|
-
#, fuzzy
|
1389
1373
|
msgid "primary"
|
1390
|
-
msgstr "
|
1374
|
+
msgstr "primaire"
|
1391
1375
|
|
1392
1376
|
#: ../lib/hammer_cli_foreman/interface.rb:11
|
1393
1377
|
msgid "provision"
|
1394
|
-
msgstr ""
|
1378
|
+
msgstr "provisionner"
|
1395
1379
|
|
1396
1380
|
#: ../lib/hammer_cli_foreman/interface.rb:28 ../lib/hammer_cli_foreman/interface.rb:48
|
1397
|
-
#, fuzzy
|
1398
1381
|
msgid "DNS name"
|
1399
|
-
msgstr "Nom
|
1382
|
+
msgstr "Nom DNS"
|
1400
1383
|
|
1401
1384
|
#: ../lib/hammer_cli_foreman/interface.rb:52
|
1402
|
-
#, fuzzy
|
1403
1385
|
msgid "Primary"
|
1404
|
-
msgstr "
|
1386
|
+
msgstr "Primaire"
|
1405
1387
|
|
1406
1388
|
#: ../lib/hammer_cli_foreman/interface.rb:53
|
1407
|
-
#, fuzzy
|
1408
1389
|
msgid "Provision"
|
1409
|
-
msgstr "
|
1390
|
+
msgstr "Provisionner"
|
1410
1391
|
|
1411
1392
|
#: ../lib/hammer_cli_foreman/interface.rb:54
|
1412
1393
|
msgid "Virtual"
|
1413
|
-
msgstr ""
|
1394
|
+
msgstr "Virtuel"
|
1414
1395
|
|
1415
1396
|
#: ../lib/hammer_cli_foreman/interface.rb:55
|
1416
1397
|
msgid "Tag"
|
1417
|
-
msgstr ""
|
1398
|
+
msgstr "Tag"
|
1418
1399
|
|
1419
1400
|
#: ../lib/hammer_cli_foreman/interface.rb:56
|
1420
1401
|
msgid "Attached to"
|
1421
|
-
msgstr ""
|
1402
|
+
msgstr "Attaché à"
|
1422
1403
|
|
1423
1404
|
#: ../lib/hammer_cli_foreman/interface.rb:58
|
1424
1405
|
msgid "BMC"
|
1425
|
-
msgstr ""
|
1406
|
+
msgstr "BMC"
|
1426
1407
|
|
1427
1408
|
#: ../lib/hammer_cli_foreman/interface.rb:63
|
1428
1409
|
msgid "Bond"
|
1429
|
-
msgstr ""
|
1410
|
+
msgstr "Agrégat"
|
1430
1411
|
|
1431
1412
|
#: ../lib/hammer_cli_foreman/interface.rb:64
|
1432
|
-
#, fuzzy
|
1433
1413
|
msgid "Mode"
|
1434
|
-
msgstr "
|
1414
|
+
msgstr "Mode"
|
1435
1415
|
|
1436
1416
|
#: ../lib/hammer_cli_foreman/interface.rb:65
|
1437
1417
|
msgid "Attached devices"
|
1438
|
-
msgstr ""
|
1418
|
+
msgstr "Périphériques attachés"
|
1439
1419
|
|
1440
1420
|
#: ../lib/hammer_cli_foreman/interface.rb:66
|
1441
1421
|
msgid "Bond options"
|
1442
|
-
msgstr ""
|
1422
|
+
msgstr "Options de l'aggrégat"
|
1443
1423
|
|
1444
1424
|
#: ../lib/hammer_cli_foreman/interface.rb:77
|
1445
1425
|
msgid "Should this interface be used for constructing the FQDN of the host? Each managed hosts needs to have one primary interface."
|
1446
|
-
msgstr ""
|
1426
|
+
msgstr "Cette interface doit-elle être utilisée pour choisir le FQDN de l'hôte ? Chaque hôte géré doit avoir une interface primaire."
|
1447
1427
|
|
1448
1428
|
#: ../lib/hammer_cli_foreman/interface.rb:78
|
1449
1429
|
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."
|
1450
|
-
msgstr ""
|
1430
|
+
msgstr "Cette interface doit-elle être utilisée pour les communications TFTP issues de PXELinux (ou SSH pour les images d'hôtes) ? Chaque hôte géré doit avoir une interface de provisioning."
|
1451
1431
|
|
1452
1432
|
#: ../lib/hammer_cli_foreman/interface.rb:128
|
1453
|
-
#, fuzzy
|
1454
1433
|
msgid "Interface created"
|
1455
|
-
msgstr "
|
1434
|
+
msgstr "Interface créée"
|
1456
1435
|
|
1457
1436
|
#: ../lib/hammer_cli_foreman/interface.rb:129
|
1458
|
-
#, fuzzy
|
1459
1437
|
msgid "Could not create the interface"
|
1460
|
-
msgstr "Impossible de créer l'
|
1438
|
+
msgstr "Impossible de créer l'interface"
|
1461
1439
|
|
1462
1440
|
#: ../lib/hammer_cli_foreman/interface.rb:131 ../lib/hammer_cli_foreman/interface.rb:144
|
1463
|
-
#, fuzzy
|
1464
1441
|
msgid "Compute resource specific attributes."
|
1465
|
-
msgstr "Attributs des
|
1442
|
+
msgstr "Attributs des ressources de calcul."
|
1466
1443
|
|
1467
1444
|
#: ../lib/hammer_cli_foreman/interface.rb:141
|
1468
|
-
#, fuzzy
|
1469
1445
|
msgid "Interface updated"
|
1470
|
-
msgstr "
|
1446
|
+
msgstr "Interface mis à jour"
|
1471
1447
|
|
1472
1448
|
#: ../lib/hammer_cli_foreman/interface.rb:142
|
1473
|
-
#, fuzzy
|
1474
1449
|
msgid "Could not update the interface"
|
1475
|
-
msgstr "Impossible de mettre à jour l'
|
1450
|
+
msgstr "Impossible de mettre à jour l'interface"
|
1476
1451
|
|
1477
1452
|
#: ../lib/hammer_cli_foreman/interface.rb:154
|
1478
|
-
#, fuzzy
|
1479
1453
|
msgid "Interface deleted"
|
1480
|
-
msgstr "
|
1454
|
+
msgstr "Interface supprimée"
|
1481
1455
|
|
1482
1456
|
#: ../lib/hammer_cli_foreman/interface.rb:155
|
1483
|
-
#, fuzzy
|
1484
1457
|
msgid "Could not delete the interface"
|
1485
|
-
msgstr "Impossible de supprimer
|
1458
|
+
msgstr "Impossible de supprimer cette interface"
|
1486
1459
|
|
1487
1460
|
#: ../lib/hammer_cli_foreman/location.rb:24 ../lib/hammer_cli_foreman/location.rb:62 ../lib/hammer_cli_foreman/location.rb:74
|
1488
1461
|
msgid "Location numeric id to search by"
|
@@ -1516,6 +1489,40 @@ msgstr "Localisation supprimée"
|
|
1516
1489
|
msgid "Could not delete the location"
|
1517
1490
|
msgstr "Impossible de supprimer la localisation"
|
1518
1491
|
|
1492
|
+
#: ../lib/hammer_cli_foreman/location.rb:86
|
1493
|
+
#, fuzzy
|
1494
|
+
msgid "Create or update parameter for a location."
|
1495
|
+
msgstr "Créer ou changer un paramètre d'un domaine."
|
1496
|
+
|
1497
|
+
#: ../lib/hammer_cli_foreman/location.rb:88 ../lib/hammer_cli_foreman/organization.rb:89
|
1498
|
+
#, fuzzy
|
1499
|
+
msgid "Parameter [%{name}] updated to value [%{value}]"
|
1500
|
+
msgstr "Paramètre [%{name}] mis à jour à la valeur [%{value}]."
|
1501
|
+
|
1502
|
+
#: ../lib/hammer_cli_foreman/location.rb:89 ../lib/hammer_cli_foreman/organization.rb:90
|
1503
|
+
msgid "Parameter [%{name}] created with value [%{value}]"
|
1504
|
+
msgstr ""
|
1505
|
+
|
1506
|
+
#: ../lib/hammer_cli_foreman/location.rb:90
|
1507
|
+
#, fuzzy
|
1508
|
+
msgid "Could not set location parameter"
|
1509
|
+
msgstr "Impossible de positionner le paramètre du domaine"
|
1510
|
+
|
1511
|
+
#: ../lib/hammer_cli_foreman/location.rb:97
|
1512
|
+
#, fuzzy
|
1513
|
+
msgid "Delete parameter for a location."
|
1514
|
+
msgstr "Suppression du paramètre d'un domaine"
|
1515
|
+
|
1516
|
+
#: ../lib/hammer_cli_foreman/location.rb:99 ../lib/hammer_cli_foreman/organization.rb:100
|
1517
|
+
#, fuzzy
|
1518
|
+
msgid "Parameter [%{name}] deleted"
|
1519
|
+
msgstr "Paramètre global [%{name}] supprimé"
|
1520
|
+
|
1521
|
+
#: ../lib/hammer_cli_foreman/location.rb:100
|
1522
|
+
#, fuzzy
|
1523
|
+
msgid "Could not delete location parameter"
|
1524
|
+
msgstr "Impossible de positionner le paramètre du domaine"
|
1525
|
+
|
1519
1526
|
#: ../lib/hammer_cli_foreman/media.rb:11
|
1520
1527
|
msgid "Path"
|
1521
1528
|
msgstr "Chemin"
|
@@ -1720,6 +1727,25 @@ msgstr "Organisation supprimée"
|
|
1720
1727
|
msgid "Could not delete the organization"
|
1721
1728
|
msgstr "Impossible de supprimer l'organisation"
|
1722
1729
|
|
1730
|
+
#: ../lib/hammer_cli_foreman/organization.rb:87
|
1731
|
+
#, fuzzy
|
1732
|
+
msgid "Create or update parameter for an organization."
|
1733
|
+
msgstr "Créer ou changer un paramètre d'un domaine."
|
1734
|
+
|
1735
|
+
#: ../lib/hammer_cli_foreman/organization.rb:91
|
1736
|
+
#, fuzzy
|
1737
|
+
msgid "Could not set organization parameter"
|
1738
|
+
msgstr "Impossible de positionner le paramètre du domaine"
|
1739
|
+
|
1740
|
+
#: ../lib/hammer_cli_foreman/organization.rb:98
|
1741
|
+
#, fuzzy
|
1742
|
+
msgid "Delete parameter for an organization."
|
1743
|
+
msgstr "Suppression du paramètre d'un domaine"
|
1744
|
+
|
1745
|
+
#: ../lib/hammer_cli_foreman/organization.rb:101
|
1746
|
+
msgid "Could not delete organization parameter"
|
1747
|
+
msgstr ""
|
1748
|
+
|
1723
1749
|
#: ../lib/hammer_cli_foreman/partition_table.rb:31
|
1724
1750
|
msgid "View partition table content."
|
1725
1751
|
msgstr "Voir le contenu de la table de partition"
|
@@ -1932,43 +1958,54 @@ msgstr "Impossible de supprimer le rapport"
|
|
1932
1958
|
msgid "The server does not support such operation."
|
1933
1959
|
msgstr "Le serveur ne supporte pas cette opération."
|
1934
1960
|
|
1935
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
1961
|
+
#: ../lib/hammer_cli_foreman/role.rb:20
|
1962
|
+
#, fuzzy
|
1963
|
+
msgid "Builtin"
|
1964
|
+
msgstr "Construire"
|
1965
|
+
|
1966
|
+
#: ../lib/hammer_cli_foreman/role.rb:24
|
1967
|
+
msgid "No"
|
1968
|
+
msgstr ""
|
1969
|
+
|
1970
|
+
#: ../lib/hammer_cli_foreman/role.rb:24
|
1971
|
+
msgid "Yes"
|
1972
|
+
msgstr ""
|
1973
|
+
|
1974
|
+
#: ../lib/hammer_cli_foreman/role.rb:36
|
1936
1975
|
msgid "User role id"
|
1937
1976
|
msgstr "Identifiant du rôle utilisateur"
|
1938
1977
|
|
1939
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
1978
|
+
#: ../lib/hammer_cli_foreman/role.rb:60
|
1940
1979
|
msgid "User role [%<name>s] created"
|
1941
1980
|
msgstr "Rôle utilisateur [%<name>s] créé"
|
1942
1981
|
|
1943
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
1982
|
+
#: ../lib/hammer_cli_foreman/role.rb:61
|
1944
1983
|
msgid "Could not create the user role"
|
1945
1984
|
msgstr "Impossible de créer le rôle utilisateur"
|
1946
1985
|
|
1947
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
1986
|
+
#: ../lib/hammer_cli_foreman/role.rb:68
|
1948
1987
|
msgid "User role [%<name>s] updated"
|
1949
1988
|
msgstr "Rôle utilisateur [%<name>s] mis à jour"
|
1950
1989
|
|
1951
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
1990
|
+
#: ../lib/hammer_cli_foreman/role.rb:69
|
1952
1991
|
msgid "Could not update the user role"
|
1953
1992
|
msgstr "Impossible de mettre à jour le rôle utilisateur"
|
1954
1993
|
|
1955
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
1994
|
+
#: ../lib/hammer_cli_foreman/role.rb:76
|
1956
1995
|
msgid "User role [%<name>s] deleted"
|
1957
1996
|
msgstr "Rôle utilisateur [%<name>s] supprimé"
|
1958
1997
|
|
1959
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
1998
|
+
#: ../lib/hammer_cli_foreman/role.rb:77
|
1960
1999
|
msgid "Could not delete the user roles"
|
1961
2000
|
msgstr "Impossible de supprimer le rôle utilisateur"
|
1962
2001
|
|
1963
2002
|
#: ../lib/hammer_cli_foreman/settings.rb:28
|
1964
|
-
#, fuzzy
|
1965
2003
|
msgid "Setting [%{name}] updated to [%{value}]"
|
1966
|
-
msgstr "Paramètre [%{name}] mis à jour à
|
2004
|
+
msgstr "Paramètre [%{name}] mis à jour à [%{value}]"
|
1967
2005
|
|
1968
2006
|
#: ../lib/hammer_cli_foreman/settings.rb:29
|
1969
|
-
#, fuzzy
|
1970
2007
|
msgid "Could not update the setting"
|
1971
|
-
msgstr "Impossible de
|
2008
|
+
msgstr "Impossible de mettre à jour le paramètre"
|
1972
2009
|
|
1973
2010
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:11
|
1974
2011
|
msgid "Default Value"
|
@@ -2004,25 +2041,23 @@ msgstr "Surcharger les valeurs"
|
|
2004
2041
|
|
2005
2042
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:70 ../lib/hammer_cli_foreman/smart_variable.rb:58
|
2006
2043
|
msgid "Merge overrides"
|
2007
|
-
msgstr ""
|
2044
|
+
msgstr "Fusionner les surcharges"
|
2008
2045
|
|
2009
2046
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:71 ../lib/hammer_cli_foreman/smart_variable.rb:59
|
2010
|
-
#, fuzzy
|
2011
2047
|
msgid "Merge default value"
|
2012
|
-
msgstr "
|
2048
|
+
msgstr "Fusionner la valeur par défaut"
|
2013
2049
|
|
2014
2050
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:72 ../lib/hammer_cli_foreman/smart_variable.rb:60
|
2015
2051
|
msgid "Avoid duplicates"
|
2016
|
-
msgstr ""
|
2052
|
+
msgstr "Eviter les doublons"
|
2017
2053
|
|
2018
2054
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:73 ../lib/hammer_cli_foreman/smart_variable.rb:61
|
2019
2055
|
msgid "Order"
|
2020
2056
|
msgstr "Ordre"
|
2021
2057
|
|
2022
2058
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:74 ../lib/hammer_cli_foreman/smart_variable.rb:62
|
2023
|
-
#, fuzzy
|
2024
2059
|
msgid "Values"
|
2025
|
-
msgstr "
|
2060
|
+
msgstr "Valeurs"
|
2026
2061
|
|
2027
2062
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:76 ../lib/hammer_cli_foreman/smart_variable.rb:64
|
2028
2063
|
msgid "Match"
|
@@ -2053,24 +2088,20 @@ msgid "Type of the validator."
|
|
2053
2088
|
msgstr "Type du validateur."
|
2054
2089
|
|
2055
2090
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:132 ../lib/hammer_cli_foreman/smart_variable.rb:122
|
2056
|
-
#, fuzzy
|
2057
2091
|
msgid "Override value created"
|
2058
|
-
msgstr "
|
2092
|
+
msgstr "Valeur de surcharge créée"
|
2059
2093
|
|
2060
2094
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:133 ../lib/hammer_cli_foreman/smart_variable.rb:123
|
2061
|
-
#, fuzzy
|
2062
2095
|
msgid "Could not create the override_value"
|
2063
|
-
msgstr "Impossible de créer
|
2096
|
+
msgstr "Impossible de créer cette surcharge de valeur"
|
2064
2097
|
|
2065
2098
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:152 ../lib/hammer_cli_foreman/smart_variable.rb:135
|
2066
|
-
#, fuzzy
|
2067
2099
|
msgid "Override value deleted"
|
2068
|
-
msgstr "
|
2100
|
+
msgstr "Valeur de surcharge supprimée"
|
2069
2101
|
|
2070
2102
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:153 ../lib/hammer_cli_foreman/smart_variable.rb:136
|
2071
|
-
#, fuzzy
|
2072
2103
|
msgid "Could not delete the override value"
|
2073
|
-
msgstr "Impossible de supprimer
|
2104
|
+
msgstr "Impossible de supprimer cette surcharge de valeur "
|
2074
2105
|
|
2075
2106
|
#: ../lib/hammer_cli_foreman/smart_proxy.rb:13
|
2076
2107
|
msgid "URL"
|
@@ -2126,35 +2157,31 @@ msgstr "Rechargement des fonctions smart proxy échoué"
|
|
2126
2157
|
|
2127
2158
|
#: ../lib/hammer_cli_foreman/smart_variable.rb:82
|
2128
2159
|
msgid "Smart variable [%{variable}] created"
|
2129
|
-
msgstr ""
|
2160
|
+
msgstr "Smart variable [%{variable}] créée"
|
2130
2161
|
|
2131
2162
|
#: ../lib/hammer_cli_foreman/smart_variable.rb:83
|
2132
|
-
#, fuzzy
|
2133
2163
|
msgid "Could not create the smart variable"
|
2134
|
-
msgstr "Impossible de créer la
|
2164
|
+
msgstr "Impossible de créer la smart variable"
|
2135
2165
|
|
2136
2166
|
#: ../lib/hammer_cli_foreman/smart_variable.rb:87 ../lib/hammer_cli_foreman/smart_variable.rb:101
|
2137
|
-
#, fuzzy
|
2138
2167
|
msgid "Type of the variable."
|
2139
|
-
msgstr "Type
|
2168
|
+
msgstr "Type de variable."
|
2140
2169
|
|
2141
2170
|
#: ../lib/hammer_cli_foreman/smart_variable.rb:96
|
2142
2171
|
msgid "Smart variable [%{variable}] updated"
|
2143
|
-
msgstr ""
|
2172
|
+
msgstr "Smart variable [%{variable}] mis à jour"
|
2144
2173
|
|
2145
2174
|
#: ../lib/hammer_cli_foreman/smart_variable.rb:97
|
2146
|
-
#, fuzzy
|
2147
2175
|
msgid "Could not update the smart variable"
|
2148
|
-
msgstr "Impossible de mettre à jour la
|
2176
|
+
msgstr "Impossible de mettre à jour la smart variable"
|
2149
2177
|
|
2150
2178
|
#: ../lib/hammer_cli_foreman/smart_variable.rb:111
|
2151
2179
|
msgid "Smart variable [%{variable}] deleted"
|
2152
|
-
msgstr ""
|
2180
|
+
msgstr "Smart variable [%{variable}] supprimée"
|
2153
2181
|
|
2154
2182
|
#: ../lib/hammer_cli_foreman/smart_variable.rb:112
|
2155
|
-
#, fuzzy
|
2156
2183
|
msgid "Could not delete the smart variable"
|
2157
|
-
msgstr "Impossible de supprimer la
|
2184
|
+
msgstr "Impossible de supprimer la smart variable"
|
2158
2185
|
|
2159
2186
|
#: ../lib/hammer_cli_foreman/subnet.rb:13
|
2160
2187
|
msgid "Mask"
|
@@ -2184,6 +2211,10 @@ msgstr "TFTP"
|
|
2184
2211
|
msgid "DHCP"
|
2185
2212
|
msgstr "DHCP"
|
2186
2213
|
|
2214
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:29
|
2215
|
+
msgid "IPAM"
|
2216
|
+
msgstr ""
|
2217
|
+
|
2187
2218
|
#: ../lib/hammer_cli_foreman/subnet.rb:30
|
2188
2219
|
msgid "VLAN ID"
|
2189
2220
|
msgstr "VLAN ID"
|
@@ -2238,7 +2269,7 @@ msgstr "Chemin du fichier contenant le modèle"
|
|
2238
2269
|
|
2239
2270
|
#: ../lib/hammer_cli_foreman/template.rb:104 ../lib/hammer_cli_foreman/template.rb:122
|
2240
2271
|
msgid "Template type. Eg. snippet, script, provision"
|
2241
|
-
msgstr "Type de modèle. Ex: snippet, script,
|
2272
|
+
msgstr "Type de modèle. Ex: snippet, script, provisioning"
|
2242
2273
|
|
2243
2274
|
#: ../lib/hammer_cli_foreman/template.rb:106
|
2244
2275
|
msgid "Config template created"
|
@@ -2266,7 +2297,7 @@ msgstr "Impossible de supprimer le modèle de configuration"
|
|
2266
2297
|
|
2267
2298
|
#: ../lib/hammer_cli_foreman/template.rb:150
|
2268
2299
|
msgid "Update the default PXE menu on all configured TFTP servers"
|
2269
|
-
msgstr ""
|
2300
|
+
msgstr "Mise à jour du menu PXE par défaut sur tous les serveurs TFTP configurés"
|
2270
2301
|
|
2271
2302
|
#: ../lib/hammer_cli_foreman/user.rb:11
|
2272
2303
|
msgid "Login"
|
@@ -2286,33 +2317,31 @@ msgstr "Autorisé par"
|
|
2286
2317
|
|
2287
2318
|
#: ../lib/hammer_cli_foreman/user.rb:30
|
2288
2319
|
msgid "Locale"
|
2289
|
-
msgstr ""
|
2320
|
+
msgstr "Locale"
|
2290
2321
|
|
2291
2322
|
#: ../lib/hammer_cli_foreman/user.rb:31
|
2292
2323
|
msgid "Timezone"
|
2293
|
-
msgstr ""
|
2324
|
+
msgstr "Fuseau horaire"
|
2294
2325
|
|
2295
2326
|
#: ../lib/hammer_cli_foreman/user.rb:32
|
2296
2327
|
msgid "Last login"
|
2297
2328
|
msgstr "Dernière connexion le"
|
2298
2329
|
|
2299
2330
|
#: ../lib/hammer_cli_foreman/user.rb:33
|
2300
|
-
#, fuzzy
|
2301
2331
|
msgid "Default organization"
|
2302
|
-
msgstr "
|
2332
|
+
msgstr "Organisation par défaut"
|
2303
2333
|
|
2304
2334
|
#: ../lib/hammer_cli_foreman/user.rb:34
|
2305
|
-
#, fuzzy
|
2306
2335
|
msgid "Default location"
|
2307
|
-
msgstr "
|
2336
|
+
msgstr "Emplacement par défaut"
|
2308
2337
|
|
2309
2338
|
#: ../lib/hammer_cli_foreman/user.rb:42 ../lib/hammer_cli_foreman/user.rb:43
|
2310
2339
|
msgid "default"
|
2311
|
-
msgstr ""
|
2340
|
+
msgstr "défaut"
|
2312
2341
|
|
2313
2342
|
#: ../lib/hammer_cli_foreman/user.rb:53
|
2314
2343
|
msgid "User [%{login}] created"
|
2315
|
-
msgstr ""
|
2344
|
+
msgstr "Utilisateur [%{login}] créé"
|
2316
2345
|
|
2317
2346
|
#: ../lib/hammer_cli_foreman/user.rb:54
|
2318
2347
|
msgid "Could not create the user"
|
@@ -2320,7 +2349,7 @@ msgstr "Impossible de créer l'utilisateur"
|
|
2320
2349
|
|
2321
2350
|
#: ../lib/hammer_cli_foreman/user.rb:61
|
2322
2351
|
msgid "User [%{login}] updated"
|
2323
|
-
msgstr ""
|
2352
|
+
msgstr "Utilisateur [%{login}] mis à jour"
|
2324
2353
|
|
2325
2354
|
#: ../lib/hammer_cli_foreman/user.rb:62
|
2326
2355
|
msgid "Could not update the user"
|
@@ -2328,7 +2357,7 @@ msgstr "Impossible de mettre à jour l'utilisateur"
|
|
2328
2357
|
|
2329
2358
|
#: ../lib/hammer_cli_foreman/user.rb:69
|
2330
2359
|
msgid "User [%{login}] deleted"
|
2331
|
-
msgstr ""
|
2360
|
+
msgstr "Utilisateur [%{login}] supprimé"
|
2332
2361
|
|
2333
2362
|
#: ../lib/hammer_cli_foreman/user.rb:70
|
2334
2363
|
msgid "Could not delete the user"
|
@@ -2358,62 +2387,6 @@ msgstr "Groupe d'utilisateurs [%<name>s] supprimé"
|
|
2358
2387
|
msgid "Could not delete the user group"
|
2359
2388
|
msgstr "Impossible de supprimer le groupe d'utilisateurs"
|
2360
2389
|
|
2361
|
-
#: lib/hammer_cli_foreman/
|
2362
|
-
#~ msgid "
|
2363
|
-
#~ msgstr "
|
2364
|
-
|
2365
|
-
#: lib/hammer_cli_foreman/host.rb:189
|
2366
|
-
#~ msgid "Puppet Proxy Id"
|
2367
|
-
#~ msgstr "Id du Proxy Puppet"
|
2368
|
-
|
2369
|
-
#: lib/hammer_cli_foreman/host.rb:198
|
2370
|
-
#~ msgid "BMC Network Interfaces"
|
2371
|
-
#~ msgstr "Interface Réseau BMC"
|
2372
|
-
|
2373
|
-
#: lib/hammer_cli_foreman/host.rb:203 lib/hammer_cli_foreman/host.rb:216
|
2374
|
-
#~ msgid "Domain Id"
|
2375
|
-
#~ msgstr "Id du domaine"
|
2376
|
-
|
2377
|
-
#: lib/hammer_cli_foreman/host.rb:204 lib/hammer_cli_foreman/host.rb:217
|
2378
|
-
#~ msgid "Domain Name"
|
2379
|
-
#~ msgstr "Nom de domaine"
|
2380
|
-
|
2381
|
-
#: lib/hammer_cli_foreman/host.rb:205 lib/hammer_cli_foreman/host.rb:218
|
2382
|
-
#~ msgid "Subnet Id"
|
2383
|
-
#~ msgstr "Id du sous réseau"
|
2384
|
-
|
2385
|
-
#: lib/hammer_cli_foreman/host.rb:206 lib/hammer_cli_foreman/host.rb:219
|
2386
|
-
#~ msgid "Subnet Name"
|
2387
|
-
#~ msgstr "Nom du sous-réseau"
|
2388
|
-
|
2389
|
-
#: lib/hammer_cli_foreman/host.rb:207
|
2390
|
-
#~ msgid "BMC Username"
|
2391
|
-
#~ msgstr "Nom d'utilisateur BMC"
|
2392
|
-
|
2393
|
-
#: lib/hammer_cli_foreman/host.rb:208
|
2394
|
-
#~ msgid "BMC Password"
|
2395
|
-
#~ msgstr "Mot de passe BMC"
|
2396
|
-
|
2397
|
-
#: lib/hammer_cli_foreman/host.rb:211
|
2398
|
-
#~ msgid "Managed Network Interfaces"
|
2399
|
-
#~ msgstr "Interfaces réseaux gérées"
|
2400
|
-
|
2401
|
-
#: lib/hammer_cli_foreman/commands.rb:288
|
2402
|
-
#~ msgid "List next page? (%s): "
|
2403
|
-
#~ msgstr "Afficher la page suivante ? (%s): "
|
2404
|
-
|
2405
|
-
#: lib/hammer_cli_foreman/smart_class_parameter.rb:63
|
2406
|
-
#~ msgid "Count"
|
2407
|
-
#~ msgstr "Nombre"
|
2408
|
-
|
2409
|
-
#: lib/hammer_cli_foreman/user.rb:47
|
2410
|
-
#~ msgid "User created"
|
2411
|
-
#~ msgstr "Utilisateur créé"
|
2412
|
-
|
2413
|
-
#: lib/hammer_cli_foreman/user.rb:55
|
2414
|
-
#~ msgid "User updated"
|
2415
|
-
#~ msgstr "Utilisateur mis à jour"
|
2416
|
-
|
2417
|
-
#: lib/hammer_cli_foreman/user.rb:63
|
2418
|
-
#~ msgid "User deleted"
|
2419
|
-
#~ msgstr "Utilisateur supprimé"
|
2390
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:201
|
2391
|
+
#~ msgid "%s found more than once"
|
2392
|
+
#~ msgstr "%s a été trouvé plus d'une fois"
|