hammer_cli_foreman_tasks 0.0.19 → 0.0.21

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 (37) hide show
  1. checksums.yaml +4 -4
  2. data/lib/hammer_cli_foreman_tasks/helper.rb +1 -1
  3. data/lib/hammer_cli_foreman_tasks/task_progress.rb +1 -1
  4. data/lib/hammer_cli_foreman_tasks/version.rb +1 -1
  5. data/locale/Makefile +2 -53
  6. data/locale/cs_CZ/LC_MESSAGES/hammer_cli_foreman_tasks.mo +0 -0
  7. data/locale/cs_CZ/hammer_cli_foreman_tasks.po +144 -0
  8. data/locale/de/LC_MESSAGES/hammer_cli_foreman_tasks.mo +0 -0
  9. data/locale/de/hammer_cli_foreman_tasks.po +66 -20
  10. data/locale/el/LC_MESSAGES/hammer_cli_foreman_tasks.mo +0 -0
  11. data/locale/el/hammer_cli_foreman_tasks.po +142 -0
  12. data/locale/en/LC_MESSAGES/hammer_cli_foreman_tasks.mo +0 -0
  13. data/locale/en/hammer_cli_foreman_tasks.po +62 -17
  14. data/locale/en_GB/LC_MESSAGES/hammer_cli_foreman_tasks.mo +0 -0
  15. data/locale/en_GB/hammer_cli_foreman_tasks.po +143 -0
  16. data/locale/es/LC_MESSAGES/hammer_cli_foreman_tasks.mo +0 -0
  17. data/locale/es/hammer_cli_foreman_tasks.po +69 -22
  18. data/locale/fr/LC_MESSAGES/hammer_cli_foreman_tasks.mo +0 -0
  19. data/locale/fr/hammer_cli_foreman_tasks.po +74 -26
  20. data/locale/hammer_cli_foreman_tasks.pot +115 -42
  21. data/locale/it/LC_MESSAGES/hammer_cli_foreman_tasks.mo +0 -0
  22. data/locale/it/hammer_cli_foreman_tasks.po +63 -16
  23. data/locale/ja/LC_MESSAGES/hammer_cli_foreman_tasks.mo +0 -0
  24. data/locale/ja/hammer_cli_foreman_tasks.po +69 -20
  25. data/locale/ka/LC_MESSAGES/hammer_cli_foreman_tasks.mo +0 -0
  26. data/locale/ka/hammer_cli_foreman_tasks.po +142 -0
  27. data/locale/ko/LC_MESSAGES/hammer_cli_foreman_tasks.mo +0 -0
  28. data/locale/ko/hammer_cli_foreman_tasks.po +65 -19
  29. data/locale/pt_BR/LC_MESSAGES/hammer_cli_foreman_tasks.mo +0 -0
  30. data/locale/pt_BR/hammer_cli_foreman_tasks.po +69 -22
  31. data/locale/ru/LC_MESSAGES/hammer_cli_foreman_tasks.mo +0 -0
  32. data/locale/ru/hammer_cli_foreman_tasks.po +68 -22
  33. data/locale/zh_CN/LC_MESSAGES/hammer_cli_foreman_tasks.mo +0 -0
  34. data/locale/zh_CN/hammer_cli_foreman_tasks.po +81 -35
  35. data/locale/zh_TW/LC_MESSAGES/hammer_cli_foreman_tasks.mo +0 -0
  36. data/locale/zh_TW/hammer_cli_foreman_tasks.po +67 -20
  37. metadata +26 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bbeab81edf514e3d64387cf63050e3125ad72d099793eb6a8fd202b78e6e57b8
4
- data.tar.gz: fd616613c1ea70cf3f41cd944930bc4dc15355d817de1f6eec6665a6010e1e6f
3
+ metadata.gz: ecb5c697027ff8162064104b3f04ec3111310fa918400efca3130a66b5b7a7de
4
+ data.tar.gz: b5cbeea8bc93239decfc143177037505ac7beb96444d1ed03e41d0d4765d43ba
5
5
  SHA512:
