foreman_google 0.0.2 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/concerns/foreman/controller/parameters/compute_resource_extension.rb +21 -0
  3. data/app/controllers/foreman_google/api/v2/apipie_extensions.rb +16 -0
  4. data/app/controllers/foreman_google/api/v2/compute_resources_extensions.rb +22 -0
  5. data/app/models/foreman_google/gce.rb +5 -1
  6. data/lib/foreman_google/engine.rb +5 -5
  7. data/lib/foreman_google/version.rb +1 -1
  8. data/locale/cs_CZ/LC_MESSAGES/foreman_google.mo +0 -0
  9. data/locale/cs_CZ/foreman_google.po +99 -0
  10. data/locale/de/LC_MESSAGES/foreman_google.mo +0 -0
  11. data/locale/de/foreman_google.po +106 -0
  12. data/locale/el/LC_MESSAGES/foreman_google.mo +0 -0
  13. data/locale/el/foreman_google.po +96 -0
  14. data/locale/en/LC_MESSAGES/foreman_google.mo +0 -0
  15. data/locale/en/foreman_google.po +1 -1
  16. data/locale/es/LC_MESSAGES/foreman_google.mo +0 -0
  17. data/locale/es/foreman_google.po +104 -0
  18. data/locale/fr/LC_MESSAGES/foreman_google.mo +0 -0
  19. data/locale/fr/foreman_google.po +101 -0
  20. data/locale/it/LC_MESSAGES/foreman_google.mo +0 -0
  21. data/locale/it/foreman_google.po +100 -0
  22. data/locale/ja/LC_MESSAGES/foreman_google.mo +0 -0
  23. data/locale/ja/foreman_google.po +98 -0
  24. data/locale/ka/LC_MESSAGES/foreman_google.mo +0 -0
  25. data/locale/ka/foreman_google.po +96 -0
  26. data/locale/ko/LC_MESSAGES/foreman_google.mo +0 -0
  27. data/locale/ko/foreman_google.po +97 -0
  28. data/locale/pl/LC_MESSAGES/foreman_google.mo +0 -0
  29. data/locale/pl/foreman_google.po +99 -0
  30. data/locale/pt_BR/LC_MESSAGES/foreman_google.mo +0 -0
  31. data/locale/pt_BR/foreman_google.po +103 -0
  32. data/locale/ru/LC_MESSAGES/foreman_google.mo +0 -0
  33. data/locale/ru/foreman_google.po +102 -0
  34. data/locale/sv_SE/LC_MESSAGES/foreman_google.mo +0 -0
  35. data/locale/sv_SE/foreman_google.po +99 -0
  36. data/locale/zh_CN/LC_MESSAGES/foreman_google.mo +0 -0
  37. data/locale/zh_CN/foreman_google.po +100 -0
  38. data/locale/zh_TW/LC_MESSAGES/foreman_google.mo +0 -0
  39. data/locale/zh_TW/foreman_google.po +99 -0
  40. data/test/unit/foreman_google/google_compute_adapter_test.rb +0 -15
  41. metadata +37 -4
  42. data/app/controllers/concerns/foreman_google/temporary_prepend_path.rb +0 -16
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 436414dce3da889d6bcd459132d3f00bb24fa5ea36afc99efa7987836a57b6a9
4
- data.tar.gz: 05026b5514e98aafe1dd2ccebd9bd52fd04be94af87a78222145b73269f2301f
3
+ metadata.gz: 3387889c509d7c5e6374b66fbe1a53635ecd5227a4f92dab8ab47a5227275782
4
+ data.tar.gz: 1a54d851fc1b61d2a9bb5d0f8c802ff137152b0a43ecbc761a76724106510cad
5
5
  SHA512:
