hammer_cli_foreman_discovery 1.1.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/lib/hammer_cli_foreman_discovery/version.rb +1 -1
  3. data/locale/Makefile +2 -61
  4. data/locale/ca/LC_MESSAGES/hammer_cli_foreman_discovery.mo +0 -0
  5. data/locale/ca/hammer_cli_foreman_discovery.po +10 -11
  6. data/locale/cs_CZ/LC_MESSAGES/hammer_cli_foreman_discovery.mo +0 -0
  7. data/locale/cs_CZ/hammer_cli_foreman_discovery.po +165 -0
  8. data/locale/de/LC_MESSAGES/hammer_cli_foreman_discovery.mo +0 -0
  9. data/locale/de/hammer_cli_foreman_discovery.po +16 -14
  10. data/locale/en/LC_MESSAGES/hammer_cli_foreman_discovery.mo +0 -0
  11. data/locale/en/hammer_cli_foreman_discovery.po +3 -2
  12. data/locale/en_GB/LC_MESSAGES/hammer_cli_foreman_discovery.mo +0 -0
  13. data/locale/en_GB/hammer_cli_foreman_discovery.po +13 -14
  14. data/locale/es/LC_MESSAGES/hammer_cli_foreman_discovery.mo +0 -0
  15. data/locale/es/hammer_cli_foreman_discovery.po +26 -26
  16. data/locale/fr/LC_MESSAGES/hammer_cli_foreman_discovery.mo +0 -0
  17. data/locale/fr/hammer_cli_foreman_discovery.po +21 -20
  18. data/locale/it/LC_MESSAGES/hammer_cli_foreman_discovery.mo +0 -0
  19. data/locale/it/hammer_cli_foreman_discovery.po +12 -15
  20. data/locale/ja/LC_MESSAGES/hammer_cli_foreman_discovery.mo +0 -0
  21. data/locale/ja/hammer_cli_foreman_discovery.po +23 -23
  22. data/locale/ka/LC_MESSAGES/hammer_cli_foreman_discovery.mo +0 -0
  23. data/locale/ka/hammer_cli_foreman_discovery.po +163 -0
  24. data/locale/ko/LC_MESSAGES/hammer_cli_foreman_discovery.mo +0 -0
  25. data/locale/ko/hammer_cli_foreman_discovery.po +10 -13
  26. data/locale/pt_BR/LC_MESSAGES/hammer_cli_foreman_discovery.mo +0 -0
  27. data/locale/pt_BR/hammer_cli_foreman_discovery.po +21 -21
  28. data/locale/ru/LC_MESSAGES/hammer_cli_foreman_discovery.mo +0 -0
  29. data/locale/ru/hammer_cli_foreman_discovery.po +15 -16
  30. data/locale/zh_CN/LC_MESSAGES/hammer_cli_foreman_discovery.mo +0 -0
  31. data/locale/zh_CN/hammer_cli_foreman_discovery.po +33 -37
  32. data/locale/zh_TW/LC_MESSAGES/hammer_cli_foreman_discovery.mo +0 -0
  33. data/locale/zh_TW/hammer_cli_foreman_discovery.po +10 -14
  34. metadata +7 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1fa956f4e49d7c7f08a0247b19cc7d46d94d846619414fc5eb17d4cd14ac17b2
4
- data.tar.gz: af290183d21f293438b5cbc26cb73b0dcac8ea158ba299d317bcfeffffb2f762
3
+ metadata.gz: 437c3b56e34868fe63885b2fa1f88297a3c3beccf89018156236c52c206e5d17
4
+ data.tar.gz: 704cda11e2d98717abcb0ff3d08764c37a669e051da4f20fac9e7a76edc3271d
5
5
  SHA512:
6
- metadata.gz: 4b54eccacc899401a60536779b497c45ccfda5c00b294fd299524582d785dd25a4ab236bb700819e067cd6857a324214975a0b2a45f55646999f6046160af442
7
- data.tar.gz: 0da72b2913c96166c17f278730a74e0b1b6e16ff97004bd8bd65610abce9ba6fa9b8e07cccba51289507dbc7a44e9a442366184dc2b66916c50278203d45bed2
6
+ metadata.gz: 32f35416b72207ea81b23bd3e1d7a81ec912b74624d66f588f9b863c81cb5cc7d0570d7f60d6b0fe6ebd9f5d43004cbbce8b2cf5251f10d97f036c416cdcaeea
7
+ data.tar.gz: e68961ff1a6cd06c7c98039924ca0f924ffc599e664c684572e5991f9459b7b026adfc97f707ad13a3cd73b1756acb17a11ee19c08be0bf35b105a1c28315a8f
@@ -1,5 +1,5 @@
1
1
  module HammerCLIForemanDiscovery