6
- metadata.gz: 320748d7f081f7a9380443268f1f71366991860ea1d1a58767f6c03f8a897a2e02ff81492c2500c146fec4a985195e8a6e1271d9dd049b4330037bf90d280348
7
- data.tar.gz: 0b5b90a5d723841f0e3b3ac76356dec253a31ff86ea6c6add58ba9a682b7238157535c2288818449f10572016cb313f265e0fa47c71f4fe3b8d60076e81ac9b4
6
+ metadata.gz: 4dd484521acce7afabf52e2f7f2ad5c4627784f831ca5e690dacd8db3bc5c09af434a5ba49564038dabccb511584a1d2824befa446889ff487c54af058105986
7
+ data.tar.gz: 39bd630a411295bb0c50d66596fc2445610e2e5fb6d3cdc0310f7d4e137e5d38d29857efec7c7c50069d55f0d808a5d0bad5128c0f466bb4f982954172bbfcf1
@@ -4,7 +4,7 @@ module HammerCLIForemanTasks
4
4
  def task_progress(task_or_id)
5
5
  task_id = task_or_id.is_a?(Hash) ? task_or_id['id'] : task_or_id
6
6
  if !task_id.empty?
7
- options = { verbosity: @context[:verbosity] || HammerCLI::V_VERBOSE }
7
+ options = { verbosity: @context[:verbosity] || HammerCLI::V_VERBOSE, adapter: (@context[:adapter] || :base).to_s }
8
8
  task_progress = TaskProgress.new(task_id, options) { |id| load_task(id) }
9
9
  task_progress.render
10
10
  task_progress.success?
@@ -72,7 +72,7 @@ module HammerCLIForemanTasks
72
72
  end
73
73
 
74
74
  def appropriate_verbosity?
75
- @options[:verbosity] >= HammerCLI::V_VERBOSE
75
+ @options[:verbosity] >= HammerCLI::V_VERBOSE && @options[:adapter] == 'base'
76
76
  end
77
77
  end
78
78
  end
@@ -1,5 +1,5 @@
1
1
  module HammerCLIForemanTasks
2
2
  def self.version
3
- @version ||= Gem::Version.new('0.0.19')
3
+ @version ||= Gem::Version.new('0.0.21')
4
4
  end
5
5
  end
