nova_git_stats 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/bin/git_stats +6 -0
- data/config/locales/bg.yml +63 -0
- data/config/locales/bg_default.yml +70 -0
- data/config/locales/de.yml +63 -0
- data/config/locales/de_default.yml +224 -0
- data/config/locales/en.yml +63 -0
- data/config/locales/es.yml +63 -0
- data/config/locales/es_deafult.yml +70 -0
- data/config/locales/pl.yml +63 -0
- data/config/locales/pl_default.yml +224 -0
- data/config/locales/tr.yml +63 -0
- data/config/locales/tr_default.yml +70 -0
- data/config/locales/zh_cn.yml +65 -0
- data/config/locales/zh_cn_default.yml +70 -0
- data/config/locales/zh_tw.yml +63 -0
- data/config/locales/zh_tw_default.yml +76 -0
- data/lib/git_stats/base.rb +28 -0
- data/lib/git_stats/cli.rb +35 -0
- data/lib/git_stats/command_parser.rb +30 -0
- data/lib/git_stats/command_runner.rb +13 -0
- data/lib/git_stats/core_extensions/enumerable.rb +8 -0
- data/lib/git_stats/core_extensions/hash.rb +24 -0
- data/lib/git_stats/core_extensions/symbol.rb +5 -0
- data/lib/git_stats/generator.rb +38 -0
- data/lib/git_stats/git_data/activity.rb +76 -0
- data/lib/git_stats/git_data/author.rb +77 -0
- data/lib/git_stats/git_data/blob.rb +41 -0
- data/lib/git_stats/git_data/comment_stat.rb +38 -0
- data/lib/git_stats/git_data/commit.rb +76 -0
- data/lib/git_stats/git_data/repo.rb +172 -0
- data/lib/git_stats/git_data/short_stat.rb +29 -0
- data/lib/git_stats/git_data/tree.rb +21 -0
- data/lib/git_stats/hash_initializable.rb +9 -0
- data/lib/git_stats/i18n.rb +2 -0
- data/lib/git_stats/inspector.rb +52 -0
- data/lib/git_stats/stats_view/charts/activity_charts.rb +69 -0
- data/lib/git_stats/stats_view/charts/authors_charts.rb +49 -0
- data/lib/git_stats/stats_view/charts/chart.rb +126 -0
- data/lib/git_stats/stats_view/charts/charts.rb +36 -0
- data/lib/git_stats/stats_view/charts/repo_charts.rb +61 -0
- data/lib/git_stats/stats_view/template.rb +21 -0
- data/lib/git_stats/stats_view/view.rb +89 -0
- data/lib/git_stats/stats_view/view_data.rb +28 -0
- data/lib/git_stats/version.rb +7 -0
- data/lib/git_stats.rb +14 -0
- data/templates/activity/_activity.haml +102 -0
- data/templates/activity/by_date.haml +1 -0
- data/templates/activity/day_of_week.haml +1 -0
- data/templates/activity/hour_of_day.haml +1 -0
- data/templates/activity/hour_of_week.haml +1 -0
- data/templates/activity/month_of_year.haml +1 -0
- data/templates/activity/year.haml +1 -0
- data/templates/activity/year_month.haml +1 -0
- data/templates/assets/bootstrap/css/bootstrap-3.3.7.min.css +6 -0
- data/templates/assets/bootstrap/css/bootstrap-theme-3.3.7.min.css +6 -0
- data/templates/assets/bootstrap/css/bootstrap-theme.min.css.map +1 -0
- data/templates/assets/bootstrap/css/bootstrap.min.css.map +1 -0
- data/templates/assets/bootstrap/js/bootstrap-3.3.7.min.js +7 -0
- data/templates/assets/bootstrap-4.6.0-dist/css/bootstrap-grid.css +3872 -0
- data/templates/assets/bootstrap-4.6.0-dist/css/bootstrap-grid.css.map +1 -0
- data/templates/assets/bootstrap-4.6.0-dist/css/bootstrap-grid.min.css +7 -0
- data/templates/assets/bootstrap-4.6.0-dist/css/bootstrap-grid.min.css.map +1 -0
- data/templates/assets/bootstrap-4.6.0-dist/css/bootstrap-reboot.css +325 -0
- data/templates/assets/bootstrap-4.6.0-dist/css/bootstrap-reboot.css.map +1 -0
- data/templates/assets/bootstrap-4.6.0-dist/css/bootstrap-reboot.min.css +8 -0
- data/templates/assets/bootstrap-4.6.0-dist/css/bootstrap-reboot.min.css.map +1 -0
- data/templates/assets/bootstrap-4.6.0-dist/css/bootstrap.css +10298 -0
- data/templates/assets/bootstrap-4.6.0-dist/css/bootstrap.css.map +1 -0
- data/templates/assets/bootstrap-4.6.0-dist/css/bootstrap.min.css +7 -0
- data/templates/assets/bootstrap-4.6.0-dist/css/bootstrap.min.css.map +1 -0
- data/templates/assets/bootstrap-4.6.0-dist/js/bootstrap.bundle.js +7045 -0
- data/templates/assets/bootstrap-4.6.0-dist/js/bootstrap.bundle.js.map +1 -0
- data/templates/assets/bootstrap-4.6.0-dist/js/bootstrap.bundle.min.js +7 -0
- data/templates/assets/bootstrap-4.6.0-dist/js/bootstrap.bundle.min.js.map +1 -0
- data/templates/assets/bootstrap-4.6.0-dist/js/bootstrap.js +4432 -0
- data/templates/assets/bootstrap-4.6.0-dist/js/bootstrap.js.map +1 -0
- data/templates/assets/bootstrap-4.6.0-dist/js/bootstrap.min.js +7 -0
- data/templates/assets/bootstrap-4.6.0-dist/js/bootstrap.min.js.map +1 -0
- data/templates/assets/export-data.js +17 -0
- data/templates/assets/exporting.js +27 -0
- data/templates/assets/highstock.js +525 -0
- data/templates/assets/jquery-3.6.0.min.js +2 -0
- data/templates/assets/menu.css +28 -0
- data/templates/author_details/_author_details.haml +31 -0
- data/templates/author_details/changed_lines_by_date.haml +1 -0
- data/templates/author_details/commits_by_date.haml +1 -0
- data/templates/author_details/deletions_by_date.haml +1 -0
- data/templates/author_details/insertions_by_date.haml +1 -0
- data/templates/authors/_authors.haml +72 -0
- data/templates/authors/best_authors.haml +1 -0
- data/templates/authors/changed_lines_by_author_by_date.haml +1 -0
- data/templates/authors/commits_sum_by_author_by_date.haml +1 -0
- data/templates/authors/deletions_by_author_by_date.haml +1 -0
- data/templates/authors/insertions_by_author_by_date.haml +1 -0
- data/templates/comments/_comments.haml +11 -0
- data/templates/comments/by_date.haml +1 -0
- data/templates/files/_files.haml +16 -0
- data/templates/files/by_date.haml +1 -0
- data/templates/files/by_extension.haml +1 -0
- data/templates/general.haml +31 -0
- data/templates/layout.haml +32 -0
- data/templates/lines/_lines.haml +16 -0
- data/templates/lines/by_date.haml +1 -0
- data/templates/lines/by_extension.haml +1 -0
- data/templates/static/index.html +5 -0
- metadata +262 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b6c4a94033fd555ab2caa45a9aba91f3e8b60109008ba3a8fba8f639c24a81a1
|
4
|
+
data.tar.gz: f7fc62f9a5c725934a40b746a3ad816e0aad5a91e98e78b42558157abc55faed
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: aa8462b76ef85e84d9b7ac825d7cbeff3876f2f81c670a074af55e3f5e3737412542babca988e7b6404a28916ac04b7556fc0b27ea912d209f202cdc51891be6
|
7
|
+
data.tar.gz: e475ed118ceb345985623d2e3f3694454a5bacb5d3886c25d3bfb7bcf0a63f42ee2a3e19cee6d6af30e5e2e1ccb31b8bdc23e1c63bc0068d67f0411d8c27b52d
|
data/bin/git_stats
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
bg:
|
2
|
+
project_name: Име на проекта
|
3
|
+
project_version: Версия на проекта
|
4
|
+
tree_path: Пътека
|
5
|
+
generated_at: Генерирана на
|
6
|
+
generator: Генератор
|
7
|
+
report_period: Период на справката
|
8
|
+
total_files: Общо файлове
|
9
|
+
total_lines: Общо редове
|
10
|
+
total_commits: Общо качвания
|
11
|
+
authors: Автори
|
12
|
+
commits: Качвания
|
13
|
+
commits_by_hour: Качвания по часове
|
14
|
+
files: Файлове
|
15
|
+
lines: Редове
|
16
|
+
comments: Коментари
|
17
|
+
files_by_date: Файлове за период
|
18
|
+
lines_by_date: Редове за период
|
19
|
+
comments_by_date: Коментари за период
|
20
|
+
files_by_extension: Файлове по разширения
|
21
|
+
lines_by_extension: Редове по разширения
|
22
|
+
hour_of_day: Час на ден
|
23
|
+
hour: Час
|
24
|
+
percentage: Процент
|
25
|
+
day: Ден
|
26
|
+
day_of_week: Ден от седмицата
|
27
|
+
hour_of_week: Час от седмицата
|
28
|
+
month: Месец
|
29
|
+
month_of_year: Месец от годината
|
30
|
+
year_month: Година и месец
|
31
|
+
commits_by_wday: Качвания по ден от седмицата
|
32
|
+
commits_by_month: Качвания по месеци
|
33
|
+
commits_by_year_month: Качвания по месеци и година
|
34
|
+
commits_by_month_of_year: Качвания по месеци от тази година
|
35
|
+
year: Година
|
36
|
+
commits_by_year: Качвания на година
|
37
|
+
activity: Активност
|
38
|
+
activity_by_date: Активност за период
|
39
|
+
commits_by_date: Качвания за период
|
40
|
+
insertions_by_author: Редове добавени от потребител
|
41
|
+
deletions_by_author: Редове изтрити от потребител
|
42
|
+
changed_lines_by_author: Редактирани редове от потребител
|
43
|
+
best_authors_shown: Най-добрите потребители
|
44
|
+
commits_count_by_author: Общо брой качвания на потребител
|
45
|
+
commits_sum_by_author_by_date: Общ брой качвания от потребител за период
|
46
|
+
insertions_by_author_by_date: Добавени редове за автор за период
|
47
|
+
deletions_by_author_by_date: Изтрити редове за автор за период
|
48
|
+
changed_lines_by_author_by_date: Променени редове за автор за период
|
49
|
+
best_authors: Най-добри потребители
|
50
|
+
insertions: Добавени редове
|
51
|
+
deletions: Изтрити редове
|
52
|
+
first_commit: Първо качване
|
53
|
+
last_commit: Последно качване
|
54
|
+
author: Автор
|
55
|
+
show_more: Още
|
56
|
+
close: Затвори
|
57
|
+
binary: Медия
|
58
|
+
text: Текст
|
59
|
+
general: Основна
|
60
|
+
details: Информация
|
61
|
+
insertions_by_date: Добавени редове за период
|
62
|
+
deletions_by_date: Изтрити редове за период
|
63
|
+
changed_lines_by_date: Променени редове за период
|
@@ -0,0 +1,70 @@
|
|
1
|
+
bg:
|
2
|
+
date:
|
3
|
+
abbr_day_names:
|
4
|
+
- нед
|
5
|
+
- пон
|
6
|
+
- вт
|
7
|
+
- ср
|
8
|
+
- чет
|
9
|
+
- пет
|
10
|
+
- съб
|
11
|
+
abbr_month_names:
|
12
|
+
-
|
13
|
+
- ян.
|
14
|
+
- фев.
|
15
|
+
- март
|
16
|
+
- апр.
|
17
|
+
- май
|
18
|
+
- юни
|
19
|
+
- юли
|
20
|
+
- авг.
|
21
|
+
- сеп.
|
22
|
+
- окт.
|
23
|
+
- ноем.
|
24
|
+
- дек.
|
25
|
+
day_names:
|
26
|
+
- неделя
|
27
|
+
- понеделник
|
28
|
+
- вторник
|
29
|
+
- сряда
|
30
|
+
- четвъртък
|
31
|
+
- петък
|
32
|
+
- събота
|
33
|
+
formats:
|
34
|
+
default: "%d.%m.%Y"
|
35
|
+
long: "%d %B %Y"
|
36
|
+
short: "%d %b"
|
37
|
+
month_names:
|
38
|
+
-
|
39
|
+
- януари
|
40
|
+
- февруари
|
41
|
+
- март
|
42
|
+
- април
|
43
|
+
- май
|
44
|
+
- юни
|
45
|
+
- юли
|
46
|
+
- август
|
47
|
+
- септември
|
48
|
+
- октомври
|
49
|
+
- ноември
|
50
|
+
- декември
|
51
|
+
order:
|
52
|
+
- :day
|
53
|
+
- :month
|
54
|
+
- :year
|
55
|
+
prompts:
|
56
|
+
second: Секунда
|
57
|
+
minute: Минута
|
58
|
+
hour: Час
|
59
|
+
day: Ден
|
60
|
+
month: Месец
|
61
|
+
year: Година
|
62
|
+
errors:
|
63
|
+
format: "%{attribute} %{message}"
|
64
|
+
time:
|
65
|
+
am: преди обяд
|
66
|
+
formats:
|
67
|
+
default: "%a, %d %b %Y, %H:%M:%S %z"
|
68
|
+
long: "%d %B %Y, %H:%M"
|
69
|
+
short: "%d %b, %H:%M"
|
70
|
+
pm: следобед
|
@@ -0,0 +1,63 @@
|
|
1
|
+
de:
|
2
|
+
project_name: Projektname
|
3
|
+
project_version: Generiert aus commit
|
4
|
+
tree_path: Tree path
|
5
|
+
generated_at: Generiert am
|
6
|
+
generator: Generiert durch
|
7
|
+
report_period: Berichtsperiode
|
8
|
+
total_files: Gesamtanzahl der Dateien
|
9
|
+
total_lines: Gesamtanzahl der Zeilen
|
10
|
+
total_commits: Gesamtanzahl der Commits
|
11
|
+
authors: Autoren
|
12
|
+
commits: Commits
|
13
|
+
commits_by_hour: Commits in der Stunde
|
14
|
+
files: Dateien
|
15
|
+
lines: Zeilen
|
16
|
+
comments: Kommentare
|
17
|
+
files_by_date: Dateien nach Datum
|
18
|
+
lines_by_date: Zeilen nach Datum
|
19
|
+
comments_by_date: Kommentare nach Datum
|
20
|
+
files_by_extension: Dateien nach Erweiterungen
|
21
|
+
lines_by_extension: Zeilen nach Erweiterungen
|
22
|
+
hour_of_day: Tagesstunden
|
23
|
+
hour: Stunde
|
24
|
+
percentage: Prozent
|
25
|
+
day: Tag
|
26
|
+
day_of_week: Wochentagen
|
27
|
+
hour_of_week: Tagesstunden und Woche
|
28
|
+
month: Monat
|
29
|
+
month_of_year: Monaten im Jahr
|
30
|
+
year_month: Monaten und Jahr
|
31
|
+
commits_by_wday: Commits am Wochentag
|
32
|
+
commits_by_month: Commits im Monat
|
33
|
+
commits_by_year_month: Commits nach Jahr und Monat
|
34
|
+
commits_by_month_of_year: Commits pro Monat des Jahres
|
35
|
+
year: Jahr
|
36
|
+
commits_by_year: Commits im Jahr
|
37
|
+
activity: Aktivitäten
|
38
|
+
activity_by_date: Datum
|
39
|
+
commits_by_date: Commits am Datum
|
40
|
+
insertions_by_author: Zeilen hinzufügt von Autor
|
41
|
+
deletions_by_author: Zeilen gelöscht von Autor
|
42
|
+
changed_lines_by_author: Geänderte Zeilen von Autor
|
43
|
+
best_authors_shown: aktivsten Autoren werden angezeigt
|
44
|
+
commits_count_by_author: Commits eines Autors
|
45
|
+
commits_sum_by_author_by_date: Commits nach Autor und Datum
|
46
|
+
insertions_by_author_by_date: Hinzugefügte Zeilen pro Autor und Datum
|
47
|
+
deletions_by_author_by_date: Gelöschte Zeilen pro Autor und Datum
|
48
|
+
changed_lines_by_author_by_date: Geänderte Zeilen pro Autor und Datum
|
49
|
+
best_authors: Aktivste Autoren
|
50
|
+
insertions: Zeilen hinzugefügt
|
51
|
+
deletions: Zeilen gelöscht
|
52
|
+
first_commit: Erster commit
|
53
|
+
last_commit: Letzter commit
|
54
|
+
author: Autor
|
55
|
+
show_more: Mehr
|
56
|
+
close: Schliessen
|
57
|
+
binary: Binär
|
58
|
+
text: Text
|
59
|
+
general: Allgemein
|
60
|
+
details: Details
|
61
|
+
insertions_by_date: Zeilen hinzugefügt pro Datum
|
62
|
+
deletions_by_date: Zeilen gelöscht pro Datum
|
63
|
+
changed_lines_by_date: Geänderte Zeilen pro Datum
|
@@ -0,0 +1,224 @@
|
|
1
|
+
de:
|
2
|
+
date:
|
3
|
+
abbr_day_names:
|
4
|
+
- So
|
5
|
+
- Mo
|
6
|
+
- Di
|
7
|
+
- Mi
|
8
|
+
- Do
|
9
|
+
- Fr
|
10
|
+
- Sa
|
11
|
+
abbr_month_names:
|
12
|
+
-
|
13
|
+
- Jan
|
14
|
+
- Feb
|
15
|
+
- Mär
|
16
|
+
- Apr
|
17
|
+
- Mai
|
18
|
+
- Jun
|
19
|
+
- Jul
|
20
|
+
- Aug
|
21
|
+
- Sep
|
22
|
+
- Okt
|
23
|
+
- Nov
|
24
|
+
- Dez
|
25
|
+
day_names:
|
26
|
+
- Sonntag
|
27
|
+
- Montag
|
28
|
+
- Dienstag
|
29
|
+
- Mittwoch
|
30
|
+
- Donnerstag
|
31
|
+
- Freitag
|
32
|
+
- Samstag
|
33
|
+
formats:
|
34
|
+
default: ! '%d. %m. %Y'
|
35
|
+
long: ! '%d. %B %Y'
|
36
|
+
short: ! '%d %b'
|
37
|
+
month_names:
|
38
|
+
-
|
39
|
+
- Januar
|
40
|
+
- Februar
|
41
|
+
- März
|
42
|
+
- April
|
43
|
+
- Mai
|
44
|
+
- Juni
|
45
|
+
- Juli
|
46
|
+
- August
|
47
|
+
- September
|
48
|
+
- Oktober
|
49
|
+
- November
|
50
|
+
- Dezember
|
51
|
+
order:
|
52
|
+
- :day
|
53
|
+
- :month
|
54
|
+
- :year
|
55
|
+
datetime:
|
56
|
+
distance_in_words:
|
57
|
+
about_x_hours:
|
58
|
+
few: wenige %{count} Stunden
|
59
|
+
one: eine Stunde
|
60
|
+
other: '%{count} Stunden'
|
61
|
+
many: '%{count} Stunden'
|
62
|
+
about_x_months:
|
63
|
+
few: wenige %{count} Monate
|
64
|
+
one: ein Monat
|
65
|
+
other: '%{count} Monate'
|
66
|
+
many: '%{count} Monate'
|
67
|
+
about_x_years:
|
68
|
+
few: wenige %{count} Jahre
|
69
|
+
one: ein Jahr
|
70
|
+
other: '%{count} Jahre'
|
71
|
+
many: '%{count} Jahre'
|
72
|
+
almost_x_years:
|
73
|
+
few: fast %{count} Jahre
|
74
|
+
one: fast ein Jahr
|
75
|
+
other: fast %{count} Jahre'
|
76
|
+
many: fast %{count} Jahre
|
77
|
+
half_a_minute: eine halbe Minute
|
78
|
+
less_than_x_minutes:
|
79
|
+
few: weniger als %{count} Minuten
|
80
|
+
one: weniger als eine Minute
|
81
|
+
other: weniger als %{count} Minuten
|
82
|
+
many: weniger als %{count} Minuten
|
83
|
+
less_than_x_seconds:
|
84
|
+
few: weniger als %{count} Sekunden
|
85
|
+
one: weniger als eine Sekunde
|
86
|
+
other: weniger als %{count} Sekunden
|
87
|
+
many: weniger als %{count} Sekunden
|
88
|
+
over_x_years:
|
89
|
+
few: mehr als %{count} Jahre
|
90
|
+
one: mehr als ein Jahr
|
91
|
+
other: mehr als %{count} Jahre
|
92
|
+
many: mehr als %{count} Jahre
|
93
|
+
x_days:
|
94
|
+
few: ! '%{count} Tage'
|
95
|
+
one: 1 Tag
|
96
|
+
other: ! '%{count} Tage'
|
97
|
+
many: ! '%{count} Tage'
|
98
|
+
x_minutes:
|
99
|
+
few: ! '%{count} Minuten'
|
100
|
+
one: 1 Minute
|
101
|
+
other: ! '%{count} Minuten'
|
102
|
+
many: ! '%{count} Minuten'
|
103
|
+
x_months:
|
104
|
+
few: ! '%{count} Monate'
|
105
|
+
one: 1 Monat
|
106
|
+
other: ! '%{count} Monate'
|
107
|
+
many: ! '%{count} Monate'
|
108
|
+
x_seconds:
|
109
|
+
few: ! '%{count} Sekunden'
|
110
|
+
one: 1 Sekunde
|
111
|
+
other: ! '%{count} Sekunden'
|
112
|
+
many: ! '%{count} Sekunden'
|
113
|
+
prompts:
|
114
|
+
day: Tag
|
115
|
+
hour: Stunde
|
116
|
+
minute: Minute
|
117
|
+
month: Monat
|
118
|
+
second: Sekunde
|
119
|
+
year: Jahr
|
120
|
+
errors: &errors
|
121
|
+
format: ! '%{attribute} %{message}'
|
122
|
+
messages:
|
123
|
+
accepted: Muss akzeptiert werden
|
124
|
+
blank: Darf nicht leer sein
|
125
|
+
confirmation: Stimmt nicht mit der Bestätigung überein
|
126
|
+
empty: Darf nicht leer sein
|
127
|
+
equal_to: Muss gleich %{count} sein
|
128
|
+
even: Muss gerade sein
|
129
|
+
exclusion: Ist reserviert
|
130
|
+
greater_than: Muss größer als %{count} sein
|
131
|
+
greater_than_or_equal_to: Muss größer oder gleich %{count} sein
|
132
|
+
inclusion: Ist nicht auf der Liste der zulässigen Werte
|
133
|
+
invalid: Ist ungültig
|
134
|
+
less_than: Muss kleiner sein als %{count}
|
135
|
+
less_than_or_equal_to: Muss kleiner oder gleich %{count} sein
|
136
|
+
not_a_number: Ist keine Zahl
|
137
|
+
not_an_integer: Ist keine ganze Zahl
|
138
|
+
odd: Muss ungerade sein
|
139
|
+
record_invalid: ! 'Eintrag ungültig: %{errors}'
|
140
|
+
taken: bereits in Verwendung
|
141
|
+
too_long: Ist zu lang (Darf nicht länger als %{count} Zeichen sein)
|
142
|
+
too_short: Ist zu kurz (Darf nicht kürzer als %{count} Zeichen sein)
|
143
|
+
wrong_length: Falsche länge (Sollte %{count} Zeichen lang sein)
|
144
|
+
template:
|
145
|
+
body: ! 'Błędy dotyczą następujących pól:'
|
146
|
+
header:
|
147
|
+
one: ! '%{model} nie został zachowany z powodu jednego błędu'
|
148
|
+
few: ! '%{model} nie został zachowany z powodu %{count} błędów'
|
149
|
+
other: ! '%{model} nie został zachowany z powodu %{count} błędów'
|
150
|
+
helpers:
|
151
|
+
select:
|
152
|
+
prompt: Bitte wählen sie
|
153
|
+
submit:
|
154
|
+
create: Erstellen %{model}
|
155
|
+
submit: Speichern %{model}
|
156
|
+
update: Aktualisieren %{model}
|
157
|
+
number:
|
158
|
+
currency:
|
159
|
+
format:
|
160
|
+
delimiter: ! ' '
|
161
|
+
format: ! '%u %n'
|
162
|
+
precision: 2
|
163
|
+
separator: ! ','
|
164
|
+
significant: false
|
165
|
+
strip_insignificant_zeros: true
|
166
|
+
unit: EUR
|
167
|
+
format:
|
168
|
+
delimiter: ! ' '
|
169
|
+
precision: 3
|
170
|
+
separator: ! ','
|
171
|
+
significant: false
|
172
|
+
strip_insignificant_zeros: false
|
173
|
+
human:
|
174
|
+
decimal_units:
|
175
|
+
format: ! '%n %u'
|
176
|
+
units:
|
177
|
+
billion: Billion
|
178
|
+
million: Million
|
179
|
+
quadrillion: Billard
|
180
|
+
thousand: Tausend
|
181
|
+
trillion: Billionen
|
182
|
+
unit: ''
|
183
|
+
format:
|
184
|
+
delimiter: ''
|
185
|
+
precision: 3
|
186
|
+
significant: true
|
187
|
+
strip_insignificant_zeros: true
|
188
|
+
storage_units:
|
189
|
+
format: ! '%n %u'
|
190
|
+
units:
|
191
|
+
byte:
|
192
|
+
one: Byte
|
193
|
+
few: Bytes
|
194
|
+
many: Bytes
|
195
|
+
other: Bytes
|
196
|
+
gb: GB
|
197
|
+
kb: KB
|
198
|
+
mb: MB
|
199
|
+
tb: TB
|
200
|
+
percentage:
|
201
|
+
format:
|
202
|
+
delimiter: ''
|
203
|
+
precision:
|
204
|
+
format:
|
205
|
+
delimiter: ''
|
206
|
+
support:
|
207
|
+
array:
|
208
|
+
last_word_connector: ! ' und '
|
209
|
+
two_words_connector: ! ' - '
|
210
|
+
words_connector: ! ', '
|
211
|
+
time:
|
212
|
+
am: vormittags
|
213
|
+
formats:
|
214
|
+
default: ! '%a, %d. %b %Y %H:%M:%S %z'
|
215
|
+
long: ! '%d. %B %Y %H:%M'
|
216
|
+
short: ! '%d. %b %H:%M'
|
217
|
+
pm: nachmittags
|
218
|
+
# remove these aliases after 'activemodel' and 'activerecord' namespaces are removed from Rails repository
|
219
|
+
activemodel:
|
220
|
+
errors:
|
221
|
+
<<: *errors
|
222
|
+
activerecord:
|
223
|
+
errors:
|
224
|
+
<<: *errors
|
@@ -0,0 +1,63 @@
|
|
1
|
+
en:
|
2
|
+
project_name: Project name
|
3
|
+
project_version: Project version
|
4
|
+
tree_path: Tree path
|
5
|
+
generated_at: Generated at
|
6
|
+
generator: Generator
|
7
|
+
report_period: Report period
|
8
|
+
total_files: Total files
|
9
|
+
total_lines: Total lines
|
10
|
+
total_commits: Total commits
|
11
|
+
authors: Authors
|
12
|
+
commits: Commits
|
13
|
+
commits_by_hour: Commits by hour
|
14
|
+
files: Files
|
15
|
+
lines: Lines
|
16
|
+
comments: Comments
|
17
|
+
files_by_date: Files by date
|
18
|
+
lines_by_date: Lines by date
|
19
|
+
comments_by_date: Comments by date
|
20
|
+
files_by_extension: Files by extension
|
21
|
+
lines_by_extension: Lines by extension
|
22
|
+
hour_of_day: Hour of day
|
23
|
+
hour: Hour
|
24
|
+
percentage: Percentage
|
25
|
+
day: Day
|
26
|
+
day_of_week: Day of week
|
27
|
+
hour_of_week: Hour of week
|
28
|
+
month: Month
|
29
|
+
month_of_year: Month of year
|
30
|
+
year_month: Year and month
|
31
|
+
commits_by_wday: Commits by day of week
|
32
|
+
commits_by_month: Commits by month
|
33
|
+
commits_by_year_month: Commits by year and month
|
34
|
+
commits_by_month_of_year: Commits by month of year
|
35
|
+
year: Year
|
36
|
+
commits_by_year: Commits by year
|
37
|
+
activity: Activity
|
38
|
+
activity_by_date: Activity by date
|
39
|
+
commits_by_date: Commits by date
|
40
|
+
insertions_by_author: Lines added by author
|
41
|
+
deletions_by_author: Lines deleted by author
|
42
|
+
changed_lines_by_author: Changed lines by author
|
43
|
+
best_authors_shown: best authors shown
|
44
|
+
commits_count_by_author: Commits count by author
|
45
|
+
commits_sum_by_author_by_date: Commits sum by author by date
|
46
|
+
insertions_by_author_by_date: Lines added by author by date
|
47
|
+
deletions_by_author_by_date: Lines deleted by author by date
|
48
|
+
changed_lines_by_author_by_date: Changed lines by author by date
|
49
|
+
best_authors: Best authors
|
50
|
+
insertions: Lines added
|
51
|
+
deletions: Lines deleted
|
52
|
+
first_commit: First commit
|
53
|
+
last_commit: Last commit
|
54
|
+
author: Author
|
55
|
+
show_more: More
|
56
|
+
close: Close
|
57
|
+
binary: Binary
|
58
|
+
text: Text
|
59
|
+
general: General
|
60
|
+
details: Details
|
61
|
+
insertions_by_date: Lines added by date
|
62
|
+
deletions_by_date: Lines deleted by date
|
63
|
+
changed_lines_by_date: Changed lines by date
|
@@ -0,0 +1,63 @@
|
|
1
|
+
es:
|
2
|
+
project_name: Nombre del proyecto
|
3
|
+
project_version: Versión del proyecto
|
4
|
+
tree_path: Dirección de la rama
|
5
|
+
generated_at: Generado en
|
6
|
+
generator: Generador
|
7
|
+
report_period: Periodo reportado
|
8
|
+
total_files: Archivos totales
|
9
|
+
total_lines: Líneas totales
|
10
|
+
total_commits: Commits totales
|
11
|
+
authors: Autores
|
12
|
+
commits: Commits
|
13
|
+
commits_by_hour: Commits por hora
|
14
|
+
files: Archivos
|
15
|
+
lines: Líneas
|
16
|
+
comments: Comentarios
|
17
|
+
files_by_date: Archivos por fecha
|
18
|
+
lines_by_date: Líneas por fecha
|
19
|
+
comments_by_date: Comentarios por fecha
|
20
|
+
files_by_extension: Archivos por extensión
|
21
|
+
lines_by_extension: Líneas por extensión
|
22
|
+
hour_of_day: Hora del día
|
23
|
+
hour: Hora
|
24
|
+
percentage: Porcentaje
|
25
|
+
day: Día
|
26
|
+
day_of_week: Día de la semana
|
27
|
+
hour_of_week: Hora de la semana
|
28
|
+
month: Mes
|
29
|
+
month_of_year: Mes del año
|
30
|
+
year_month: Año y mes
|
31
|
+
commits_by_wday: Commits por día de la semana
|
32
|
+
commits_by_month: Commits por mes
|
33
|
+
commits_by_year_month: Commits por año y mes
|
34
|
+
commits_by_month_of_year: Commits por mes del año
|
35
|
+
year: Año
|
36
|
+
commits_by_year: Commits por año
|
37
|
+
activity: Actividad
|
38
|
+
activity_by_date: Actividad por fecha
|
39
|
+
commits_by_date: Commits por fecha
|
40
|
+
insertions_by_author: Líneas añadidas por autor
|
41
|
+
deletions_by_author: Líneas eliminadas por autor
|
42
|
+
changed_lines_by_author: Líneas cambiadas por autor
|
43
|
+
best_authors_shown: Mostrado los mejores autores
|
44
|
+
commits_count_by_author: Cantidad de commits por autor
|
45
|
+
commits_sum_by_author_by_date: Suma de commits por autor por fecha
|
46
|
+
insertions_by_author_by_date: Líneas añadidas por autor por fecha
|
47
|
+
deletions_by_author_by_date: Líneas eliminadas por autor por fecha
|
48
|
+
changed_lines_by_author_by_date: Líneas editadas por autor por fecha
|
49
|
+
best_authors: Mejores autores
|
50
|
+
insertions: Líneas añadidas
|
51
|
+
deletions: Líneas eliminadas
|
52
|
+
first_commit: Primer commit
|
53
|
+
last_commit: 'Último commit'
|
54
|
+
author: Autor
|
55
|
+
show_more: Mostrar más
|
56
|
+
close: Cerrar
|
57
|
+
binary: Binario
|
58
|
+
text: Texto
|
59
|
+
general: General
|
60
|
+
details: Detalles
|
61
|
+
insertions_by_date: Líneas añadidas por fecha
|
62
|
+
deletions_by_date: Líneas eliminadas por fecha
|
63
|
+
changed_lines_by_date: Líneas cambiadas por fecha
|
@@ -0,0 +1,70 @@
|
|
1
|
+
es:
|
2
|
+
date:
|
3
|
+
abbr_day_names:
|
4
|
+
- dom
|
5
|
+
- lun
|
6
|
+
- mar
|
7
|
+
- mié
|
8
|
+
- jue
|
9
|
+
- vie
|
10
|
+
- sáb
|
11
|
+
abbr_month_names:
|
12
|
+
-
|
13
|
+
- ene
|
14
|
+
- feb
|
15
|
+
- mar
|
16
|
+
- abr
|
17
|
+
- may
|
18
|
+
- jun
|
19
|
+
- jul
|
20
|
+
- ago
|
21
|
+
- sep
|
22
|
+
- oct
|
23
|
+
- nov
|
24
|
+
- dic
|
25
|
+
day_names:
|
26
|
+
- domingo
|
27
|
+
- lunes
|
28
|
+
- martes
|
29
|
+
- miércoles
|
30
|
+
- jueves
|
31
|
+
- viernes
|
32
|
+
- sábado
|
33
|
+
formats:
|
34
|
+
default: "%-d/%-m/%Y"
|
35
|
+
long: "%-d de %B de %Y"
|
36
|
+
short: "%-d de %b"
|
37
|
+
month_names:
|
38
|
+
-
|
39
|
+
- enero
|
40
|
+
- febrero
|
41
|
+
- marzo
|
42
|
+
- abril
|
43
|
+
- mayo
|
44
|
+
- junio
|
45
|
+
- julio
|
46
|
+
- agosto
|
47
|
+
- septiembre
|
48
|
+
- octubre
|
49
|
+
- noviembre
|
50
|
+
- diciembre
|
51
|
+
order:
|
52
|
+
- :day
|
53
|
+
- :month
|
54
|
+
- :year
|
55
|
+
prompts:
|
56
|
+
second: Segundo
|
57
|
+
minute: Minuto
|
58
|
+
hour: Hora
|
59
|
+
day: Día
|
60
|
+
month: Mes
|
61
|
+
year: Año
|
62
|
+
errors:
|
63
|
+
format: "%{attribute} %{message}"
|
64
|
+
time:
|
65
|
+
am: am
|
66
|
+
formats:
|
67
|
+
default: "%A, %-d de %B de %Y %H:%M:%S %z"
|
68
|
+
long: "%-d de %B de %Y %H:%M"
|
69
|
+
short: "%-d de %b %H:%M"
|
70
|
+
pm: pm
|
@@ -0,0 +1,63 @@
|
|
1
|
+
pl:
|
2
|
+
project_name: Nazwa projektu
|
3
|
+
project_version: Wersja projektu
|
4
|
+
tree_path: Tree path
|
5
|
+
generated_at: Wygenerowano
|
6
|
+
generator: Generator
|
7
|
+
report_period: Okres raportu
|
8
|
+
total_files: Liczba plików
|
9
|
+
total_lines: Liczba linii
|
10
|
+
total_commits: Liczba commitów
|
11
|
+
authors: Autorzy
|
12
|
+
commits: Commity
|
13
|
+
commits_by_hour: Commity po godzinie
|
14
|
+
files: Pliki
|
15
|
+
lines: Linie
|
16
|
+
comments: Comments
|
17
|
+
files_by_date: Pliki po dacie
|
18
|
+
lines_by_date: Linie po dacie
|
19
|
+
comments_by_date: Comments by date
|
20
|
+
files_by_extension: Pliki po rozszerzeniu
|
21
|
+
lines_by_extension: Linie po rozszerzeniu
|
22
|
+
hour_of_day: Godzina dnia
|
23
|
+
hour: Godzina
|
24
|
+
percentage: Procent
|
25
|
+
day: Dzień
|
26
|
+
day_of_week: Dzień tygodnia
|
27
|
+
hour_of_week: Godzina tygodnia
|
28
|
+
month: Miesiąc
|
29
|
+
month_of_year: Miesiąc roku
|
30
|
+
year_month: Rok i miesiąc
|
31
|
+
commits_by_wday: Commity po dniu tygodnia
|
32
|
+
commits_by_month: Commity po miesiącu
|
33
|
+
commits_by_year_month: Commity po roku i miesiącu
|
34
|
+
commits_by_month_of_year: Commity po miesiącu i roku
|
35
|
+
year: Rok
|
36
|
+
commits_by_year: Commity po roku
|
37
|
+
activity: Aktywność
|
38
|
+
activity_by_date: Aktywność po dacie
|
39
|
+
commits_by_date: Commity po dacie
|
40
|
+
insertions_by_author: Dodane linie
|
41
|
+
deletions_by_author: Usunięte linie
|
42
|
+
changed_lines_by_author: Zmienione linie
|
43
|
+
best_authors_shown: najlepszych autorów
|
44
|
+
commits_count_by_author: Liczba commitów
|
45
|
+
commits_sum_by_author_by_date: Liczba commitów po dacie
|
46
|
+
insertions_by_author_by_date: Dodane linie po dacie
|
47
|
+
deletions_by_author_by_date: Usunięte linie po dacie
|
48
|
+
changed_lines_by_author_by_date: Zmienione linie po dacie
|
49
|
+
best_authors: Najlepsi autorzy
|
50
|
+
insertions: Dodane linie
|
51
|
+
deletions: Usunięte linie
|
52
|
+
first_commit: Pierwszy commit
|
53
|
+
last_commit: Ostatni commit
|
54
|
+
author: Autor
|
55
|
+
show_more: Więcej
|
56
|
+
close: Zamknij
|
57
|
+
binary: Binarne
|
58
|
+
text: Tekstowe
|
59
|
+
general: Ogólne
|
60
|
+
details: Details
|
61
|
+
insertions_by_date: Lines added by date
|
62
|
+
deletions_by_date: Lines deleted by date
|
63
|
+
changed_lines_by_date: Changed lines by date
|