6
- metadata.gz: ecdf08325bc8ae14f1bb8d6f1af9b71adcdf702239c29f8fd84f80bc8f1266f3f1947a017430eda34dc20cc907a32ef4a51fe8799e5d40562e24c68c5723d8eb
7
- data.tar.gz: 2980cd7a4e569cdd46009d1560245f0864d05a8d9eab9e401ef7d3da90777326722dc41cf429ac43e1e9c4b87d5746a2bdef9e2354e5c215ae28377ad6be1a74
6
+ metadata.gz: f17acaa93e46fb7bfecac30a4169d996aee5d895a3cb1f3b7b710001bba2765d122e7f2ad29a00bf184d61eeda56349a8dd662388546e51c5f67720176ece1a0
7
+ data.tar.gz: af406a295cac958fcf4b9c5e4f7060f9c64e9736868be96299608ccdb4531d7802d4ca2bbf7ed2b01e3e98e1b938bded6856d0dcaede1164079317b7da63274f
@@ -0,0 +1,21 @@
1
+ module Foreman
2
+ module Controller
3
+ module Parameters
4
+ module ComputeResourceExtension
5
+ extend ActiveSupport::Concern
6
+
7
+ class_methods do
8
+ def compute_resource_params_filter
9
+ super.tap do |filter|
10
+ filter.permit :email,
11
+ :key_pair,
12
+ :key_path,
13
+ :project,
14
+ :zone
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,16 @@
1
+ module ForemanGoogle
2
+ module Api
3
+ module V2
4
+ module ApipieExtensions
5
+ extend Apipie::DSL::Concern
6
+
7
+ update_api(:create, :update) do
8
+ param :compute_resource, Hash do
9
+ param :key_path, String, desc: N_('Certificate path, for GCE only')
10
+ param :zone, String, desc: N_('Zone, for GCE only')
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,22 @@
1
+ module ForemanGoogle
2
+ module Api
3
+ module V2
4
+ module ComputeResourcesExtensions
5
+ extend ActiveSupport::Concern
6
+
7
+ # rubocop:disable Rails/LexicallyScopedActionFilter
8
+ included do
9
+ before_action :read_key, only: [:create]
10
+ end
11
+ # rubocop:enable Rails/LexicallyScopedActionFilter
12
+
13
+ private
14
+
15
+ def read_key
16
+ return unless compute_resource_params['provider'] == 'GCE'
17
+ params[:compute_resource][:password] = File.read(params['compute_resource'].delete('key_path'))
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
@@ -85,10 +85,14 @@ module ForemanGoogle
85
85
  true
86
86
  end
87
87
 
88
- def available_images(filter: nil)
88
+ def available_images(filter: filter_for_images)
89
89
  client.images(filter: filter)
90
90
  end
91
91
 
92
+ def filter_for_images
93
+ @filter_for_images ||= nil
94
+ end
95
+
92
96
  def self.model_name
93
97
  ComputeResource.model_name
94
98
  end
@@ -24,13 +24,13 @@ module ForemanGoogle
24
24
  # Include concerns in this config.to_prepare block
25
25
  config.to_prepare do
26
26
  require 'google/cloud/compute/v1'
27
- Google::Cloud::Compute::V1::AttachedDisk.include GoogleExtensions::AttachedDisk
28
27
 
29
- ::ComputeResourcesController.include ForemanGoogle::TemporaryPrependPath
30
- ::ComputeResourcesVmsController.include ForemanGoogle::TemporaryPrependPath
31
- ::ImagesController.include ForemanGoogle::TemporaryPrependPath
32
- ::HostsController.include ForemanGoogle::TemporaryPrependPath
33
28
  ::Host::Managed.include ForemanGoogle::HostManagedExtensions
29
+ ::Api::V2::ComputeResourcesController.include ForemanGoogle::Api::V2::ComputeResourcesExtensions
30
+ ::Api::V2::ComputeResourcesController.include ForemanGoogle::Api::V2::ApipieExtensions
31
+ ::Api::V2::ComputeResourcesController.include Foreman::Controller::Parameters::ComputeResourceExtension
32
+ ::ComputeResourcesController.include Foreman::Controller::Parameters::ComputeResourceExtension
33
+ Google::Cloud::Compute::V1::AttachedDisk.include GoogleExtensions::AttachedDisk
34
34
  rescue StandardError => e
35
35
  Rails.logger.warn "ForemanGoogle: skipping engine hook (#{e})"
36
36
  end
@@ -1,3 +1,3 @@
1
1
  module ForemanGoogle
2
- VERSION = '0.0.2'.freeze
2
+ VERSION = '1.0.1'.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"