data/locale/Makefile CHANGED
@@ -1,57 +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-tasks
10
- VERSION = $(shell ruby -e 'require "rubygems";spec = Gem::Specification::load("../hammer_cli_foreman_tasks.gemspec");puts spec.version')
11
- POTFILE = $(DOMAIN).pot
12
- MOFILE = $(DOMAIN).mo
13
- POFILES = $(shell find . -name '$(DOMAIN).po')
14
- MOFILES = $(patsubst %.po,%.mo,$(POFILES))
15
- POXFILES = $(patsubst %.po,%.pox,$(POFILES))
16
- EDITFILES = $(patsubst %.po,%.edit.po,$(POFILES))
17
-
18
- %.mo: %.po
19
- mkdir -p $(shell dirname $@)/LC_MESSAGES
20
- msgfmt -o $(shell dirname $@)/LC_MESSAGES/$(MOFILE) $<
21
-
22
- # Generate MO files from PO files
23
- all-mo: $(MOFILES)
24
-
25
- # Check for malformed strings
26
- %.pox: %.po
27
- msgfmt -c $<
28
- pofilter --nofuzzy -t variables -t blank -t urls -t emails -t long -t newlines \
29
- -t endwhitespace -t endpunc -t puncspacing -t options -t printf -t validchars --gnome $< > $@
30
- cat $@
31
- ! grep -q msgid $@
32
-
33
- check: $(POXFILES)
34
-
35
- # Unify duplicate translations
36
- uniq-po:
37
- for f in $(shell find ./ -name "*.po") ; do \
38
- msguniq $$f -o $$f ; \
39
- done
40
-
41
- tx-pull: $(EDITFILES)
42
- tx pull -f
43
- for f in $(POFILES) ; do \
44
- sed -i 's/^\("Project-Id-Version: \).*$$/\1$(DOMAIN) $(VERSION)\\n"/' $$f; \
45
- done
46
-
47
- # Extract strings and update the .pot, prepare .edit.po files
48
- extract-strings:
49
- bundle exec rake gettext:find
50
-
51
- # Merge .edit.po into .po
52
- update-po:
53
- bundle exec rake gettext:find
54
-
55
- tx-update: extract-strings tx-pull $(MOFILES)
56
- git commit -m "i18n - extracting new, pulling from tx" ../locale
57
- -echo Changes commited!
6
+ include $(shell bundle exec ruby -e 'require "hammer_cli"; puts HammerCLI::I18n.main_makefile')
@@ -0,0 +1,144 @@
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_tasks package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # Pavel Borecki <pavel.borecki@gmail.com>, 2023
8
+ #
9
+ #, fuzzy
10
+ msgid ""
11
+ msgstr ""
12
+ "Project-Id-Version: hammer_cli_foreman_tasks 0.0.19\n"
13
+ "Report-Msgid-Bugs-To: \n"
14
+ "POT-Creation-Date: 2023-07-12 16:44+0000\n"
15
+ "PO-Revision-Date: 2017-09-11 13:45+0000\n"
16
+ "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2023\n"
17
+ "Language-Team: Czech (Czech Republic) (https://app.transifex.com/foreman/"
18
+ "teams/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"
27
+ msgstr "Akce"
28
+
29
+ msgid "Last occurrence"
30
+ msgstr ""
31
+
32
+ msgid "Next occurrence"
33
+ msgstr ""
34
+
35
+ msgid "Iteration limit"
36
+ msgstr ""
37
+
38
+ msgid "Repeat until"
39
+ msgstr ""
40
+
41
+ msgid "Unlimited"
42
+ msgstr ""
43
+
44
+ msgid "Please mention appropriate attribute value"
45
+ msgstr ""
46
+
47
+ msgid "ID"
48
+ msgstr "Identifikátor"
49
+
50
+ msgid "Cron line"
51
+ msgstr "Řádek z plánovače kron"
52
+
53
+ msgid "Task count"
54
+ msgstr ""
55
+
56
+ msgid "Iteration"
57
+ msgstr "Průchod"
58
+
59
+ msgid "End time"
60
+ msgstr ""
61
+
62
+ msgid "State"
63
+ msgstr "Stav"
64
+
65
+ msgid "Purpose"
66
+ msgstr ""
67
+
68
+ msgid "Recurring logic cancelled."
69
+ msgstr ""
70
+
71
+ msgid "Could not cancel the recurring logic"
72
+ msgstr ""
73
+
74
+ msgid "Only delete cancelled recurring logics"
75
+ msgstr ""
76
+
77
+ msgid "Only delete finished recurring logics"
78
+ msgstr ""
79
+
80
+ msgid "Delete all recuring logics filtered by the arguments"
81
+ msgstr ""
82
+
83
+ msgid "Could not delete recurring logics"
84
+ msgstr ""
85
+
86
+ msgid "The following recurring logics deleted:"
87
+ msgstr ""
88
+
89
+ msgid "No recurring logics deleted."
90
+ msgstr ""
91
+
92
+ msgid "Recurring logic related actions"
93
+ msgstr ""
94
+
95
+ msgid "Show the progress of the task"
96
+ msgstr "Zobrazovat postup úlohy"
97
+
98
+ msgid "Result"
99
+ msgstr "Výsledek"
100
+
101
+ msgid "Started at"
102
+ msgstr "Zahájeno v"
103
+
104
+ msgid "Ended at"
105
+ msgstr "Skončilo v"
106
+
107
+ msgid "Duration"
108
+ msgstr ""
109
+
110
+ msgid "Owner"
111
+ msgstr "Vlastník"
112
+
113
+ msgid "Task errors"
114
+ msgstr "Chyby úlohy"
115
+
116
+ msgid "Resume all tasks paused in error state"
117
+ msgstr ""
118
+
119
+ msgid "Total tasks found paused in error state"
120
+ msgstr ""
121
+
122
+ msgid "Total tasks resumed"
123
+ msgstr ""
124
+
125
+ msgid "Resumed tasks"
126
+ msgstr ""
127
+
128
+ msgid "Task identifier"
129
+ msgstr "Identifikátor úlohy"
130
+
131
+ msgid "Task action"
132
+ msgstr "Akce úlohy"
133
+
134
+ msgid "Total tasks failed to resume"
135
+ msgstr ""
136
+
137
+ msgid "Failed tasks"
138
+ msgstr "Nezdařené úlohy"
139
+
140
+ msgid "Total tasks skipped"
141
+ msgstr "Celkem přeskočeno úloh"
142
+
143
+ msgid "Skipped tasks"
144
+ msgstr "Přeskočené úlohy"
@@ -4,56 +4,99 @@
4
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
  #
