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
71a69316
Commit
71a69316
authored
Aug 13, 2014
by
Dietmar Maurer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use gettext for 'none'
parent
eb9d4732
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
3 deletions
+4
-3
Utils.js
www/manager/Utils.js
+1
-0
AuthEdit.js
www/manager/dc/AuthEdit.js
+1
-1
CompressionSelector.js
www/manager/form/CompressionSelector.js
+1
-1
BootOrderEdit.js
www/manager/qemu/BootOrderEdit.js
+1
-1
No files found.
www/manager/Utils.js
View file @
71a69316
...
...
@@ -670,6 +670,7 @@ Ext.define('PVE.Utils', { statics: {
yesText
:
gettext
(
'
Yes
'
),
noText
:
gettext
(
'
No
'
),
noneText
:
gettext
(
'
none
'
),
errorText
:
gettext
(
'
Error
'
),
unknownText
:
gettext
(
'
Unknown
'
),
defaultText
:
gettext
(
'
Default
'
),
...
...
www/manager/dc/AuthEdit.js
View file @
71a69316
...
...
@@ -127,7 +127,7 @@ Ext.define('PVE.dc.AuthEdit', {
name
:
'
tfa
'
,
value
:
''
,
fieldLabel
:
gettext
(
'
TFA
'
),
data
:
[
[
''
,
'
none
'
],
[
'
oath
'
,
'
OATH
'
],
[
'
yubico
'
,
'
Yubico
'
]],
data
:
[
[
''
,
PVE
.
Utils
.
noneText
],
[
'
oath
'
,
'
OATH
'
],
[
'
yubico
'
,
'
Yubico
'
]],
listeners
:
{
change
:
function
(
f
,
value
)
{
if
(
!
me
.
rendered
)
{
...
...
www/manager/form/CompressionSelector.js
View file @
71a69316
...
...
@@ -6,7 +6,7 @@ Ext.define('PVE.form.CompressionSelector', {
var
me
=
this
;
me
.
data
=
[
[
''
,
gettext
(
'
none
'
)
],
[
''
,
PVE
.
Utils
.
noneText
],
[
'
lzo
'
,
'
LZO (
'
+
gettext
(
'
fast
'
)
+
'
)
'
],
[
'
gzip
'
,
'
GZIP (
'
+
gettext
(
'
good
'
)
+
'
)
'
]
];
...
...
www/manager/qemu/BootOrderEdit.js
View file @
71a69316
...
...
@@ -78,7 +78,7 @@ Ext.define('PVE.qemu.BootOrderPanel', {
//}
if
(
includeNone
)
{
list
.
push
([
''
,
'
none
'
]);
list
.
push
([
''
,
PVE
.
Utils
.
noneText
]);
}
return
list
;
...
...
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