Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
306
Merge Requests
306
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
project
drupal
Commits
b38632b5
Commit
b38632b5
authored
Jul 23, 2014
by
alexpott
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue
#2287031
by lokeoke | hass: Change lcase translatable strings to ucfirst.
parent
ceb595d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
core/modules/update/update.report.inc
core/modules/update/update.report.inc
+4
-4
No files found.
core/modules/update/update.report.inc
View file @
b38632b5
...
...
@@ -53,28 +53,28 @@ function theme_update_report($variables) {
case
UPDATE_CURRENT
:
$class
=
'ok'
;
$uri
=
'core/misc/icons/73b355/check.png'
;
$text
=
t
(
'
o
k'
);
$text
=
t
(
'
O
k'
);
break
;
case
UPDATE_UNKNOWN
:
case
UPDATE_FETCH_PENDING
:
case
UPDATE_NOT_FETCHED
:
$class
=
'unknown'
;
$uri
=
'core/misc/icons/e29700/warning.png'
;
$text
=
t
(
'
w
arning'
);
$text
=
t
(
'
W
arning'
);
break
;
case
UPDATE_NOT_SECURE
:
case
UPDATE_REVOKED
:
case
UPDATE_NOT_SUPPORTED
:
$class
=
'error'
;
$uri
=
'core/misc/icons/ea2800/error.png'
;
$text
=
t
(
'
e
rror'
);
$text
=
t
(
'
E
rror'
);
break
;
case
UPDATE_NOT_CHECKED
:
case
UPDATE_NOT_CURRENT
:
default
:
$class
=
'warning'
;
$uri
=
'core/misc/icons/e29700/warning.png'
;
$text
=
t
(
'
w
arning'
);
$text
=
t
(
'
W
arning'
);
break
;
}
...
...
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