6
6
  # Translators:
7
- # Wiederoder <stefanwiederoder@googlemail.com>, 2017
8
- # Ettore Atalan <atalanttore@googlemail.com>, 2017
9
7
  # Bryan Kearney <bryan.kearney@gmail.com>, 2017
8
+ # Ettore Atalan <atalanttore@googlemail.com>, 2023
9
+ # Wiederoder <stefanwiederoder@googlemail.com>, 2023
10
10
  #
11
11
  #, fuzzy
12
12
  msgid ""
13
13
  msgstr ""
14
- "Project-Id-Version: hammer_cli_foreman_tasks 0.0.12\n"
14
+ "Project-Id-Version: hammer_cli_foreman_tasks 0.0.19\n"
15
15
  "Report-Msgid-Bugs-To: \n"
16
+ "POT-Creation-Date: 2023-07-12 16:44+0000\n"
16
17
  "PO-Revision-Date: 2017-09-11 13:45+0000\n"
17
- "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2017\n"
18
- "Language-Team: German (https://www.transifex.com/foreman/teams/114/de/)\n"
18
+ "Last-Translator: Wiederoder <stefanwiederoder@googlemail.com>, 2023\n"
19
+ "Language-Team: German (https://app.transifex.com/foreman/teams/114/de/)\n"
19
20
  "MIME-Version: 1.0\n"
20
21
  "Content-Type: text/plain; charset=UTF-8\n"
21
22
  "Content-Transfer-Encoding: 8bit\n"
22
23
  "Language: de\n"
23
24
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
24
25
 
26
+ msgid "Action"
27
+ msgstr "Aktion"
28
+
29
+ msgid "Last occurrence"
30
+ msgstr ""
31
+
32
+ msgid "Next occurrence"
33
+ msgstr ""
34
+
35
+ msgid "Iteration limit"
36
+ msgstr ""
37
+
38
+ msgid "Repeat until"
39
+ msgstr ""
40
+
41
+ msgid "Unlimited"
42
+ msgstr "Unbegrenzt"
43
+
44
+ msgid "Please mention appropriate attribute value"
45
+ msgstr ""
46
+
25
47
  msgid "ID"
26
48
  msgstr "ID"
27
49
 
28
50
  msgid "Cron line"
29
51
  msgstr "Cron-Zeile"
30
52
 
31
- msgid "End time"
32
- msgstr "Endzeit"
53
+ msgid "Task count"
54
+ msgstr ""
33
55
 
34
56
  msgid "Iteration"
35
57
  msgstr "Wiederholung"
36
58
 
59
+ msgid "End time"
60
+ msgstr "Endzeit"
61
+
37
62
  msgid "State"
38
63
  msgstr "Status"
39
64
 
