ultra_settings 2.9.1 → 2.10.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +36 -0
- data/README.md +24 -0
- data/VERSION +1 -1
- data/app/_config_description.html.erb +10 -1
- data/app/_data_source.html.erb +2 -2
- data/app/application.css +119 -26
- data/app/application_vars.css.erb +40 -14
- data/app/configuration.html.erb +19 -1
- data/app/layout.css +41 -2
- data/app/layout.html.erb +46 -0
- data/app/layout_vars.css.erb +12 -8
- data/app/locales/ar.json +5 -2
- data/app/locales/cs.json +5 -2
- data/app/locales/da.json +5 -2
- data/app/locales/de.json +5 -2
- data/app/locales/el.json +5 -2
- data/app/locales/en.json +5 -2
- data/app/locales/es.json +5 -2
- data/app/locales/fa.json +5 -2
- data/app/locales/fr.json +5 -2
- data/app/locales/gd.json +5 -2
- data/app/locales/he.json +5 -2
- data/app/locales/hi.json +5 -2
- data/app/locales/it.json +5 -2
- data/app/locales/ja.json +5 -2
- data/app/locales/ko.json +5 -2
- data/app/locales/lt.json +5 -2
- data/app/locales/nb.json +5 -2
- data/app/locales/nl.json +5 -2
- data/app/locales/pl.json +5 -2
- data/app/locales/pt-br.json +5 -2
- data/app/locales/pt.json +5 -2
- data/app/locales/ru.json +5 -2
- data/app/locales/sv.json +5 -2
- data/app/locales/ta.json +5 -2
- data/app/locales/tr.json +5 -2
- data/app/locales/uk.json +5 -2
- data/app/locales/ur.json +5 -2
- data/app/locales/vi.json +5 -2
- data/app/locales/zh-cn.json +5 -2
- data/app/locales/zh-tw.json +5 -2
- data/lib/ultra_settings/application_view.rb +17 -7
- data/lib/ultra_settings/audit_data_sources.rb +1 -1
- data/lib/ultra_settings/coerce.rb +1 -1
- data/lib/ultra_settings/configuration.rb +36 -10
- data/lib/ultra_settings/configuration_view.rb +166 -9
- data/lib/ultra_settings/mini_i18n.rb +14 -10
- data/lib/ultra_settings/rack_app.rb +4 -4
- data/lib/ultra_settings/view_helper.rb +27 -5
- data/lib/ultra_settings/web_view.rb +26 -16
- data/lib/ultra_settings/yaml_config.rb +10 -2
- data/lib/ultra_settings.rb +66 -2
- data/ultra_settings.gemspec +1 -1
- metadata +2 -2
data/app/layout.css
CHANGED
|
@@ -43,7 +43,7 @@ body {
|
|
|
43
43
|
display: flex;
|
|
44
44
|
align-items: center;
|
|
45
45
|
justify-content: center;
|
|
46
|
-
color: var(--accent, #
|
|
46
|
+
color: var(--accent, #0f766e);
|
|
47
47
|
flex-shrink: 0;
|
|
48
48
|
}
|
|
49
49
|
|
|
@@ -66,7 +66,7 @@ body {
|
|
|
66
66
|
font-family: var(--font-ui);
|
|
67
67
|
font-size: 0.8125rem;
|
|
68
68
|
font-weight: 400;
|
|
69
|
-
color: var(--text-tertiary, #
|
|
69
|
+
color: var(--text-tertiary, #646b7a);
|
|
70
70
|
line-height: 1.3;
|
|
71
71
|
margin: 0;
|
|
72
72
|
letter-spacing: 0.01em;
|
|
@@ -84,6 +84,45 @@ body {
|
|
|
84
84
|
justify-content: flex-end;
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
+
/* ── Theme toggle ── */
|
|
88
|
+
|
|
89
|
+
.ultra-settings-theme-toggle {
|
|
90
|
+
display: flex;
|
|
91
|
+
align-items: center;
|
|
92
|
+
justify-content: center;
|
|
93
|
+
width: 36px;
|
|
94
|
+
height: 36px;
|
|
95
|
+
border: 1px solid transparent;
|
|
96
|
+
border-radius: 8px;
|
|
97
|
+
background: transparent;
|
|
98
|
+
color: var(--text-tertiary, #646b7a);
|
|
99
|
+
cursor: pointer;
|
|
100
|
+
flex-shrink: 0;
|
|
101
|
+
transition: color 0.2s, border-color 0.2s;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.ultra-settings-theme-toggle:hover {
|
|
105
|
+
color: var(--accent, #0f766e);
|
|
106
|
+
border-color: var(--accent, #0f766e);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.ultra-settings-theme-icon {
|
|
110
|
+
width: 18px;
|
|
111
|
+
height: 18px;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.ultra-settings-theme-icon-moon {
|
|
115
|
+
display: none;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
[data-theme="dark"] .ultra-settings-theme-icon-sun {
|
|
119
|
+
display: none;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
[data-theme="dark"] .ultra-settings-theme-icon-moon {
|
|
123
|
+
display: block;
|
|
124
|
+
}
|
|
125
|
+
|
|
87
126
|
@media (max-width: 640px) {
|
|
88
127
|
.ultra-settings-page-header-inner {
|
|
89
128
|
padding: 16px;
|
data/app/layout.html.erb
CHANGED
|
@@ -6,6 +6,15 @@
|
|
|
6
6
|
<meta charset="utf-8">
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
8
8
|
<meta name="format-detection" content="telephone=no email=no date=no address=no">
|
|
9
|
+
<% if @dark_mode_selector %>
|
|
10
|
+
<script>
|
|
11
|
+
(function() {
|
|
12
|
+
if (localStorage.getItem("ultra_settings_theme") === "dark") {
|
|
13
|
+
document.documentElement.setAttribute("data-theme", "dark");
|
|
14
|
+
}
|
|
15
|
+
})();
|
|
16
|
+
</script>
|
|
17
|
+
<% end %>
|
|
9
18
|
<style type="text/css">
|
|
10
19
|
<%= layout_css %>
|
|
11
20
|
</style>
|
|
@@ -25,6 +34,24 @@
|
|
|
25
34
|
<p class="ultra-settings-page-header-subtitle"><%= t("page.brand_subtitle") %></p>
|
|
26
35
|
</div>
|
|
27
36
|
</div>
|
|
37
|
+
<% if @dark_mode_selector %>
|
|
38
|
+
<button type="button" class="ultra-settings-theme-toggle" id="ultra-settings-theme-toggle" aria-label="Toggle dark mode">
|
|
39
|
+
<svg class="ultra-settings-theme-icon ultra-settings-theme-icon-sun" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
|
|
40
|
+
<circle cx="12" cy="12" r="4"></circle>
|
|
41
|
+
<path d="M12 2v2"></path>
|
|
42
|
+
<path d="M12 20v2"></path>
|
|
43
|
+
<path d="m4.93 4.93 1.41 1.41"></path>
|
|
44
|
+
<path d="m17.66 17.66 1.41 1.41"></path>
|
|
45
|
+
<path d="M2 12h2"></path>
|
|
46
|
+
<path d="M20 12h2"></path>
|
|
47
|
+
<path d="m6.34 17.66-1.41 1.41"></path>
|
|
48
|
+
<path d="m19.07 4.93-1.41 1.41"></path>
|
|
49
|
+
</svg>
|
|
50
|
+
<svg class="ultra-settings-theme-icon ultra-settings-theme-icon-moon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
|
|
51
|
+
<path d="M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z"></path>
|
|
52
|
+
</svg>
|
|
53
|
+
</button>
|
|
54
|
+
<% end %>
|
|
28
55
|
</div>
|
|
29
56
|
</header>
|
|
30
57
|
<main class="ultra-settings-page-content">
|
|
@@ -79,5 +106,24 @@
|
|
|
79
106
|
</details>
|
|
80
107
|
</footer>
|
|
81
108
|
<% end %>
|
|
109
|
+
<% if @dark_mode_selector %>
|
|
110
|
+
<script>
|
|
111
|
+
(function() {
|
|
112
|
+
var toggle = document.getElementById("ultra-settings-theme-toggle");
|
|
113
|
+
if (!toggle) return;
|
|
114
|
+
var html = document.documentElement;
|
|
115
|
+
toggle.addEventListener("click", function() {
|
|
116
|
+
var isDark = html.getAttribute("data-theme") === "dark";
|
|
117
|
+
if (isDark) {
|
|
118
|
+
html.removeAttribute("data-theme");
|
|
119
|
+
localStorage.removeItem("ultra_settings_theme");
|
|
120
|
+
} else {
|
|
121
|
+
html.setAttribute("data-theme", "dark");
|
|
122
|
+
localStorage.setItem("ultra_settings_theme", "dark");
|
|
123
|
+
}
|
|
124
|
+
});
|
|
125
|
+
})();
|
|
126
|
+
</script>
|
|
127
|
+
<% end %>
|
|
82
128
|
</body>
|
|
83
129
|
</html>
|
data/app/layout_vars.css.erb
CHANGED
|
@@ -5,29 +5,33 @@
|
|
|
5
5
|
--bg-page: #f4f5f7;
|
|
6
6
|
--text-primary: #111827;
|
|
7
7
|
--text-secondary: #4b5563;
|
|
8
|
-
--text-tertiary: #
|
|
9
|
-
--accent: #
|
|
8
|
+
--text-tertiary: #646b7a;
|
|
9
|
+
--accent: #0f766e;
|
|
10
10
|
--border-light: #e2e5ea;
|
|
11
11
|
--bg-card: #ffffff;
|
|
12
12
|
--border-card: #dfe2e8;
|
|
13
13
|
--shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.03);
|
|
14
14
|
--shadow-lg: 0 20px 48px rgba(0,0,0,0.12);
|
|
15
15
|
--bg-code: #f0f2f5;
|
|
16
|
-
--accent-light: rgba(
|
|
16
|
+
--accent-light: rgba(15, 118, 110, 0.06);
|
|
17
17
|
}
|
|
18
18
|
<% end %>
|
|
19
19
|
|
|
20
20
|
<% if color_scheme == :system %>
|
|
21
21
|
@media (prefers-color-scheme: dark) {
|
|
22
|
-
|
|
23
|
-
<%
|
|
22
|
+
:root {
|
|
23
|
+
<% elsif dark_mode_selector %>
|
|
24
|
+
:root<%= dark_mode_selector %> {
|
|
25
|
+
<% elsif color_scheme == :dark %>
|
|
24
26
|
:root {
|
|
27
|
+
<% end %>
|
|
28
|
+
<% if color_scheme == :system || color_scheme == :dark || dark_mode_selector %>
|
|
25
29
|
--font-ui: system-ui, -apple-system, sans-serif;
|
|
26
30
|
--font-mono: "SF Mono", Menlo, Consolas, monospace;
|
|
27
31
|
--bg-page: #0f1117;
|
|
28
|
-
--text-primary: #
|
|
29
|
-
--text-secondary: #
|
|
30
|
-
--text-tertiary: #
|
|
32
|
+
--text-primary: #eef0f8;
|
|
33
|
+
--text-secondary: #adb3c8;
|
|
34
|
+
--text-tertiary: #8f95ad;
|
|
31
35
|
--accent: #14b8a6;
|
|
32
36
|
--border-light: #2a2d3a;
|
|
33
37
|
--bg-card: #1a1c26;
|
data/app/locales/ar.json
CHANGED
|
@@ -17,18 +17,21 @@
|
|
|
17
17
|
"field.nil": "nil",
|
|
18
18
|
"field.click_to_expand": "انقر للتوسيع",
|
|
19
19
|
"field.not_set": "غير مضبوط",
|
|
20
|
+
"field.copy": "نسخ القيمة",
|
|
21
|
+
"field.copy_disabled": "لا يمكن نسخ القيم السرية",
|
|
20
22
|
"source.env": "ENV",
|
|
21
23
|
"source.setting": "إعداد",
|
|
22
24
|
"source.yaml": "YAML",
|
|
23
25
|
"source.default": "الافتراضي",
|
|
24
|
-
"source.active": "
|
|
26
|
+
"source.active": "نشط",
|
|
25
27
|
"source.overridden": "تم تجاوزه",
|
|
26
28
|
"detail.field_detail": "تفاصيل الحقل",
|
|
27
29
|
"detail.close_panel": "أغلق اللوحة",
|
|
28
30
|
"detail.type_label": "النوع:",
|
|
29
31
|
"detail.secret_badge": "سري",
|
|
30
32
|
"detail.secret_value": "•••••••• (سري)",
|
|
31
|
-
"config.file_not_found": "
|
|
33
|
+
"config.file_not_found": "الملف غير موجود",
|
|
34
|
+
"config.show_yaml_keys": "إظهار المفاتيح",
|
|
32
35
|
"config.edit_tooltip": "حرّر ${name}",
|
|
33
36
|
"edit.title": "تحرير إعداد وقت التشغيل",
|
|
34
37
|
"edit.open_dashboard": "افتح في لوحة الإعدادات ↗",
|
data/app/locales/cs.json
CHANGED
|
@@ -17,18 +17,21 @@
|
|
|
17
17
|
"field.nil": "nil",
|
|
18
18
|
"field.click_to_expand": "Kliknutím rozbalíte",
|
|
19
19
|
"field.not_set": "nenastaveno",
|
|
20
|
+
"field.copy": "Kopírovat hodnotu",
|
|
21
|
+
"field.copy_disabled": "Tajné hodnoty nelze kopírovat",
|
|
20
22
|
"source.env": "ENV",
|
|
21
23
|
"source.setting": "NASTAVENÍ",
|
|
22
24
|
"source.yaml": "YAML",
|
|
23
25
|
"source.default": "VÝCHOZÍ",
|
|
24
|
-
"source.active": "
|
|
26
|
+
"source.active": "Aktivní",
|
|
25
27
|
"source.overridden": "Přepsáno",
|
|
26
28
|
"detail.field_detail": "Detail pole",
|
|
27
29
|
"detail.close_panel": "Zavřít panel",
|
|
28
30
|
"detail.type_label": "Typ:",
|
|
29
31
|
"detail.secret_badge": "TAJNÉ",
|
|
30
32
|
"detail.secret_value": "•••••••• (tajné)",
|
|
31
|
-
"config.file_not_found": "
|
|
33
|
+
"config.file_not_found": "soubor neexistuje",
|
|
34
|
+
"config.show_yaml_keys": "zobrazit klíče",
|
|
32
35
|
"config.edit_tooltip": "Upravit ${name}",
|
|
33
36
|
"edit.title": "Upravit runtime nastavení",
|
|
34
37
|
"edit.open_dashboard": "Otevřít v panelu nastavení ↗",
|
data/app/locales/da.json
CHANGED
|
@@ -17,18 +17,21 @@
|
|
|
17
17
|
"field.nil": "nil",
|
|
18
18
|
"field.click_to_expand": "Klik for at udvide",
|
|
19
19
|
"field.not_set": "ikke angivet",
|
|
20
|
+
"field.copy": "Kopiér værdi",
|
|
21
|
+
"field.copy_disabled": "Hemmelige værdier kan ikke kopieres",
|
|
20
22
|
"source.env": "ENV",
|
|
21
23
|
"source.setting": "INDSTILLING",
|
|
22
24
|
"source.yaml": "YAML",
|
|
23
25
|
"source.default": "STANDARD",
|
|
24
|
-
"source.active": "
|
|
26
|
+
"source.active": "Aktiv",
|
|
25
27
|
"source.overridden": "Tilsidesat",
|
|
26
28
|
"detail.field_detail": "Feltdetaljer",
|
|
27
29
|
"detail.close_panel": "Luk panel",
|
|
28
30
|
"detail.type_label": "Type:",
|
|
29
31
|
"detail.secret_badge": "HEMMELIG",
|
|
30
32
|
"detail.secret_value": "•••••••• (hemmelig)",
|
|
31
|
-
"config.file_not_found": "
|
|
33
|
+
"config.file_not_found": "filen findes ikke",
|
|
34
|
+
"config.show_yaml_keys": "vis nøgler",
|
|
32
35
|
"config.edit_tooltip": "Rediger ${name}",
|
|
33
36
|
"edit.title": "Rediger runtime-indstilling",
|
|
34
37
|
"edit.open_dashboard": "Åbn i indstillingsdashboard ↗",
|
data/app/locales/de.json
CHANGED
|
@@ -17,18 +17,21 @@
|
|
|
17
17
|
"field.nil": "nil",
|
|
18
18
|
"field.click_to_expand": "Zum Aufklappen klicken",
|
|
19
19
|
"field.not_set": "nicht gesetzt",
|
|
20
|
+
"field.copy": "Wert kopieren",
|
|
21
|
+
"field.copy_disabled": "Geheime Werte können nicht kopiert werden",
|
|
20
22
|
"source.env": "ENV",
|
|
21
23
|
"source.setting": "EINSTELLUNG",
|
|
22
24
|
"source.yaml": "YAML",
|
|
23
25
|
"source.default": "STANDARD",
|
|
24
|
-
"source.active": "
|
|
26
|
+
"source.active": "Aktiv",
|
|
25
27
|
"source.overridden": "Überschrieben",
|
|
26
28
|
"detail.field_detail": "Felddetails",
|
|
27
29
|
"detail.close_panel": "Bereich schließen",
|
|
28
30
|
"detail.type_label": "Typ:",
|
|
29
31
|
"detail.secret_badge": "GEHEIM",
|
|
30
32
|
"detail.secret_value": "•••••••• (geheim)",
|
|
31
|
-
"config.file_not_found": "
|
|
33
|
+
"config.file_not_found": "Datei existiert nicht",
|
|
34
|
+
"config.show_yaml_keys": "Schlüssel anzeigen",
|
|
32
35
|
"config.edit_tooltip": "${name} bearbeiten",
|
|
33
36
|
"edit.title": "Laufzeiteinstellung bearbeiten",
|
|
34
37
|
"edit.open_dashboard": "Im Einstellungs-Dashboard öffnen ↗",
|
data/app/locales/el.json
CHANGED
|
@@ -17,18 +17,21 @@
|
|
|
17
17
|
"field.nil": "nil",
|
|
18
18
|
"field.click_to_expand": "Κάντε κλικ για ανάπτυξη",
|
|
19
19
|
"field.not_set": "δεν έχει οριστεί",
|
|
20
|
+
"field.copy": "Αντιγραφή τιμής",
|
|
21
|
+
"field.copy_disabled": "Οι μυστικές τιμές δεν μπορούν να αντιγραφούν",
|
|
20
22
|
"source.env": "ENV",
|
|
21
23
|
"source.setting": "ΡΥΘΜΙΣΗ",
|
|
22
24
|
"source.yaml": "YAML",
|
|
23
25
|
"source.default": "ΠΡΟΕΠΙΛΟΓΗ",
|
|
24
|
-
"source.active": "
|
|
26
|
+
"source.active": "Ενεργό",
|
|
25
27
|
"source.overridden": "Παρακάμφθηκε",
|
|
26
28
|
"detail.field_detail": "Λεπτομέρειες πεδίου",
|
|
27
29
|
"detail.close_panel": "Κλείσιμο πίνακα",
|
|
28
30
|
"detail.type_label": "Τύπος:",
|
|
29
31
|
"detail.secret_badge": "ΜΥΣΤΙΚΟ",
|
|
30
32
|
"detail.secret_value": "•••••••• (μυστικό)",
|
|
31
|
-
"config.file_not_found": "
|
|
33
|
+
"config.file_not_found": "το αρχείο δεν υπάρχει",
|
|
34
|
+
"config.show_yaml_keys": "εμφάνιση κλειδιών",
|
|
32
35
|
"config.edit_tooltip": "Επεξεργασία ${name}",
|
|
33
36
|
"edit.title": "Επεξεργασία ρύθμισης χρόνου εκτέλεσης",
|
|
34
37
|
"edit.open_dashboard": "Άνοιγμα στον πίνακα ρυθμίσεων ↗",
|
data/app/locales/en.json
CHANGED
|
@@ -20,12 +20,14 @@
|
|
|
20
20
|
"field.nil": "nil",
|
|
21
21
|
"field.click_to_expand": "Click to expand",
|
|
22
22
|
"field.not_set": "not set",
|
|
23
|
+
"field.copy": "Copy value",
|
|
24
|
+
"field.copy_disabled": "Secret values cannot be copied",
|
|
23
25
|
|
|
24
26
|
"source.env": "ENV",
|
|
25
27
|
"source.setting": "SETTING",
|
|
26
28
|
"source.yaml": "YAML",
|
|
27
29
|
"source.default": "DEFAULT",
|
|
28
|
-
"source.active": "
|
|
30
|
+
"source.active": "Active",
|
|
29
31
|
"source.overridden": "Overridden",
|
|
30
32
|
|
|
31
33
|
"detail.field_detail": "Field detail",
|
|
@@ -34,7 +36,8 @@
|
|
|
34
36
|
"detail.secret_badge": "SECRET",
|
|
35
37
|
"detail.secret_value": "•••••••• (secret)",
|
|
36
38
|
|
|
37
|
-
"config.file_not_found": "
|
|
39
|
+
"config.file_not_found": "file does not exist",
|
|
40
|
+
"config.show_yaml_keys": "show keys",
|
|
38
41
|
"config.edit_tooltip": "Edit ${name}",
|
|
39
42
|
|
|
40
43
|
"edit.title": "Edit Runtime Setting",
|
data/app/locales/es.json
CHANGED
|
@@ -17,18 +17,21 @@
|
|
|
17
17
|
"field.nil": "nil",
|
|
18
18
|
"field.click_to_expand": "Haz clic para expandir",
|
|
19
19
|
"field.not_set": "sin establecer",
|
|
20
|
+
"field.copy": "Copiar valor",
|
|
21
|
+
"field.copy_disabled": "Los valores secretos no se pueden copiar",
|
|
20
22
|
"source.env": "ENV",
|
|
21
23
|
"source.setting": "CONFIGURACIÓN",
|
|
22
24
|
"source.yaml": "YAML",
|
|
23
25
|
"source.default": "POR DEFECTO",
|
|
24
|
-
"source.active": "
|
|
26
|
+
"source.active": "Activo",
|
|
25
27
|
"source.overridden": "Sobrescrito",
|
|
26
28
|
"detail.field_detail": "Detalle del campo",
|
|
27
29
|
"detail.close_panel": "Cerrar panel",
|
|
28
30
|
"detail.type_label": "Tipo:",
|
|
29
31
|
"detail.secret_badge": "SECRETO",
|
|
30
32
|
"detail.secret_value": "•••••••• (secreto)",
|
|
31
|
-
"config.file_not_found": "
|
|
33
|
+
"config.file_not_found": "el archivo no existe",
|
|
34
|
+
"config.show_yaml_keys": "mostrar claves",
|
|
32
35
|
"config.edit_tooltip": "Editar ${name}",
|
|
33
36
|
"edit.title": "Editar configuración de tiempo de ejecución",
|
|
34
37
|
"edit.open_dashboard": "Abrir en el panel de configuración ↗",
|
data/app/locales/fa.json
CHANGED
|
@@ -17,18 +17,21 @@
|
|
|
17
17
|
"field.nil": "nil",
|
|
18
18
|
"field.click_to_expand": "برای باز کردن کلیک کنید",
|
|
19
19
|
"field.not_set": "تنظیم نشده",
|
|
20
|
+
"field.copy": "کپی کردن مقدار",
|
|
21
|
+
"field.copy_disabled": "مقادیر محرمانه قابل کپی کردن نیستند",
|
|
20
22
|
"source.env": "ENV",
|
|
21
23
|
"source.setting": "تنظیم",
|
|
22
24
|
"source.yaml": "YAML",
|
|
23
25
|
"source.default": "پیشفرض",
|
|
24
|
-
"source.active": "
|
|
26
|
+
"source.active": "فعال",
|
|
25
27
|
"source.overridden": "جایگزین شده",
|
|
26
28
|
"detail.field_detail": "جزئیات فیلد",
|
|
27
29
|
"detail.close_panel": "بستن پنل",
|
|
28
30
|
"detail.type_label": "نوع:",
|
|
29
31
|
"detail.secret_badge": "محرمانه",
|
|
30
32
|
"detail.secret_value": "•••••••• (محرمانه)",
|
|
31
|
-
"config.file_not_found": "
|
|
33
|
+
"config.file_not_found": "فایل وجود ندارد",
|
|
34
|
+
"config.show_yaml_keys": "نمایش کلیدها",
|
|
32
35
|
"config.edit_tooltip": "ویرایش ${name}",
|
|
33
36
|
"edit.title": "ویرایش تنظیم زمان اجرا",
|
|
34
37
|
"edit.open_dashboard": "باز کردن در داشبورد تنظیمات ↗",
|
data/app/locales/fr.json
CHANGED
|
@@ -17,18 +17,21 @@
|
|
|
17
17
|
"field.nil": "nil",
|
|
18
18
|
"field.click_to_expand": "Cliquer pour développer",
|
|
19
19
|
"field.not_set": "non défini",
|
|
20
|
+
"field.copy": "Copier la valeur",
|
|
21
|
+
"field.copy_disabled": "Les valeurs secrètes ne peuvent pas être copiées",
|
|
20
22
|
"source.env": "ENV",
|
|
21
23
|
"source.setting": "PARAMÈTRE",
|
|
22
24
|
"source.yaml": "YAML",
|
|
23
25
|
"source.default": "PAR DÉFAUT",
|
|
24
|
-
"source.active": "
|
|
26
|
+
"source.active": "Actif",
|
|
25
27
|
"source.overridden": "Remplacé",
|
|
26
28
|
"detail.field_detail": "Détail du champ",
|
|
27
29
|
"detail.close_panel": "Fermer le panneau",
|
|
28
30
|
"detail.type_label": "Type :",
|
|
29
31
|
"detail.secret_badge": "SECRET",
|
|
30
32
|
"detail.secret_value": "•••••••• (secret)",
|
|
31
|
-
"config.file_not_found": "
|
|
33
|
+
"config.file_not_found": "le fichier n’existe pas",
|
|
34
|
+
"config.show_yaml_keys": "afficher les clés",
|
|
32
35
|
"config.edit_tooltip": "Modifier ${name}",
|
|
33
36
|
"edit.title": "Modifier le paramètre d’exécution",
|
|
34
37
|
"edit.open_dashboard": "Ouvrir dans le tableau de bord des paramètres ↗",
|
data/app/locales/gd.json
CHANGED
|
@@ -17,18 +17,21 @@
|
|
|
17
17
|
"field.nil": "nil",
|
|
18
18
|
"field.click_to_expand": "Briog gus leudachadh",
|
|
19
19
|
"field.not_set": "gun suidheachadh",
|
|
20
|
+
"field.copy": "Dèan lethbhreac dhen luach",
|
|
21
|
+
"field.copy_disabled": "Cha ghabh luachan dìomhair a lethbhreacadh",
|
|
20
22
|
"source.env": "ENV",
|
|
21
23
|
"source.setting": "SUIDHEACHADH",
|
|
22
24
|
"source.yaml": "YAML",
|
|
23
25
|
"source.default": "BUN-ROGHAILTE",
|
|
24
|
-
"source.active": "
|
|
26
|
+
"source.active": "Gnìomhach",
|
|
25
27
|
"source.overridden": "Air a chur na àite",
|
|
26
28
|
"detail.field_detail": "Mion-fhiosrachadh an raoin",
|
|
27
29
|
"detail.close_panel": "Dùin am pannal",
|
|
28
30
|
"detail.type_label": "Seòrsa:",
|
|
29
31
|
"detail.secret_badge": "DÌOMHAIR",
|
|
30
32
|
"detail.secret_value": "•••••••• (dìomhair)",
|
|
31
|
-
"config.file_not_found": "
|
|
33
|
+
"config.file_not_found": "chan eil am faidhle ann",
|
|
34
|
+
"config.show_yaml_keys": "seall iuchraichean",
|
|
32
35
|
"config.edit_tooltip": "Deasaich ${name}",
|
|
33
36
|
"edit.title": "Deasaich suidheachadh ruith-ùine",
|
|
34
37
|
"edit.open_dashboard": "Fosgail ann am deas-bhòrd nan suidheachaidhean ↗",
|
data/app/locales/he.json
CHANGED
|
@@ -17,18 +17,21 @@
|
|
|
17
17
|
"field.nil": "nil",
|
|
18
18
|
"field.click_to_expand": "לחץ כדי להרחיב",
|
|
19
19
|
"field.not_set": "לא הוגדר",
|
|
20
|
+
"field.copy": "העתקת הערך",
|
|
21
|
+
"field.copy_disabled": "לא ניתן להעתיק ערכים סודיים",
|
|
20
22
|
"source.env": "ENV",
|
|
21
23
|
"source.setting": "הגדרה",
|
|
22
24
|
"source.yaml": "YAML",
|
|
23
25
|
"source.default": "ברירת מחדל",
|
|
24
|
-
"source.active": "
|
|
26
|
+
"source.active": "פעיל",
|
|
25
27
|
"source.overridden": "נדרס",
|
|
26
28
|
"detail.field_detail": "פרטי שדה",
|
|
27
29
|
"detail.close_panel": "סגור חלונית",
|
|
28
30
|
"detail.type_label": "סוג:",
|
|
29
31
|
"detail.secret_badge": "סודי",
|
|
30
32
|
"detail.secret_value": "•••••••• (סודי)",
|
|
31
|
-
"config.file_not_found": "
|
|
33
|
+
"config.file_not_found": "הקובץ אינו קיים",
|
|
34
|
+
"config.show_yaml_keys": "הצג מפתחות",
|
|
32
35
|
"config.edit_tooltip": "ערוך את ${name}",
|
|
33
36
|
"edit.title": "עריכת הגדרת זמן ריצה",
|
|
34
37
|
"edit.open_dashboard": "פתח בלוח ההגדרות ↗",
|
data/app/locales/hi.json
CHANGED
|
@@ -17,18 +17,21 @@
|
|
|
17
17
|
"field.nil": "nil",
|
|
18
18
|
"field.click_to_expand": "विस्तार करने के लिए क्लिक करें",
|
|
19
19
|
"field.not_set": "सेट नहीं",
|
|
20
|
+
"field.copy": "मान कॉपी करें",
|
|
21
|
+
"field.copy_disabled": "गुप्त मान कॉपी नहीं किए जा सकते",
|
|
20
22
|
"source.env": "ENV",
|
|
21
23
|
"source.setting": "सेटिंग",
|
|
22
24
|
"source.yaml": "YAML",
|
|
23
25
|
"source.default": "डिफ़ॉल्ट",
|
|
24
|
-
"source.active": "
|
|
26
|
+
"source.active": "सक्रिय",
|
|
25
27
|
"source.overridden": "ओवरराइड किया गया",
|
|
26
28
|
"detail.field_detail": "फ़ील्ड विवरण",
|
|
27
29
|
"detail.close_panel": "पैनल बंद करें",
|
|
28
30
|
"detail.type_label": "प्रकार:",
|
|
29
31
|
"detail.secret_badge": "गुप्त",
|
|
30
32
|
"detail.secret_value": "•••••••• (गुप्त)",
|
|
31
|
-
"config.file_not_found": "
|
|
33
|
+
"config.file_not_found": "फ़ाइल मौजूद नहीं है",
|
|
34
|
+
"config.show_yaml_keys": "कुंजियाँ दिखाएँ",
|
|
32
35
|
"config.edit_tooltip": "${name} संपादित करें",
|
|
33
36
|
"edit.title": "रनटाइम सेटिंग संपादित करें",
|
|
34
37
|
"edit.open_dashboard": "सेटिंग डैशबोर्ड में खोलें ↗",
|
data/app/locales/it.json
CHANGED
|
@@ -17,18 +17,21 @@
|
|
|
17
17
|
"field.nil": "nil",
|
|
18
18
|
"field.click_to_expand": "Fai clic per espandere",
|
|
19
19
|
"field.not_set": "non impostato",
|
|
20
|
+
"field.copy": "Copia valore",
|
|
21
|
+
"field.copy_disabled": "I valori segreti non possono essere copiati",
|
|
20
22
|
"source.env": "ENV",
|
|
21
23
|
"source.setting": "IMPOSTAZIONE",
|
|
22
24
|
"source.yaml": "YAML",
|
|
23
25
|
"source.default": "PREDEFINITO",
|
|
24
|
-
"source.active": "
|
|
26
|
+
"source.active": "Attivo",
|
|
25
27
|
"source.overridden": "Sovrascritto",
|
|
26
28
|
"detail.field_detail": "Dettaglio campo",
|
|
27
29
|
"detail.close_panel": "Chiudi pannello",
|
|
28
30
|
"detail.type_label": "Tipo:",
|
|
29
31
|
"detail.secret_badge": "SEGRETO",
|
|
30
32
|
"detail.secret_value": "•••••••• (segreto)",
|
|
31
|
-
"config.file_not_found": "
|
|
33
|
+
"config.file_not_found": "il file non esiste",
|
|
34
|
+
"config.show_yaml_keys": "mostra chiavi",
|
|
32
35
|
"config.edit_tooltip": "Modifica ${name}",
|
|
33
36
|
"edit.title": "Modifica impostazione di runtime",
|
|
34
37
|
"edit.open_dashboard": "Apri nel pannello delle impostazioni ↗",
|
data/app/locales/ja.json
CHANGED
|
@@ -17,18 +17,21 @@
|
|
|
17
17
|
"field.nil": "nil",
|
|
18
18
|
"field.click_to_expand": "クリックして展開",
|
|
19
19
|
"field.not_set": "未設定",
|
|
20
|
+
"field.copy": "値をコピー",
|
|
21
|
+
"field.copy_disabled": "シークレットの値はコピーできません",
|
|
20
22
|
"source.env": "ENV",
|
|
21
23
|
"source.setting": "設定",
|
|
22
24
|
"source.yaml": "YAML",
|
|
23
25
|
"source.default": "デフォルト",
|
|
24
|
-
"source.active": "
|
|
26
|
+
"source.active": "有効",
|
|
25
27
|
"source.overridden": "上書き済み",
|
|
26
28
|
"detail.field_detail": "フィールド詳細",
|
|
27
29
|
"detail.close_panel": "パネルを閉じる",
|
|
28
30
|
"detail.type_label": "型:",
|
|
29
31
|
"detail.secret_badge": "シークレット",
|
|
30
32
|
"detail.secret_value": "•••••••• (シークレット)",
|
|
31
|
-
"config.file_not_found": "
|
|
33
|
+
"config.file_not_found": "ファイルが存在しません",
|
|
34
|
+
"config.show_yaml_keys": "キーを表示",
|
|
32
35
|
"config.edit_tooltip": "${name} を編集",
|
|
33
36
|
"edit.title": "ランタイム設定を編集",
|
|
34
37
|
"edit.open_dashboard": "設定ダッシュボードで開く ↗",
|
data/app/locales/ko.json
CHANGED
|
@@ -17,18 +17,21 @@
|
|
|
17
17
|
"field.nil": "nil",
|
|
18
18
|
"field.click_to_expand": "클릭하여 펼치기",
|
|
19
19
|
"field.not_set": "설정되지 않음",
|
|
20
|
+
"field.copy": "값 복사",
|
|
21
|
+
"field.copy_disabled": "비밀 값은 복사할 수 없습니다",
|
|
20
22
|
"source.env": "ENV",
|
|
21
23
|
"source.setting": "설정",
|
|
22
24
|
"source.yaml": "YAML",
|
|
23
25
|
"source.default": "기본값",
|
|
24
|
-
"source.active": "
|
|
26
|
+
"source.active": "활성",
|
|
25
27
|
"source.overridden": "재정의됨",
|
|
26
28
|
"detail.field_detail": "필드 세부 정보",
|
|
27
29
|
"detail.close_panel": "패널 닫기",
|
|
28
30
|
"detail.type_label": "유형:",
|
|
29
31
|
"detail.secret_badge": "비밀",
|
|
30
32
|
"detail.secret_value": "•••••••• (비밀)",
|
|
31
|
-
"config.file_not_found": "
|
|
33
|
+
"config.file_not_found": "파일이 존재하지 않음",
|
|
34
|
+
"config.show_yaml_keys": "키 표시",
|
|
32
35
|
"config.edit_tooltip": "${name} 편집",
|
|
33
36
|
"edit.title": "런타임 설정 편집",
|
|
34
37
|
"edit.open_dashboard": "설정 대시보드에서 열기 ↗",
|
data/app/locales/lt.json
CHANGED
|
@@ -17,18 +17,21 @@
|
|
|
17
17
|
"field.nil": "nil",
|
|
18
18
|
"field.click_to_expand": "Spustelėkite, kad išskleistumėte",
|
|
19
19
|
"field.not_set": "nenustatyta",
|
|
20
|
+
"field.copy": "Kopijuoti reikšmę",
|
|
21
|
+
"field.copy_disabled": "Slaptų reikšmių kopijuoti negalima",
|
|
20
22
|
"source.env": "ENV",
|
|
21
23
|
"source.setting": "NUOSTATA",
|
|
22
24
|
"source.yaml": "YAML",
|
|
23
25
|
"source.default": "NUMATYTA",
|
|
24
|
-
"source.active": "
|
|
26
|
+
"source.active": "Aktyvus",
|
|
25
27
|
"source.overridden": "Perrašyta",
|
|
26
28
|
"detail.field_detail": "Lauko informacija",
|
|
27
29
|
"detail.close_panel": "Uždaryti skydelį",
|
|
28
30
|
"detail.type_label": "Tipas:",
|
|
29
31
|
"detail.secret_badge": "SLAPTA",
|
|
30
32
|
"detail.secret_value": "•••••••• (slapta)",
|
|
31
|
-
"config.file_not_found": "
|
|
33
|
+
"config.file_not_found": "failas neegzistuoja",
|
|
34
|
+
"config.show_yaml_keys": "rodyti raktus",
|
|
32
35
|
"config.edit_tooltip": "Redaguoti ${name}",
|
|
33
36
|
"edit.title": "Redaguoti vykdymo metu naudojamą nustatymą",
|
|
34
37
|
"edit.open_dashboard": "Atidaryti nustatymų skydelyje ↗",
|
data/app/locales/nb.json
CHANGED
|
@@ -17,18 +17,21 @@
|
|
|
17
17
|
"field.nil": "nil",
|
|
18
18
|
"field.click_to_expand": "Klikk for å utvide",
|
|
19
19
|
"field.not_set": "ikke satt",
|
|
20
|
+
"field.copy": "Kopier verdi",
|
|
21
|
+
"field.copy_disabled": "Hemmelige verdier kan ikke kopieres",
|
|
20
22
|
"source.env": "ENV",
|
|
21
23
|
"source.setting": "INNSTILLING",
|
|
22
24
|
"source.yaml": "YAML",
|
|
23
25
|
"source.default": "STANDARD",
|
|
24
|
-
"source.active": "
|
|
26
|
+
"source.active": "Aktiv",
|
|
25
27
|
"source.overridden": "Overstyrt",
|
|
26
28
|
"detail.field_detail": "Feltdetaljer",
|
|
27
29
|
"detail.close_panel": "Lukk panel",
|
|
28
30
|
"detail.type_label": "Type:",
|
|
29
31
|
"detail.secret_badge": "HEMMELIG",
|
|
30
32
|
"detail.secret_value": "•••••••• (hemmelig)",
|
|
31
|
-
"config.file_not_found": "
|
|
33
|
+
"config.file_not_found": "filen finnes ikke",
|
|
34
|
+
"config.show_yaml_keys": "vis nøkler",
|
|
32
35
|
"config.edit_tooltip": "Rediger ${name}",
|
|
33
36
|
"edit.title": "Rediger kjøretidsinnstilling",
|
|
34
37
|
"edit.open_dashboard": "Åpne i innstillingsdashboard ↗",
|
data/app/locales/nl.json
CHANGED
|
@@ -17,18 +17,21 @@
|
|
|
17
17
|
"field.nil": "nil",
|
|
18
18
|
"field.click_to_expand": "Klik om uit te klappen",
|
|
19
19
|
"field.not_set": "niet ingesteld",
|
|
20
|
+
"field.copy": "Waarde kopiëren",
|
|
21
|
+
"field.copy_disabled": "Geheime waarden kunnen niet worden gekopieerd",
|
|
20
22
|
"source.env": "ENV",
|
|
21
23
|
"source.setting": "INSTELLING",
|
|
22
24
|
"source.yaml": "YAML",
|
|
23
25
|
"source.default": "STANDAARD",
|
|
24
|
-
"source.active": "
|
|
26
|
+
"source.active": "Actief",
|
|
25
27
|
"source.overridden": "Overschreven",
|
|
26
28
|
"detail.field_detail": "Veldgegevens",
|
|
27
29
|
"detail.close_panel": "Paneel sluiten",
|
|
28
30
|
"detail.type_label": "Type:",
|
|
29
31
|
"detail.secret_badge": "GEHEIM",
|
|
30
32
|
"detail.secret_value": "•••••••• (geheim)",
|
|
31
|
-
"config.file_not_found": "
|
|
33
|
+
"config.file_not_found": "bestand bestaat niet",
|
|
34
|
+
"config.show_yaml_keys": "sleutels tonen",
|
|
32
35
|
"config.edit_tooltip": "${name} bewerken",
|
|
33
36
|
"edit.title": "Runtime-instelling bewerken",
|
|
34
37
|
"edit.open_dashboard": "Openen in instellingen-dashboard ↗",
|