agentomatic 0.1.0__tar.gz
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.
- agentomatic-0.1.0/.chainlit/config.toml +178 -0
- agentomatic-0.1.0/.chainlit/translations/ar-SA.json +259 -0
- agentomatic-0.1.0/.chainlit/translations/bn.json +260 -0
- agentomatic-0.1.0/.chainlit/translations/da-DK.json +259 -0
- agentomatic-0.1.0/.chainlit/translations/de-DE.json +254 -0
- agentomatic-0.1.0/.chainlit/translations/el-GR.json +260 -0
- agentomatic-0.1.0/.chainlit/translations/en-US.json +260 -0
- agentomatic-0.1.0/.chainlit/translations/es.json +260 -0
- agentomatic-0.1.0/.chainlit/translations/fr-FR.json +260 -0
- agentomatic-0.1.0/.chainlit/translations/gu.json +260 -0
- agentomatic-0.1.0/.chainlit/translations/he-IL.json +260 -0
- agentomatic-0.1.0/.chainlit/translations/hi.json +260 -0
- agentomatic-0.1.0/.chainlit/translations/it.json +254 -0
- agentomatic-0.1.0/.chainlit/translations/ja.json +259 -0
- agentomatic-0.1.0/.chainlit/translations/kn.json +260 -0
- agentomatic-0.1.0/.chainlit/translations/ko.json +254 -0
- agentomatic-0.1.0/.chainlit/translations/ml.json +260 -0
- agentomatic-0.1.0/.chainlit/translations/mr.json +260 -0
- agentomatic-0.1.0/.chainlit/translations/nl.json +260 -0
- agentomatic-0.1.0/.chainlit/translations/pt-PT.json +260 -0
- agentomatic-0.1.0/.chainlit/translations/ta.json +260 -0
- agentomatic-0.1.0/.chainlit/translations/te.json +260 -0
- agentomatic-0.1.0/.chainlit/translations/zh-CN.json +260 -0
- agentomatic-0.1.0/.chainlit/translations/zh-TW.json +260 -0
- agentomatic-0.1.0/.dockerignore +90 -0
- agentomatic-0.1.0/.env.example +62 -0
- agentomatic-0.1.0/.github/FUNDING.yml +1 -0
- agentomatic-0.1.0/.github/workflows/ci.yml +154 -0
- agentomatic-0.1.0/.github/workflows/docs.yml +56 -0
- agentomatic-0.1.0/.github/workflows/manual-docs.yml +81 -0
- agentomatic-0.1.0/.github/workflows/manual-pypi.yml +65 -0
- agentomatic-0.1.0/.github/workflows/pr-checks.yml +61 -0
- agentomatic-0.1.0/.github/workflows/release.yml +181 -0
- agentomatic-0.1.0/.gitignore +47 -0
- agentomatic-0.1.0/.pre-commit-config.yaml +38 -0
- agentomatic-0.1.0/.vscode-upload.json +21 -0
- agentomatic-0.1.0/CHANGELOG.md +281 -0
- agentomatic-0.1.0/CONTRIBUTING.md +91 -0
- agentomatic-0.1.0/Dockerfile +82 -0
- agentomatic-0.1.0/Dockerfile.distroless +58 -0
- agentomatic-0.1.0/LICENSE +21 -0
- agentomatic-0.1.0/Makefile +103 -0
- agentomatic-0.1.0/PKG-INFO +363 -0
- agentomatic-0.1.0/README.md +259 -0
- agentomatic-0.1.0/TODO.md +1 -0
- agentomatic-0.1.0/assets/logo.png +0 -0
- agentomatic-0.1.0/docker-compose.yml +52 -0
- agentomatic-0.1.0/docs/FRONTEND_API_GUIDE.md +290 -0
- agentomatic-0.1.0/docs/architecture/api-reference.md +67 -0
- agentomatic-0.1.0/docs/architecture/overview.md +54 -0
- agentomatic-0.1.0/docs/assets/logo.png +0 -0
- agentomatic-0.1.0/docs/changelog.md +67 -0
- agentomatic-0.1.0/docs/cli/commands.md +275 -0
- agentomatic-0.1.0/docs/contributing.md +41 -0
- agentomatic-0.1.0/docs/getting-started/first-agent.md +89 -0
- agentomatic-0.1.0/docs/getting-started/installation.md +118 -0
- agentomatic-0.1.0/docs/getting-started/quickstart.md +124 -0
- agentomatic-0.1.0/docs/guide/agent-structure.md +60 -0
- agentomatic-0.1.0/docs/guide/configuration.md +54 -0
- agentomatic-0.1.0/docs/guide/debug-ui.md +35 -0
- agentomatic-0.1.0/docs/guide/middleware.md +63 -0
- agentomatic-0.1.0/docs/guide/optimization.md +456 -0
- agentomatic-0.1.0/docs/guide/storage.md +64 -0
- agentomatic-0.1.0/docs/guide/telemetry.md +195 -0
- agentomatic-0.1.0/docs/guide/templates.md +55 -0
- agentomatic-0.1.0/docs/index.md +138 -0
- agentomatic-0.1.0/examples/full_agent/README.md +64 -0
- agentomatic-0.1.0/examples/full_agent/agents/weather/__init__.py +35 -0
- agentomatic-0.1.0/examples/full_agent/agents/weather/api.py +49 -0
- agentomatic-0.1.0/examples/full_agent/agents/weather/config.py +39 -0
- agentomatic-0.1.0/examples/full_agent/agents/weather/graph.py +51 -0
- agentomatic-0.1.0/examples/full_agent/agents/weather/langgraph.json +7 -0
- agentomatic-0.1.0/examples/full_agent/agents/weather/nodes.py +60 -0
- agentomatic-0.1.0/examples/full_agent/agents/weather/prompts.json +14 -0
- agentomatic-0.1.0/examples/full_agent/agents/weather/schemas.py +39 -0
- agentomatic-0.1.0/examples/full_agent/agents/weather/tools.py +32 -0
- agentomatic-0.1.0/examples/full_agent/main.py +78 -0
- agentomatic-0.1.0/examples/hello_agent/agents/hello/__init__.py +22 -0
- agentomatic-0.1.0/examples/hello_agent/agents/hello/graph.py +26 -0
- agentomatic-0.1.0/examples/hello_agent/agents/hello/nodes.py +15 -0
- agentomatic-0.1.0/examples/hello_agent/main.py +28 -0
- agentomatic-0.1.0/mkdocs.yml +100 -0
- agentomatic-0.1.0/pyproject.toml +183 -0
- agentomatic-0.1.0/src/__init__.py +3 -0
- agentomatic-0.1.0/src/agentomatic/__init__.py +59 -0
- agentomatic-0.1.0/src/agentomatic/_version.py +5 -0
- agentomatic-0.1.0/src/agentomatic/cli/__init__.py +7 -0
- agentomatic-0.1.0/src/agentomatic/cli/commands.py +715 -0
- agentomatic-0.1.0/src/agentomatic/cli/templates.py +188 -0
- agentomatic-0.1.0/src/agentomatic/config/__init__.py +3 -0
- agentomatic-0.1.0/src/agentomatic/config/defaults.py +10 -0
- agentomatic-0.1.0/src/agentomatic/config/settings.py +117 -0
- agentomatic-0.1.0/src/agentomatic/core/__init__.py +31 -0
- agentomatic-0.1.0/src/agentomatic/core/lifespan.py +102 -0
- agentomatic-0.1.0/src/agentomatic/core/manifest.py +100 -0
- agentomatic-0.1.0/src/agentomatic/core/platform.py +571 -0
- agentomatic-0.1.0/src/agentomatic/core/registry.py +198 -0
- agentomatic-0.1.0/src/agentomatic/core/router_factory.py +541 -0
- agentomatic-0.1.0/src/agentomatic/core/state.py +63 -0
- agentomatic-0.1.0/src/agentomatic/middleware/__init__.py +18 -0
- agentomatic-0.1.0/src/agentomatic/middleware/auth.py +53 -0
- agentomatic-0.1.0/src/agentomatic/middleware/feedback.py +207 -0
- agentomatic-0.1.0/src/agentomatic/middleware/logging.py +40 -0
- agentomatic-0.1.0/src/agentomatic/middleware/metrics.py +93 -0
- agentomatic-0.1.0/src/agentomatic/middleware/rate_limit.py +70 -0
- agentomatic-0.1.0/src/agentomatic/observability/__init__.py +11 -0
- agentomatic-0.1.0/src/agentomatic/observability/concurrency.py +109 -0
- agentomatic-0.1.0/src/agentomatic/observability/metrics.py +101 -0
- agentomatic-0.1.0/src/agentomatic/observability/telemetry.py +316 -0
- agentomatic-0.1.0/src/agentomatic/optimize/__init__.py +112 -0
- agentomatic-0.1.0/src/agentomatic/optimize/dataset.py +142 -0
- agentomatic-0.1.0/src/agentomatic/optimize/loop.py +870 -0
- agentomatic-0.1.0/src/agentomatic/optimize/metrics.py +781 -0
- agentomatic-0.1.0/src/agentomatic/optimize/optimizer.py +891 -0
- agentomatic-0.1.0/src/agentomatic/optimize/report.py +774 -0
- agentomatic-0.1.0/src/agentomatic/optimize/runner.py +261 -0
- agentomatic-0.1.0/src/agentomatic/optimize/strategies.py +592 -0
- agentomatic-0.1.0/src/agentomatic/optimize/synthesizer.py +729 -0
- agentomatic-0.1.0/src/agentomatic/prompts/__init__.py +7 -0
- agentomatic-0.1.0/src/agentomatic/prompts/manager.py +59 -0
- agentomatic-0.1.0/src/agentomatic/protocols/__init__.py +3 -0
- agentomatic-0.1.0/src/agentomatic/protocols/decorators.py +75 -0
- agentomatic-0.1.0/src/agentomatic/providers/__init__.py +3 -0
- agentomatic-0.1.0/src/agentomatic/providers/embeddings.py +44 -0
- agentomatic-0.1.0/src/agentomatic/providers/llm.py +116 -0
- agentomatic-0.1.0/src/agentomatic/py.typed +1 -0
- agentomatic-0.1.0/src/agentomatic/storage/__init__.py +40 -0
- agentomatic-0.1.0/src/agentomatic/storage/base.py +192 -0
- agentomatic-0.1.0/src/agentomatic/storage/memory.py +167 -0
- agentomatic-0.1.0/src/agentomatic/storage/models.py +129 -0
- agentomatic-0.1.0/src/agentomatic/storage/sqlalchemy.py +317 -0
- agentomatic-0.1.0/src/agentomatic/ui/.chainlit/config.toml +14 -0
- agentomatic-0.1.0/src/agentomatic/ui/__init__.py +50 -0
- agentomatic-0.1.0/src/agentomatic/ui/chat.py +198 -0
- agentomatic-0.1.0/src/agents/__init__.py +1 -0
- agentomatic-0.1.0/src/agents/alpha/__init__.py +5 -0
- agentomatic-0.1.0/src/agents/alpha/agent.py +140 -0
- agentomatic-0.1.0/src/agents/alpha/api.py +67 -0
- agentomatic-0.1.0/src/agents/alpha/config.py +15 -0
- agentomatic-0.1.0/src/agents/alpha/prompts.json +14 -0
- agentomatic-0.1.0/src/agents/alpha/schemas.py +36 -0
- agentomatic-0.1.0/src/agents/alpha/state.py +22 -0
- agentomatic-0.1.0/src/agents/beta/__init__.py +5 -0
- agentomatic-0.1.0/src/agents/beta/agent.py +208 -0
- agentomatic-0.1.0/src/agents/beta/api.py +72 -0
- agentomatic-0.1.0/src/agents/beta/config.py +16 -0
- agentomatic-0.1.0/src/agents/beta/prompts.json +14 -0
- agentomatic-0.1.0/src/agents/beta/schemas.py +57 -0
- agentomatic-0.1.0/src/agents/beta/state.py +22 -0
- agentomatic-0.1.0/src/app/__init__.py +1 -0
- agentomatic-0.1.0/src/app/api.py +505 -0
- agentomatic-0.1.0/src/app/dependencies.py +189 -0
- agentomatic-0.1.0/src/app/main.py +230 -0
- agentomatic-0.1.0/src/app/settings.py +60 -0
- agentomatic-0.1.0/src/common/__init__.py +1 -0
- agentomatic-0.1.0/src/common/agent_state.py +24 -0
- agentomatic-0.1.0/src/common/api_decorators.py +177 -0
- agentomatic-0.1.0/src/common/base_agent.py +128 -0
- agentomatic-0.1.0/src/common/llm_factory.py +280 -0
- agentomatic-0.1.0/src/common/prompt_manager.py +78 -0
- agentomatic-0.1.0/src/common/utilities.py +131 -0
- agentomatic-0.1.0/tests/test_agentomatic.py +292 -0
- agentomatic-0.1.0/tests/test_cli.py +229 -0
- agentomatic-0.1.0/tests/test_integration.py +558 -0
- agentomatic-0.1.0/tests/test_optimize.py +855 -0
- agentomatic-0.1.0/uv.lock +6511 -0
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
# List of environment variables to be provided by each user to use the app.
|
|
3
|
+
user_env = []
|
|
4
|
+
|
|
5
|
+
# Duration (in seconds) during which the session is saved when the connection is lost
|
|
6
|
+
session_timeout = 3600
|
|
7
|
+
|
|
8
|
+
# Duration (in seconds) of the user session expiry
|
|
9
|
+
user_session_timeout = 1296000 # 15 days
|
|
10
|
+
|
|
11
|
+
# Enable third parties caching (e.g., LangChain cache)
|
|
12
|
+
cache = false
|
|
13
|
+
|
|
14
|
+
# Whether to persist user environment variables (API keys) to the database
|
|
15
|
+
# Set to true to store user env vars in DB, false to exclude them for security
|
|
16
|
+
persist_user_env = false
|
|
17
|
+
|
|
18
|
+
# Whether to mask user environment variables (API keys) in the UI with password type
|
|
19
|
+
# Set to true to show API keys as ***, false to show them as plain text
|
|
20
|
+
mask_user_env = false
|
|
21
|
+
|
|
22
|
+
# Authorized origins
|
|
23
|
+
allow_origins = ["*"]
|
|
24
|
+
|
|
25
|
+
[features]
|
|
26
|
+
# Process and display HTML in messages. This can be a security risk (see https://stackoverflow.com/questions/19603097/why-is-it-dangerous-to-render-user-generated-html-or-javascript)
|
|
27
|
+
unsafe_allow_html = false
|
|
28
|
+
|
|
29
|
+
# Process and display mathematical expressions. This can clash with "$" characters in messages.
|
|
30
|
+
latex = false
|
|
31
|
+
|
|
32
|
+
# Enable rendering of user messages markdown
|
|
33
|
+
user_message_markdown = true
|
|
34
|
+
|
|
35
|
+
# Autoscroll new user messages at the top of the window
|
|
36
|
+
user_message_autoscroll = true
|
|
37
|
+
|
|
38
|
+
# Autoscroll new assistant messages
|
|
39
|
+
assistant_message_autoscroll = true
|
|
40
|
+
|
|
41
|
+
# Automatically tag threads with the current chat profile (if a chat profile is used)
|
|
42
|
+
auto_tag_thread = true
|
|
43
|
+
|
|
44
|
+
# Allow users to edit their own messages
|
|
45
|
+
edit_message = true
|
|
46
|
+
|
|
47
|
+
# Allow users to share threads (backend + UI). Requires an app-defined on_shared_thread_view callback.
|
|
48
|
+
allow_thread_sharing = false
|
|
49
|
+
|
|
50
|
+
# Enable favorite messages
|
|
51
|
+
favorites = false
|
|
52
|
+
|
|
53
|
+
[features.slack]
|
|
54
|
+
# Add emoji reaction when message is received (requires reactions:write OAuth scope)
|
|
55
|
+
reaction_on_message_received = false
|
|
56
|
+
|
|
57
|
+
# Authorize users to spontaneously upload files with messages
|
|
58
|
+
[features.spontaneous_file_upload]
|
|
59
|
+
enabled = true
|
|
60
|
+
# Define accepted file types using MIME types
|
|
61
|
+
# Examples:
|
|
62
|
+
# 1. For specific file types:
|
|
63
|
+
# accept = ["image/jpeg", "image/png", "application/pdf"]
|
|
64
|
+
# 2. For all files of certain type:
|
|
65
|
+
# accept = ["image/*", "audio/*", "video/*"]
|
|
66
|
+
# 3. For specific file extensions:
|
|
67
|
+
# accept = { "application/octet-stream" = [".xyz", ".pdb"] }
|
|
68
|
+
# Note: Using "*/*" is not recommended as it may cause browser warnings
|
|
69
|
+
accept = ["*/*"]
|
|
70
|
+
max_files = 20
|
|
71
|
+
max_size_mb = 500
|
|
72
|
+
|
|
73
|
+
[features.audio]
|
|
74
|
+
# Enable audio features
|
|
75
|
+
enabled = false
|
|
76
|
+
# Sample rate of the audio
|
|
77
|
+
sample_rate = 24000
|
|
78
|
+
|
|
79
|
+
[features.mcp]
|
|
80
|
+
# Enable Model Context Protocol (MCP) features
|
|
81
|
+
enabled = false
|
|
82
|
+
|
|
83
|
+
[features.mcp.sse]
|
|
84
|
+
enabled = true
|
|
85
|
+
|
|
86
|
+
[features.mcp.streamable-http]
|
|
87
|
+
enabled = true
|
|
88
|
+
|
|
89
|
+
[features.mcp.stdio]
|
|
90
|
+
enabled = true
|
|
91
|
+
# Only the executables in the allow list can be used for MCP stdio server.
|
|
92
|
+
# Only need the base name of the executable, e.g. "npx", not "/usr/bin/npx".
|
|
93
|
+
# Please don't comment this line for now, we need it to parse the executable name.
|
|
94
|
+
allowed_executables = [ "npx", "uvx" ]
|
|
95
|
+
|
|
96
|
+
[UI]
|
|
97
|
+
# Name of the assistant.
|
|
98
|
+
name = "Assistant"
|
|
99
|
+
|
|
100
|
+
# default_theme = "dark"
|
|
101
|
+
|
|
102
|
+
# Force a specific language for all users (e.g., "en-US", "he-IL", "fr-FR")
|
|
103
|
+
# If not set, the browser's language will be used
|
|
104
|
+
# language = "en-US"
|
|
105
|
+
|
|
106
|
+
# layout = "wide"
|
|
107
|
+
|
|
108
|
+
# default_sidebar_state = "open" # Options: "open", "closed", "hidden"
|
|
109
|
+
|
|
110
|
+
# Chat settings display location: "message_composer" (default) or "sidebar" (header)
|
|
111
|
+
# chat_settings_location = "message_composer"
|
|
112
|
+
|
|
113
|
+
# Default state of chat settings sidebar when location is "sidebar"
|
|
114
|
+
# default_chat_settings_open = false
|
|
115
|
+
|
|
116
|
+
# Whether to prompt user confirmation on clicking 'New Chat'
|
|
117
|
+
confirm_new_chat = true
|
|
118
|
+
|
|
119
|
+
# Description of the assistant. This is used for HTML tags.
|
|
120
|
+
# description = ""
|
|
121
|
+
|
|
122
|
+
# Chain of Thought (CoT) display mode. Can be "hidden", "tool_call" or "full".
|
|
123
|
+
cot = "full"
|
|
124
|
+
|
|
125
|
+
# Specify a CSS file that can be used to customize the user interface.
|
|
126
|
+
# The CSS file can be served from the public directory or via an external link.
|
|
127
|
+
# custom_css = "/public/test.css"
|
|
128
|
+
|
|
129
|
+
# Specify additional attributes for a custom CSS file
|
|
130
|
+
# custom_css_attributes = "media=\"print\""
|
|
131
|
+
|
|
132
|
+
# Specify a JavaScript file that can be used to customize the user interface.
|
|
133
|
+
# The JavaScript file can be served from the public directory.
|
|
134
|
+
# custom_js = "/public/test.js"
|
|
135
|
+
|
|
136
|
+
# The style of alert boxes. Can be "classic" or "modern".
|
|
137
|
+
alert_style = "classic"
|
|
138
|
+
|
|
139
|
+
# Specify additional attributes for custom JS file
|
|
140
|
+
# custom_js_attributes = "async type = \"module\""
|
|
141
|
+
|
|
142
|
+
# Custom login page image, relative to public directory or external URL
|
|
143
|
+
# login_page_image = "/public/custom-background.jpg"
|
|
144
|
+
|
|
145
|
+
# Custom login page image filter (Tailwind internal filters, no dark/light variants)
|
|
146
|
+
# login_page_image_filter = "brightness-50 grayscale"
|
|
147
|
+
# login_page_image_dark_filter = "contrast-200 blur-sm"
|
|
148
|
+
|
|
149
|
+
# Specify a custom meta URL (used for meta tags like og:url)
|
|
150
|
+
# custom_meta_url = "https://github.com/Chainlit/chainlit"
|
|
151
|
+
|
|
152
|
+
# Specify a custom meta image url.
|
|
153
|
+
# custom_meta_image_url = "https://chainlit-cloud.s3.eu-west-3.amazonaws.com/logo/chainlit_banner.png"
|
|
154
|
+
|
|
155
|
+
# Load assistant logo directly from URL.
|
|
156
|
+
logo_file_url = ""
|
|
157
|
+
|
|
158
|
+
# Load assistant avatar image directly from URL.
|
|
159
|
+
default_avatar_file_url = ""
|
|
160
|
+
|
|
161
|
+
# Avatar size in pixels (default: 20).
|
|
162
|
+
# avatar_size = 20
|
|
163
|
+
|
|
164
|
+
# Specify a custom build directory for the frontend.
|
|
165
|
+
# This can be used to customize the frontend code.
|
|
166
|
+
# Be careful: If this is a relative path, it should not start with a slash.
|
|
167
|
+
# custom_build = "./public/build"
|
|
168
|
+
|
|
169
|
+
# Specify optional one or more custom links in the header.
|
|
170
|
+
# [[UI.header_links]]
|
|
171
|
+
# name = "Issues"
|
|
172
|
+
# display_name = "Report Issue"
|
|
173
|
+
# icon_url = "https://avatars.githubusercontent.com/u/128686189?s=200&v=4"
|
|
174
|
+
# url = "https://github.com/Chainlit/chainlit/issues"
|
|
175
|
+
# target = "_blank" (default) # Optional: "_self", "_parent", "_top".
|
|
176
|
+
|
|
177
|
+
[meta]
|
|
178
|
+
generated_by = "2.11.1"
|
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
{
|
|
2
|
+
"common": {
|
|
3
|
+
"actions": {
|
|
4
|
+
"cancel": "\u0625\u0644\u063a\u0627\u0621",
|
|
5
|
+
"confirm": "\u062a\u0623\u0643\u064a\u062f",
|
|
6
|
+
"continue": "\u0645\u062a\u0627\u0628\u0639\u0629",
|
|
7
|
+
"goBack": "\u0631\u062c\u0648\u0639",
|
|
8
|
+
"reset": "\u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646",
|
|
9
|
+
"submit": "\u0625\u0631\u0633\u0627\u0644"
|
|
10
|
+
},
|
|
11
|
+
"status": {
|
|
12
|
+
"loading": "\u062c\u0627\u0631\u064a \u0627\u0644\u062a\u062d\u0645\u064a\u0644...",
|
|
13
|
+
"error": {
|
|
14
|
+
"default": "\u062d\u062f\u062b \u062e\u0637\u0623",
|
|
15
|
+
"serverConnection": "\u062a\u0639\u0630\u0631 \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0628\u0627\u0644\u062e\u0627\u062f\u0645"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"auth": {
|
|
20
|
+
"login": {
|
|
21
|
+
"title": "\u0642\u0645 \u0628\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0644\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0627\u0644\u062a\u0637\u0628\u064a\u0642",
|
|
22
|
+
"form": {
|
|
23
|
+
"email": {
|
|
24
|
+
"label": "\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a",
|
|
25
|
+
"required": "\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u062d\u0642\u0644 \u0625\u0644\u0632\u0627\u0645\u064a",
|
|
26
|
+
"placeholder": "me@example.com"
|
|
27
|
+
},
|
|
28
|
+
"password": {
|
|
29
|
+
"label": "\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631",
|
|
30
|
+
"required": "\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631 \u062d\u0642\u0644 \u0625\u0644\u0632\u0627\u0645\u064a"
|
|
31
|
+
},
|
|
32
|
+
"actions": {
|
|
33
|
+
"signin": "\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644"
|
|
34
|
+
},
|
|
35
|
+
"alternativeText": {
|
|
36
|
+
"or": "\u0623\u0648"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"errors": {
|
|
40
|
+
"default": "\u062a\u0639\u0630\u0631 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644",
|
|
41
|
+
"signin": "\u062d\u0627\u0648\u0644 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0628\u062d\u0633\u0627\u0628 \u0622\u062e\u0631",
|
|
42
|
+
"oauthSignin": "\u062d\u0627\u0648\u0644 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0628\u062d\u0633\u0627\u0628 \u0622\u062e\u0631",
|
|
43
|
+
"redirectUriMismatch": "\u0639\u0646\u0648\u0627\u0646 URI \u0644\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u062a\u0648\u062c\u064a\u0647 \u0644\u0627 \u064a\u062a\u0637\u0627\u0628\u0642 \u0645\u0639 \u062a\u0643\u0648\u064a\u0646 \u062a\u0637\u0628\u064a\u0642 OAuth",
|
|
44
|
+
"oauthCallback": "\u062d\u0627\u0648\u0644 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0628\u062d\u0633\u0627\u0628 \u0622\u062e\u0631",
|
|
45
|
+
"oauthCreateAccount": "\u062d\u0627\u0648\u0644 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0628\u062d\u0633\u0627\u0628 \u0622\u062e\u0631",
|
|
46
|
+
"emailCreateAccount": "\u062d\u0627\u0648\u0644 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0628\u062d\u0633\u0627\u0628 \u0622\u062e\u0631",
|
|
47
|
+
"callback": "\u062d\u0627\u0648\u0644 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0628\u062d\u0633\u0627\u0628 \u0622\u062e\u0631",
|
|
48
|
+
"oauthAccountNotLinked": "\u0644\u062a\u0623\u0643\u064a\u062f \u0647\u0648\u064a\u062a\u0643\u060c \u0642\u0645 \u0628\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0628\u0646\u0641\u0633 \u0627\u0644\u062d\u0633\u0627\u0628 \u0627\u0644\u0630\u064a \u0627\u0633\u062a\u062e\u062f\u0645\u062a\u0647 \u0641\u064a \u0627\u0644\u0623\u0635\u0644",
|
|
49
|
+
"emailSignin": "\u062a\u0639\u0630\u0631 \u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a",
|
|
50
|
+
"emailVerify": "\u064a\u0631\u062c\u0649 \u0627\u0644\u062a\u062d\u0642\u0642 \u0645\u0646 \u0628\u0631\u064a\u062f\u0643 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u060c \u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u0628\u0631\u064a\u062f \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u062c\u062f\u064a\u062f",
|
|
51
|
+
"credentialsSignin": "\u0641\u0634\u0644 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644. \u062a\u062d\u0642\u0642 \u0645\u0646 \u0635\u062d\u0629 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0645\u0642\u062f\u0645\u0629",
|
|
52
|
+
"sessionRequired": "\u064a\u0631\u062c\u0649 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0644\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"provider": {
|
|
56
|
+
"continue": "\u0645\u062a\u0627\u0628\u0639\u0629 \u0645\u0639 {{provider}}"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"chat": {
|
|
60
|
+
"input": {
|
|
61
|
+
"placeholder": "\u0627\u0643\u062a\u0628 \u0631\u0633\u0627\u0644\u062a\u0643 \u0647\u0646\u0627...",
|
|
62
|
+
"actions": {
|
|
63
|
+
"send": "\u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u0631\u0633\u0627\u0644\u0629",
|
|
64
|
+
"stop": "\u0625\u064a\u0642\u0627\u0641 \u0627\u0644\u0645\u0647\u0645\u0629",
|
|
65
|
+
"attachFiles": "\u0625\u0631\u0641\u0627\u0642 \u0645\u0644\u0641\u0627\u062a"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"favorites": {
|
|
69
|
+
"use": "\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0631\u0633\u0627\u0644\u0629 \u0645\u0641\u0636\u0644\u0629",
|
|
70
|
+
"headline": "\u0627\u0644\u0631\u0633\u0627\u0626\u0644 \u0627\u0644\u0645\u0641\u0636\u0644\u0629",
|
|
71
|
+
"empty": {
|
|
72
|
+
"title": "\u0644\u0627 \u062a\u0648\u062c\u062f \u0631\u0633\u0627\u0626\u0644 \u0645\u062d\u0641\u0648\u0638\u0629 \u0628\u0639\u062f",
|
|
73
|
+
"description": "\u0627\u0628\u062f\u0623 \u0628\u0625\u0631\u0633\u0627\u0644 \u0631\u0633\u0627\u0644\u0629 \u0648\u0642\u0645 \u0628\u062a\u0645\u064a\u064a\u0632\u0647\u0627 \u0628\u0646\u062c\u0645\u0629 \u0623\u0648 \u0645\u064a\u0651\u0632 \u0631\u0633\u0627\u0644\u0629 \u0645\u0646 \u0645\u062d\u0627\u062f\u062b\u0627\u062a\u0643 \u0627\u0644\u0633\u0627\u0628\u0642\u0629"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"commands": {
|
|
77
|
+
"button": "\u0623\u062f\u0648\u0627\u062a",
|
|
78
|
+
"changeTool": "\u062a\u063a\u064a\u064a\u0631 \u0627\u0644\u0623\u062f\u0627\u0629",
|
|
79
|
+
"availableTools": "\u0627\u0644\u0623\u062f\u0648\u0627\u062a \u0627\u0644\u0645\u062a\u0627\u062d\u0629"
|
|
80
|
+
},
|
|
81
|
+
"speech": {
|
|
82
|
+
"start": "\u0628\u062f\u0621 \u0627\u0644\u062a\u0633\u062c\u064a\u0644",
|
|
83
|
+
"stop": "\u0625\u064a\u0642\u0627\u0641 \u0627\u0644\u062a\u0633\u062c\u064a\u0644",
|
|
84
|
+
"connecting": "\u062c\u0627\u0631\u064a \u0627\u0644\u0627\u062a\u0635\u0627\u0644"
|
|
85
|
+
},
|
|
86
|
+
"fileUpload": {
|
|
87
|
+
"dragDrop": "\u0627\u0633\u062d\u0628 \u0648\u0623\u0641\u0644\u062a \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0647\u0646\u0627",
|
|
88
|
+
"browse": "\u062a\u0635\u0641\u062d \u0627\u0644\u0645\u0644\u0641\u0627\u062a",
|
|
89
|
+
"sizeLimit": "\u0627\u0644\u062d\u062f \u0627\u0644\u0623\u0642\u0635\u0649:",
|
|
90
|
+
"errors": {
|
|
91
|
+
"failed": "\u0641\u0634\u0644 \u0627\u0644\u062a\u062d\u0645\u064a\u0644",
|
|
92
|
+
"cancelled": "\u062a\u0645 \u0625\u0644\u063a\u0627\u0621 \u062a\u062d\u0645\u064a\u0644"
|
|
93
|
+
},
|
|
94
|
+
"actions": {
|
|
95
|
+
"cancelUpload": "\u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u062a\u062d\u0645\u064a\u0644",
|
|
96
|
+
"removeAttachment": "\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0645\u0631\u0641\u0642"
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"messages": {
|
|
100
|
+
"status": {
|
|
101
|
+
"using": "\u064a\u0633\u062a\u062e\u062f\u0645",
|
|
102
|
+
"used": "\u0645\u0633\u062a\u062e\u062f\u0645"
|
|
103
|
+
},
|
|
104
|
+
"actions": {
|
|
105
|
+
"copy": {
|
|
106
|
+
"button": "\u0646\u0633\u062e \u0625\u0644\u0649 \u0627\u0644\u062d\u0627\u0641\u0638\u0629",
|
|
107
|
+
"success": "\u062a\u0645 \u0627\u0644\u0646\u0633\u062e!"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"feedback": {
|
|
111
|
+
"positive": "\u0645\u0641\u064a\u062f",
|
|
112
|
+
"negative": "\u063a\u064a\u0631 \u0645\u0641\u064a\u062f",
|
|
113
|
+
"edit": "\u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u062a\u0639\u0644\u064a\u0642",
|
|
114
|
+
"dialog": {
|
|
115
|
+
"title": "\u0625\u0636\u0627\u0641\u0629 \u062a\u0639\u0644\u064a\u0642",
|
|
116
|
+
"submit": "\u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u062a\u0639\u0644\u064a\u0642",
|
|
117
|
+
"yourFeedback": "\u0631\u0623\u064a\u0643..."
|
|
118
|
+
},
|
|
119
|
+
"status": {
|
|
120
|
+
"updating": "\u062c\u0627\u0631\u064a \u0627\u0644\u062a\u062d\u062f\u064a\u062b",
|
|
121
|
+
"updated": "\u062a\u0645 \u062a\u062d\u062f\u064a\u062b \u0627\u0644\u062a\u0639\u0644\u064a\u0642"
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"history": {
|
|
126
|
+
"title": "\u0627\u0644\u0645\u062f\u062e\u0644\u0627\u062a \u0627\u0644\u0623\u062e\u064a\u0631\u0629",
|
|
127
|
+
"empty": "\u0641\u0627\u0631\u063a \u062a\u0645\u0627\u0645\u0627\u064b...",
|
|
128
|
+
"show": "\u0639\u0631\u0636 \u0627\u0644\u0633\u062c\u0644"
|
|
129
|
+
},
|
|
130
|
+
"settings": {
|
|
131
|
+
"title": "\u0644\u0648\u062d\u0629 \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a",
|
|
132
|
+
"customize": "\u062e\u0635\u0635 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629 \u0647\u0646\u0627"
|
|
133
|
+
},
|
|
134
|
+
"watermark": "\u0642\u062f \u062a\u062e\u0637\u0626 \u0646\u0645\u0627\u0630\u062c \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064a. \u062a\u062d\u0642\u0642 \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0645\u0647\u0645\u0629."
|
|
135
|
+
},
|
|
136
|
+
"threadHistory": {
|
|
137
|
+
"sidebar": {
|
|
138
|
+
"title": "\u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0627\u062a \u0627\u0644\u0633\u0627\u0628\u0642\u0629",
|
|
139
|
+
"filters": {
|
|
140
|
+
"search": "\u0628\u062d\u062b",
|
|
141
|
+
"placeholder": "\u0627\u0644\u0628\u062d\u062b \u0641\u064a \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0627\u062a..."
|
|
142
|
+
},
|
|
143
|
+
"timeframes": {
|
|
144
|
+
"today": "\u0627\u0644\u064a\u0648\u0645",
|
|
145
|
+
"yesterday": "\u0623\u0645\u0633",
|
|
146
|
+
"previous7days": "\u0622\u062e\u0631 7 \u0623\u064a\u0627\u0645",
|
|
147
|
+
"previous30days": "\u0622\u062e\u0631 30 \u064a\u0648\u0645\u0627\u064b"
|
|
148
|
+
},
|
|
149
|
+
"empty": "\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u062d\u0627\u062f\u062b\u0627\u062a",
|
|
150
|
+
"actions": {
|
|
151
|
+
"close": "\u0625\u063a\u0644\u0627\u0642 \u0627\u0644\u0634\u0631\u064a\u0637 \u0627\u0644\u062c\u0627\u0646\u0628\u064a",
|
|
152
|
+
"open": "\u0641\u062a\u062d \u0627\u0644\u0634\u0631\u064a\u0637 \u0627\u0644\u062c\u0627\u0646\u0628\u064a"
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
"thread": {
|
|
156
|
+
"untitled": "\u0645\u062d\u0627\u062f\u062b\u0629 \u0628\u062f\u0648\u0646 \u0639\u0646\u0648\u0627\u0646",
|
|
157
|
+
"menu": {
|
|
158
|
+
"rename": "\u0625\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u0629",
|
|
159
|
+
"share": "\u0645\u0634\u0627\u0631\u0643\u0629",
|
|
160
|
+
"delete": "\u062d\u0630\u0641"
|
|
161
|
+
},
|
|
162
|
+
"actions": {
|
|
163
|
+
"share": {
|
|
164
|
+
"title": "\u0645\u0634\u0627\u0631\u0643\u0629 \u0631\u0627\u0628\u0637 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629",
|
|
165
|
+
"button": "\u0645\u0634\u0627\u0631\u0643\u0629",
|
|
166
|
+
"status": {
|
|
167
|
+
"copied": "\u062a\u0645 \u0646\u0633\u062e \u0627\u0644\u0631\u0627\u0628\u0637",
|
|
168
|
+
"created": "\u062a\u0645 \u0625\u0646\u0634\u0627\u0621 \u0631\u0627\u0628\u0637 \u0627\u0644\u0645\u0634\u0627\u0631\u0643\u0629!",
|
|
169
|
+
"unshared": "\u062a\u0645 \u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u0645\u0634\u0627\u0631\u0643\u0629 \u0644\u0647\u0630\u0647 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629"
|
|
170
|
+
},
|
|
171
|
+
"error": {
|
|
172
|
+
"create": "\u0641\u0634\u0644 \u0625\u0646\u0634\u0627\u0621 \u0631\u0627\u0628\u0637 \u0627\u0644\u0645\u0634\u0627\u0631\u0643\u0629",
|
|
173
|
+
"unshare": "\u0641\u0634\u0644 \u062a\u0639\u0637\u064a\u0644 \u0645\u0634\u0627\u0631\u0643\u0629 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629"
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
"delete": {
|
|
177
|
+
"title": "\u062a\u0623\u0643\u064a\u062f \u0627\u0644\u062d\u0630\u0641",
|
|
178
|
+
"description": "\u0633\u064a\u0624\u062f\u064a \u0647\u0630\u0627 \u0625\u0644\u0649 \u062d\u0630\u0641 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629 \u0645\u0639 \u0631\u0633\u0627\u0626\u0644\u0647\u0627 \u0648\u0639\u0646\u0627\u0635\u0631\u0647\u0627. \u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0644\u062a\u0631\u0627\u062c\u0639 \u0639\u0646 \u0647\u0630\u0627 \u0627\u0644\u0625\u062c\u0631\u0627\u0621",
|
|
179
|
+
"success": "\u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629",
|
|
180
|
+
"inProgress": "\u062c\u0627\u0631\u064a \u062d\u0630\u0641 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629"
|
|
181
|
+
},
|
|
182
|
+
"rename": {
|
|
183
|
+
"title": "\u0625\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629",
|
|
184
|
+
"description": "\u0623\u062f\u062e\u0644 \u0627\u0633\u0645\u0627\u064b \u062c\u062f\u064a\u062f\u0627\u064b \u0644\u0647\u0630\u0647 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629",
|
|
185
|
+
"form": {
|
|
186
|
+
"name": {
|
|
187
|
+
"label": "\u0627\u0644\u0627\u0633\u0645",
|
|
188
|
+
"placeholder": "\u0623\u062f\u062e\u0644 \u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u062c\u062f\u064a\u062f"
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"success": "\u062a\u0645\u062a \u0625\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629!",
|
|
192
|
+
"inProgress": "\u062c\u0627\u0631\u064a \u0625\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629"
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"navigation": {
|
|
198
|
+
"header": {
|
|
199
|
+
"chat": "\u0645\u062d\u0627\u062f\u062b\u0629",
|
|
200
|
+
"readme": "\u0627\u0642\u0631\u0623\u0646\u064a",
|
|
201
|
+
"theme": {
|
|
202
|
+
"light": "\u0627\u0644\u0633\u0645\u0629 \u0627\u0644\u0641\u0627\u062a\u062d\u0629",
|
|
203
|
+
"dark": "\u0627\u0644\u0633\u0645\u0629 \u0627\u0644\u062f\u0627\u0643\u0646\u0629",
|
|
204
|
+
"system": "\u0645\u062a\u0627\u0628\u0639\u0629 \u0627\u0644\u0646\u0638\u0627\u0645"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
"newChat": {
|
|
208
|
+
"button": "\u0645\u062d\u0627\u062f\u062b\u0629 \u062c\u062f\u064a\u062f\u0629",
|
|
209
|
+
"dialog": {
|
|
210
|
+
"title": "\u0625\u0646\u0634\u0627\u0621 \u0645\u062d\u0627\u062f\u062b\u0629 \u062c\u062f\u064a\u062f\u0629",
|
|
211
|
+
"description": "\u0633\u064a\u0624\u062f\u064a \u0647\u0630\u0627 \u0625\u0644\u0649 \u0645\u0633\u062d \u0633\u062c\u0644 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629 \u0627\u0644\u062d\u0627\u0644\u064a. \u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0629\u061f",
|
|
212
|
+
"tooltip": "\u0645\u062d\u0627\u062f\u062b\u0629 \u062c\u062f\u064a\u062f\u0629"
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
"user": {
|
|
216
|
+
"menu": {
|
|
217
|
+
"settings": "\u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a",
|
|
218
|
+
"settingsKey": "S",
|
|
219
|
+
"apiKeys": "\u0645\u0641\u0627\u062a\u064a\u062d API",
|
|
220
|
+
"logout": "\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062e\u0631\u0648\u062c"
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
"apiKeys": {
|
|
225
|
+
"title": "\u0645\u0641\u0627\u062a\u064a\u062d API \u0627\u0644\u0645\u0637\u0644\u0648\u0628\u0629",
|
|
226
|
+
"description": "\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0647\u0630\u0627 \u0627\u0644\u062a\u0637\u0628\u064a\u0642\u060c \u0645\u0641\u0627\u062a\u064a\u062d API \u0627\u0644\u062a\u0627\u0644\u064a\u0629 \u0645\u0637\u0644\u0648\u0628\u0629. \u064a\u062a\u0645 \u062a\u062e\u0632\u064a\u0646 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d \u0641\u064a \u0627\u0644\u062a\u062e\u0632\u064a\u0646 \u0627\u0644\u0645\u062d\u0644\u064a \u0644\u062c\u0647\u0627\u0632\u0643.",
|
|
227
|
+
"success": {
|
|
228
|
+
"saved": "\u062a\u0645 \u0627\u0644\u062d\u0641\u0638 \u0628\u0646\u062c\u0627\u062d"
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"alerts": {
|
|
232
|
+
"info": "\u0645\u0639\u0644\u0648\u0645\u0627\u062a",
|
|
233
|
+
"note": "\u0645\u0644\u0627\u062d\u0638\u0629",
|
|
234
|
+
"tip": "\u0646\u0635\u064a\u062d\u0629",
|
|
235
|
+
"important": "\u0645\u0647\u0645",
|
|
236
|
+
"warning": "\u062a\u062d\u0630\u064a\u0631",
|
|
237
|
+
"caution": "\u062a\u0646\u0628\u064a\u0647",
|
|
238
|
+
"debug": "\u062a\u0635\u062d\u064a\u062d",
|
|
239
|
+
"example": "\u0645\u062b\u0627\u0644",
|
|
240
|
+
"success": "\u0646\u062c\u0627\u062d",
|
|
241
|
+
"help": "\u0645\u0633\u0627\u0639\u062f\u0629",
|
|
242
|
+
"idea": "\u0641\u0643\u0631\u0629",
|
|
243
|
+
"pending": "\u0642\u064a\u062f \u0627\u0644\u0627\u0646\u062a\u0638\u0627\u0631",
|
|
244
|
+
"security": "\u0623\u0645\u0627\u0646",
|
|
245
|
+
"beta": "\u062a\u062c\u0631\u064a\u0628\u064a",
|
|
246
|
+
"best-practice": "\u0623\u0641\u0636\u0644 \u0645\u0645\u0627\u0631\u0633\u0629"
|
|
247
|
+
},
|
|
248
|
+
"components": {
|
|
249
|
+
"MultiSelectInput": {
|
|
250
|
+
"placeholder": "\u0627\u062e\u062a\u0631..."
|
|
251
|
+
},
|
|
252
|
+
"DatePickerInput": {
|
|
253
|
+
"placeholder": {
|
|
254
|
+
"single": "\u0627\u062e\u062a\u0631 \u062a\u0627\u0631\u064a\u062e\u0627\u064b",
|
|
255
|
+
"range": "\u0627\u062e\u062a\u0631 \u0646\u0637\u0627\u0642\u0627\u064b \u0645\u0646 \u0627\u0644\u062a\u0648\u0627\u0631\u064a\u062e"
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
}
|