65
+ msgid "Purpose"
66
+ msgstr ""
67
+
40
68
  msgid "Recurring logic cancelled."
41
69
  msgstr "Wiederholungslogik abgebrochen."
42
70
 
43
- msgid "Could not cancel the recurring logic."
44
- msgstr "Wiederholungslogik konnte nicht abgebrochen werden."
71
+ msgid "Could not cancel the recurring logic"
72
+ msgstr ""
73
+
74
+ msgid "Only delete cancelled recurring logics"
75
+ msgstr ""
45
76
 
46
- msgid "Recurring logic related actions."
47
- msgstr "Aktionen im Zusammenhang mit Wiederholungslogik"
77
+ msgid "Only delete finished recurring logics"
78
+ msgstr ""
79
+
80
+ msgid "Delete all recuring logics filtered by the arguments"
81
+ msgstr ""
82
+
83
+ msgid "Could not delete recurring logics"
84
+ msgstr ""
85
+
86
+ msgid "The following recurring logics deleted:"
87
+ msgstr ""
88
+
89
+ msgid "No recurring logics deleted."
90
+ msgstr ""
91
+
92
+ msgid "Recurring logic related actions"
93
+ msgstr ""
48
94
 
49
95
  msgid "Show the progress of the task"
50
96
  msgstr "Fortschritt der Aufgabe anzeigen"
51
97
 
52
- msgid "Name"
53
- msgstr "Name"
54
-
55
- msgid "Owner"
56
- msgstr "Besitzer"
98
+ msgid "Result"
99
+ msgstr "Ergebnis"
57
100
 
58
101
  msgid "Started at"
59
102
  msgstr "Gestartet um"
@@ -61,11 +104,11 @@ msgstr "Gestartet um"
61
104
  msgid "Ended at"
62
105
  msgstr "Beendet um"
63
106
 
64
- msgid "Result"
65
- msgstr "Ergebnis"
107
+ msgid "Duration"
108
+ msgstr ""
66
109
 
67
- msgid "Task action"
68
- msgstr "Aufgabenaktion"
110
+ msgid "Owner"
111
+ msgstr "Besitzer"
69
112
 
70
113
  msgid "Task errors"
71
114
  msgstr "Aufgabenfehler"
@@ -85,6 +128,9 @@ msgstr "Fortgesetzte Aufgaben"
85
128
  msgid "Task identifier"
86
129
  msgstr "Aufgabenbezeichner"
87
130
 
131
+ msgid "Task action"
132
+ msgstr "Aufgabenaktion"
133
+
88
134
  msgid "Total tasks failed to resume"
89
135
  msgstr "Gesamtzahl der Aufgaben, die nicht fortgesetzt werden konnten"
90
136
 
