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
220
Merge Requests
220
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
dcb092e6
Commit
dcb092e6
authored
Feb 01, 2006
by
Dries
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Patch
#46927
by markus/killes: added missing t() functions.
parent
f76ff3d4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
themes/bluemarine/page.tpl.php
themes/bluemarine/page.tpl.php
+2
-2
themes/chameleon/chameleon.theme
themes/chameleon/chameleon.theme
+1
-1
themes/pushbutton/page.tpl.php
themes/pushbutton/page.tpl.php
+3
-3
No files found.
themes/bluemarine/page.tpl.php
View file @
dcb092e6
...
...
@@ -13,8 +13,8 @@
<table
border=
"0"
cellpadding=
"0"
cellspacing=
"0"
id=
"header"
>
<tr>
<td
id=
"logo"
>
<?php
if
(
$logo
)
{
?>
<a
href=
"
<?php
print
$base_path
?>
"
title=
"
Home"
><img
src=
"
<?php
print
$logo
?>
"
alt=
"Home
"
/></a>
<?php
}
?>
<?php
if
(
$site_name
)
{
?>
<h1
class=
'site-name'
><a
href=
"
<?php
print
$base_path
?>
"
title=
"
Home
"
>
<?php
print
$site_name
?>
</a></h1>
<?php
}
?>
<?php
if
(
$logo
)
{
?>
<a
href=
"
<?php
print
$base_path
?>
"
title=
"
<?php
print
t
(
'Home'
)
?>
"
><img
src=
"
<?php
print
$logo
?>
"
alt=
"
<?php
print
t
(
'Home'
)
?>
"
/></a>
<?php
}
?>
<?php
if
(
$site_name
)
{
?>
<h1
class=
'site-name'
><a
href=
"
<?php
print
$base_path
?>
"
title=
"
<?php
print
t
(
'Home'
)
?>
"
>
<?php
print
$site_name
?>
</a></h1>
<?php
}
?>
<?php
if
(
$site_slogan
)
{
?>
<div
class=
'site-slogan'
>
<?php
print
$site_slogan
?>
</div>
<?php
}
?>
</td>
<td
id=
"menu"
>
...
...
themes/chameleon/chameleon.theme
View file @
dcb092e6
...
...
@@ -43,7 +43,7 @@ function chameleon_page($content) {
$output .= " <div id=\"header\">";
if ($logo = theme_get_setting('logo')) {
$output .= " <a href=\"$base_path\" title=\"
Home\"><img src=\"$logo\" alt=\"Home
\" /></a>";
$output .= " <a href=\"$base_path\" title=\"
". t('Home') ."\"><img src=\"$logo\" alt=\"". t('Home') ."
\" /></a>";
}
if (theme_get_setting('toggle_name')) {
$output .= " <h1 class=\"site-name title\">". l(variable_get('site_name', 'drupal'), ""). "</h1>";
...
...
themes/pushbutton/page.tpl.php
View file @
dcb092e6
...
...
@@ -9,19 +9,19 @@
<body
bgcolor=
"#ffffff"
>
<div
class=
"hide"
><a
href=
"#content"
title=
"
Skip navigation."
accesskey=
"2"
>
Skip navigation
</a>
.
</div>
<div
class=
"hide"
><a
href=
"#content"
title=
"
<?php
print
t
(
'Skip navigation'
)
?>
."
accesskey=
"2"
>
<?php
print
t
(
'Skip navigation'
)
?>
</a>
.
</div>
<table
id=
"primary-menu"
summary=
"Navigation elements."
border=
"0"
cellpadding=
"0"
cellspacing=
"0"
width=
"100%"
>
<tr>
<td
id=
"home"
width=
"10%"
>
<?php
if
(
$logo
)
:
?>
<a
href=
"
<?php
print
$base_path
?>
"
title=
"
Home"
><img
src=
"
<?php
print
(
$logo
)
?>
"
alt=
"Home"
width=
"144"
height=
"63
"
border=
"0"
/></a>
<a
href=
"
<?php
print
$base_path
?>
"
title=
"
<?php
print
t
(
'Home'
)
?>
"
><img
src=
"
<?php
print
(
$logo
)
?>
"
alt=
"
<?php
print
t
(
'Home'
)
?>
"
border=
"0"
/></a>
<?php
endif
;
?>
</td>
<td
id=
"site-info"
width=
"20%"
>
<?php
if
(
$site_name
)
:
?>
<div
class=
'site-name'
><a
href=
"
<?php
print
$base_path
?>
"
title=
"
Home
"
>
<?php
print
(
$site_name
)
?>
</a></div>
<div
class=
'site-name'
><a
href=
"
<?php
print
$base_path
?>
"
title=
"
<?php
print
t
(
'Home'
)
?>
"
>
<?php
print
(
$site_name
)
?>
</a></div>
<?php
endif
;
?>
<?php
if
(
$site_slogan
)
:
?>
<div
class=
'site-slogan'
>
<?php
print
(
$site_slogan
)
?>
</div>
...
...
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