Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
27912138
Commit
27912138
authored
Oct 23, 2018
by
BaiJiangJie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 更新storage翻译
parent
284e8be4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
18 deletions
+20
-18
api.py
apps/common/api.py
+1
-5
command_storage_create.html
apps/common/templates/common/command_storage_create.html
+1
-1
replay_storage_create.html
apps/common/templates/common/replay_storage_create.html
+18
-12
django.mo
apps/locale/zh/LC_MESSAGES/django.mo
+0
-0
django.po
apps/locale/zh/LC_MESSAGES/django.po
+0
-0
No files found.
apps/common/api.py
View file @
27912138
...
...
@@ -116,11 +116,7 @@ class ReplayStorageCreateAPI(APIView):
storage
=
jms_storage
.
get_object_storage
(
storage_data
)
target
=
'tests.py'
src
=
os
.
path
.
join
(
settings
.
BASE_DIR
,
'common'
,
target
)
ok
,
msg
=
storage
.
upload
(
src
=
src
,
target
=
target
)
if
not
ok
:
return
False
storage
.
delete
(
path
=
target
)
return
True
return
storage
.
is_valid
(
src
,
target
)
class
ReplayStorageDeleteAPI
(
APIView
):
...
...
apps/common/templates/common/command_storage_create.html
View file @
27912138
...
...
@@ -50,7 +50,7 @@
<label
class=
"col-md-2 control-label"
for=
"id_hosts"
>
{% trans "Hosts" %}
</label>
<div
class=
"col-md-9"
>
<input
id=
"id_hosts"
class=
"form-control"
type=
"text"
name=
"HOSTS"
value=
""
>
<div
class=
"help-block"
>
如果有多台主机,请使用逗号 ( , ) 进行分割
</div>
<div
class=
"help-block"
>
{% trans 'Tips: If there are multiple hosts, separate them with a comma (,)' %}
</div>
</div>
</div>
...
...
apps/common/templates/common/replay_storage_create.html
View file @
27912138
...
...
@@ -45,7 +45,6 @@
<div
class=
"col-md-9"
>
<input
id=
"id_name"
class=
"form-control"
type=
"text"
name=
"NAME"
value=
""
>
<div
class=
"help-block"
>
* required
</div>
{#
<div
id=
"id_error"
style=
"display: none; color: red;"
>
{% trans 'Error: Account invalid' %}
</div>
#}
<div
id=
"id_error"
style=
"color: red;"
></div>
</div>
</div>
...
...
@@ -53,77 +52,84 @@
<div
class=
"form-group"
style=
"display: none;"
>
<label
class=
"col-md-2 control-label"
for=
"id_host"
>
{% trans "Host" %}
</label>
<div
class=
"col-md-9"
>
<input
id=
"id_host"
class=
"form-control"
type=
"text"
name=
"HOSTNAME"
value=
""
>
<input
id=
"id_host"
class=
"form-control"
type=
"text"
name=
"HOSTNAME"
value=
""
placeholder=
"Host"
>
</div>
</div>
<div
class=
"form-group"
style=
"display: none;"
>
<label
class=
"col-md-2 control-label"
for=
"id_port"
>
{% trans "Port" %}
</label>
<div
class=
"col-md-9"
>
<input
id=
"id_port"
class=
"form-control"
type=
"text"
name=
"PORT"
value=
""
>
<input
id=
"id_port"
class=
"form-control"
type=
"text"
name=
"PORT"
value=
""
placeholder=
"7480"
>
</div>
</div>
<div
class=
"form-group"
style=
"display: none;"
>
<label
class=
"col-md-2 control-label"
for=
"id_bucket"
>
{% trans "Bucket" %}
</label>
<div
class=
"col-md-9"
>
<input
id=
"id_bucket"
class=
"form-control"
type=
"text"
name=
"BUCKET"
value=
""
>
<input
id=
"id_bucket"
class=
"form-control"
type=
"text"
name=
"BUCKET"
value=
""
placeholder=
"Bucket"
>
</div>
</div>
<div
class=
"form-group"
style=
"display: none;"
>
<label
class=
"col-md-2 control-label"
for=
"id_access_key"
>
{% trans "Access key" %}
</label>
<div
class=
"col-md-9"
>
<input
id=
"id_access_key"
class=
"form-control"
type=
"text"
name=
"ACCESS_KEY"
value=
""
>
<input
id=
"id_access_key"
class=
"form-control"
type=
"text"
name=
"ACCESS_KEY"
value=
""
placeholder=
"Access key"
>
</div>
</div>
<div
class=
"form-group"
style=
"display: none;"
>
<label
class=
"col-md-2 control-label"
for=
"id_secret_key"
>
{% trans "Secret key" %}
</label>
<div
class=
"col-md-9"
>
<input
id=
"id_secret_key"
class=
"form-control"
type=
"text"
name=
"SECRET_KEY"
value=
""
>
<input
id=
"id_secret_key"
class=
"form-control"
type=
"text"
name=
"SECRET_KEY"
value=
""
,
placeholder=
"Secret key"
>
</div>
</div>
<div
class=
"form-group"
style=
"display: none;"
>
<label
class=
"col-md-2 control-label"
for=
"id_container_name"
>
{% trans "Container name" %}
</label>
<div
class=
"col-md-9"
>
<input
id=
"id_container_name"
class=
"form-control"
type=
"text"
name=
"CONTAINER_NAME"
value=
""
>
<input
id=
"id_container_name"
class=
"form-control"
type=
"text"
name=
"CONTAINER_NAME"
value=
""
placeholder=
"Container"
>
</div>
</div>
<div
class=
"form-group"
style=
"display: none;"
>
<label
class=
"col-md-2 control-label"
for=
"id_account_name"
>
{% trans "Account name" %}
</label>
<div
class=
"col-md-9"
>
<input
id=
"id_account_name"
class=
"form-control"
type=
"text"
name=
"ACCOUNT_NAME"
value=
""
>
<input
id=
"id_account_name"
class=
"form-control"
type=
"text"
name=
"ACCOUNT_NAME"
value=
""
placeholder=
"Account name"
>
</div>
</div>
<div
class=
"form-group"
style=
"display: none;"
>
<label
class=
"col-md-2 control-label"
for=
"id_account_key"
>
{% trans "Account key" %}
</label>
<div
class=
"col-md-9"
>
<input
id=
"id_account_key"
class=
"form-control"
type=
"text"
name=
"ACCOUNT_KEY"
value=
""
>
<input
id=
"id_account_key"
class=
"form-control"
type=
"text"
name=
"ACCOUNT_KEY"
value=
""
placeholder=
"Account key"
>
</div>
</div>
<div
class=
"form-group"
style=
"display: none;"
>
<label
class=
"col-md-2 control-label"
for=
"id_endpoint"
>
{% trans "Endpoint" %}
</label>
<div
class=
"col-md-9"
>
<input
id=
"id_endpoint"
class=
"form-control"
type=
"text"
name=
"ENDPOINT"
value=
""
>
<input
id=
"id_endpoint"
class=
"form-control"
type=
"text"
name=
"ENDPOINT"
value=
""
placeholder=
"Endpoint"
>
</div>
</div>
<div
class=
"form-group"
style=
"display: none;"
>
<label
class=
"col-md-2 control-label"
for=
"id_endpoint_suffix"
>
{% trans "Endpoint suffix" %}
</label>
{#
<div
class=
"col-md-9"
>
#}
{#
<input
id=
"id_endpoint_suffix"
class=
"form-control"
type=
"text"
name=
"ENDPOINT_SUFFIX"
value=
""
>
#}
{#
<div
class=
"help-block"
>
{% trans '' %}
</div>
#}
{#
</div>
#}
<div
class=
"col-md-9"
>
<input
id=
"id_endpoint_suffix"
class=
"form-control"
type=
"text"
name=
"ENDPOINT_SUFFIX"
value=
""
>
<select
id=
"id_endpoint_suffix"
name=
"ENDPOINT_SUFFIX"
class=
"endpoint-suffix-selector form-control"
>
<option
value=
"core.chinacloudapi.cn"
selected=
"selected"
>
core.chinacloudapi.cn
</option>
<option
value=
"core.windows.net"
>
core.windows.net
</option>
</select>
</div>
</div>
<div
class=
"form-group"
style=
"display: none;"
>
<label
class=
"col-md-2 control-label"
for=
"id_region"
>
{% trans "Region" %}
</label>
<div
class=
"col-md-9"
>
<input
id=
"id_region"
class=
"form-control"
type=
"text"
name=
"REGION"
value=
""
>
<input
id=
"id_region"
class=
"form-control"
type=
"text"
name=
"REGION"
value=
""
placeholder=
""
>
</div>
</div>
...
...
apps/locale/zh/LC_MESSAGES/django.mo
View file @
27912138
No preview for this file type
apps/locale/zh/LC_MESSAGES/django.po
View file @
27912138
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment