foreman_google 1.0.0 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/concerns/foreman/controller/parameters/compute_resource_extension.rb +1 -5
  3. data/app/controllers/foreman_google/api/v2/apipie_extensions.rb +2 -0
  4. data/app/controllers/foreman_google/api/v2/compute_resources_extensions.rb +14 -0
  5. data/lib/foreman_google/version.rb +1 -1
  6. data/locale/cs_CZ/LC_MESSAGES/foreman_google.mo +0 -0
  7. data/locale/cs_CZ/foreman_google.po +99 -0
  8. data/locale/de/LC_MESSAGES/foreman_google.mo +0 -0
  9. data/locale/de/foreman_google.po +106 -0
  10. data/locale/el/LC_MESSAGES/foreman_google.mo +0 -0
  11. data/locale/el/foreman_google.po +96 -0
  12. data/locale/en/LC_MESSAGES/foreman_google.mo +0 -0
  13. data/locale/en/foreman_google.po +1 -1
  14. data/locale/es/LC_MESSAGES/foreman_google.mo +0 -0
  15. data/locale/es/foreman_google.po +104 -0
  16. data/locale/fr/LC_MESSAGES/foreman_google.mo +0 -0
  17. data/locale/fr/foreman_google.po +101 -0
  18. data/locale/it/LC_MESSAGES/foreman_google.mo +0 -0
  19. data/locale/it/foreman_google.po +100 -0
  20. data/locale/ja/LC_MESSAGES/foreman_google.mo +0 -0
  21. data/locale/ja/foreman_google.po +98 -0
  22. data/locale/ka/LC_MESSAGES/foreman_google.mo +0 -0
  23. data/locale/ka/foreman_google.po +96 -0
  24. data/locale/ko/LC_MESSAGES/foreman_google.mo +0 -0
  25. data/locale/ko/foreman_google.po +97 -0
  26. data/locale/pl/LC_MESSAGES/foreman_google.mo +0 -0
  27. data/locale/pl/foreman_google.po +99 -0
  28. data/locale/pt_BR/LC_MESSAGES/foreman_google.mo +0 -0
  29. data/locale/pt_BR/foreman_google.po +103 -0
  30. data/locale/ru/LC_MESSAGES/foreman_google.mo +0 -0
  31. data/locale/ru/foreman_google.po +102 -0
  32. data/locale/sv_SE/LC_MESSAGES/foreman_google.mo +0 -0
  33. data/locale/sv_SE/foreman_google.po +99 -0
  34. data/locale/zh_CN/LC_MESSAGES/foreman_google.mo +0 -0
  35. data/locale/zh_CN/foreman_google.po +100 -0
  36. data/locale/zh_TW/LC_MESSAGES/foreman_google.mo +0 -0
  37. data/locale/zh_TW/foreman_google.po +99 -0
  38. data/test/unit/foreman_google/google_compute_adapter_test.rb +0 -15
  39. metadata +34 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ea94c8410bd480a5d037871dfdbcc479c4a6b241ae0c02ab47f506f4b52215e4
4
- data.tar.gz: a0f2fc8d3b5eac53bde9bbf0cf263feccc2e15e142ba5a0acb27383ad8b77872
3
+ metadata.gz: 8aed6119afb23b1a39f01c94f16dc797d2abc8917778b0028a546b2b8cc0a878
4
+ data.tar.gz: b9978e73177a89c99af612a5a6d70ef84bdb904c3d442ca34656a80745a928e9
5
5
  SHA512:
6
- metadata.gz: 1bbfeec72844bb5dbb055c912552c5929e0ac758d09ff53065d24b29ae2bfc3ae830724fcf79fc9a9f3d1302041dd315775935ca739e4b8caf5916233846cd62
7
- data.tar.gz: 885348d92eb06c1cc78c14d98b9826e6591683dd1ae561c42ad8d91ec2d1859db6d2b4b4509d908b16d63e8eca0f6eacf861908b764fcb40d9caa396e89cb69a
6
+ metadata.gz: 1d91d97d2d0b71b29ba022baf7870900fa9e71a64a43b6c96473defc69832b2b87603310c8971a326330c1bfffcdaf7fbf1f5cf7b77bac90742a6ac511eb5935
7
+ data.tar.gz: c4247c85322dbbafcec96ab8e21aa4398e535373a274370cec97dc3119eabe4c51035802d13134a887f0cb485471bc6c0b5e07edb4827a4c256a85bd63a049ed
@@ -7,11 +7,7 @@ module Foreman
7
7
  class_methods do