2
2
  def self.version
3
- @version ||= Gem::Version.new('1.1.0')
3
+ @version ||= Gem::Version.new('1.2.0')
4
4
  end
5
5
  end
data/locale/Makefile CHANGED
@@ -1,65 +1,6 @@
1
1
  #
2
2
  # Makefile for PO merging and MO generation. More info in the README.
3
3
  #
4
- # make all-mo (default) - generate MO files
5
- # make check - check translations using translate-tool
6
- # make tx-update - download and merge translations from Transifex
7
- # make clean - clean everything
4
+ # Run make help to list available targets
8
5
  #
9
- DOMAIN = hammer_cli_foreman_discovery
10
- VERSION = $(shell ruby -e 'require "rubygems";spec = Gem::Specification::load("../hammer_cli_foreman_discovery.gemspec");puts spec.version')
11
- POTFILE = $(DOMAIN).pot
12
- MOFILE = $(DOMAIN).mo
13
- POFILES = $(shell find . -name '*.po')
14
- MOFILES = $(patsubst %.po,%.mo,$(POFILES))
15
- POXFILES = $(patsubst %.po,%.pox,$(POFILES))
16
-
17
- %.mo: %.po
18
- mkdir -p $(shell dirname $@)/LC_MESSAGES
19
- msgfmt -o $(shell dirname $@)/LC_MESSAGES/$(MOFILE) $<
20
-
21
- # Generate MO files from PO files
22
- all-mo: $(MOFILES)
23
-
24
- # Check for malformed strings
25
- %.pox: %.po
26
- msgfmt -c $<
27
- pofilter --nofuzzy -t variables -t blank -t urls -t emails -t long -t newlines \
28
- -t endwhitespace -t endpunc -t puncspacing -t options -t printf -t validchars --gnome $< > $@
29
- cat $@
30
- ! grep -q msgid $@
31
-
32
- check: $(POXFILES)
33
- msgfmt -c ${POTFILE}
34
-
35
- # Merge PO files
36
- update-po:
37
- for f in $(shell find ./ -name "*.po") ; do \
38
- msgmerge -N --backup=none -U $$f ${POTFILE} ; \
39
- done
40
-
41
- # Unify duplicate translations
42
- uniq-po:
43
- for f in $(shell find ./ -name "*.po") ; do \
44
- msguniq $$f -o $$f ; \
45
- done
46
-
47
- tx-pull:
48
- tx pull -f
49
- for f in $(POFILES) ; do \
50
- sed -i 's/^\("Project-Id-Version: \).*$$/\1$(DOMAIN) $(VERSION)\\n"/' $$f; \
51
- done
52
- -git commit -a -m "i18n - extracting new, pulling from tx"
53
-
54
- extract-strings:
55
- bundle exec rake gettext:find
56
-
57
- reset-po:
58
- # merging po files is unnecessary when using transifex.com
59
- git checkout -- */$(DOMAIN).po
60
-
61
- tx-update: tx-pull extract-strings reset-po $(MOFILES)
62
- # amend mo files
63
- git add */LC_MESSAGES
64
- git commit -a --amend -m "i18n - extracting new, pulling from tx"
65
- -echo Changes commited!
6
+ include $(shell bundle exec ruby -e 'require "hammer_cli"; puts HammerCLI::I18n.main_makefile')
@@ -1,17 +1,18 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
2
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
3
+ # This file is distributed under the same license as the hammer_cli_foreman_discovery package.
4
4
  #
5
5
  # Translators:
6
6
  # Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2015
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: hammer_cli_foreman_discovery 1.0.0\n"
9
+ "Project-Id-Version: hammer_cli_foreman_discovery 1.1.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "PO-Revision-Date: 2015-12-09 11:08+0000\n"
12
- "Last-Translator: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>\n"
13
- "Language-Team: Catalan (http://www.transifex.com/foreman/foreman/language/ca/)"
14
- "\n"
11
+ "POT-Creation-Date: 2019-07-31 09:22+0200\n"
12
+ "PO-Revision-Date: 2015-01-21 10:30+0000\n"
13
+ "Last-Translator: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2015\n"
14
+ "Language-Team: Catalan (http://app.transifex.com/foreman/foreman/language/"
15
+ "ca/)\n"
15
16
  "MIME-Version: 1.0\n"
