runit-man 2.3.5 → 2.3.6
Sign up to get free protection for your applications and to get access to all the features.
- data/i18n/en.yml +10 -0
- data/i18n/ru.yml +10 -0
- data/lib/runit-man/version.rb +1 -1
- data/public/favicon.ico +0 -0
- data/views/info.haml +4 -8
- data/views/layout.haml +1 -1
- metadata +4 -3
data/i18n/en.yml
CHANGED
@@ -6,6 +6,16 @@ en:
|
|
6
6
|
error: Error encountered while accessing resource
|
7
7
|
loading: "Please wait while loading…"
|
8
8
|
footer: "State of services updated automatically every %{sec} seconds."
|
9
|
+
info:
|
10
|
+
title: Information
|
11
|
+
server: Server
|
12
|
+
rack: Rack
|
13
|
+
large_files:
|
14
|
+
'yes': Does support downloading of large files using Rainbows.
|
15
|
+
'no': Doesn''t support downloading of large files using Rainbows.
|
16
|
+
sendfile:
|
17
|
+
'yes': Does support low CPU usage using sendfile API.
|
18
|
+
'no': Doesn''t support low CPU usage using sendfile API.
|
9
19
|
services:
|
10
20
|
table:
|
11
21
|
caption: Services
|
data/i18n/ru.yml
CHANGED
@@ -6,6 +6,16 @@ ru:
|
|
6
6
|
error: Ошибка обращения к ресурсу
|
7
7
|
loading: "Идёт загрузка…"
|
8
8
|
footer: "Состояние сервисов обновляется автоматически каждые %{sec} секунд."
|
9
|
+
info:
|
10
|
+
title: Информация
|
11
|
+
server: Сервер
|
12
|
+
rack: Rack
|
13
|
+
large_files:
|
14
|
+
'yes': Поддерживает скачивание больших файлов с использованием Rainbows.
|
15
|
+
'no': Не поддерживает скачивание больших файлов с использованием Rainbows.
|
16
|
+
sendfile:
|
17
|
+
'yes': Поддерживает низкое потребление CPU с использованием механизма sendfile.
|
18
|
+
'no': Не поддерживает низкое потребление CPU с использованием механизма sendfile.
|
9
19
|
services:
|
10
20
|
table:
|
11
21
|
caption: Сервисы
|
data/lib/runit-man/version.rb
CHANGED
data/public/favicon.ico
ADDED
Binary file
|
data/views/info.haml
CHANGED
@@ -6,20 +6,16 @@
|
|
6
6
|
%blockquote
|
7
7
|
%div
|
8
8
|
%br/
|
9
|
-
|
10
|
-
= h(@server)
|
9
|
+
= "#{h(t('runit.info.server'))}: #{h(@server)}"
|
11
10
|
%div
|
12
|
-
|
13
|
-
= h(@rack_version)
|
11
|
+
= "#{h(t('runit.info.rack'))}: #{h(@rack_version)}"
|
14
12
|
%br/
|
15
13
|
%blockquote
|
16
14
|
%div
|
17
15
|
%br/
|
18
|
-
= @large_files ?
|
19
|
-
support downloading of large files.
|
16
|
+
= h(t(@large_files ? 'runit.info.large_files.yes' : 'runit.info.large_files.no'))
|
20
17
|
%div
|
21
|
-
= @sendfile ? '
|
22
|
-
support low CPU usage.
|
18
|
+
= h(t(@sendfile ? 'runit.info.sendfile.yes' : 'runit.info.sendfile.no'))
|
23
19
|
%br/
|
24
20
|
- content_for(:footer) do
|
25
21
|
%span
|
data/views/layout.haml
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: runit-man
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 15
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 2.3.
|
9
|
+
- 6
|
10
|
+
version: 2.3.6
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Akzhan Abdulin
|
@@ -216,6 +216,7 @@ files:
|
|
216
216
|
- public/css/tripoli.simple.ie.css
|
217
217
|
- public/css/tripoli.type.css
|
218
218
|
- public/css/tripoli.visual.css
|
219
|
+
- public/favicon.ico
|
219
220
|
- public/js/jquery-1.6.1.min.js
|
220
221
|
- public/js/runit-man.js
|
221
222
|
- views/_service_action.haml
|