@goodandready/dsh-russian-lang 0.1.17 → 0.1.18
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.
- package/lib/client.js +10 -14
- package/package.json +1 -1
package/lib/client.js
CHANGED
|
@@ -4060,20 +4060,16 @@ window.__ModuleLoader__.load({
|
|
|
4060
4060
|
: (status === 'unavailable' ? t('statusUnavailable') : t('statusLoading'))
|
|
4061
4061
|
const disabled = status !== 'ready'
|
|
4062
4062
|
|
|
4063
|
-
//
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4067
|
-
|
|
4068
|
-
|
|
4069
|
-
|
|
4070
|
-
|
|
4071
|
-
|
|
4072
|
-
|
|
4073
|
-
d: 'M3.5 5.25 7 8.75l3.5-3.5', stroke: 'currentColor',
|
|
4074
|
-
'stroke-width': 1.5, 'stroke-linecap': 'round', 'stroke-linejoin': 'round',
|
|
4075
|
-
}))
|
|
4076
|
-
})()
|
|
4063
|
+
// Шеврон раскрытия — чистый SVG той же формы, что ядровый
|
|
4064
|
+
// (без зависимости от @deepseek-ai/dsh-client-ui-primitives: этот модуль
|
|
4065
|
+
// не зарегистрирован в module table старых ядер и валил загрузчик).
|
|
4066
|
+
const Chevron = () => React.createElement('svg', {
|
|
4067
|
+
width: 14, height: 14, viewBox: '0 0 14 14', fill: 'none',
|
|
4068
|
+
'aria-hidden': 'true',
|
|
4069
|
+
}, React.createElement('path', {
|
|
4070
|
+
d: 'M3.5 5.25 7 8.75l3.5-3.5', stroke: 'currentColor',
|
|
4071
|
+
'stroke-width': 1.5, 'stroke-linecap': 'round', 'stroke-linejoin': 'round',
|
|
4072
|
+
}))
|
|
4077
4073
|
|
|
4078
4074
|
return React.createElement('div', { className: 'rl-card' },
|
|
4079
4075
|
React.createElement('button', {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@goodandready/dsh-russian-lang",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.18",
|
|
4
4
|
"description": "Russian localization for the DeepSeek Harness web UI: adds Русский as the third option in the native Settings - General - Language menu. Translates the full core surface (100% coverage of DSH 0.1.1-rc.2) plus 16 community plugin namespaces - 52 namespaces, 2795 strings (many machine-drafted, queued for manual review), with Russian plural forms, count-key plurals, a typography pass (guillemets, em dash, nbsp), a wrong-layout input hint and browser spellcheck. The locale runtime snapshot is extended at runtime on unpatched cores; no files in the DSH installation are modified. The choice is persisted through the plugin-owned russian-lang namespace.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|