Added language variables.

New MySQL installations should work now. Other DB types, uninstalling and updating still have to be done.
Please note: this is still early development stage. Updates from other versions will fail! Only new installations will work without mayor errors.
This commit is contained in:
Kevin
2008-10-04 20:57:55 +00:00
parent 85e9ae633b
commit 9c1bf92d0a
3 changed files with 38 additions and 8 deletions

View File

@@ -107,19 +107,27 @@
<tbody>
<tr>
<td>{ICON_EDIT}</td>
<td>Enable</td>
<td>{L_EDIT}</td>
</tr>
<tr>
<td>{ICON_DELETE}</td>
<td>Disable</td>
<td>{L_DELETE}</td>
</tr>
<tr>
<td>{ICON_MOVE_UP}</td>
<td>Move Up</td>
<td>{L_MOVE_UP}</td>
</tr>
<tr>
<td>{ICON_MOVE_DOWN}</td>
<td>Move Down</td>
<td>{L_MOVE_DOWN}</td>
</tr>
<tr>
<td>{ICON_MOVE_LEFT}</td>
<td>{L_MOVE_LEFT}</td>
</tr>
<tr>
<td>{ICON_MOVE_RIGHT}</td>
<td>{L_MOVE_RIGHT}</td>
</tr>
</tbody>
</table>

View File

@@ -33,8 +33,19 @@ if (empty($lang) || !is_array($lang))
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
$lang = array_merge($lang, array(
'MOVE_LEFT' => 'Move left',
'MOVE_RIGHT' => 'Move right',
'ACP_PALLET_LAYOUT' => 'Block Verwaltung',
'TITLE' => 'Block Verwaltung',
'TITLE_EXPLAIN' => 'Hier kannst Du deine Blöcke verwalten, verschieben, hinzufügen und löschen.',
'PALLET_LAYOUT' => 'Block Anordnung',
'COLUMN_LEFT' => 'Linke Spalte',
'COLUMN_CENTER' => 'Mittlere Spalte',
'COLUMN_RIGHT' => 'Rechte Spalte',
'PALLET_KEY' => 'Legende',
'KEY' => 'Funktion',
'ENABLE' => 'Aktivieren',
'DISABLE' => 'Deaktivieren',
'MOVE_LEFT' => 'Nach links',
'MOVE_RIGHT' => 'Nach rechts',
));
?>

View File

@@ -33,8 +33,19 @@ if (empty($lang) || !is_array($lang))
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
$lang = array_merge($lang, array(
'MOVE_LEFT' => 'Move left',
'MOVE_RIGHT' => 'Move right',
'ACP_PALLET_LAYOUT' => 'Block management',
'TITLE' => 'Block management',
'TITLE_EXPLAIN' => 'You can maintain your blocks here: edit, add, move and delete.',
'PALLET_LAYOUT' => 'Block layout',
'COLUMN_LEFT' => 'Left column',
'COLUMN_CENTER' => 'Center column',
'COLUMN_RIGHT' => 'Right column',
'PALLET_KEY' => 'Caption',
'KEY' => 'Function',
'ENABLE' => 'Edit',
'DISABLE' => 'Disable',
'MOVE_LEFT' => 'Move left',
'MOVE_RIGHT' => 'Move right',
));
?>