@@ -0,0 +1,142 @@
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_tasks package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # Efstathios Iosifidis <iefstathios@gmail.com>, 2023
8
+ #
9
+ #, fuzzy
10
+ msgid ""
11
+ msgstr ""
12
+ "Project-Id-Version: hammer_cli_foreman_tasks 0.0.19\n"
13
+ "Report-Msgid-Bugs-To: \n"
14
+ "POT-Creation-Date: 2023-07-12 16:44+0000\n"
15
+ "PO-Revision-Date: 2017-09-11 13:45+0000\n"
16
+ "Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>, 2023\n"
17
+ "Language-Team: Greek (https://app.transifex.com/foreman/teams/114/el/)\n"
18
+ "MIME-Version: 1.0\n"
19
+ "Content-Type: text/plain; charset=UTF-8\n"
20
+ "Content-Transfer-Encoding: 8bit\n"
21
+ "Language: el\n"
22
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23
+
24
+ msgid "Action"
25
+ msgstr "Ενέργεια"
26
+
27
+ msgid "Last occurrence"
28
+ msgstr ""
29
+
30
+ msgid "Next occurrence"
31
+ msgstr ""
32
+
33
+ msgid "Iteration limit"
34
+ msgstr ""
35
+
36
+ msgid "Repeat until"
37
+ msgstr ""
38
+
39
+ msgid "Unlimited"
40
+ msgstr ""
41
+
42
+ msgid "Please mention appropriate attribute value"
43
+ msgstr ""
44
+
45
+ msgid "ID"
46
+ msgstr "ID"
47
+
48
+ msgid "Cron line"
49
+ msgstr "Γραμμή Cron"
50
+
51
+ msgid "Task count"
52
+ msgstr ""
53
+
54
+ msgid "Iteration"
55
+ msgstr "Επανάληψη"
56
+
57
+ msgid "End time"
58
+ msgstr "Χρόνος λήξης"
59
+
60
+ msgid "State"
61
+ msgstr "Κατάσταση"
62
+
63
+ msgid "Purpose"
64
+ msgstr ""
65
+
66
+ msgid "Recurring logic cancelled."
67
+ msgstr "Ακυρώθηκε η επαναλαμβανόμενη λογική."
68
+
69
+ msgid "Could not cancel the recurring logic"
70
+ msgstr ""
71
+
72
+ msgid "Only delete cancelled recurring logics"
73
+ msgstr ""
74
+
75
+ msgid "Only delete finished recurring logics"
76
+ msgstr ""
77
+
78
+ msgid "Delete all recuring logics filtered by the arguments"
79
+ msgstr ""
80
+
81
+ msgid "Could not delete recurring logics"
82
+ msgstr ""
83
+
84
+ msgid "The following recurring logics deleted:"
85
+ msgstr ""
86
+
87
+ msgid "No recurring logics deleted."
88
+ msgstr ""
89
+
90
+ msgid "Recurring logic related actions"
91
+ msgstr ""
92
+
93
+ msgid "Show the progress of the task"
94
+ msgstr "Εμφάνιση προόδου εργασίας"
95
+
96
+ msgid "Result"
97
+ msgstr "Αποτέλεσμα"
98
+
99
+ msgid "Started at"
100
+ msgstr "Ξεκίνησε στις"
101
+
102
+ msgid "Ended at"
103
+ msgstr "Τελείωσε στις"
104
+
105
+ msgid "Duration"
106
+ msgstr ""
107
+
108
+ msgid "Owner"
109
+ msgstr "Ιδιοκτήτης"
110
+
111
+ msgid "Task errors"
112
+ msgstr "Σφάλματα εργασίας"
113
+
114
+ msgid "Resume all tasks paused in error state"
115
+ msgstr "Επανάληψη όλων των εργασιών σε παύση σε κατάσταση σφάλματος"
116
+
117
+ msgid "Total tasks found paused in error state"
118
+ msgstr "Οι συνολικές εργασίες που εντοπίστηκαν σε παύση σε κατάσταση σφάλματος"
119
+
120
+ msgid "Total tasks resumed"
121
+ msgstr "Οι συνολικές εργασίες συνεχίστηκαν"
122
+
123
+ msgid "Resumed tasks"
124
+ msgstr "Εργασίες που συνεχίστηκαν"
125
+
126
+ msgid "Task identifier"
127
+ msgstr "Αναγνωριστικό εργασίας"
128
+
129
+ msgid "Task action"
130
+ msgstr "Ενέργεια εργασίας"
131
+
132
+ msgid "Total tasks failed to resume"
133
+ msgstr "Οι συνολικές εργασίες απέτυχαν να συνεχιστούν"
134
+
135
+ msgid "Failed tasks"
136
+ msgstr "Εργασίες που απέτυχαν"
137
+
138
+ msgid "Total tasks skipped"
139
+ msgstr "Οι συνολικές εργασίες έχουν παραλειφθεί"
140
+
141
+ msgid "Skipped tasks"
142
+ msgstr "Εργασίες που παραλήφθηκαν"
@@ -1,21 +1,42 @@
1
- # English translations for hammer_cli_foreman_tasks package.
2
- # Copyright (C) 2016 THE PACKAGE'S COPYRIGHT HOLDER
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
3
  # This file is distributed under the same license as the hammer_cli_foreman_tasks package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
  #
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: hammer_cli_foreman_tasks 0.0.9\n"
8
+ "Project-Id-Version: hammer_cli_foreman_tasks 0.0.19\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "PO-Revision-Date: 2016-02-10 13:03-0500\n"
10
+ "POT-Creation-Date: 2023-07-12 16:44+0000\n"
11
+ "PO-Revision-Date: 2023-07-12 16:44+0000\n"
11
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12
- "Language-Team: English\n"
13
- "Language: en\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+ "Language: \n"
14
15
  "MIME-Version: 1.0\n"
