Revision 1078
Added by Matthias over 15 years ago
sections.php | ||
---|---|---|
253 | 253 |
$template->set_var( |
254 | 254 |
'VAR_MOVE_UP_URL', |
255 | 255 |
'<a href="'.ADMIN_URL.'/pages/move_up.php?page_id='.$page_id.'&section_id='.$section['section_id'].'"> |
256 |
<img src="'.THEME_URL.'/images/up_16.png" alt="^" />
|
|
256 |
<img src="'.THEME_URL.'/images/up_16.png" alt="{TEXT_MOVE_UP}" />
|
|
257 | 257 |
</a>' ); |
258 | 258 |
} else { |
259 | 259 |
$template->set_var(array( |
... | ... | |
264 | 264 |
$template->set_var( |
265 | 265 |
'VAR_MOVE_DOWN_URL', |
266 | 266 |
'<a href="'.ADMIN_URL.'/pages/move_down.php?page_id='.$page_id.'&section_id='.$section['section_id'].'"> |
267 |
<img src="'.THEME_URL.'/images/down_16.png" alt="v" />
|
|
267 |
<img src="'.THEME_URL.'/images/down_16.png" alt="{TEXT_MOVE_DOWN}" />
|
|
268 | 268 |
</a>' ); |
269 | 269 |
} else { |
270 | 270 |
$template->set_var(array( |
... | ... | |
361 | 361 |
'TEXT_CALENDAR' => $TEXT['CALENDAR'], |
362 | 362 |
'TEXT_DELETE_DATE' => $TEXT['DELETE_DATE'], |
363 | 363 |
'TEXT_ADD_SECTION' => $TEXT['ADD_SECTION'], |
364 |
'TEXT_MOVE_UP' => $TEXT['MOVE_UP'], |
|
365 |
'TEXT_MOVE_DOWN' => $TEXT['MOVE_DOWN'] |
|
364 | 366 |
) ); |
365 | 367 |
$template->parse('main', 'main_block', false); |
366 | 368 |
$template->pparse('output', 'page'); |
Also available in: Unified diff
Replaced in some alt tags hardcoded signs with language variables (Thanks to argos)