foreman_google 1.0.4 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/foreman_google/locale/cs_CZ/foreman_google.js +115 -0
  3. data/app/assets/javascripts/foreman_google/locale/de/foreman_google.js +115 -0
  4. data/app/assets/javascripts/foreman_google/locale/el/foreman_google.js +115 -0
  5. data/app/assets/javascripts/foreman_google/locale/en/foreman_google.js +115 -0
  6. data/app/assets/javascripts/foreman_google/locale/en_GB/foreman_google.js +115 -0
  7. data/app/assets/javascripts/foreman_google/locale/es/foreman_google.js +115 -0
  8. data/app/assets/javascripts/foreman_google/locale/fr/foreman_google.js +115 -0
  9. data/app/assets/javascripts/foreman_google/locale/it/foreman_google.js +115 -0
  10. data/app/assets/javascripts/foreman_google/locale/ja/foreman_google.js +115 -0
  11. data/app/assets/javascripts/foreman_google/locale/ka/foreman_google.js +115 -0
  12. data/app/assets/javascripts/foreman_google/locale/ko/foreman_google.js +115 -0
  13. data/app/assets/javascripts/foreman_google/locale/pl/foreman_google.js +115 -0
  14. data/app/assets/javascripts/foreman_google/locale/pt_BR/foreman_google.js +115 -0
  15. data/app/assets/javascripts/foreman_google/locale/ru/foreman_google.js +115 -0
  16. data/app/assets/javascripts/foreman_google/locale/sv_SE/foreman_google.js +115 -0
  17. data/app/assets/javascripts/foreman_google/locale/zh_CN/foreman_google.js +115 -0
  18. data/app/assets/javascripts/foreman_google/locale/zh_TW/foreman_google.js +115 -0
  19. data/lib/foreman_google/engine.rb +2 -7
  20. data/lib/foreman_google/version.rb +1 -1
  21. data/locale/Makefile +8 -5
  22. data/locale/cs_CZ/foreman_google.po +18 -1
  23. data/locale/de/foreman_google.po +18 -1
  24. data/locale/el/foreman_google.po +18 -1
  25. data/locale/en/foreman_google.po +18 -0
  26. data/locale/en_GB/LC_MESSAGES/foreman_google.mo +0 -0
  27. data/locale/en_GB/foreman_google.po +115 -0
  28. data/locale/es/foreman_google.po +18 -1
  29. data/locale/foreman_google.pot +32 -4
  30. data/locale/fr/foreman_google.po +18 -1
  31. data/locale/it/foreman_google.po +18 -1
  32. data/locale/ja/foreman_google.po +18 -1
  33. data/locale/ka/foreman_google.po +18 -1
  34. data/locale/ko/foreman_google.po +18 -1
  35. data/locale/pl/foreman_google.po +18 -1
  36. data/locale/pt_BR/foreman_google.po +18 -1
  37. data/locale/ru/foreman_google.po +18 -1
  38. data/locale/sv_SE/foreman_google.po +18 -1
  39. data/locale/zh_CN/foreman_google.po +18 -1
  40. data/locale/zh_TW/foreman_google.po +18 -1
  41. data/package.json +0 -3
  42. metadata +22 -3
@@ -12,8 +12,9 @@ module ForemanGoogle
12
12
 
13
13
  initializer 'foreman_google.register_plugin', before: :finisher_hook do |_app|
14
14
  Foreman::Plugin.register :foreman_google do
15
- requires_foreman '>= 3.5.0'
15
+ requires_foreman '>= 3.7.0'
16
16
  register_global_js_file 'global'
17
+ register_gettext
17
18
 
18
19
  in_to_prepare do
19
20
  compute_resource(ForemanGoogle::GCE)
@@ -40,11 +41,5 @@ module ForemanGoogle
40
41
  ForemanGoogle::Engine.load_seed
41
42
  end
42
43
  end
43
-
44
- initializer 'foreman_google.register_gettext', after: :load_config_initializers do |_app|
45
- locale_dir = File.join(File.expand_path('../..', __dir__), 'locale')
46
- locale_domain = 'foreman_google'
47
- Foreman::Gettext::Support.add_text_domain locale_domain, locale_dir
48
- end
49
44
  end
50
45
  end
@@ -1,3 +1,3 @@
1
1
  module ForemanGoogle
2
- VERSION = '1.0.4'.freeze
2
+ VERSION = '2.0.0'.freeze
3
3
  end