16
17
  "Content-Type: text/plain; charset=UTF-8\n"
17
18
  "Content-Transfer-Encoding: 8bit\n"
@@ -40,7 +41,7 @@ msgid "Memory"
40
41
  msgstr "Memòria"
41
42
 
42
43
  msgid "Disk count"
43
- msgstr "Nombre de disc"
44
+ msgstr "Nombre de discs"
44
45
 
45
46
  msgid "Disks size"
46
47
  msgstr "Mida de disc"
@@ -96,9 +97,8 @@ msgstr "Auto aprovisiona un amfitrió"
96
97
  msgid "Auto provision all discovered hosts"
97
98
  msgstr ""
98
99
 
99
- #, fuzzy
100
100
  msgid "Hosts created"
101
- msgstr "S'ha creat l'amfitrió"
101
+ msgstr ""
102
102
 
103
103
  msgid "Reboot a host"
104
104
  msgstr "Reinicia un amfitrió"
@@ -106,9 +106,8 @@ msgstr "Reinicia un amfitrió"
106
106
  msgid "Reboot all discovered hosts"
107
107
  msgstr ""
108
108
 
109
- #, fuzzy
110
109
  msgid "Rebooting hosts"
111
- msgstr "Reinicia un amfitrió"
110
+ msgstr ""
112
111
 
113
112
  msgid "Host reboot started"
114
113
  msgstr "S'ha iniciat el reinici de l'amfitrió"
@@ -0,0 +1,165 @@
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_foreman_discovery package.
4
+ #
5
+ # Translators:
6
+ # Pavel Borecki <pavel.borecki@gmail.com>, 2018,2020
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: hammer_cli_foreman_discovery 1.1.0\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2019-07-31 09:22+0200\n"
12
+ "PO-Revision-Date: 2015-01-21 10:30+0000\n"
13
+ "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018,2020\n"
14
+ "Language-Team: Czech (Czech Republic) (http://app.transifex.com/foreman/"
15
+ "foreman/language/cs_CZ/)\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Language: cs_CZ\n"
20
+ "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n "
21
+ "<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
22
+
23
+ msgid "Manipulate discovered hosts."
24
+ msgstr ""
25
+
26
+ msgid "Manipulate discovered rules."
27
+ msgstr ""
28
+
29
+ msgid "ID"
30
+ msgstr "Identifikátor"
31
+
32
+ msgid "Name"
33
+ msgstr "Název"
34
+
35
+ msgid "MAC"
36
+ msgstr "MAC adresa"
37
+
38
+ msgid "CPUs"
39
+ msgstr "Procesory"
40
+
41
+ msgid "Memory"
42
+ msgstr "Operační paměť"
43
+
44
+ msgid "Disk count"
45
+ msgstr "Počet jednotek úložiště"
46
+
47
+ msgid "Disks size"
48
+ msgstr "Velikost jednotek úložiště"
49
+
50
+ msgid "Subnet"
51
+ msgstr "Podsíť"
52
+
53
+ msgid "Last report"
54
+ msgstr "Poslední hlášení"
55
+
56
+ msgid "IP"
57
+ msgstr "IP adresa"
58
+
59
+ msgid "Model"
60
+ msgstr "Model"
61
+
62
+ msgid "Organization"
63
+ msgstr "Organizace"
64
+
65
+ msgid "Location"
66
+ msgstr "Umístění"
67
+
68
+ msgid "Fact"
69
+ msgstr "Fakt"
70
+
71
+ msgid "Value"
72
+ msgstr "Hodnota"
73
+
74
+ msgid "Host deleted"
75
+ msgstr "Stroj smazán"
76
+
77
+ msgid "Could not delete the host"
78
+ msgstr "Stroj se nedaří smazat"
79
+
80
+ msgid "Host created"
81
+ msgstr "Stroj vytvořen"
82
+
83
+ msgid "Could not create the host"
84
+ msgstr "Stroj se nedaří "
85
+
86
+ msgid "Host parameters"
87
+ msgstr "Parametry stroje"
88
+
89
+ msgid "Interface parameters"
90
+ msgstr "Parametry rozhraní"
91
+
92
+ msgid "Enter the root password for the host:"
93
+ msgstr "Zadejte heslo ke správcovskému (root) účtu pro stroj:"
94
+
95
+ msgid "Auto provision a host"
96
+ msgstr ""
97
+
98
+ msgid "Auto provision all discovered hosts"
99
+ msgstr ""
100
+
101
+ msgid "Hosts created"
102
+ msgstr "Stroje vytvořeny"
103
+
104
+ msgid "Reboot a host"
105
+ msgstr "Restartovat stroj"
106
+
107
+ msgid "Reboot all discovered hosts"
108
+ msgstr "Restartovat všechny objevené stroje"
109
+
110
+ msgid "Rebooting hosts"
111
+ msgstr "Restartování strojů"
112
+
113
+ msgid "Host reboot started"
114
+ msgstr "Restart stroje zahájen"
115
+
116
+ msgid "Could not reboot the host"
117
+ msgstr ""
118
+
119
+ msgid "Refresh the facts of a host"
120
+ msgstr ""
121
+
122
+ msgid "Host facts refreshed"
123
+ msgstr ""
124
+
125
+ msgid "Could not refresh the facts of the host"
126
+ msgstr ""
127
+
128
+ msgid "Hosts"
129
+ msgstr "Stroje"
130
+
131
+ msgid "Priority"
132
+ msgstr "Priorita"
133
+
134
+ msgid "Search"
135
+ msgstr "Hledat"
136
+
137
+ msgid "Host Group"
138
+ msgstr "Skupina strojů"
139
+
140
+ msgid "Hosts Limit"
141
+ msgstr ""
142
+
143
+ msgid "Enabled"
144
+ msgstr "Zapnuto"
145
+
146
+ msgid "Hostname template"
147
+ msgstr "Šablona názvu stroje"
148
+
149
+ msgid "Rule created"
150
+ msgstr "Pravidlo vytvořeno"
151
+
152
+ msgid "Could not create the rule"
153
+ msgstr "Pravidlo se nedaří vytvořit"
154
+
155
+ msgid "Rule updated"
156
+ msgstr "Pravidlo aktualizováno"
157
+
158
+ msgid "Could not update the rule"
159
+ msgstr "Pravidlo se nedaří aktualizovat"
160
+
161
+ msgid "Rule deleted"
162
+ msgstr "Pravidlo smazáno"
163
+
164
+ msgid "Could not delete the rule"
165
+ msgstr "Pravidlo se nedaří smazat"
@@ -1,21 +1,25 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
2
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
3
+ # This file is distributed under the same license as the hammer_cli_foreman_discovery package.
4
4
  #
