Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 1081)
+++ trunk/CHANGELOG	(revision 1082)
@@ -12,6 +12,8 @@
 
 ------------------------------------- 2.8.0 -------------------------------------
 18-July 2009 Matthias Gallas
++	Added multilnaguage support to media section of argos_theme (Thanks to Argos)
+#	Fixed smaller display issue in argos_theme (Thanks to Argos)
 +	Added more meta tags to backend themes
 !	Updated Argos_theme (Thanks to Argos and Luisehahne)
 #	Again added some &amp; to news and form to get more valid output (Thanks to Luisehahne)
Index: trunk/wb/admin/media/setparameter.php
===================================================================
--- trunk/wb/admin/media/setparameter.php	(revision 1081)
+++ trunk/wb/admin/media/setparameter.php	(revision 1082)
@@ -29,6 +29,15 @@
 // Include the WB functions file
 require_once(WB_PATH.'/framework/functions.php');
 
+// check if theme language file exists for the language set by the user (e.g. DE, EN)
+if(!file_exists(THEME_PATH .'/languages/'.LANGUAGE .'.php')) {
+	// no theme language file exists for the language set by the user, include default theme language file EN.php
+	require_once(THEME_PATH .'/languages/EN.php');
+} else {
+	// a theme language file exists for the language defined by the user, load it
+	require_once(THEME_PATH .'/languages/'.LANGUAGE .'.php');
+}
+
 //Save post vars to the parameters file
 if ( !is_null($admin->get_post_escaped("save"))) {
 	//Check for existing settings entry, if not existing, create a record first!
@@ -68,7 +77,7 @@
 	$template->set_var('DISPLAY_ADMIN', 'hide');
 }
 $template->set_var(array( 
-					'TEXT_HEADER' => 'Set maximum imagesize for a folder</b><br><small><i>(resizing on new uploads only)</i></small>',
+					'TEXT_HEADER' => $TEXT['TEXT_HEADER'],
 					'SAVE_TEXT' => $TEXT['SAVE'],
 					'BACK' => $TEXT['BACK']
 				)
@@ -105,9 +114,9 @@
 								'CUR_WIDTH' => $cur_width,
 								'CUR_HEIGHT' => $cur_height,
 								'SETTINGS' => $TEXT['SETTINGS'],
-								'ADMIN_ONLY' => 'Settings for administrator only',
+								'ADMIN_ONLY' => $TEXT['ADMIN_ONLY'],
 								'ADMIN_ONLY_SELECTED' => $pathsettings['global']['admin_only'],
-								'NO_SHOW_THUMBS' => 'Hide thumbnails',
+								'NO_SHOW_THUMBS' => $TEXT['NO_SHOW_THUMBS'],
 								'NO_SHOW_THUMBS_SELECTED' => $pathsettings['global']['show_thumbs'],
 								'ROW_BG_COLOR' => $row_bg_color
 							)
Index: trunk/wb/admin/media/browse.php
===================================================================
--- trunk/wb/admin/media/browse.php	(revision 1081)
+++ trunk/wb/admin/media/browse.php	(revision 1082)
@@ -32,6 +32,15 @@
 require_once(WB_PATH.'/framework/functions.php');
 include ('parameters.php');
 
+// check if theme language file exists for the language set by the user (e.g. DE, EN)
+if(!file_exists(THEME_PATH .'/languages/'.LANGUAGE .'.php')) {
+	// no theme language file exists for the language set by the user, include default theme language file EN.php
+	require_once(THEME_PATH .'/languages/EN.php');
+} else {
+	// a theme language file exists for the language defined by the user, load it
+	require_once(THEME_PATH .'/languages/'.LANGUAGE .'.php');
+}
+
 // Byte convert for filesize
 function byte_convert($bytes) {
 	$symbol = array(' bytes', ' KB', ' MB', ' GB', ' TB');
Index: trunk/wb/templates/argos_theme/theme.css
===================================================================
--- trunk/wb/templates/argos_theme/theme.css	(revision 1081)
+++ trunk/wb/templates/argos_theme/theme.css	(revision 1082)
@@ -4,7 +4,7 @@
 body {background:#f9f9f9 url(images/background.jpg) 0 0 repeat-x;margin:0;text-align:center;}
 img {	border: 0px;}
 
-#admin_header{text-align:center;width:900px;height:105px;margin:0 auto;padding:0;*padding-top:10px;}
+#admin_header {text-align:center;width:900px;height:105px;margin:0 auto;padding:10px 0 0 0;}
 #admin_header a#website_title {display:block;text-align:left;font-size:14px;font-weight:bold;color:#fff;text-transform:uppercase;text-decoration:none;}
 #topmenu {float:right;text-align:right;color:#fff;}
 #topmenu a {font-size:11px;color:#fff;text-decoration:underline;margin:0 5px;}
