Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pve-manager
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
Administrator
pve-manager
Commits
689b7411
Commit
689b7411
authored
Sep 08, 2014
by
Dietmar Maurer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
i18n: add missing gettext calls
parent
d4ed4a6b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
Config.js
www/manager/ceph/Config.js
+6
-6
Snapshot.js
www/manager/qemu/Snapshot.js
+2
-2
No files found.
www/manager/ceph/Config.js
View file @
689b7411
...
...
@@ -102,22 +102,22 @@ Ext.define('PVE.node.Ceph', {
items
:
[
{
xtype
:
'
pveNodeCephStatus
'
,
title
:
'
Status
'
,
title
:
gettext
(
'
Status
'
)
,
itemId
:
'
status
'
},
{
xtype
:
'
pveNodeCephConfig
'
,
title
:
'
Config
'
,
title
:
gettext
(
'
Config
'
)
,
itemId
:
'
config
'
},
{
xtype
:
'
pveNodeCephMonList
'
,
title
:
'
Monitor
'
,
title
:
gettext
(
'
Monitor
'
)
,
itemId
:
'
monlist
'
},
{
xtype
:
'
pveNodeCephDiskList
'
,
title
:
'
Disks
'
,
title
:
gettext
(
'
Disks
'
)
,
itemId
:
'
disklist
'
},
{
...
...
@@ -127,7 +127,7 @@ Ext.define('PVE.node.Ceph', {
},
{
xtype
:
'
pveNodeCephPoolList
'
,
title
:
'
Pools
'
,
title
:
gettext
(
'
Pools
'
)
,
itemId
:
'
pools
'
},
{
...
...
@@ -136,7 +136,7 @@ Ext.define('PVE.node.Ceph', {
itemId
:
'
crushmap
'
},
{
title
:
'
Log
'
,
title
:
gettext
(
'
Log
'
)
,
itemId
:
'
log
'
,
xtype
:
'
pveLogView
'
,
url
:
"
/api2/extjs/nodes/
"
+
nodename
+
"
/ceph/log
"
...
...
www/manager/qemu/Snapshot.js
View file @
689b7411
...
...
@@ -107,8 +107,8 @@ Ext.define('PVE.window.Snapshot', {
height
:
200
,
store
:
summarystore
,
columns
:
[
{
header
:
'
Key
'
,
width
:
150
,
dataIndex
:
'
key
'
},
{
header
:
'
Value
'
,
flex
:
1
,
dataIndex
:
'
value
'
}
{
header
:
gettext
(
'
Key
'
)
,
width
:
150
,
dataIndex
:
'
key
'
},
{
header
:
gettext
(
'
Value
'
)
,
flex
:
1
,
dataIndex
:
'
value
'
}
]
});
}
...
...
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