5
5
  # Translators:
6
6
  # Christina Gurski <Gurski_christina@yahoo.de>, 2015
7
7
  # Ettore Atalan <atalanttore@googlemail.com>, 2015
8
+ # Martin Zimmermann <martin.zimmermann@gmx.com>, 2018
9
+ # pdolinic, 2021
8
10
  msgid ""
9
11
  msgstr ""
10
- "Project-Id-Version: hammer_cli_foreman_discovery 1.0.0\n"
12
+ "Project-Id-Version: hammer_cli_foreman_discovery 1.1.0\n"
11
13
  "Report-Msgid-Bugs-To: \n"
12
- "PO-Revision-Date: 2015-06-18 19:38+0000\n"
13
- "Last-Translator: Christina Gurski <Gurski_christina@yahoo.de>\n"
14
- "Language-Team: German (http://www.transifex.com/foreman/foreman/language/de/)\n"
15
- "Language: de\n"
14
+ "POT-Creation-Date: 2019-07-31 09:22+0200\n"
15
+ "PO-Revision-Date: 2015-01-21 10:30+0000\n"
16
+ "Last-Translator: pdolinic, 2021\n"
17
+ "Language-Team: German (http://app.transifex.com/foreman/foreman/language/"
18
+ "de/)\n"
16
19
  "MIME-Version: 1.0\n"
17
20
  "Content-Type: text/plain; charset=UTF-8\n"
18
21
  "Content-Transfer-Encoding: 8bit\n"
22
+ "Language: de\n"
19
23
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
24
 
21
25
  msgid "Manipulate discovered hosts."
@@ -61,7 +65,7 @@ msgid "Organization"
61
65
  msgstr "Organisation"
62
66
 
63
67
  msgid "Location"
64
- msgstr "Ort"
68
+ msgstr "Standort"
65
69
 
66
70
  msgid "Fact"
67
71
  msgstr "Fakt"
@@ -94,21 +98,19 @@ msgid "Auto provision a host"
94
98
  msgstr "Host automatisch bereitstellen"
95
99
 
96
100
  msgid "Auto provision all discovered hosts"