data/locale/Makefile CHANGED
@@ -6,14 +6,15 @@
6
6
  # make tx-update - download and merge translations from Transifex
7
7
  # make clean - clean everything
8
8
  #
9
- DOMAIN = foreman_google
10
- VERSION = $(shell ruby -e 'require "rubygems";spec = Gem::Specification::load(Dir.glob("../*.gemspec")[0]);puts spec.version')
9
+ DOMAIN = $(shell ruby -rrubygems -e 'puts Gem::Specification::load(Dir.glob("../*.gemspec")[0]).name')
10
+ VERSION = $(shell ruby -rrubygems -e 'puts Gem::Specification::load(Dir.glob("../*.gemspec")[0]).version')
11
11
  POTFILE = $(DOMAIN).pot
12
12
  MOFILE = $(DOMAIN).mo
13
13
  POFILES = $(shell find . -name '$(DOMAIN).po')
14
14
  MOFILES = $(patsubst %.po,%.mo,$(POFILES))
15
15
  POXFILES = $(patsubst %.po,%.pox,$(POFILES))
16
16
  EDITFILES = $(patsubst %.po,%.edit.po,$(POFILES))
17
+ JSFILES = $(shell find ../app/assets/javascripts/*/locale -name '$(DOMAIN).js')
17
18
 
18
19
  %.mo: %.po
19
20
  mkdir -p $(shell dirname $@)/LC_MESSAGES
@@ -42,18 +43,20 @@ uniq-po:
42
43
  done
43
44
 
44
45
  tx-pull: $(EDITFILES)
45
- tx pull -f
46
+ cd .. && tx pull -f --all
46
47
  for f in $(EDITFILES) ; do \
47
48
  sed -i 's/^\("Project-Id-Version: \).*$$/\1$(DOMAIN) $(VERSION)\\n"/' $$f; \
48
49
  done
49
50
 
50
51
  tx-update: tx-pull
51
52
  @echo
52
- @echo Run rake plugin:gettext[$(DOMAIN)] from the Foreman installation, then make -C locale mo-files to finish
53
+ @echo Run rake plugin:gettext[$(DOMAIN)] from the Foreman installation
54
+ @echo then run rake plugin:po_to_json[$(DOMAIN)] from the Foreman installation
55
+ @echo then run make -C locale mo-files to finish
53
56
  @echo
54
57
 
55
58
  mo-files: $(MOFILES)
56
- git add $(POFILES) $(POTFILE) ../locale/*/LC_MESSAGES
59
+ git add $(POFILES) $(POTFILE) $(JSFILES) ../locale/*/LC_MESSAGES
57
60
  git commit -m "i18n - pulling from tx"
58
61
  @echo
59
62
  @echo Changes commited!
@@ -7,7 +7,6 @@
7
7
  # mhulan <mhulan@redhat.com>, 2022
8
8
  # Pavel Borecki <pavel.borecki@gmail.com>, 2022
9
9
  #
10
- #, fuzzy
11
10
  msgid ""
12
11
  msgstr ""
13
12
  "Project-Id-Version: foreman_google 1.0.0\n"
@@ -32,6 +31,15 @@ msgstr "Akce"
32
31
  msgid "Associate Ephemeral External IP"
33
32
  msgstr ""
34
33
 
34
+ msgid "Certificate path, for GCE only"
35
+ msgstr ""
36
+
37
+ msgid "Deprecated, email is automatically loaded from the JSON file. For GCE only"
38
+ msgstr ""
39
+
40
+ msgid "Deprecated, project is automatically loaded from the JSON file. For GCE only"
41
+ msgstr ""
42
+
35
43
  msgid "Does this image support user data input (e.g. via cloud-init)?"
36
44
  msgstr "Podporuje tento obraz zadání uživatelských dat (např. prostřednictvím cloud-init)?"
37
45
 
@@ -86,6 +94,12 @@ msgstr "Velikost (GB)"
86
94
  msgid "State"
87
95
  msgstr "Stav"
88
96
 
97
+ msgid "The email parameter is deprecated, value is automatically loaded from the JSON file"
98
+ msgstr ""
99
+
100
+ msgid "The project parameter is deprecated, value is automatically loaded from the JSON file"
101
+ msgstr ""
102
+
89
103
  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
104
  msgstr ""
91
105
 
@@ -95,5 +109,8 @@ msgstr "Typ"
95
109
  msgid "Zone"
96
110
  msgstr "Zóna"
97
111
 
112
+ msgid "Zone, for GCE only"
113
+ msgstr ""
114
+
98
115
  msgid "console is not available at this time because the instance is powered off"
99
116
  msgstr ""
@@ -16,7 +16,6 @@
16
16
  # Ettore Atalan <atalanttore@googlemail.com>, 2022
17
17
  # Lukas Kallies <github.com@luke-web.de>, 2022
18
18
  #
19
- #, fuzzy
20
19
  msgid ""
21
20
  msgstr ""
22
21
  "Project-Id-Version: foreman_google 1.0.0\n"
@@ -39,6 +38,15 @@ msgstr "Aktionen"
39
38
  msgid "Associate Ephemeral External IP"
40
39
  msgstr "Temporäre externe IP anfügen"
41
40
 
41
+ msgid "Certificate path, for GCE only"
42
+ msgstr ""
43
+
44
+ msgid "Deprecated, email is automatically loaded from the JSON file. For GCE only"
45
+ msgstr ""
46
+
47
+ msgid "Deprecated, project is automatically loaded from the JSON file. For GCE only"
48
+ msgstr ""
49
+
42
50
  msgid "Does this image support user data input (e.g. via cloud-init)?"
43
51
  msgstr "Unterstützt dieses Abbild die Eingabe von Benutzerdaten (z. B. mittels cloud-init)?"
44
52
 
@@ -93,6 +101,12 @@ msgstr "Grösse (GB)"
93
101
  msgid "State"
94
102
  msgstr "Status"
95
103
 
104
+ msgid "The email parameter is deprecated, value is automatically loaded from the JSON file"
105
+ msgstr ""
106
+
107
+ msgid "The project parameter is deprecated, value is automatically loaded from the JSON file"
108
+ msgstr ""
109
+
96
110
  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
111
  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
112
 
@@ -102,5 +116,8 @@ msgstr "Typ"
102
116
  msgid "Zone"
103
117
  msgstr "Zone"
104
118
 
119
+ msgid "Zone, for GCE only"
120
+ msgstr ""
121
+
105
122
  msgid "console is not available at this time because the instance is powered off"
106
123
  msgstr "Konsole ist derzeit nicht verfügbar, da die Instanz ausgeschaltet ist"
@@ -6,7 +6,6 @@
6
6
  # Translators:
7
7
  # Efstathios Iosifidis <iefstathios@gmail.com>, 2022
8
8
  #
9
- #, fuzzy
10
9
  msgid ""
11
10
  msgstr ""
12
11
  "Project-Id-Version: foreman_google 1.0.0\n"
@@ -29,6 +28,15 @@ msgstr "Ενέργειες"
29
28
  msgid "Associate Ephemeral External IP"
30
29
  msgstr ""
31
30
 
31
+ msgid "Certificate path, for GCE only"
32
+ msgstr ""
33
+
34
+ msgid "Deprecated, email is automatically loaded from the JSON file. For GCE only"
35
+ msgstr ""
36
+
37
+ msgid "Deprecated, project is automatically loaded from the JSON file. For GCE only"
38
+ msgstr ""
39
+
32
40
  msgid "Does this image support user data input (e.g. via cloud-init)?"
33
41
  msgstr ""
34
42
 
@@ -83,6 +91,12 @@ msgstr "Μέγεθος (GB)"
83
91
  msgid "State"
84
92
  msgstr "Κατάσταση"
85
93
 
94
+ msgid "The email parameter is deprecated, value is automatically loaded from the JSON file"
95
+ msgstr ""
96
+
97
+ msgid "The project parameter is deprecated, value is automatically loaded from the JSON file"
98
+ msgstr ""
99
+
86
100
  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
101
  msgstr ""
88
102
 
@@ -92,5 +106,8 @@ msgstr "Τύπος"
92
106
  msgid "Zone"
93
107
  msgstr "Ζώνη"
94
108
 
109
+ msgid "Zone, for GCE only"
110
+ msgstr ""
111
+
95
112
  msgid "console is not available at this time because the instance is powered off"
96
113
  msgstr ""
@@ -24,6 +24,15 @@ msgstr ""
24
24
  msgid "Associate Ephemeral External IP"
25
25
  msgstr ""
26
26
 
27
+ msgid "Certificate path, for GCE only"
28
+ msgstr ""
29
+
30
+ msgid "Deprecated, email is automatically loaded from the JSON file. For GCE only"
31
+ msgstr ""
32
+
33
+ msgid "Deprecated, project is automatically loaded from the JSON file. For GCE only"
34
+ msgstr ""
35
+
27
36
  msgid "Does this image support user data input (e.g. via cloud-init)?"
28
37
  msgstr ""
29
38
 
@@ -78,6 +87,12 @@ msgstr ""
78
87
  msgid "State"
79
88
  msgstr ""
80
89
 
90
+ msgid "The email parameter is deprecated, value is automatically loaded from the JSON file"
91
+ msgstr ""
92
+
93
+ msgid "The project parameter is deprecated, value is automatically loaded from the JSON file"
94
+ msgstr ""
95
+
81
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."
82
97
  msgstr ""
83
98
 
@@ -87,5 +102,8 @@ msgstr ""
87
102
  msgid "Zone"
88
103
  msgstr ""
89
104
 
105
+ msgid "Zone, for GCE only"
106
+ msgstr ""
107
+
90
108
  msgid "console is not available at this time because the instance is powered off"
91
109
  msgstr ""
@@ -0,0 +1,115 @@
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
+ # 0868a4d1af5275b3f70b0a6dac4c99a4, 2022
8
+ # Andi Chandler <andi@gowling.com>, 2023
9
+ #
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: Andi Chandler <andi@gowling.com>, 2023\n"
16
+ "Language-Team: English (United Kingdom) (https://app.transifex.com/foreman/tea"
17
+ "ms/114/en_GB/)\n"
18
+ "MIME-Version: 1.0\n"
19
+ "Content-Type: text/plain; charset=UTF-8\n"
20
+ "Content-Transfer-Encoding: 8bit\n"
21
+ "Language: en_GB\n"
22
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23
+
24
+ msgid "Action with sub plans"
25
+ msgstr "Action with sub plans"
26
+
27
+ msgid "Actions"
28
+ msgstr "Actions"
29
+
30
+ msgid "Associate Ephemeral External IP"
31
+ msgstr "Associate Ephemeral External IP"
32
+
33
+ msgid "Certificate path, for GCE only"
34
+ msgstr ""
35
+
36
+ msgid "Deprecated, email is automatically loaded from the JSON file. For GCE only"
37
+ msgstr ""
38
+
39
+ msgid "Deprecated, project is automatically loaded from the JSON file. For GCE only"
40
+ msgstr ""
41
+
42
+ msgid "Does this image support user data input (e.g. via cloud-init)?"
43
+ msgstr "Does this image support user data input (e.g. via cloud-init)?"
44
+
45
+ msgid "Google Compute Engine plugin for the Foreman."
46
+ msgstr "Google Compute Engine plugin for the Foreman."
47
+
48
+ msgid "Image"
49
+ msgstr "Image"
50
+
51
+ msgid "Import Puppet classes"
52
+ msgstr "Import Puppet classes"
53
+
54
+ msgid "Import facts"
55
+ msgstr "Import facts"
56
+
57
+ msgid "JSON key"
58
+ msgstr "JSON key"
59
+
60
+ msgid "Load Zones"
61
+ msgstr "Load Zones"
62
+
63
+ msgid "Machine Type"
64
+ msgstr "Machine Type"
65
+
66
+ msgid "Machine type"
67
+ msgstr "Machine type"
68
+
69
+ msgid "Missing an image for operating system!"
70
+ msgstr "Missing an image for operating system!"
71
+
72
+ msgid "Name"
73
+ msgstr "Name"
74
+
75
+ msgid "Network"
76
+ msgstr "Network"
77
+
78
+ msgid "Please select an image"
79
+ msgstr "Please select an image"
80
+
81
+ msgid "Preupgrade job"
82
+ msgstr "Preupgrade job"
83
+
84
+ msgid "Properties"
85
+ msgstr "Properties"
86
+
87
+ msgid "Remote action:"
88
+ msgstr "Remote action:"
89
+
90
+ msgid "Size (GB)"
91
+ msgstr "Size (GB)"
92
+
93
+ msgid "State"
94
+ msgstr "State"
95
+
96
+ msgid "The email parameter is deprecated, value is automatically loaded from the JSON file"
97
+ msgstr ""
98
+
99
+ msgid "The project parameter is deprecated, value is automatically loaded from the JSON file"
100
+ msgstr ""
101
+
102
+ 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."
103
+ msgstr "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."
104
+
105
+ msgid "Type"
106
+ msgstr "Type"
107
+
108
+ msgid "Zone"
109
+ msgstr "Zone"
110
+
111
+ msgid "Zone, for GCE only"
112
+ msgstr ""
113
+
114
+ msgid "console is not available at this time because the instance is powered off"
115
+ msgstr "console is not available at this time because the instance is powered off"
@@ -13,7 +13,6 @@
13
13
  # Gustavo Varela <gustavo.varela@gmail.com>, 2022
14
14
  # Amit Upadhye <aupadhye@redhat.com>, 2022
15
15
  #
16
- #, fuzzy
17
16
  msgid ""
18
17
  msgstr ""
19
18
  "Project-Id-Version: foreman_google 1.0.0\n"
@@ -37,6 +36,15 @@ msgstr "Acciones"
37
36
  msgid "Associate Ephemeral External IP"
38
37
  msgstr "Asociar IP externa efímera"
39
38
 
39
+ msgid "Certificate path, for GCE only"
40
+ msgstr ""
41
+
42
+ msgid "Deprecated, email is automatically loaded from the JSON file. For GCE only"
43
+ msgstr ""
44
+
45
+ msgid "Deprecated, project is automatically loaded from the JSON file. For GCE only"
46
+ msgstr ""
47
+
40
48
  msgid "Does this image support user data input (e.g. via cloud-init)?"
41
49
  msgstr "¿Esta imágen supporta inserción de datos de usuario (p.e. vía could-init)?"
42
50
 
@@ -91,6 +99,12 @@ msgstr "Tamaño (GB)"
91
99
  msgid "State"
92
100
  msgstr "Estado"
93
101
 
102
+ msgid "The email parameter is deprecated, value is automatically loaded from the JSON file"
103
+ msgstr ""
104
+
105
+ msgid "The project parameter is deprecated, value is automatically loaded from the JSON file"
106
+ msgstr ""
107
+
94
108
  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
109
  msgstr ""
96
110
 
@@ -100,5 +114,8 @@ msgstr "Tipo"
100
114
  msgid "Zone"
101
115
  msgstr "Zona"
102
116
 
117
+ msgid "Zone, for GCE only"
118
+ msgstr ""
119
+
103
120
  msgid "console is not available at this time because the instance is powered off"
104
121
  msgstr "la consola no está disponible en este momento porque la instancia está apagada"
@@ -8,8 +8,8 @@ msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: foreman_google 1.0.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2022-07-29 13:33+0200\n"
12
- "PO-Revision-Date: 2022-07-29 13:33+0200\n"
11
+ "POT-Creation-Date: 2023-11-28 22:33+0100\n"
12
+ "PO-Revision-Date: 2023-11-28 22:33+0100\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "Language: \n"
@@ -18,11 +18,39 @@ msgstr ""
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
20
 
21
- #: ../app/models/foreman_google/gce.rb:126
21
+ #: ../app/controllers/foreman_google/api/v2/apipie_extensions.rb:9
22
+ msgid "Certificate path, for GCE only"
23
+ msgstr ""
24
+
25
+ #: ../app/controllers/foreman_google/api/v2/apipie_extensions.rb:10
26
+ msgid "Zone, for GCE only"
27
+ msgstr ""
28
+
29
+ #: ../app/controllers/foreman_google/api/v2/apipie_extensions.rb:11
30
+ msgid "Deprecated, project is automatically loaded from the JSON file. For GCE only"
31
+ msgstr ""
32
+
33
+ #: ../app/controllers/foreman_google/api/v2/apipie_extensions.rb:12
34
+ msgid "Deprecated, email is automatically loaded from the JSON file. For GCE only"
35
+ msgstr ""
36
+
37
+ #: ../app/controllers/foreman_google/api/v2/compute_resources_extensions.rb:25
38
+ msgid ""
39
+ "The email parameter is deprecated, value is automatically loaded from the JSON"
40
+ " file"
41
+ msgstr ""
42
+
43
+ #: ../app/controllers/foreman_google/api/v2/compute_resources_extensions.rb:30
44
+ msgid ""
45
+ "The project parameter is deprecated, value is automatically loaded from the JS"
46
+ "ON file"
47
+ msgstr ""
48
+
49
+ #: ../app/models/foreman_google/gce.rb:130
22
50
  msgid "console is not available at this time because the instance is powered off"
23
51
  msgstr ""
24
52
 
25
- #: ../app/models/foreman_google/gce.rb:170
53
+ #: ../app/models/foreman_google/gce.rb:174
26
54
  msgid "Missing an image for operating system!"
27
55
  msgstr ""
28
56
 
@@ -10,7 +10,6 @@
10
10
  # Claer <transiblu@claer.hammock.fr>, 2022
11
11
  # Amit Upadhye <aupadhye@redhat.com>, 2022
12
12
  #
13
- #, fuzzy
14
13
  msgid ""
15
14
  msgstr ""
16
15
  "Project-Id-Version: foreman_google 1.0.0\n"
@@ -34,6 +33,15 @@ msgstr "Actions"
34
33
  msgid "Associate Ephemeral External IP"
35
34
  msgstr "Associer l’IP externe éphémère"
36
35
 
36
+ msgid "Certificate path, for GCE only"
37
+ msgstr ""
38
+
39
+ msgid "Deprecated, email is automatically loaded from the JSON file. For GCE only"
40
+ msgstr ""
41
+
42
+ msgid "Deprecated, project is automatically loaded from the JSON file. For GCE only"
43
+ msgstr ""
44
+
37
45
  msgid "Does this image support user data input (e.g. via cloud-init)?"
38
46
  msgstr "Cette image prend-t-elle en charge l'entrée de paramètres utilisateur (p.e. via cloud-init) ?"
39
47
 
@@ -88,6 +96,12 @@ msgstr "Taille (Go)"
88
96
  msgid "State"
89
97
  msgstr "État"
90
98
 
99
+ msgid "The email parameter is deprecated, value is automatically loaded from the JSON file"
100
+ msgstr ""
101
+
102
+ msgid "The project parameter is deprecated, value is automatically loaded from the JSON file"
103
+ msgstr ""
104
+
91
105
  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
106
  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
107
 
@@ -97,5 +111,8 @@ msgstr "Type"
97
111
  msgid "Zone"
98
112
  msgstr "Zone"
99
113
 
114
+ msgid "Zone, for GCE only"
115
+ msgstr ""
116
+
100
117
  msgid "console is not available at this time because the instance is powered off"
101
118
  msgstr "la console n'est pas disponible pour le moment car l'instance est éteinte"
@@ -9,7 +9,6 @@
9
9
  # Bryan Kearney <bryan.kearney@gmail.com>, 2022
10
10
  # 0868a4d1af5275b3f70b0a6dac4c99a4, 2022
11
11
  #
12
- #, fuzzy
13
12
  msgid ""
14
13
  msgstr ""
15
14
  "Project-Id-Version: foreman_google 1.0.0\n"
@@ -33,6 +32,15 @@ msgstr "Azioni"
33
32
  msgid "Associate Ephemeral External IP"
34
33
  msgstr ""
35
34
 
35
+ msgid "Certificate path, for GCE only"
36
+ msgstr ""
37
+
38
+ msgid "Deprecated, email is automatically loaded from the JSON file. For GCE only"
39
+ msgstr ""
40
+
41
+ msgid "Deprecated, project is automatically loaded from the JSON file. For GCE only"
42
+ msgstr ""
43
+
36
44
  msgid "Does this image support user data input (e.g. via cloud-init)?"
37
45
  msgstr "Questa immagine supporta l'input dei dati utente (es. tramite cloud-init)?"
38
46
 
@@ -87,6 +95,12 @@ msgstr "Dimensione (GB)"
87
95
  msgid "State"
88
96
  msgstr "Stato"
89
97
 
98
+ msgid "The email parameter is deprecated, value is automatically loaded from the JSON file"
99
+ msgstr ""
100
+
101
+ msgid "The project parameter is deprecated, value is automatically loaded from the JSON file"
102
+ msgstr ""
103
+
90
104
  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."
91
105
  msgstr ""
92
106
 
@@ -96,5 +110,8 @@ msgstr "Tipo"
96
110
  msgid "Zone"
97
111
  msgstr "Zona"
98
112
 
113
+ msgid "Zone, for GCE only"
114
+ msgstr ""
115
+
99
116
  msgid "console is not available at this time because the instance is powered off"
100
117
  msgstr ""
@@ -8,7 +8,6 @@
8
8
  # Bryan Kearney <bryan.kearney@gmail.com>, 2022
9
9
  # Amit Upadhye <aupadhye@redhat.com>, 2022
10
10
  #
11
- #, fuzzy
12
11
  msgid ""
13
12
  msgstr ""
14
13
  "Project-Id-Version: foreman_google 1.0.0\n"
@@ -31,6 +30,15 @@ msgstr "アクション"
31
30
  msgid "Associate Ephemeral External IP"
32
31
  msgstr "一時外部 ID の関連付け"
33
32
 
33
+ msgid "Certificate path, for GCE only"
34
+ msgstr ""
35
+
36
+ msgid "Deprecated, email is automatically loaded from the JSON file. For GCE only"
37
+ msgstr ""
38
+
39
+ msgid "Deprecated, project is automatically loaded from the JSON file. For GCE only"
40
+ msgstr ""
41
+
34
42
  msgid "Does this image support user data input (e.g. via cloud-init)?"
35
43
  msgstr "このイメージはユーザーのデータ入力に対応しますか (例: cloud-init 経由)?"
36
44
 
@@ -85,6 +93,12 @@ msgstr "サイズ (GB)"
85
93
  msgid "State"
86
94
  msgstr "状態"
87
95
 
96
+ msgid "The email parameter is deprecated, value is automatically loaded from the JSON file"
97
+ msgstr ""
98
+
99
+ msgid "The project parameter is deprecated, value is automatically loaded from the JSON file"
100
+ msgstr ""
101
+
88
102
  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."
89
103
  msgstr "インスタンスへの ssh 接続に使用するユーザーは通常、cloud-user、ec2-user、ubuntu などです。注: Google エンジンは、root ユーザーの ssh をサポートしません。"
90
104
 
@@ -94,5 +108,8 @@ msgstr "タイプ"
94
108
  msgid "Zone"
95
109
  msgstr "ゾーン"
96
110
 
111
+ msgid "Zone, for GCE only"
112
+ msgstr ""
113
+
97
114
  msgid "console is not available at this time because the instance is powered off"
98
115
  msgstr "インスタンスの電源がオフであるため、現時点ではコンソールは使用できません"
@@ -6,7 +6,6 @@
6
6
  # Translators:
7
7
  # Temuri Doghonadze <temuri.doghonadze@gmail.com>, 2022
8
8
  #
9
- #, fuzzy
10
9
  msgid ""
11
10
  msgstr ""
12
11
  "Project-Id-Version: foreman_google 1.0.0\n"
@@ -29,6 +28,15 @@ msgstr "ქმედებები"
29
28
  msgid "Associate Ephemeral External IP"
30
29
  msgstr "ეფემერული გარე IP-ის ასოცირება"
31
30
 
31
+ msgid "Certificate path, for GCE only"
32
+ msgstr ""
33
+
34
+ msgid "Deprecated, email is automatically loaded from the JSON file. For GCE only"
35
+ msgstr ""
36
+
37
+ msgid "Deprecated, project is automatically loaded from the JSON file. For GCE only"
38
+ msgstr ""
39
+
32
40
  msgid "Does this image support user data input (e.g. via cloud-init)?"
33
41
  msgstr "აქვს თუ არა ამ ასლს მომხმარებლის მონაცემების ჩაწოდების მხარდაჭერა (მაგ. cloudinit)?"
34
42
 
@@ -83,6 +91,12 @@ msgstr "ზომა (გბ)"
83
91
  msgid "State"
84
92
  msgstr "State"
85
93
 
94
+ msgid "The email parameter is deprecated, value is automatically loaded from the JSON file"
95
+ msgstr ""
96
+
97
+ msgid "The project parameter is deprecated, value is automatically loaded from the JSON file"
98
+ msgstr ""
99
+
86
100
  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
101
  msgstr "მომხმარებელი, რომელიც ssh-ით შესასვლელად გამოყენება. ჩვეულებრივ გამოიყენება cloud-user, ec2-user, ubuntu და ა.შ. დაიმახსოვრეთ: Google Engine-ს root მომხმარებლის SSH გასაღებების მხარდაჭერა არ გააჩნია."
88
102
 
@@ -92,5 +106,8 @@ msgstr "ტიპი"
92
106
  msgid "Zone"
93
107
  msgstr "ზონა"
94
108
 
109
+ msgid "Zone, for GCE only"
110
+ msgstr ""
111
+
95
112
  msgid "console is not available at this time because the instance is powered off"
96
113
  msgstr "კონსოლი ამჟამად მიუწვდომელია. გაშვებული ასლი გამორთულია"