8
8
  def compute_resource_params_filter
9
9
  super.tap do |filter|
10
- filter.permit :email,
11
- :key_pair,
12
- :key_path,
13
- :project,
14
- :zone
10
+ filter.permit :key_path, :zone
15
11
  end
16
12
  end
17
13
  end
@@ -8,6 +8,8 @@ module ForemanGoogle
8
8
  param :compute_resource, Hash do
9
9
  param :key_path, String, desc: N_('Certificate path, for GCE only')
10
10
  param :zone, String, desc: N_('Zone, for GCE only')
11
+ param :project, String, desc: N_('Deprecated, project is automatically loaded from the JSON file. For GCE only')
12
+ param :email, String, desc: N_('Deprecated, email is automatically loaded from the JSON file. For GCE only')
11
13
  end
12
14
  end
13
15
  end
@@ -7,6 +7,7 @@ module ForemanGoogle
7
7
  # rubocop:disable Rails/LexicallyScopedActionFilter
8
8
  included do
9
9
  before_action :read_key, only: [:create]
10
+ before_action :deprecated_params, only: [:create]
10
11
  end
11
12
  # rubocop:enable Rails/LexicallyScopedActionFilter
12
13
 
@@ -16,6 +17,19 @@ module ForemanGoogle
16
17
  return unless compute_resource_params['provider'] == 'GCE'
17
18
  params[:compute_resource][:password] = File.read(params['compute_resource'].delete('key_path'))
18
19
  end
20
+
21
+ def deprecated_params
22
+ return unless compute_resource_params['provider'] == 'GCE'
23
+
24
+ if compute_resource_params['email']
25
+ msg = _('The email parameter is deprecated, value is automatically loaded from the JSON file')
26
+ Foreman::Deprecation.api_deprecation_warning(msg)
27
+ end
28
+
29
+ return unless compute_resource_params['project']
30
+ msg = _('The project parameter is deprecated, value is automatically loaded from the JSON file')
31
+ Foreman::Deprecation.api_deprecation_warning(msg)
32
+ end
19
33
  end
20
34
  end
21
35
  end
@@ -1,3 +1,3 @@
1
1
  module ForemanGoogle
2
- VERSION = '1.0.0'.freeze
2
+ VERSION = '1.0.2'.freeze
3
3
  end