97
- msgstr ""
101
+ msgstr "Automatische Bereitstellung aller erkannten Hosts"
98
102
 
99
- #, fuzzy
100
103
  msgid "Hosts created"
101
- msgstr "Host erstellt"
104
+ msgstr "Hosts erstellt"
102
105
 
103
106
  msgid "Reboot a host"
104
- msgstr "Host neu starten"
107
+ msgstr "Host neustarten"
105
108
 
106
109
  msgid "Reboot all discovered hosts"
107
- msgstr ""
110
+ msgstr "Alle entdeckte Hosts neu starten"
108
111
 
109
- #, fuzzy
110
112
  msgid "Rebooting hosts"
111
- msgstr "Host neu starten"
113
+ msgstr "Hosts neu starten"
112
114
 
113
115
  msgid "Host reboot started"
114
116
  msgstr "Host wird neu gestartet"
@@ -5,9 +5,10 @@
5
5
  #
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: hammer_cli_foreman_discovery 1.0.0\n"
8
+ "Project-Id-Version: hammer_cli_foreman_discovery 1.1.0\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "PO-Revision-Date: 2015-01-21 12:06+0200\n"
10
+ "POT-Creation-Date: 2019-07-31 09:22+0200\n"
11
+ "PO-Revision-Date: 2019-07-31 09:22+0200\n"
11
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
13
14
  "Language: \n"
@@ -1,18 +1,19 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
2
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
3
+ # This file is distributed under the same license as the hammer_cli_foreman_discovery package.
4
4
  #
5
5
  # Translators:
6
- # Andi Chandler <andi@gowling.com>, 2015
7
- # Dominic Cleal <dcleal@redhat.com>, 2015
6
+ # Andi Chandler <andi@gowling.com>, 2015,2018-2019
7
+ # 0868a4d1af5275b3f70b0a6dac4c99a4, 2015
8
8
  msgid ""
9
9
  msgstr ""
10
- "Project-Id-Version: hammer_cli_foreman_discovery 1.0.0\n"
10
+ "Project-Id-Version: hammer_cli_foreman_discovery 1.1.0\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "PO-Revision-Date: 2015-05-28 23:40+0000\n"
13
- "Last-Translator: Andi Chandler <andi@gowling.com>\n"
14
- "Language-Team: English (United Kingdom) (http://www.transifex.com/foreman/fore"
15
- "man/language/en_GB/)\n"
12
+ "POT-Creation-Date: 2019-07-31 09:22+0200\n"
13
+ "PO-Revision-Date: 2015-01-21 10:30+0000\n"
14
+ "Last-Translator: Andi Chandler <andi@gowling.com>, 2015,2018-2019\n"
15
+ "Language-Team: English (United Kingdom) (http://app.transifex.com/foreman/"
16
+ "foreman/language/en_GB/)\n"
16
17
  "MIME-Version: 1.0\n"
17
18
  "Content-Type: text/plain; charset=UTF-8\n"
18
19
  "Content-Transfer-Encoding: 8bit\n"
@@ -95,21 +96,19 @@ msgid "Auto provision a host"
95
96
  msgstr "Auto provision a host"
96
97
 
97
98
  msgid "Auto provision all discovered hosts"
98
- msgstr ""
99
+ msgstr "Auto provision all discovered hosts"
99
100
 
100
- #, fuzzy
101
101
  msgid "Hosts created"
102
- msgstr "Host created"
102
+ msgstr "Hosts created"
103
103
 
104
104
  msgid "Reboot a host"
105
105
  msgstr "Reboot a host"
106
106
 
107
107
  msgid "Reboot all discovered hosts"
108
- msgstr ""
108
+ msgstr "Reboot all discovered hosts"
109
109
 
110
- #, fuzzy
111
110
  msgid "Rebooting hosts"
112
- msgstr "Reboot a host"
111
+ msgstr "Rebooting hosts"
113
112
 
114
113
  msgid "Host reboot started"
115
114
  msgstr "Host reboot started"
@@ -1,22 +1,24 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
2
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
3
+ # This file is distributed under the same license as the hammer_cli_foreman_discovery package.
4
4
  #
5
5
  # Translators:
