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
data/locale/fr/hammer-cli.po
DELETED
@@ -1,374 +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
|
7
|
-
# Dominic Cleal <dcleal@redhat.com>, 2014
|
8
|
-
# Pierre-Emmanuel Dutang <dutangp@gmail.com>, 2014
|
9
|
-
# jcarbone <jcarbone@redhat.com>, 2015. #zanata
|
10
|
-
msgid ""
|
11
|
-
msgstr ""
|
12
|
-
"Project-Id-Version: hammer-cli 0.9.0\n"
|
13
|
-
"Report-Msgid-Bugs-To: \n"
|
14
|
-
"PO-Revision-Date: 2015-04-28 08:20+0000\n"
|
15
|
-
"Last-Translator: jcarbone <jcarbone@redhat.com>\n"
|
16
|
-
"Language-Team: French (http://www.transifex.com/projects/p/foreman/language/fr"
|
17
|
-
"/)\n"
|
18
|
-
"Language: fr\n"
|
19
|
-
"MIME-Version: 1.0\n"
|
20
|
-
"Content-Type: text/plain; charset=UTF-8\n"
|
21
|
-
"Content-Transfer-Encoding: 8bit\n"
|
22
|
-
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
23
|
-
"X-Generator: Zanata 3.6.0\n"
|
24
|
-
|
25
|
-
msgid "too many arguments"
|
26
|
-
msgstr "trop d'arguments"
|
27
|
-
|
28
|
-
msgid "option '%<option>s' is required"
|
29
|
-
msgstr "l'option '%<option>s' est requise"
|
30
|
-
|
31
|
-
msgid "option '%<option>s' (or env %<env>s) is required"
|
32
|
-
msgstr "L'option '%<option>s' (ou env %<env>s) est requise"
|
33
|
-
|
34
|
-
msgid "option '%<switch>s': %<message>s"
|
35
|
-
msgstr "L'option '%<switch>s': %<message>s"
|
36
|
-
|
37
|
-
msgid "parameter '%<param>s': %<message>s"
|
38
|
-
msgstr "Paramètre '%<param>s': %<message>s"
|
39
|
-
|
40
|
-
msgid "%<env>s: %<message>s"
|
41
|
-
msgstr "%<env>s: %<message>s"
|
42
|
-
|
43
|
-
msgid "Unrecognised option '%<switch>s'"
|
44
|
-
msgstr "Option inconnue '%<switch>s'"
|
45
|
-
|
46
|
-
msgid "No such sub-command '%<name>s'"
|
47
|
-
msgstr "Sous commande inconnue '%<name>s'"
|
48
|
-
|
49
|
-
msgid "no value provided"
|
50
|
-
msgstr "Aucune valeur fournit"
|
51
|
-
|
52
|
-
msgid "Couldn't create %s. Please create the directory before setting defaults."
|
53
|
-
msgstr ""
|
54
|
-
|
55
|
-
msgid "Defaults management"
|
56
|
-
msgstr ""
|
57
|
-
|
58
|
-
msgid "List all the providers"
|
59
|
-
msgstr ""
|
60
|
-
|
61
|
-
msgid "Provider"
|
62
|
-
msgstr ""
|
63
|
-
|
64
|
-
msgid "Supported defaults"
|
65
|
-
msgstr ""
|
66
|
-
|
67
|
-
msgid "Description"
|
68
|
-
msgstr ""
|
69
|
-
|
70
|
-
msgid "List all the default parameters"
|
71
|
-
msgstr ""
|
72
|
-
|
73
|
-
msgid "Parameter"
|
74
|
-
msgstr ""
|
75
|
-
|
76
|
-
msgid "Value"
|
77
|
-
msgstr ""
|
78
|
-
|
79
|
-
msgid "Delete a default param"
|
80
|
-
msgstr ""
|
81
|
-
|
82
|
-
msgid "The name of the default option"
|
83
|
-
msgstr ""
|
84
|
-
|
85
|
-
msgid "Add a default parameter to config"
|
86
|
-
msgstr ""
|
87
|
-
|
88
|
-
msgid "The name of the default option (e.g. organization_id)."
|
89
|
-
msgstr ""
|
90
|
-
|
91
|
-
msgid "The value for the default option"
|
92
|
-
msgstr ""
|
93
|
-
|
94
|
-
msgid ""
|
95
|
-
"The name of the provider providing the value. For list available providers see"
|
96
|
-
" `hammer defaults providers`."
|
97
|
-
msgstr ""
|
98
|
-
|
99
|
-
msgid ""
|
100
|
-
"Added %{key_val} default-option with value that will be generated from the ser"
|
101
|
-
"ver."
|
102
|
-
msgstr ""
|
103
|
-
|
104
|
-
msgid "Added %{key_val} default-option with value %{val_val}."
|
105
|
-
msgstr ""
|
106
|
-
|
107
|
-
msgid ""
|
108
|
-
"Provider %{name} was not found. See `hammer defaults providers` for available "
|
109
|
-
"providers."
|
110
|
-
msgstr ""
|
111
|
-
|
112
|
-
msgid ""
|
113
|
-
"The param name is not supported by provider. See `hammer defaults providers` f"
|
114
|
-
"or supported params."
|
115
|
-
msgstr ""
|
116
|
-
|
117
|
-
msgid "%{param} was deleted successfully."
|
118
|
-
msgstr ""
|
119
|
-
|
120
|
-
msgid "You must specify value or a provider name, can't specify both."
|
121
|
-
msgstr ""
|
122
|
-
|
123
|
-
msgid "Couldn't find the requested param in %s."
|
124
|
-
msgstr ""
|
125
|
-
|
126
|
-
msgid "Error: %s"
|
127
|
-
msgstr "Erreur : %s"
|
128
|
-
|
129
|
-
msgid "Error: %{message}"
|
130
|
-
msgstr "Erreur : %{message}"
|
131
|
-
|
132
|
-
msgid "See: '%{path} --help'"
|
133
|
-
msgstr "Voir : '%{path} --help'"
|
134
|
-
|
135
|
-
msgid "Could not load the API description from the server"
|
136
|
-
msgstr "Impossible de charger la description de l'API depuis le serveur"
|
137
|
-
|
138
|
-
msgid "is the server down?"
|
139
|
-
msgstr "Le serveur est-il éteint ?"
|
140
|
-
|
141
|
-
msgid ""
|
142
|
-
"was '%s' run on the server when using apipie cache? (typical production settin"
|
143
|
-
"gs)"
|
144
|
-
msgstr ""
|
145
|
-
"Est ce que '%s' était lancé pendant que le cache apipie était en cours d'utili"
|
146
|
-
"sation ? (état normal pour un serveur de production)"
|
147
|
-
|
148
|
-
msgid "Missing arguments for %s"
|
149
|
-
msgstr "Arguments manquants pour %s"
|
150
|
-
|
151
|
-
msgid "No permissions to create log dir %s"
|
152
|
-
msgstr "Permission refusée pour la création du répertoire de log %s "
|
153
|
-
|
154
|
-
msgid "File %s not writeable, won't log anything to the file!"
|
155
|
-
msgstr "Fichier %s non disponible en écriture, aucun log ne sera ajouté au fichier !"
|
156
|
-
|
157
|
-
msgid "be verbose"
|
158
|
-
msgstr "être verbeux"
|
159
|
-
|
160
|
-
msgid "show debugging output "
|
161
|
-
msgstr "voir la sortie debug"
|
162
|
-
|
163
|
-
msgid "force reload of Apipie cache"
|
164
|
-
msgstr "Forcer le rechargement du cache Apipie"
|
165
|
-
|
166
|
-
msgid "path to custom config file"
|
167
|
-
msgstr "chemin du fichier de configuration spécifique"
|
168
|
-
|
169
|
-
msgid "username to access the remote system"
|
170
|
-
msgstr "nom d'utilisateur pour accéder au système distant"
|
171
|
-
|
172
|
-
msgid "password to access the remote system"
|
173
|
-
msgstr "mot de passe pour accéder au système distant"
|
174
|
-
|
175
|
-
msgid "remote system address"
|
176
|
-
msgstr "adresse du système distant"
|
177
|
-
|
178
|
-
msgid "show version"
|
179
|
-
msgstr "Voir la version"
|
180
|
-
|
181
|
-
msgid "unknown version"
|
182
|
-
msgstr "version inconnue"
|
183
|
-
|
184
|
-
msgid "Show ids of associated resources"
|
185
|
-
msgstr "Afficher les IDs liées aux ressources"
|
186
|
-
|
187
|
-
msgid "Explicitly turn interactive mode on/off"
|
188
|
-
msgstr "Désactiver explicitement le mode interactif"
|
189
|
-
|
190
|
-
msgid "Output as CSV (same as --output=csv)"
|
191
|
-
msgstr "Sortie de type CSV (idem --output=csv)"
|
192
|
-
|
193
|
-
msgid "Set output format. One of [%s]"
|
194
|
-
msgstr "Définir le format de sortie. Parmi [%s]"
|
195
|
-
|
196
|
-
msgid "Character to separate the values"
|
197
|
-
msgstr "Caractère de séparation des valeurs"
|
198
|
-
|
199
|
-
msgid "Get list of possible endings"
|
200
|
-
msgstr "Lister les fins possibles"
|
201
|
-
|
202
|
-
msgid ""
|
203
|
-
"Legacy configuration of modules detected. Check section about configuration in"
|
204
|
-
" user manual"
|
205
|
-
msgstr ""
|
206
|
-
"Ancienne configuration des modules détectée. Veuillez consulter la section con"
|
207
|
-
"figuration du manuel utilisateur"
|
208
|
-
|
209
|
-
msgid "Warning: An error occured while loading module %s"
|
210
|
-
msgstr "Attention: Une erreur est survenue lors du chargement du module %s"
|
211
|
-
|
212
|
-
msgid "Error: Some of the required modules are disabled in configuration: %s "
|
213
|
-
msgstr "Erreur : certains modules requis sont désactivés dans la configuration : %s "
|
214
|
-
|
215
|
-
msgid "Comma-separated list of key=value."
|
216
|
-
msgstr "Liste de clef=valeur séparées par des virgules."
|
217
|
-
|
218
|
-
msgid "value must be defined as a comma-separated list of key=value or valid JSON"
|
219
|
-
msgstr ""
|
220
|
-
|
221
|
-
msgid "Missing or stray quote."
|
222
|
-
msgstr ""
|
223
|
-
|
224
|
-
msgid ""
|
225
|
-
"Unquoted fields do not allow
|
226
|
or \n"
|
227
|
-
"."
|
228
|
-
msgstr ""
|
229
|
-
|
230
|
-
msgid "Illegal quoting."
|
231
|
-
msgstr ""
|
232
|
-
|
233
|
-
msgid "Unclosed quoted field."
|
234
|
-
msgstr ""
|
235
|
-
|
236
|
-
msgid "Field size exceeded."
|
237
|
-
msgstr ""
|
238
|
-
|
239
|
-
msgid ""
|
240
|
-
"Comma separated list of values. Values containing comma should be double quote"
|
241
|
-
"d"
|
242
|
-
msgstr ""
|
243
|
-
|
244
|
-
msgid "numeric value is required"
|
245
|
-
msgstr ""
|
246
|
-
|
247
|
-
msgid "One of true/false, yes/no, 1/0."
|
248
|
-
msgstr "Au choix parmi true/false, yes/no, 1/0."
|
249
|
-
|
250
|
-
msgid "value must be one of true/false, yes/no, 1/0"
|
251
|
-
msgstr "La valeur doit être un de ces choix : true/false, yes/no, 1/0"
|
252
|
-
|
253
|
-
msgid "Unable to parse JSON input"
|
254
|
-
msgstr "Impossible d'analyser l'entrée JSON"
|
255
|
-
|
256
|
-
msgid "Possible value(s): %s"
|
257
|
-
msgstr ""
|
258
|
-
|
259
|
-
#, fuzzy
|
260
|
-
msgid "value must be %s"
|
261
|
-
msgstr "la valeur doit être choisie parmi '%s'"
|
262
|
-
|
263
|
-
#, fuzzy
|
264
|
-
msgid "value must be one of %s"
|
265
|
-
msgstr "la valeur doit être choisie parmi '%s'"
|
266
|
-
|
267
|
-
msgid "Date and time in YYYY-MM-DD HH:MM:SS or ISO 8601 format"
|
268
|
-
msgstr "Date et heure suivant YYYY-MM-DD HH:MM:SS ou format ISO 8601"
|
269
|
-
|
270
|
-
msgid "'%s' is not a valid date"
|
271
|
-
msgstr "'%s' n'est pas une date valide"
|
272
|
-
|
273
|
-
msgid "Any combination (comma separated list) of '%s'"
|
274
|
-
msgstr "Toute combinaison (liste séparée par des virgules) de '%s'"
|
275
|
-
|
276
|
-
msgid "value must be a combination of '%s'"
|
277
|
-
msgstr "la valeur doit être une combinaison de '%s'"
|
278
|
-
|
279
|
-
msgid "Warning: Option %{option} is deprecated. %{message}"
|
280
|
-
msgstr ""
|
281
|
-
|
282
|
-
msgid "Deprecated: %{deprecated_msg}"
|
283
|
-
msgstr ""
|
284
|
-
|
285
|
-
msgid "%{flag} is deprecated: %{deprecated_msg}"
|
286
|
-
msgstr ""
|
287
|
-
|
288
|
-
msgid "Can be specified multiple times. "
|
289
|
-
msgstr "Peut être spécifié plusieurs fois."
|
290
|
-
|
291
|
-
msgid "Default: "
|
292
|
-
msgstr "Défaut : "
|
293
|
-
|
294
|
-
msgid ", or "
|
295
|
-
msgstr ", ou "
|
296
|
-
|
297
|
-
msgid "Message"
|
298
|
-
msgstr "Message"
|
299
|
-
|
300
|
-
msgid "Id"
|
301
|
-
msgstr "Id"
|
302
|
-
|
303
|
-
msgid "Name"
|
304
|
-
msgstr "Nom"
|
305
|
-
|
306
|
-
msgid "Page %{page} of %{total} (use --page and --per-page for navigation)"
|
307
|
-
msgstr ""
|
308
|
-
|
309
|
-
msgid "no"
|
310
|
-
msgstr "non"
|
311
|
-
|
312
|
-
msgid "yes"
|
313
|
-
msgstr "oui"
|
314
|
-
|
315
|
-
msgid ""
|
316
|
-
"Warning: location hammer.modules.d is deprecated, move your module configurati"
|
317
|
-
"ons to cli.modules.d"
|
318
|
-
msgstr ""
|
319
|
-
"Attention: l'emplacement hammer.modules.d est déprécié, déplacez vos configura"
|
320
|
-
"tions dans cli.modules.d"
|
321
|
-
|
322
|
-
msgid "Warning: Couldn't load configuration file %{path}: %{message}"
|
323
|
-
msgstr ""
|
324
|
-
|
325
|
-
msgid "Print help for commands"
|
326
|
-
msgstr "Afficher l'aide des commandes"
|
327
|
-
|
328
|
-
msgid "Exit interactive shell"
|
329
|
-
msgstr "Quitter le shell interactif"
|
330
|
-
|
331
|
-
msgid "Welcome to the hammer interactive shell"
|
332
|
-
msgstr "Bienvenue sur le shell interactif d'Hammer"
|
333
|
-
|
334
|
-
msgid "Type 'help' for usage information"
|
335
|
-
msgstr "Saisir 'help' pour des informations d'utilisation "
|
336
|
-
|
337
|
-
msgid "Interactive shell"
|
338
|
-
msgstr "Shell interactif"
|
339
|
-
|
340
|
-
msgid ""
|
341
|
-
"can't replace subcommand %<name>s (%<existing_class>s) with %<name>s (%<new_cl"
|
342
|
-
"ass>s)"
|
343
|
-
msgstr ""
|
344
|
-
"impossible de remplacer la sous-commande %<name>s (%<existing_class>s) par %<n"
|
345
|
-
"ame>s (%<new_class>s)"
|
346
|
-
|
347
|
-
msgid "Unknown option name '%s'"
|
348
|
-
msgstr "Option nommée '%s' inconnue"
|
349
|
-
|
350
|
-
msgid "You can't set all options %s at one time"
|
351
|
-
msgstr "Vous ne pouvez pas définir toutes les options %s en même temps"
|
352
|
-
|
353
|
-
msgid "Options %s are required"
|
354
|
-
msgstr "Options %s requises"
|
355
|
-
|
356
|
-
#, fuzzy
|
357
|
-
msgid "You can't set option %s"
|
358
|
-
msgstr "Vous ne pouvez définir les options de %s"
|
359
|
-
|
360
|
-
#, fuzzy
|
361
|
-
msgid "Option %s is required"
|
362
|
-
msgstr "Options %s requises"
|
363
|
-
|
364
|
-
msgid "You can't set any of options %s"
|
365
|
-
msgstr "Vous ne pouvez définir les options de %s"
|
366
|
-
|
367
|
-
msgid "At least one of options %s is required"
|
368
|
-
msgstr "Au moins une options de %s est requise"
|
369
|
-
|
370
|
-
#, fuzzy
|
371
|
-
msgid "One of options %s is required"
|
372
|
-
msgstr "Au moins une options de %s est requise"
|
373
|
-
|
374
|
-
msgid "Only one of options %s can be set"
|
375
|
-
msgstr ""
|
File without changes
|