@@ -0,0 +1,99 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_google package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # mhulan <mhulan@redhat.com>, 2022
8
+ # Pavel Borecki <pavel.borecki@gmail.com>, 2022
9
+ #
10
+ #, fuzzy
11
+ msgid ""
12
+ msgstr ""
13
+ "Project-Id-Version: foreman_google 1.0.0\n"
14
+ "Report-Msgid-Bugs-To: \n"
15
+ "PO-Revision-Date: 2022-08-01 12:51+0000\n"
16
+ "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2022\n"
17
+ "Language-Team: Czech (Czech Republic) (https://www.transifex.com/foreman/teams"
18
+ "/114/cs_CZ/)\n"
19
+ "MIME-Version: 1.0\n"
20
+ "Content-Type: text/plain; charset=UTF-8\n"
21
+ "Content-Transfer-Encoding: 8bit\n"
22
+ "Language: cs_CZ\n"
23
+ "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= "
24
+ "4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
25
+
26
+ msgid "Action with sub plans"
27
+ msgstr "Akce s dílčími plány"
28
+
29
+ msgid "Actions"
30
+ msgstr "Akce"
31
+
32
+ msgid "Associate Ephemeral External IP"
33
+ msgstr ""
34
+
35
+ msgid "Does this image support user data input (e.g. via cloud-init)?"
36
+ msgstr "Podporuje tento obraz zadání uživatelských dat (např. prostřednictvím cloud-init)?"
37
+
38
+ msgid "Google Compute Engine plugin for the Foreman."
39
+ msgstr ""
40
+
41
+ msgid "Image"
42
+ msgstr "Obraz"
43
+
44
+ msgid "Import Puppet classes"
45
+ msgstr "Importovat Puppet třídy"
46
+
47
+ msgid "Import facts"
48
+ msgstr "Importovat fakta"
49
+
50
+ msgid "JSON key"
51
+ msgstr ""
52
+
53
+ msgid "Load Zones"
54
+ msgstr "Načíst zóny"
55
+
56
+ msgid "Machine Type"
57
+ msgstr "Typ stroje"
58
+
59
+ msgid "Machine type"
60
+ msgstr "Typ stroje"
61
+
62
+ msgid "Missing an image for operating system!"
63
+ msgstr ""
64
+
65
+ msgid "Name"
66
+ msgstr "Název"
67
+
68
+ msgid "Network"
69
+ msgstr "Síť"
70
+
71
+ msgid "Please select an image"
72
+ msgstr "Vyberte obraz"
73
+
74
+ msgid "Preupgrade job"
75
+ msgstr ""
76
+
77
+ msgid "Properties"
78
+ msgstr "Vlastnosti"
79
+
80
+ msgid "Remote action:"
81
+ msgstr "Akce na protějšku:"
82
+
83
+ msgid "Size (GB)"
84
+ msgstr "Velikost (GB)"
85
+
86
+ msgid "State"
87
+ msgstr "Stav"
88
+
89
+ msgid "The user that is used to ssh into the instance, normally cloud-user, ec2-user, ubuntu, etc. Note: Google engine doesn't support SSH for the root user."
90
+ msgstr ""
91
+
92
+ msgid "Type"
93
+ msgstr "Typ"
94
+
95
+ msgid "Zone"
96
+ msgstr "Zóna"
97
+
98
+ msgid "console is not available at this time because the instance is powered off"
99
+ msgstr ""
@@ -0,0 +1,106 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_google package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # mbacovsky <martin.bacovsky@gmail.com>, 2022
8
+ # Arnold Bechtoldt <mail@arnoldbechtoldt.com>, 2022
9
+ # abf90805572190d649c59f7a021d76cb, 2022
10
+ # Crited <Alexander.Stoll@netways.de>, 2022
11
+ # simon11 <transifex@stieger.co>, 2022
12
+ # Martin Zimmermann <martin.zimmermann@gmx.com>, 2022
13
+ # Patrick Dolinic, 2022
14
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2022
15
+ # Wiederoder <stefanwiederoder@googlemail.com>, 2022
16
+ # Ettore Atalan <atalanttore@googlemail.com>, 2022
17
+ # Lukas Kallies <github.com@luke-web.de>, 2022
18
+ #
19
+ #, fuzzy
20
+ msgid ""
21
+ msgstr ""
22
+ "Project-Id-Version: foreman_google 1.0.0\n"
23
+ "Report-Msgid-Bugs-To: \n"
24
+ "PO-Revision-Date: 2022-08-01 12:51+0000\n"
25
+ "Last-Translator: Lukas Kallies <github.com@luke-web.de>, 2022\n"
26
+ "Language-Team: German (https://www.transifex.com/foreman/teams/114/de/)\n"
27
+ "MIME-Version: 1.0\n"
28
+ "Content-Type: text/plain; charset=UTF-8\n"
29
+ "Content-Transfer-Encoding: 8bit\n"
30
+ "Language: de\n"
31
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
32
+
33
+ msgid "Action with sub plans"
34
+ msgstr "Aktion mit Unterplänen"
35
+
36
+ msgid "Actions"
37
+ msgstr "Aktionen"
38
+
39
+ msgid "Associate Ephemeral External IP"
40
+ msgstr "Temporäre externe IP anfügen"
41
+
42
+ msgid "Does this image support user data input (e.g. via cloud-init)?"
43
+ msgstr "Unterstützt dieses Abbild die Eingabe von Benutzerdaten (z. B. mittels cloud-init)?"
44
+
45
+ msgid "Google Compute Engine plugin for the Foreman."
46
+ msgstr "Google Compute Engine-Erweiterung für the Foreman."
47
+
48
+ msgid "Image"
49
+ msgstr "Image"
50
+
51
+ msgid "Import Puppet classes"
52
+ msgstr "Puppet-Klassen importieren"
53
+
54
+ msgid "Import facts"
55
+ msgstr "Fakten importieren"
56
+
57
+ msgid "JSON key"
58
+ msgstr "JSON-Schlüssel"
59
+
60
+ msgid "Load Zones"
61
+ msgstr "Zonen laden"
62
+
63
+ msgid "Machine Type"
64
+ msgstr "Systemtyp"
65
+
66
+ msgid "Machine type"
67
+ msgstr "Maschinen-Typ"
68
+
69
+ msgid "Missing an image for operating system!"
70
+ msgstr "Es fehlt ein Abbild des Betriebssystems!"
71
+
72
+ msgid "Name"
73
+ msgstr "Name"
74
+
75
+ msgid "Network"
76
+ msgstr "Netzwerk"
77
+
78
+ msgid "Please select an image"
79
+ msgstr "bitte ein Abbild auswählen"
80
+
81
+ msgid "Preupgrade job"
82
+ msgstr "Pre-Upgrade-Job"
83
+
84
+ msgid "Properties"
85
+ msgstr "Eigenschaften"
86
+
87
+ msgid "Remote action:"
88
+ msgstr "Entfernte Aktion:"
89
+
90
+ msgid "Size (GB)"
91
+ msgstr "Grösse (GB)"
92
+
93
+ msgid "State"
94
+ msgstr "Status"
95
+
96
+ msgid "The user that is used to ssh into the instance, normally cloud-user, ec2-user, ubuntu, etc. Note: Google engine doesn't support SSH for the root user."
97
+ msgstr "Der Benutzer, der verwendet wird um per SSH auf die Instanz zu verbinden. Üblicherweise ist dies cloud-user, ec2-user, ubuntu etc. Hinweis: Google Engine unterstützt den SSH-Zugriff als root-Benutzer nicht."
98
+
99
+ msgid "Type"
100
+ msgstr "Typ"
101
+
102
+ msgid "Zone"
103
+ msgstr "Zone"
104
+
105
+ msgid "console is not available at this time because the instance is powered off"
106
+ msgstr "Konsole ist derzeit nicht verfügbar, da die Instanz ausgeschaltet ist"
@@ -0,0 +1,96 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_google package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # Efstathios Iosifidis <iefstathios@gmail.com>, 2022
8
+ #
9
+ #, fuzzy
10
+ msgid ""
11
+ msgstr ""
12
+ "Project-Id-Version: foreman_google 1.0.0\n"
13
+ "Report-Msgid-Bugs-To: \n"
14
+ "PO-Revision-Date: 2022-08-01 12:51+0000\n"
15
+ "Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>, 2022\n"
16
+ "Language-Team: Greek (https://www.transifex.com/foreman/teams/114/el/)\n"
17
+ "MIME-Version: 1.0\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+ "Content-Transfer-Encoding: 8bit\n"
20
+ "Language: el\n"
21
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
+
23
+ msgid "Action with sub plans"
24
+ msgstr ""
25
+
26
+ msgid "Actions"
27
+ msgstr "Ενέργειες"
28
+
29
+ msgid "Associate Ephemeral External IP"
30
+ msgstr ""
31
+
32
+ msgid "Does this image support user data input (e.g. via cloud-init)?"
33
+ msgstr ""
34
+
35
+ msgid "Google Compute Engine plugin for the Foreman."
36
+ msgstr ""
37
+
38
+ msgid "Image"
39
+ msgstr "Εικόνα"
40
+
41
+ msgid "Import Puppet classes"
42
+ msgstr "Εισαγωγή κλάσεων Puppet"
43
+
44
+ msgid "Import facts"
45
+ msgstr ""
46
+
47
+ msgid "JSON key"
48
+ msgstr ""
49
+
50
+ msgid "Load Zones"
51
+ msgstr ""
52
+
53
+ msgid "Machine Type"
54
+ msgstr "Τύπος μηχανής"
55
+
56
+ msgid "Machine type"
57
+ msgstr "Τύπος μηχανής"
58
+
59
+ msgid "Missing an image for operating system!"
60
+ msgstr ""
61
+
62
+ msgid "Name"
63
+ msgstr "Όνομα"
64
+
65
+ msgid "Network"
66
+ msgstr "Δίκτυο"
67
+
68
+ msgid "Please select an image"
69
+ msgstr ""
70
+
71
+ msgid "Preupgrade job"
72
+ msgstr ""
73
+
74
+ msgid "Properties"
75
+ msgstr "Ιδιότητες"
76
+
77
+ msgid "Remote action:"
78
+ msgstr "Απομακρυσμένη ενέργεια:"
79
+
80
+ msgid "Size (GB)"
81
+ msgstr "Μέγεθος (GB)"
82
+
83
+ msgid "State"
84
+ msgstr "Κατάσταση"
85
+
86
+ msgid "The user that is used to ssh into the instance, normally cloud-user, ec2-user, ubuntu, etc. Note: Google engine doesn't support SSH for the root user."
87
+ msgstr ""
88
+
89
+ msgid "Type"
90
+ msgstr "Τύπος"
91
+
92
+ msgid "Zone"
93
+ msgstr "Ζώνη"
94
+
95
+ msgid "console is not available at this time because the instance is powered off"
96
+ msgstr ""
@@ -4,7 +4,7 @@
4
4
  #