15
16
  "Content-Type: text/plain; charset=UTF-8\n"
16
17
  "Content-Transfer-Encoding: 8bit\n"
17
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
- "\n"
18
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19
+
20
+ msgid "Action"
21
+ msgstr ""
22
+
23
+ msgid "Last occurrence"
24
+ msgstr ""
25
+
26
+ msgid "Next occurrence"
27
+ msgstr ""
28
+
29
+ msgid "Iteration limit"
30
+ msgstr ""
31
+
32
+ msgid "Repeat until"
33
+ msgstr ""
34
+
35
+ msgid "Unlimited"
36
+ msgstr ""
37
+
38
+ msgid "Please mention appropriate attribute value"
39
+ msgstr ""
19
40
 
20
41
  msgid "ID"
21
42
  msgstr ""
@@ -23,31 +44,52 @@ msgstr ""
23
44
  msgid "Cron line"
24
45
  msgstr ""
25
46
 
26
- msgid "End time"
47
+ msgid "Task count"
27
48
  msgstr ""
28
49
 
29
50
  msgid "Iteration"
30
51
  msgstr ""
31
52
 
53
+ msgid "End time"
54
+ msgstr ""
55
+
32
56
  msgid "State"
33
57
  msgstr ""
34
58
 
59
+ msgid "Purpose"
60
+ msgstr ""
61
+
35
62
  msgid "Recurring logic cancelled."
36
63
  msgstr ""
37
64
 
38
- msgid "Could not cancel the recurring logic."
65
+ msgid "Could not cancel the recurring logic"
39
66
  msgstr ""
40
67
 
41
- msgid "Recurring logic related actions."
68
+ msgid "Only delete cancelled recurring logics"
42
69
  msgstr ""
43
70
 
44
- msgid "Show the progress of the task"
71
+ msgid "Only delete finished recurring logics"
45
72
  msgstr ""
46
73
 
47
- msgid "Name"
74
+ msgid "Delete all recuring logics filtered by the arguments"
48
75
  msgstr ""
49
76
 
50
- msgid "Owner"
77
+ msgid "Could not delete recurring logics"
78
+ msgstr ""
79
+
80
+ msgid "The following recurring logics deleted:"
81
+ msgstr ""
82
+
83
+ msgid "No recurring logics deleted."
84
+ msgstr ""
85
+
86
+ msgid "Recurring logic related actions"
87
+ msgstr ""
88
+
89
+ msgid "Show the progress of the task"
90
+ msgstr ""
91
+
92
+ msgid "Result"
51
93
  msgstr ""
52
94
 
53
95
  msgid "Started at"
@@ -56,10 +98,10 @@ msgstr ""
56
98
  msgid "Ended at"
57
99
  msgstr ""
58
100
 
59
- msgid "Result"
101
+ msgid "Duration"
60
102
  msgstr ""
61
103
 
62
- msgid "Task action"
104
+ msgid "Owner"
63
105
  msgstr ""
64
106
 
65
107
  msgid "Task errors"
@@ -80,6 +122,9 @@ msgstr ""
80
122
  msgid "Task identifier"
81
123
  msgstr ""
82
124
 
125
+ msgid "Task action"
126
+ msgstr ""
127
+
83
128
  msgid "Total tasks failed to resume"
84
129
  msgstr ""
85
130