hammer_cli 0.9.0 → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/hammer +22 -1
- data/config/cli_config.template.yml +20 -0
- data/doc/release_notes.md +7 -0
- data/lib/hammer_cli/abstract.rb +12 -15
- data/lib/hammer_cli/apipie/api_connection.rb +3 -1
- data/lib/hammer_cli/ca_cert_fetcher.rb +67 -0
- data/lib/hammer_cli/defaults.rb +18 -10
- data/lib/hammer_cli/exception_handler.rb +44 -5
- data/lib/hammer_cli/main.rb +8 -0
- data/lib/hammer_cli/options/option_collector.rb +22 -0
- data/lib/hammer_cli/options/sources/command_line.rb +18 -0
- data/lib/hammer_cli/options/sources/saved_defaults.rb +31 -0
- data/lib/hammer_cli/output/adapter/table.rb +66 -87
- data/lib/hammer_cli/output/fields.rb +1 -1
- data/lib/hammer_cli/ssloptions.rb +65 -0
- data/lib/hammer_cli/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/de/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/en/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/en_GB/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/es/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/fr/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/it/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/ja/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/ko/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/pt_BR/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/ru/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/zh_CN/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/zh_TW/LC_MESSAGES/hammer-cli.mo +0 -0
- data/man/hammer.1.gz +0 -0
- data/test/unit/abstract_test.rb +34 -0
- data/test/unit/apipie/api_connection_test.rb +3 -2
- data/test/unit/defaults_test.rb +15 -5
- data/test/unit/fixtures/defaults/defaults.yml +2 -0
- data/test/unit/options/option_collector_test.rb +29 -0
- data/test/unit/options/sources/command_line_test.rb +36 -0
- data/test/unit/options/sources/saved_defaults_test.rb +59 -0
- data/test/unit/output/adapter/table_test.rb +0 -27
- data/test/unit/{options → output}/field_filter_test.rb +0 -0
- data/test/unit/output/fields_test.rb +9 -6
- data/test/unit/validator_test.rb +0 -6
- metadata +60 -382
- data/lib/hammer_cli/table_print/column.rb +0 -19
- data/lib/hammer_cli/table_print/formatter.rb +0 -18
- data/locale/Makefile +0 -57
- data/locale/README.md +0 -18
- data/locale/ca/hammer-cli.edit.po +0 -445
- data/locale/ca/hammer-cli.po +0 -361
- data/locale/ca/hammer-cli.po.time_stamp +0 -0
- data/locale/de/hammer-cli.edit.po +0 -451
- data/locale/de/hammer-cli.po +0 -379
- data/locale/de/hammer-cli.po.time_stamp +0 -0
- data/locale/en/hammer-cli.edit.po +0 -443
- data/locale/en/hammer-cli.po +0 -355
- data/locale/en/hammer-cli.po.time_stamp +0 -0
- data/locale/en_GB/hammer-cli.edit.po +0 -445
- data/locale/en_GB/hammer-cli.po +0 -371
- data/locale/en_GB/hammer-cli.po.time_stamp +0 -0
- data/locale/es/hammer-cli.edit.po +0 -448
- data/locale/es/hammer-cli.po +0 -377
- data/locale/es/hammer-cli.po.time_stamp +0 -0
- data/locale/fr/hammer-cli.edit.po +0 -447
- data/locale/fr/hammer-cli.po +0 -374
- data/locale/fr/hammer-cli.po.time_stamp +0 -0
- data/locale/hammer-cli.pot +0 -461
- data/locale/it/hammer-cli.edit.po +0 -446
- data/locale/it/hammer-cli.po +0 -377
- data/locale/it/hammer-cli.po.time_stamp +0 -0
- data/locale/ja/hammer-cli.edit.po +0 -445
- data/locale/ja/hammer-cli.po +0 -363
- data/locale/ja/hammer-cli.po.time_stamp +0 -0
- data/locale/ko/hammer-cli.edit.po +0 -445
- data/locale/ko/hammer-cli.po +0 -364
- data/locale/ko/hammer-cli.po.time_stamp +0 -0
- data/locale/pt_BR/hammer-cli.edit.po +0 -449
- data/locale/pt_BR/hammer-cli.po +0 -374
- data/locale/pt_BR/hammer-cli.po.time_stamp +0 -0
- data/locale/ru/hammer-cli.edit.po +0 -448
- data/locale/ru/hammer-cli.po +0 -374
- data/locale/ru/hammer-cli.po.time_stamp +0 -0
- data/locale/zanata.xml +0 -28
- data/locale/zh_CN/hammer-cli.edit.po +0 -445
- data/locale/zh_CN/hammer-cli.po +0 -367
- data/locale/zh_CN/hammer-cli.po.time_stamp +0 -0
- data/locale/zh_TW/hammer-cli.edit.po +0 -445
- data/locale/zh_TW/hammer-cli.po +0 -364
- data/locale/zh_TW/hammer-cli.po.time_stamp +0 -0
- data/test/reports/TEST-Fields-ContainerField-display-.xml +0 -7
- data/test/reports/TEST-Fields-ContainerField-display-blank-is-allowed.xml +0 -15
- data/test/reports/TEST-Fields-ContainerField-display-blank-is-not-allowed.xml +0 -15
- data/test/reports/TEST-Fields-ContainerField.xml +0 -7
- data/test/reports/TEST-Fields-Field-display-.xml +0 -7
- data/test/reports/TEST-Fields-Field-display-blank-is-allowed.xml +0 -11
- data/test/reports/TEST-Fields-Field-display-blank-is-not-allowed.xml +0 -11
- data/test/reports/TEST-Fields-Field-hide-blank-.xml +0 -11
- data/test/reports/TEST-Fields-Field-parameters.xml +0 -9
- data/test/reports/TEST-Fields-Field.xml +0 -13
- data/test/reports/TEST-HammerCLI-AbstractCommand-build-options.xml +0 -15
- data/test/reports/TEST-HammerCLI-AbstractCommand-exception-handler.xml +0 -13
- data/test/reports/TEST-HammerCLI-AbstractCommand-logging.xml +0 -21
- data/test/reports/TEST-HammerCLI-AbstractCommand-option-builder.xml +0 -11
- data/test/reports/TEST-HammerCLI-AbstractCommand-options.xml +0 -11
- data/test/reports/TEST-HammerCLI-AbstractCommand-output.xml +0 -19
- data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-remove-subcommand.xml +0 -11
- data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand-.xml +0 -13
- data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand.xml +0 -11
- data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior.xml +0 -7
- data/test/reports/TEST-HammerCLI-AbstractCommand.xml +0 -11
- data/test/reports/TEST-HammerCLI-Apipie-Command-options.xml +0 -11
- data/test/reports/TEST-HammerCLI-Apipie-Command-resource-defined.xml +0 -9
- data/test/reports/TEST-HammerCLI-Apipie-Command-setting-resources.xml +0 -19
- data/test/reports/TEST-HammerCLI-Apipie-Command.xml +0 -9
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-aliasing-resources.xml +0 -13
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-filtering-options.xml +0 -15
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-required-options.xml +0 -11
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-setting-correct-normalizers.xml +0 -9
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-hash-params.xml +0 -11
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-one-simple-param.xml +0 -15
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder.xml +0 -7
- data/test/reports/TEST-HammerCLI-Completer-command-completion.xml +0 -29
- data/test/reports/TEST-HammerCLI-Completer-option-value-completion.xml +0 -17
- data/test/reports/TEST-HammerCLI-Completer-subcommand-completion.xml +0 -19
- data/test/reports/TEST-HammerCLI-Completer.xml +0 -7
- data/test/reports/TEST-HammerCLI-CompleterLine-line-complete.xml +0 -25
- data/test/reports/TEST-HammerCLI-CompleterLine-splitting-words.xml +0 -29
- data/test/reports/TEST-HammerCLI-CompleterLine.xml +0 -7
- data/test/reports/TEST-HammerCLI-CompleterWord-complete-.xml +0 -23
- data/test/reports/TEST-HammerCLI-CompleterWord-quote.xml +0 -15
- data/test/reports/TEST-HammerCLI-CompleterWord-quoted-.xml +0 -13
- data/test/reports/TEST-HammerCLI-CompleterWord.xml +0 -7
- data/test/reports/TEST-HammerCLI-Connection.xml +0 -21
- data/test/reports/TEST-HammerCLI-ExceptionHandler.xml +0 -21
- data/test/reports/TEST-HammerCLI-I18n.xml +0 -11
- data/test/reports/TEST-HammerCLI-MainCommand-loading-context-password.xml +0 -11
- data/test/reports/TEST-HammerCLI-MainCommand-loading-context-username.xml +0 -11
- data/test/reports/TEST-HammerCLI-MainCommand-loading-context-verbose.xml +0 -9
- data/test/reports/TEST-HammerCLI-MainCommand-loading-context.xml +0 -7
- data/test/reports/TEST-HammerCLI-MainCommand.xml +0 -7
- data/test/reports/TEST-HammerCLI-Modules-find-by-name.xml +0 -13
- data/test/reports/TEST-HammerCLI-Modules-load-a-module-module-not-found.xml +0 -13
- data/test/reports/TEST-HammerCLI-Modules-load-a-module-module-runtime-exception.xml +0 -13
- data/test/reports/TEST-HammerCLI-Modules-load-a-module-success.xml +0 -15
- data/test/reports/TEST-HammerCLI-Modules-load-a-module.xml +0 -7
- data/test/reports/TEST-HammerCLI-Modules-load-all-modules.xml +0 -9
- data/test/reports/TEST-HammerCLI-Modules-names.xml +0 -13
- data/test/reports/TEST-HammerCLI-Modules.xml +0 -7
- data/test/reports/TEST-HammerCLI-OptionBuilderContainer.0.xml +0 -7
- data/test/reports/TEST-HammerCLI-OptionBuilderContainer.xml +0 -11
- data/test/reports/TEST-HammerCLI-Options-Normalizers-abstract.xml +0 -9
- data/test/reports/TEST-HammerCLI-Options-Normalizers-bool.xml +0 -31
- data/test/reports/TEST-HammerCLI-Options-Normalizers-datetime.xml +0 -17
- data/test/reports/TEST-HammerCLI-Options-Normalizers-enum.xml +0 -15
- data/test/reports/TEST-HammerCLI-Options-Normalizers-enumlist.xml +0 -21
- data/test/reports/TEST-HammerCLI-Options-Normalizers-json-input.xml +0 -15
- data/test/reports/TEST-HammerCLI-Options-Normalizers-key-value-list.xml +0 -17
- data/test/reports/TEST-HammerCLI-Options-Normalizers-list.xml +0 -15
- data/test/reports/TEST-HammerCLI-Options-Normalizers.xml +0 -7
- data/test/reports/TEST-HammerCLI-Options-OptionDefinition-context.xml +0 -9
- data/test/reports/TEST-HammerCLI-Options-OptionDefinition-formatters.xml +0 -11
- data/test/reports/TEST-HammerCLI-Options-OptionDefinition.xml +0 -7
- data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract-error-messages.xml +0 -15
- data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract-messages.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract-test-data-for-field.xml +0 -15
- data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract.xml +0 -17
- data/test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection-show-ids.xml +0 -9
- data/test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection.xml +0 -27
- data/test/reports/TEST-HammerCLI-Output-Adapter-Base.xml +0 -7
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-formatters.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-collections.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-containers.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-ids.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-message.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues.xml +0 -7
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-column-width.xml +0 -15
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-formatters.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-handle-ids.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-sort-columns.xml +0 -9
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table.xml +0 -7
- data/test/reports/TEST-HammerCLI-Output-Definition-empty-.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Definition.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Dsl-collection.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Dsl-custom-fields.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Dsl-fields.xml +0 -15
- data/test/reports/TEST-HammerCLI-Output-Dsl-label.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Dsl-path-definition.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Dsl.xml +0 -9
- data/test/reports/TEST-HammerCLI-Output-FieldFilter.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Formatters-BooleanFormatter.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Formatters-ColorFormatter.xml +0 -9
- data/test/reports/TEST-HammerCLI-Output-Formatters-DateFormatter.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Formatters-FieldFormatter.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Formatters-FormatterContainer.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Formatters-FormatterLibrary.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Formatters-KeyValueFormatter.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Formatters-ListFormatter.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Formatters-LongTextFormatter.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Output-adapters.xml +0 -17
- data/test/reports/TEST-HammerCLI-Output-Output-data.xml +0 -15
- data/test/reports/TEST-HammerCLI-Output-Output-formatters.xml +0 -9
- data/test/reports/TEST-HammerCLI-Output-Output-messages.xml +0 -19
- data/test/reports/TEST-HammerCLI-Output-Output.xml +0 -7
- data/test/reports/TEST-HammerCLI-Output-RecordCollection.xml +0 -13
- data/test/reports/TEST-HammerCLI-Settings-load-from-paths.xml +0 -15
- data/test/reports/TEST-HammerCLI-Settings.xml +0 -25
- data/test/reports/TEST-HammerCLI-ShellHistory-loading-old-history.xml +0 -11
- data/test/reports/TEST-HammerCLI-ShellHistory-saving-history.xml +0 -15
- data/test/reports/TEST-HammerCLI-ShellHistory.xml +0 -7
- data/test/reports/TEST-MiniTest-Spec.xml +0 -7
- data/test/reports/TEST-String-camelize.xml +0 -11
- data/test/reports/TEST-String-formatting.xml +0 -17
- data/test/reports/TEST-String-indent.xml +0 -11
- data/test/reports/TEST-String-interactive-.xml +0 -13
- data/test/reports/TEST-String.xml +0 -7
- data/test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint-exist-.xml +0 -13
- data/test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint.xml +0 -7
- data/test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint-exist-.xml +0 -13
- data/test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint.xml +0 -7
- data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-exist-.xml +0 -9
- data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-rejected.xml +0 -13
- data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-required.xml +0 -13
- data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint.xml +0 -7
- data/test/reports/TEST-constraints.xml +0 -7
@@ -1,447 +0,0 @@
|
|
1
|
-
# SOME DESCRIPTIVE TITLE.
|
2
|
-
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
|
-
# This file is distributed under the same license as the hammer-cli package.
|
4
|
-
#
|
5
|
-
# Translators:
|
6
|
-
# Claer <transiblu@claer.hammock.fr>, 2014-2016
|
7
|
-
# Dominic Cleal <dominic@cleal.org>, 2014
|
8
|
-
# Pierre-Emmanuel Dutang <dutangp@gmail.com>, 2014,2016
|
9
|
-
msgid ""
|
10
|
-
msgstr ""
|
11
|
-
"Project-Id-Version: Foreman\n"
|
12
|
-
"Report-Msgid-Bugs-To: \n"
|
13
|
-
"POT-Creation-Date: 2016-09-01 12:28+0200\n"
|
14
|
-
"PO-Revision-Date: 2016-09-08 09:46+0000\n"
|
15
|
-
"Last-Translator: Pierre-Emmanuel Dutang <dutangp@gmail.com>\n"
|
16
|
-
"Language-Team: French (http://www.transifex.com/foreman/foreman/language/fr/)\n"
|
17
|
-
"MIME-Version: 1.0\n"
|
18
|
-
"Content-Type: text/plain; charset=UTF-8\n"
|
19
|
-
"Content-Transfer-Encoding: 8bit\n"
|
20
|
-
"Language: fr\n"
|
21
|
-
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
22
|
-
|
23
|
-
#: ../lib/hammer_cli/clamp.rb:5
|
24
|
-
msgid "too many arguments"
|
25
|
-
msgstr "trop d'arguments"
|
26
|
-
|
27
|
-
#: ../lib/hammer_cli/clamp.rb:6
|
28
|
-
msgid "option '%<option>s' is required"
|
29
|
-
msgstr "l'option '%<option>s' est requise"
|
30
|
-
|
31
|
-
#: ../lib/hammer_cli/clamp.rb:7
|
32
|
-
msgid "option '%<option>s' (or env %<env>s) is required"
|
33
|
-
msgstr "L'option '%<option>s' (ou env %<env>s) est requise"
|
34
|
-
|
35
|
-
#: ../lib/hammer_cli/clamp.rb:8
|
36
|
-
msgid "option '%<switch>s': %<message>s"
|
37
|
-
msgstr "L'option '%<switch>s': %<message>s"
|
38
|
-
|
39
|
-
#: ../lib/hammer_cli/clamp.rb:9
|
40
|
-
msgid "parameter '%<param>s': %<message>s"
|
41
|
-
msgstr "Paramètre '%<param>s': %<message>s"
|
42
|
-
|
43
|
-
#: ../lib/hammer_cli/clamp.rb:10
|
44
|
-
msgid "%<env>s: %<message>s"
|
45
|
-
msgstr "%<env>s: %<message>s"
|
46
|
-
|
47
|
-
#: ../lib/hammer_cli/clamp.rb:11
|
48
|
-
msgid "Unrecognised option '%<switch>s'"
|
49
|
-
msgstr "Option inconnue '%<switch>s'"
|
50
|
-
|
51
|
-
#: ../lib/hammer_cli/clamp.rb:12
|
52
|
-
msgid "No such sub-command '%<name>s'"
|
53
|
-
msgstr "Sous commande inconnue '%<name>s'"
|
54
|
-
|
55
|
-
#: ../lib/hammer_cli/clamp.rb:13
|
56
|
-
msgid "no value provided"
|
57
|
-
msgstr "Aucune valeur fournit"
|
58
|
-
|
59
|
-
#: ../lib/hammer_cli/defaults.rb:77
|
60
|
-
msgid ""
|
61
|
-
"Couldn't create %s. Please create the directory before setting defaults."
|
62
|
-
msgstr "Imporrible de créer %s. Merci de créer le dossier avant la configuration par defaut."
|
63
|
-
|
64
|
-
#: ../lib/hammer_cli/defaults.rb:101
|
65
|
-
msgid "Defaults management"
|
66
|
-
msgstr "Gestion par défaut"
|
67
|
-
|
68
|
-
#: ../lib/hammer_cli/defaults_commands.rb:25
|
69
|
-
msgid "List all the providers"
|
70
|
-
msgstr "Afficher tous les fournisseurs"
|
71
|
-
|
72
|
-
#: ../lib/hammer_cli/defaults_commands.rb:37
|
73
|
-
msgid "Provider"
|
74
|
-
msgstr "Fournisseur"
|
75
|
-
|
76
|
-
#: ../lib/hammer_cli/defaults_commands.rb:38
|
77
|
-
msgid "Supported defaults"
|
78
|
-
msgstr "Valeurs par défaut prises en charge"
|
79
|
-
|
80
|
-
#: ../lib/hammer_cli/defaults_commands.rb:39
|
81
|
-
msgid "Description"
|
82
|
-
msgstr "Description"
|
83
|
-
|
84
|
-
#: ../lib/hammer_cli/defaults_commands.rb:56
|
85
|
-
msgid "List all the default parameters"
|
86
|
-
msgstr "Afficher les paramètres par défaut"
|
87
|
-
|
88
|
-
#: ../lib/hammer_cli/defaults_commands.rb:67
|
89
|
-
msgid "Parameter"
|
90
|
-
msgstr "Paramètre"
|
91
|
-
|
92
|
-
#: ../lib/hammer_cli/defaults_commands.rb:68
|
93
|
-
msgid "Value"
|
94
|
-
msgstr "Valeur"
|
95
|
-
|
96
|
-
#: ../lib/hammer_cli/defaults_commands.rb:86
|
97
|
-
msgid "Delete a default param"
|
98
|
-
msgstr "Supprimer un paramètre par défaut"
|
99
|
-
|
100
|
-
#: ../lib/hammer_cli/defaults_commands.rb:87
|
101
|
-
msgid "The name of the default option"
|
102
|
-
msgstr "Le nom de l'option par défaut"
|
103
|
-
|
104
|
-
#: ../lib/hammer_cli/defaults_commands.rb:103
|
105
|
-
msgid "Add a default parameter to config"
|
106
|
-
msgstr "Ajout d'un paramètre par défaut à la configuration"
|
107
|
-
|
108
|
-
#: ../lib/hammer_cli/defaults_commands.rb:104
|
109
|
-
msgid "The name of the default option (e.g. organization_id)."
|
110
|
-
msgstr "Le nom de l'option par défaut (par ex. organization_id)."
|
111
|
-
|
112
|
-
#: ../lib/hammer_cli/defaults_commands.rb:105
|
113
|
-
msgid "The value for the default option"
|
114
|
-
msgstr "La valeur pour l'option par défaut"
|
115
|
-
|
116
|
-
#: ../lib/hammer_cli/defaults_commands.rb:106
|
117
|
-
msgid ""
|
118
|
-
"The name of the provider providing the value. For list available providers "
|
119
|
-
"see `hammer defaults providers`."
|
120
|
-
msgstr "Le nom du fournisseur délivrant la valeur par défaut. Pour une liste des fournisseurs disponibles veuillez consulter `hammer defaults providers`."
|
121
|
-
|
122
|
-
#: ../lib/hammer_cli/defaults_commands.rb:134
|
123
|
-
msgid ""
|
124
|
-
"Added %{key_val} default-option with value that will be generated from the "
|
125
|
-
"server."
|
126
|
-
msgstr "Ajout de l'option par défaut %{key_val} avec la valeur qui est générée par le serveur."
|
127
|
-
|
128
|
-
#: ../lib/hammer_cli/defaults_commands.rb:135
|
129
|
-
msgid "Added %{key_val} default-option with value %{val_val}."
|
130
|
-
msgstr "Ajout de l'option par défaut %{key_val} avec la valeur %{val_val}."
|
131
|
-
|
132
|
-
#: ../lib/hammer_cli/defaults_commands.rb:139
|
133
|
-
msgid ""
|
134
|
-
"Provider %{name} was not found. See `hammer defaults providers` for "
|
135
|
-
"available providers."
|
136
|
-
msgstr "Le fournisseur %{name} n'a pas été trouvé. Voir `hammer defaults providers` pour afficher les fournisseurs disponibles."
|
137
|
-
|
138
|
-
#: ../lib/hammer_cli/defaults_commands.rb:143
|
139
|
-
msgid ""
|
140
|
-
"The param name is not supported by provider. See `hammer defaults providers`"
|
141
|
-
" for supported params."
|
142
|
-
msgstr "Le paramètre n'est pas supporté par le fournisseur. Voir `hammer defaults providers` pour afficher la liste des paramètres supportés."
|
143
|
-
|
144
|
-
#: ../lib/hammer_cli/defaults_commands.rb:147
|
145
|
-
msgid "%{param} was deleted successfully."
|
146
|
-
msgstr "Succès de la suppression de %{param}."
|
147
|
-
|
148
|
-
#: ../lib/hammer_cli/defaults_commands.rb:151
|
149
|
-
msgid "You must specify value or a provider name, can't specify both."
|
150
|
-
msgstr "Vous devez spécifier une valeur ou un nom de fournisseur, vous ne pouvez pas spécifier les deux."
|
151
|
-
|
152
|
-
#: ../lib/hammer_cli/defaults_commands.rb:155
|
153
|
-
msgid "Couldn't find the requested param in %s."
|
154
|
-
msgstr "Impossible de trouver le paramètre dans %s."
|
155
|
-
|
156
|
-
#: ../lib/hammer_cli/exception_handler.rb:62
|
157
|
-
msgid "Error: %s"
|
158
|
-
msgstr "Erreur : %s"
|
159
|
-
|
160
|
-
#: ../lib/hammer_cli/exception_handler.rb:68
|
161
|
-
msgid "Error: %{message}"
|
162
|
-
msgstr "Erreur : %{message}"
|
163
|
-
|
164
|
-
#: ../lib/hammer_cli/exception_handler.rb:69
|
165
|
-
msgid "See: '%{path} --help'"
|
166
|
-
msgstr "Voir : '%{path} --help'"
|
167
|
-
|
168
|
-
#: ../lib/hammer_cli/exception_handler.rb:86
|
169
|
-
msgid "Invalid username or password"
|
170
|
-
msgstr "Utilisateur ou mot de passe incorrect"
|
171
|
-
|
172
|
-
#: ../lib/hammer_cli/exception_handler.rb:93
|
173
|
-
msgid "Could not load the API description from the server"
|
174
|
-
msgstr "Impossible de charger la description de l'API depuis le serveur"
|
175
|
-
|
176
|
-
#: ../lib/hammer_cli/exception_handler.rb:94
|
177
|
-
msgid "is the server down?"
|
178
|
-
msgstr "Le serveur est-il éteint ?"
|
179
|
-
|
180
|
-
#: ../lib/hammer_cli/exception_handler.rb:95
|
181
|
-
msgid ""
|
182
|
-
"was '%s' run on the server when using apipie cache? (typical production "
|
183
|
-
"settings)"
|
184
|
-
msgstr "Est ce que '%s' était lancé pendant que le cache apipie était en cours d'utilisation ? (état normal pour un serveur de production)"
|
185
|
-
|
186
|
-
#: ../lib/hammer_cli/exception_handler.rb:101
|
187
|
-
msgid "Missing arguments for %s"
|
188
|
-
msgstr "Arguments manquants pour %s"
|
189
|
-
|
190
|
-
#: ../lib/hammer_cli/logger.rb:57
|
191
|
-
msgid "No permissions to create log dir %s"
|
192
|
-
msgstr "Permission refusée pour la création du répertoire de log %s "
|
193
|
-
|
194
|
-
#: ../lib/hammer_cli/logger.rb:72
|
195
|
-
msgid "File %s not writeable, won't log anything to the file!"
|
196
|
-
msgstr "Fichier %s non disponible en écriture, aucun log ne sera ajouté au fichier !"
|
197
|
-
|
198
|
-
#: ../lib/hammer_cli/main.rb:7
|
199
|
-
msgid "be verbose"
|
200
|
-
msgstr "être verbeux"
|
201
|
-
|
202
|
-
#: ../lib/hammer_cli/main.rb:8
|
203
|
-
msgid "show debugging output "
|
204
|
-
msgstr "voir la sortie debug"
|
205
|
-
|
206
|
-
#: ../lib/hammer_cli/main.rb:9
|
207
|
-
msgid "force reload of Apipie cache"
|
208
|
-
msgstr "Forcer le rechargement du cache Apipie"
|
209
|
-
|
210
|
-
#: ../lib/hammer_cli/main.rb:11
|
211
|
-
msgid "path to custom config file"
|
212
|
-
msgstr "chemin du fichier de configuration spécifique"
|
213
|
-
|
214
|
-
#: ../lib/hammer_cli/main.rb:13
|
215
|
-
msgid "username to access the remote system"
|
216
|
-
msgstr "nom d'utilisateur pour accéder au système distant"
|
217
|
-
|
218
|
-
#: ../lib/hammer_cli/main.rb:15
|
219
|
-
msgid "password to access the remote system"
|
220
|
-
msgstr "mot de passe pour accéder au système distant"
|
221
|
-
|
222
|
-
#: ../lib/hammer_cli/main.rb:17
|
223
|
-
msgid "remote system address"
|
224
|
-
msgstr "adresse du système distant"
|
225
|
-
|
226
|
-
#: ../lib/hammer_cli/main.rb:20
|
227
|
-
msgid "show version"
|
228
|
-
msgstr "Voir la version"
|
229
|
-
|
230
|
-
#: ../lib/hammer_cli/main.rb:23
|
231
|
-
msgid "unknown version"
|
232
|
-
msgstr "version inconnue"
|
233
|
-
|
234
|
-
#: ../lib/hammer_cli/main.rb:29
|
235
|
-
msgid "Show ids of associated resources"
|
236
|
-
msgstr "Afficher les IDs liées aux ressources"
|
237
|
-
|
238
|
-
#: ../lib/hammer_cli/main.rb:31
|
239
|
-
msgid "Explicitly turn interactive mode on/off"
|
240
|
-
msgstr "Désactiver explicitement le mode interactif"
|
241
|
-
|
242
|
-
#: ../lib/hammer_cli/main.rb:35
|
243
|
-
msgid "Output as CSV (same as --output=csv)"
|
244
|
-
msgstr "Sortie de type CSV (idem --output=csv)"
|
245
|
-
|
246
|
-
#: ../lib/hammer_cli/main.rb:36
|
247
|
-
msgid "Set output format. One of [%s]"
|
248
|
-
msgstr "Définir le format de sortie. Parmi [%s]"
|
249
|
-
|
250
|
-
#: ../lib/hammer_cli/main.rb:39
|
251
|
-
msgid "Character to separate the values"
|
252
|
-
msgstr "Caractère de séparation des valeurs"
|
253
|
-
|
254
|
-
#: ../lib/hammer_cli/main.rb:43
|
255
|
-
msgid "Get list of possible endings"
|
256
|
-
msgstr "Lister les fins possibles"
|
257
|
-
|
258
|
-
#: ../lib/hammer_cli/modules.rb:12
|
259
|
-
msgid ""
|
260
|
-
"Legacy configuration of modules detected. Check section about configuration "
|
261
|
-
"in user manual"
|
262
|
-
msgstr "Ancienne configuration des modules détectée. Veuillez consulter la section configuration du manuel utilisateur"
|
263
|
-
|
264
|
-
#: ../lib/hammer_cli/modules.rb:60
|
265
|
-
msgid "Warning: An error occured while loading module %s"
|
266
|
-
msgstr "Attention: Une erreur est survenue lors du chargement du module %s"
|
267
|
-
|
268
|
-
#: ../lib/hammer_cli/modules.rb:87
|
269
|
-
msgid "Error: Some of the required modules are disabled in configuration: %s "
|
270
|
-
msgstr "Erreur : certains modules requis sont désactivés dans la configuration : %s "
|
271
|
-
|
272
|
-
#: ../lib/hammer_cli/options/normalizers.rb:29
|
273
|
-
msgid "Comma-separated list of key=value."
|
274
|
-
msgstr "Liste de clef=valeur séparées par des virgules."
|
275
|
-
|
276
|
-
#: ../lib/hammer_cli/options/normalizers.rb:43
|
277
|
-
msgid ""
|
278
|
-
"value must be defined as a comma-separated list of key=value or valid JSON"
|
279
|
-
msgstr "la valeur doit être définie comme liste de clef=valeur séparées par des virgules ou en JSON valide"
|
280
|
-
|
281
|
-
#: ../lib/hammer_cli/options/normalizers.rb:85
|
282
|
-
msgid "Comma separated list of values."
|
283
|
-
msgstr "Liste de valeurs séparées par des virgules."
|
284
|
-
|
285
|
-
#: ../lib/hammer_cli/options/normalizers.rb:100
|
286
|
-
msgid "numeric value is required"
|
287
|
-
msgstr "une valeur numérique est requise"
|
288
|
-
|
289
|
-
#: ../lib/hammer_cli/options/normalizers.rb:114
|
290
|
-
msgid "One of true/false, yes/no, 1/0."
|
291
|
-
msgstr "Au choix parmi true/false, yes/no, 1/0."
|
292
|
-
|
293
|
-
#: ../lib/hammer_cli/options/normalizers.rb:124
|
294
|
-
msgid "value must be one of true/false, yes/no, 1/0"
|
295
|
-
msgstr "La valeur doit être un de ces choix : true/false, yes/no, 1/0"
|
296
|
-
|
297
|
-
#: ../lib/hammer_cli/options/normalizers.rb:163
|
298
|
-
msgid "Unable to parse JSON input"
|
299
|
-
msgstr "Impossible d'analyser l'entrée JSON"
|
300
|
-
|
301
|
-
#: ../lib/hammer_cli/options/normalizers.rb:177
|
302
|
-
msgid "Possible value(s): %s"
|
303
|
-
msgstr "Valeur(s) possible(s) : %s"
|
304
|
-
|
305
|
-
#: ../lib/hammer_cli/options/normalizers.rb:185
|
306
|
-
msgid "value must be %s"
|
307
|
-
msgstr "la valeur doit être %s"
|
308
|
-
|
309
|
-
#: ../lib/hammer_cli/options/normalizers.rb:187
|
310
|
-
msgid "value must be one of %s"
|
311
|
-
msgstr "la valeur doit être une des valeurs suivantes %s"
|
312
|
-
|
313
|
-
#: ../lib/hammer_cli/options/normalizers.rb:208
|
314
|
-
msgid "Date and time in YYYY-MM-DD HH:MM:SS or ISO 8601 format"
|
315
|
-
msgstr "Date et heure suivant YYYY-MM-DD HH:MM:SS ou format ISO 8601"
|
316
|
-
|
317
|
-
#: ../lib/hammer_cli/options/normalizers.rb:215
|
318
|
-
msgid "'%s' is not a valid date"
|
319
|
-
msgstr "'%s' n'est pas une date valide"
|
320
|
-
|
321
|
-
#: ../lib/hammer_cli/options/normalizers.rb:226
|
322
|
-
msgid "Any combination (comma separated list) of '%s'"
|
323
|
-
msgstr "Toute combinaison (liste séparée par des virgules) de '%s'"
|
324
|
-
|
325
|
-
#: ../lib/hammer_cli/options/normalizers.rb:246
|
326
|
-
msgid "value must be a combination of '%s'"
|
327
|
-
msgstr "la valeur doit être une combinaison de '%s'"
|
328
|
-
|
329
|
-
#: ../lib/hammer_cli/options/option_definition.rb:56
|
330
|
-
msgid "Warning: Option %{option} is deprecated. %{message}"
|
331
|
-
msgstr "Attention : L'option %{option} n'est plus supportée. %{message}"
|
332
|
-
|
333
|
-
#: ../lib/hammer_cli/options/option_definition.rb:75
|
334
|
-
msgid "Deprecated: %{deprecated_msg}"
|
335
|
-
msgstr "Déprécié : %{deprecated_msg}"
|
336
|
-
|
337
|
-
#: ../lib/hammer_cli/options/option_definition.rb:78
|
338
|
-
msgid "%{flag} is deprecated: %{deprecated_msg}"
|
339
|
-
msgstr "%{flag} est déprécié : %{deprecated_msg}"
|
340
|
-
|
341
|
-
#: ../lib/hammer_cli/options/option_definition.rb:101
|
342
|
-
msgid "Can be specified multiple times. "
|
343
|
-
msgstr "Peut être spécifié plusieurs fois."
|
344
|
-
|
345
|
-
#: ../lib/hammer_cli/options/option_definition.rb:102
|
346
|
-
msgid "Default: "
|
347
|
-
msgstr "Défaut : "
|
348
|
-
|
349
|
-
#: ../lib/hammer_cli/options/option_definition.rb:102
|
350
|
-
msgid ", or "
|
351
|
-
msgstr ", ou "
|
352
|
-
|
353
|
-
#: ../lib/hammer_cli/output/adapter/csv.rb:179
|
354
|
-
msgid "Message"
|
355
|
-
msgstr "Message"
|
356
|
-
|
357
|
-
#: ../lib/hammer_cli/output/adapter/csv.rb:183
|
358
|
-
msgid "Id"
|
359
|
-
msgstr "Id"
|
360
|
-
|
361
|
-
#: ../lib/hammer_cli/output/adapter/csv.rb:188
|
362
|
-
msgid "Name"
|
363
|
-
msgstr "Nom"
|
364
|
-
|
365
|
-
#: ../lib/hammer_cli/output/adapter/table.rb:63
|
366
|
-
msgid "Page %{page} of %{total} (use --page and --per-page for navigation)"
|
367
|
-
msgstr "Page %{page} sur %{total} (utiliser --page et --per-page pour la navigation)"
|
368
|
-
|
369
|
-
#: ../lib/hammer_cli/output/formatters.rb:160
|
370
|
-
msgid "no"
|
371
|
-
msgstr "non"
|
372
|
-
|
373
|
-
#: ../lib/hammer_cli/output/formatters.rb:160
|
374
|
-
msgid "yes"
|
375
|
-
msgstr "oui"
|
376
|
-
|
377
|
-
#: ../lib/hammer_cli/settings.rb:27
|
378
|
-
msgid ""
|
379
|
-
"Warning: location hammer.modules.d is deprecated, move your module "
|
380
|
-
"configurations to cli.modules.d"
|
381
|
-
msgstr "Attention: l'emplacement hammer.modules.d est déprécié, déplacez vos configurations dans cli.modules.d"
|
382
|
-
|
383
|
-
#: ../lib/hammer_cli/settings.rb:44
|
384
|
-
msgid "Warning: Couldn't load configuration file %{path}: %{message}"
|
385
|
-
msgstr "Attention : Impossible de charger la configuration du fichier %{path} : %{message}"
|
386
|
-
|
387
|
-
#: ../lib/hammer_cli/shell.rb:10
|
388
|
-
msgid "Print help for commands"
|
389
|
-
msgstr "Afficher l'aide des commandes"
|
390
|
-
|
391
|
-
#: ../lib/hammer_cli/shell.rb:22
|
392
|
-
msgid "Exit interactive shell"
|
393
|
-
msgstr "Quitter le shell interactif"
|
394
|
-
|
395
|
-
#: ../lib/hammer_cli/shell.rb:116
|
396
|
-
msgid "Welcome to the hammer interactive shell"
|
397
|
-
msgstr "Bienvenue sur le shell interactif d'Hammer"
|
398
|
-
|
399
|
-
#: ../lib/hammer_cli/shell.rb:117
|
400
|
-
msgid "Type 'help' for usage information"
|
401
|
-
msgstr "Saisir 'help' pour des informations d'utilisation "
|
402
|
-
|
403
|
-
#: ../lib/hammer_cli/shell.rb:133
|
404
|
-
msgid "Interactive shell"
|
405
|
-
msgstr "Shell interactif"
|
406
|
-
|
407
|
-
#: ../lib/hammer_cli/subcommand.rb:56
|
408
|
-
msgid ""
|
409
|
-
"can't replace subcommand %<name>s (%<existing_class>s) with %<name>s "
|
410
|
-
"(%<new_class>s)"
|
411
|
-
msgstr "impossible de remplacer la sous-commande %<name>s (%<existing_class>s) par %<name>s (%<new_class>s)"
|
412
|
-
|
413
|
-
#: ../lib/hammer_cli/validator.rb:41
|
414
|
-
msgid "Unknown option name '%s'"
|
415
|
-
msgstr "Option nommée '%s' inconnue"
|
416
|
-
|
417
|
-
#: ../lib/hammer_cli/validator.rb:62
|
418
|
-
msgid "You can't set all options %s at one time"
|
419
|
-
msgstr "Vous ne pouvez pas définir toutes les options %s en même temps"
|
420
|
-
|
421
|
-
#: ../lib/hammer_cli/validator.rb:63
|
422
|
-
msgid "Options %s are required"
|
423
|
-
msgstr "Options %s requises"
|
424
|
-
|
425
|
-
#: ../lib/hammer_cli/validator.rb:77
|
426
|
-
msgid "You can't set option %s"
|
427
|
-
msgstr "Vous ne pouvez pas définir l'option %s"
|
428
|
-
|
429
|
-
#: ../lib/hammer_cli/validator.rb:78
|
430
|
-
msgid "Option %s is required"
|
431
|
-
msgstr "Option %s requise"
|
432
|
-
|
433
|
-
#: ../lib/hammer_cli/validator.rb:90
|
434
|
-
msgid "You can't set any of options %s"
|
435
|
-
msgstr "Vous ne pouvez définir les options de %s"
|
436
|
-
|
437
|
-
#: ../lib/hammer_cli/validator.rb:91
|
438
|
-
msgid "At least one of options %s is required"
|
439
|
-
msgstr "Au moins une option de %s est requise"
|
440
|
-
|
441
|
-
#: ../lib/hammer_cli/validator.rb:116
|
442
|
-
msgid "One of options %s is required"
|
443
|
-
msgstr "Au moins une option de %s est requise"
|
444
|
-
|
445
|
-
#: ../lib/hammer_cli/validator.rb:120
|
446
|
-
msgid "Only one of options %s can be set"
|
447
|
-
msgstr "Une seule option parmi %s peut être définie"
|