6
- # Sergio Ocón <sergio.ocon@redhat.com>, 2015
6
+ # Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2015
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: hammer_cli_foreman_discovery 1.0.0\n"
9
+ "Project-Id-Version: hammer_cli_foreman_discovery 1.1.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "PO-Revision-Date: 2015-05-19 09:24+0000\n"
12
- "Last-Translator: Sergio Ocón <sergio.ocon@redhat.com>\n"
13
- "Language-Team: Spanish (http://www.transifex.com/foreman/foreman/language/es/)"
14
- "\n"
15
- "Language: es\n"
11
+ "POT-Creation-Date: 2019-07-31 09:22+0200\n"
12
+ "PO-Revision-Date: 2015-01-21 10:30+0000\n"
13
+ "Last-Translator: Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2015\n"
14
+ "Language-Team: Spanish (http://app.transifex.com/foreman/foreman/language/"
15
+ "es/)\n"
16
16
  "MIME-Version: 1.0\n"
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "Language: es\n"
20
+ "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
21
+ "1 : 2;\n"
20
22
 
21
23
  msgid "Manipulate discovered hosts."
22
24
  msgstr "Manipular los hosts descubiertos."
@@ -31,10 +33,10 @@ msgid "Name"
31
33
  msgstr "Nombre"
32
34
 
33
35
  msgid "MAC"
34
- msgstr "Dirección MAC"
36
+ msgstr "MAC"
35
37
 
36
38
  msgid "CPUs"
37
- msgstr "Procesadores"
39
+ msgstr "CPU"
38
40
 
39
41
  msgid "Memory"
40
42
  msgstr "Memoria"
@@ -55,16 +57,16 @@ msgid "IP"
55
57
  msgstr "IP"
56
58
 
57
59
  msgid "Model"
58
- msgstr "Modelo"
60
+ msgstr "Modelado"
59
61
 
60
62
  msgid "Organization"
61
63
  msgstr "Organización"
62
64
 
63
65
  msgid "Location"
64
- msgstr "Lugares"
66
+ msgstr "Ubicación"
65
67
 
66
68
  msgid "Fact"
67
- msgstr "Dato"
69
+ msgstr "Hecho"
68
70
 
69
71
  msgid "Value"
70
72
  msgstr "Valor"
@@ -76,7 +78,7 @@ msgid "Could not delete the host"
76
78
  msgstr "No se pudo borrar el host"
77
79
 
78
80
  msgid "Host created"
79
- msgstr "El host se ha creado"
81
+ msgstr "Host creado"
80
82
 
81
83
  msgid "Could not create the host"
82
84
  msgstr "No se pudo crear el host"
@@ -88,27 +90,25 @@ msgid "Interface parameters"
88
90
  msgstr "Parámetros de la interfaz"
89
91
 
90
92
  msgid "Enter the root password for the host:"
91
- msgstr "Introduzca el password de root para el host:"
93
+ msgstr "Introduzca la contraseña de root para el host:"
92
94
 
93
95
  msgid "Auto provision a host"
94
96
  msgstr "Provisionar un host automático"
95
97
 
96
98
  msgid "Auto provision all discovered hosts"
97
- msgstr ""
99
+ msgstr "Aprovisionamiento automático de todos los hosts detectados"
98
100
 
99
- #, fuzzy
100
101
  msgid "Hosts created"
101
- msgstr "El host se ha creado"
102
+ msgstr "Hosts creados"
102
103
 
103
104
  msgid "Reboot a host"
104
105
  msgstr "Reiniciar un host"
105
106
 
106
107
  msgid "Reboot all discovered hosts"
107
- msgstr ""
108
+ msgstr "Reiniciar todos los hosts detectados"
108
109
 
109
- #, fuzzy
110
110
  msgid "Rebooting hosts"
111
- msgstr "Reiniciar un host"
111
+ msgstr "Reiniciando hosts"
112
112
 
113
113
  msgid "Host reboot started"
114
114
  msgstr "Comenzó el reinicio del host"
@@ -153,13 +153,13 @@ msgid "Could not create the rule"
153
153
  msgstr "No se pudo crear la regla"
154
154
 
155
155
  msgid "Rule updated"
156
- msgstr "Se actualizó la pauta"
156
+ msgstr "Ha sido actualizada la regla"
157
157
 
158
158
  msgid "Could not update the rule"
159
- msgstr "No se pudo actualizar la pauta"
159
+ msgstr "No se pudo actualizar la regla"
160
160
 
161
161
  msgid "Rule deleted"
162
- msgstr "La pauta se borró"
162
+ msgstr "Ha sido borrada la regla"
163
163
 
164
164
  msgid "Could not delete the rule"
165
- msgstr "No se pudo borrar la pauta"
165
+ msgstr "No se pudo borrar la regla"