|
From: OryNider <ory...@us...> - 2007-06-13 18:47:26
|
Update of /cvsroot/mxbb/mx_smartor/language/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26675/language/lang_english Modified Files: lang_admin.php lang_main_album.php Log Message: A new welcome block has been added thta will display random pictures from the smartor personal gallery or the avatar picture if personal gallery has not created. Index: lang_main_album.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/language/lang_english/lang_main_album.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** lang_main_album.php 7 Jun 2007 20:13:35 -0000 1.7 --- lang_main_album.php 13 Jun 2007 18:46:44 -0000 1.8 *************** *** 297,299 **** --- 297,313 ---- $lang['No_Personal_Category_admin'] = 'You are not allowed to manage your personal gallery categories'; + + // + // Welcome + // + $lang['Welcome'] = "Welcome"; + $lang['Welcome_User'] = "Welcome, %s !"; + $lang['Search_at'] = "Search at"; + $lang['Advanced_search'] = "Advanced Search"; + $lang['Search_unread'] = "View unread posts"; + $lang['Search_self_topics'] = "Topics you've started"; + $lang['Search_self_posts'] = "View all your posts"; + $lang['Posts_since_last_visit'] = "Posts since last visit"; + $lang['View_latest'] = "View latest"; + ?> \ No newline at end of file Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/language/lang_english/lang_admin.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** lang_admin.php 7 Jun 2007 20:13:35 -0000 1.5 --- lang_admin.php 13 Jun 2007 18:46:44 -0000 1.6 *************** *** 51,54 **** --- 51,69 ---- $lang['override_yes'] = 'Use Block Settings'; $lang['override_no'] = 'Use fixed mappings (see below)'; + + // Welcome block + $lang['Welcome_Msg'] = "<b>Welcome Message:</b>"; + $lang['Welcome_Msginfo'] = "This message will be visible for all users."; + $lang['Register_Msg'] = "<b>Register Message:</b>"; + $lang['Register_Msginfo'] = "This message will only be visible for anonymous users to encourage them to register.<br />Tip: Use <b>%s</b> twice to enclose the string you want as a link to register."; + $lang['Vertical_Layout'] = "<b>Vertical Layout:</b>"; + $lang['Vertical_Layoutinfo'] = "Select if you wish to display this block with a <b>Vertical</b> or <b>Horizontal</b> layout."; + $lang['View_JumpTo'] = "<b>View JumpTo:</b>"; + $lang['View_JumpToinfo'] = "Select if you wish to display a <b>JumpToForum</b> box.<br /><u>Note:</u> Disable this feature if you use <b>Vertical layout</b>. Probably, it will make your block wider than the page column where you place this block. But, it could be useful, if you select <b>Horizontal layout</b>."; + $lang['Default_Avatar'] = "<b>Default Avatar:</b>"; + $lang['Default_Avatarinfo'] = "Image to be used as default welcome avatar. Will be shown when logged in user has no avatar.<br /><u>Note:</u> Relative path for this image is \"modules/mx_tinies/avatars\"."; + $lang['View_PostCount'] = "<b>View Post Count:</b>"; + $lang['View_PostCountinfo'] = "Specify if you wish to display the post count next to <u>View posts since last visit</u> and <u>View unread posts</u> links, shown when a user is logged in."; + // // That's all Folks! |