5
5
  msgid ""
6
6
  msgstr ""
7
- "Project-Id-Version: version 0.0.1\n"
7
+ "Project-Id-Version: foreman_google 1.0.0\n"
8
8
  "Report-Msgid-Bugs-To: \n"
9
9
  "PO-Revision-Date: 2014-08-20 08:54+0100\n"
10
10
  "Last-Translator: Foreman Team <foreman-dev@googlegroups.com>\n"
@@ -0,0 +1,104 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_google package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # Jared Nelson <jared@ajpadilla.com>, 2022
8
+ # francis <hackgo@gmail.com>, 2022
9
+ # fe37ea014ea122db60df81cd86b163af_742ef71 <ba9f59c06b0be83ac3724b1834a4c14b_93939>, 2022
10
+ # Carmela Rubiños <carmela.rubinos@gmail.com>, 2022
11
+ # nefeli <vidakovic@gmail.com>, 2022
12
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2022
13
+ # Gustavo Varela <gustavo.varela@gmail.com>, 2022
14
+ # Amit Upadhye <aupadhye@redhat.com>, 2022
15
+ #
16
+ #, fuzzy
17
+ msgid ""
18
+ msgstr ""
19
+ "Project-Id-Version: foreman_google 1.0.0\n"
20
+ "Report-Msgid-Bugs-To: \n"
21
+ "PO-Revision-Date: 2022-08-01 12:51+0000\n"
22
+ "Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2022\n"
23
+ "Language-Team: Spanish (https://www.transifex.com/foreman/teams/114/es/)\n"
24
+ "MIME-Version: 1.0\n"
25
+ "Content-Type: text/plain; charset=UTF-8\n"
26
+ "Content-Transfer-Encoding: 8bit\n"
27
+ "Language: es\n"
28
+ "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 :"
29
+ " 2;\n"
30
+
31
+ msgid "Action with sub plans"
32
+ msgstr "Acción con subplanes"
33
+
34
+ msgid "Actions"
35
+ msgstr "Acciones"
36
+
37
+ msgid "Associate Ephemeral External IP"
38
+ msgstr "Asociar IP externa efímera"
39
+
40
+ msgid "Does this image support user data input (e.g. via cloud-init)?"
41
+ msgstr "¿Esta imágen supporta inserción de datos de usuario (p.e. vía could-init)?"
42
+
43
+ msgid "Google Compute Engine plugin for the Foreman."
44
+ msgstr ""
45
+
46
+ msgid "Image"
47
+ msgstr "Imagen"
48
+
49
+ msgid "Import Puppet classes"
50
+ msgstr "Importar clases Puppet"
51
+
52
+ msgid "Import facts"
53
+ msgstr "Importar datos"
54
+
55
+ msgid "JSON key"
56
+ msgstr ""
57
+
58
+ msgid "Load Zones"
59
+ msgstr "Cargar zonas"
60
+
61
+ msgid "Machine Type"
62
+ msgstr "Tipo de máquina"
63
+
64
+ msgid "Machine type"
65
+ msgstr "Tipo de máquina"
66
+
67
+ msgid "Missing an image for operating system!"
68
+ msgstr ""
69
+
70
+ msgid "Name"
71
+ msgstr "Nombre"
72
+
73
+ msgid "Network"
74
+ msgstr "Red"
75
+
76
+ msgid "Please select an image"
77
+ msgstr "Seleccione una imagen"
78
+
79
+ msgid "Preupgrade job"
80
+ msgstr "Trabajo previo a la actualización"
81
+
82
+ msgid "Properties"
83
+ msgstr "Propiedades"
84
+
85
+ msgid "Remote action:"
86
+ msgstr "Acción remota:"
87
+
88
+ msgid "Size (GB)"
89
+ msgstr "Tamaño (GB)"
90
+
91
+ msgid "State"
92
+ msgstr "Estado"
93
+
94
+ msgid "The user that is used to ssh into the instance, normally cloud-user, ec2-user, ubuntu, etc. Note: Google engine doesn't support SSH for the root user."
95
+ msgstr ""
96
+
97
+ msgid "Type"
98
+ msgstr "Tipo"
99
+
100
+ msgid "Zone"
101
+ msgstr "Zona"
102
+
103
+ msgid "console is not available at this time because the instance is powered off"
104
+ msgstr "la consola no está disponible en este momento porque la instancia está apagada"
@@ -0,0 +1,101 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_google package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # Baptiste Agasse <baptiste.agasse@gmail.com>, 2022
8
+ # 21966816214bc546c1fc8a185e75ca1c, 2022
9
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2022
10
+ # Claer <transiblu@claer.hammock.fr>, 2022
11
+ # Amit Upadhye <aupadhye@redhat.com>, 2022
12
+ #
13
+ #, fuzzy
14
+ msgid ""
15
+ msgstr ""
16
+ "Project-Id-Version: foreman_google 1.0.0\n"
17
+ "Report-Msgid-Bugs-To: \n"
18
+ "PO-Revision-Date: 2022-08-01 12:51+0000\n"
19
+ "Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2022\n"
20
+ "Language-Team: French (https://www.transifex.com/foreman/teams/114/fr/)\n"
21
+ "MIME-Version: 1.0\n"
22
+ "Content-Type: text/plain; charset=UTF-8\n"
23
+ "Content-Transfer-Encoding: 8bit\n"
24
+ "Language: fr\n"
25
+ "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 100000"
26
+ "0 == 0 ? 1 : 2;\n"
27
+
28
+ msgid "Action with sub plans"
29
+ msgstr "Action avec sous-plans"
30
+
31
+ msgid "Actions"
32
+ msgstr "Actions"
33
+
34
+ msgid "Associate Ephemeral External IP"
35
+ msgstr "Associer l’IP externe éphémère"
36
+
37
+ msgid "Does this image support user data input (e.g. via cloud-init)?"
38
+ msgstr "Cette image prend-t-elle en charge l'entrée de paramètres utilisateur (p.e. via cloud-init) ?"
39
+
40
+ msgid "Google Compute Engine plugin for the Foreman."
41
+ msgstr "Plugin Google Compute Engine pour le Foreman."
42
+
43
+ msgid "Image"
44
+ msgstr "Image"
45
+
46
+ msgid "Import Puppet classes"
47
+ msgstr "Importer des classes Puppet"
48
+
49
+ msgid "Import facts"
50
+ msgstr "Importer des faits"
51
+
52
+ msgid "JSON key"
53
+ msgstr "Clé JSON"
54
+
55
+ msgid "Load Zones"
56
+ msgstr "Zones de chargement"
57
+
58
+ msgid "Machine Type"
59
+ msgstr "Type de machine"
60
+
61
+ msgid "Machine type"
62
+ msgstr "Type de machine"
63
+
64
+ msgid "Missing an image for operating system!"
65
+ msgstr "Il manque une image pour le système d'exploitation !"
66
+
67
+ msgid "Name"
68
+ msgstr "Nom"
69
+
70
+ msgid "Network"
71
+ msgstr "Réseau"
72
+
73
+ msgid "Please select an image"
74
+ msgstr "Veuillez sélectionner une image"
75
+
76
+ msgid "Preupgrade job"
77
+ msgstr "Job de pré-mise à niveau"
78
+
79
+ msgid "Properties"
80
+ msgstr "Propriétés"
81
+
82
+ msgid "Remote action:"
83
+ msgstr "Action distante :"
84
+
85
+ msgid "Size (GB)"
86
+ msgstr "Taille (Go)"
87
+
88
+ msgid "State"
89
+ msgstr "État"
90
+
91
+ msgid "The user that is used to ssh into the instance, normally cloud-user, ec2-user, ubuntu, etc. Note: Google engine doesn't support SSH for the root user."
92
+ msgstr "L'utilisateur qui est utilisé pour se connecter à l'instance via ssh, normalement cloud-user, ec2-user, ubuntu, etc. Remarque : le moteur Google ne prend pas en charge SSH pour l'utilisateur root."
93
+
94
+ msgid "Type"
95
+ msgstr "Type"
96
+
97
+ msgid "Zone"
98
+ msgstr "Zone"
99
+
100
+ msgid "console is not available at this time because the instance is powered off"
101
+ msgstr "la console n'est pas disponible pour le moment car l'instance est éteinte"