https://www.icyphoenix.com/viewtopic.php?f=1&t=2830 ----------------------------------- Mighty Gorgon Thu 20 Sep, 2007 01:04 Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- Hi all, after some months of development I have decided to release a new beta to test the new features included in Icy Phoenix. As I promised, no new "external" mods have been installed (only a couple of already included have been updated), only new things coded by me and some interesting phpBB 3 features are to be considered in the "what's new". Here is a small list... [size=12][color=#ff5500][b]What's New[/b][/color][/size] [list][*][b]Groups system[/b]: the old color group mod has been dropped and a new system has been recoded to make groups management close to phpBB 3 way. [*][b]CMS features[/b]: now it is possible to assign blocks on single pages, not only as global blocks, but as specific blocks. [*][b]Save as draft[/b]: it is now possible to save posts and PM as drafts. The function is similar to phpBB 3 one, but much more simpler and with less features. [*][b]Pages sessions[/b]: phpBB 3 has a much more flexible pages sessioning system, allowing better tracking of what users do. In Icy Phoenix I have partially replicated it, by modifying the way sessions work. [*][b]Actions logs[/b]: I have coded a small and simple logging system which stores on files all the actions performed by users which alter in some way the DB. The logs are difficult to read, so it is disabled by default and the switch to enable it is hidden. If someone is interested in I may show how to enable it... but I won't help in reading it, because it is tough for who doesn't know PHP, and how requests are made. [*][b]Extra stuff not enabled by default and not supported[/b]: since many of you requested integration of Cash and Activity, I have decided to integrate this in Icy Phoenix, and I will continue to keep them updated as the release is going on... but no support will be given with these extra features. [*][b]Templates[/b]: some small adjustments have been applied to the templating system to make it a bit more flexible and some new templates designed by me will be available with this release. [*][b]Extra debugging[/b]: phpBB 3 has a cool debugging feature which tells you the queries of each page and the time used for them. I've tried to enhance this feature a bit including some extra info and memory usage. This will be tremendously helpful for those webmasters who wants to understand the entity of Icy Phoenix charge and settings. Extra info about the usage of this feature, will follow. [*][b]Small fixes and adjustments[/b]: several small fixes and adjustments have been applied to the package. I don't have a full list of them, but you will notice some changes somewhere... I hope you will appreciate it. Just some of them: resend registration, remove cookies, album rss, new thumbnails functions. [*][b]Security fixes[/b]: unfortunately I've found during the dev phase some extra security holes which I have fixed the most risky in the available patch for 15b, but two of them which I was unsure, have been recoded differently to minimize infection risk.[/list] [size=12][color=#ff5500][b]Support[/b][/color][/size] Regarding the support for beta, I'll quote phpBB beta release statement: [quote="Acyd Burn"]During the beta phase a minimal level of support will be given. We will provide answers to general setup questions, configuration problems and support for determining common problems mostly related to bugs. We will not support modifications, custom code/style additions or any users using the beta packages within a live environment. For some support questions or bug reports we may ask you to re-install the beta, clean tables in the database, purge data or other actions which are not advised to do in a live environment. So please be aware that you are still on your own if you run the beta in such an environment. Beginning with the release candidates full support will be given.[/quote] As usual, no code changes will be released, and won't probably be released for any version in the future. This is because the package is quite huge and writing code changes requires much time: as I already said in the past, I prefer to focus my free time on developing the package instead of writing huge code changes that could be difficult to be applied. Trust me, in most cases it is quicker to replace old files with new ones and reapply eventually added mods (you should take note of the mods you have applied). My efforts will be dedicated to the upgrade procedures to allow you to upgrade your sites with the smallest unexpected issues. Anyway for final release, I'll try to provide a changed files package and a small template changes guide... or at least a list with the changed files for those who have modded their site or released templates. I'll try to give translators a list of changed files as well. [list][*][size=12][color=#ff5500][b]Overview[/b][/color][/size] [spoiler][url=docs/readme_english.html#overview]Readme[/spoiler] [*][size=12][color=#ff5500][b]Requirements[/b][/color][/size] [spoiler][url=docs/readme_english.html#requirements]Readme[/spoiler] [*][size=12][color=#ff5500][b]Fresh Installation[/b][/color][/size] [spoiler][url=docs/readme_english.html#fresh_installation]Readme[/spoiler] [*][size=12][color=#ff5500][b]Upgrade From Icy Phoenix 1.1.0.15[/b][/color][/size] [spoiler][url=docs/readme_english.html#upgrade_ip]Readme[/spoiler] [/list] [size=12][color=#ff5500][b]Lang changes provided by brandsrus[/b][/color][/size] [spoiler][code linenumbers="false"]NEW FILES language/lang_english/email/html/album_comment_notify.tpl language/lang_english/email/txt/album_comment_notify.tpl langauge/lang_english/lang_cash.php DELETED FILES language/lang_english/lang_color_groups.php FILE CHANGES ARE BELOW # #-----[ OPEN ]------------------------------------------ # language/lang_english/email/html/index.html # #-----[ FIND ]------------------------------------------ # # #-----[ AFTER, ADD ]------------------------------------ # # #-----[ OPEN ]------------------------------------------ # language/lang_english/email/txt/index.html # #-----[ FIND ]------------------------------------------ # # #-----[ AFTER, ADD ]------------------------------------ # # #-----[ OPEN ]------------------------------------------ # language/lang_english/email/index.html # #-----[ FIND ]------------------------------------------ # # #-----[ AFTER, ADD ]------------------------------------ # # #-----[ OPEN ]------------------------------------------ # language/lang_english/bbcb_mg.js # #-----[ FIND ]------------------------------------------ # s_spoil_help = 'Spoiler: [spoil]text[/spoil]'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # s_fade_help = 'Fade: [opacity]text[/opacity] or [opacity][img]http://image_url/[/img][/opacity]'; # #-----[ AFTER, ADD ]------------------------------------ # s_spoiler_help = 'Spoiler: [spoiler]text[/spoiler]'; s_cell_help = 'Cell: [cell]text[/cell]'; # #-----[ FIND ]------------------------------------------ # //var Spoiler = 0; # #-----[ REPLACE WITH]----------------------------------- # var Spoiler = 0; var Cell = 0; # #-----[ FIND ]------------------------------------------ # '[fade]','[/fade]', # #-----[ AFTER, ADD ]------------------------------------ # '[spoiler]','[/spoiler]', '[cell]','[/cell]', # #-----[ FIND ]------------------------------------------ # function highlightmetasearch() { document.post.message.select(); document.post.message.focus(); } function copymetasearch() { highlightmetasearch(); textRange = document.post.message.createTextRange(); textRange.execCommand("RemoveFormat"); textRange.execCommand("Copy"); // alert("Il messaggio è stato copiato negli appunti"); } # #-----[ REPLACE WITH]----------------------------------- # function copymetasearch() { document.post.message.select(); document.post.message.focus(); if ( (navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4) ) { textRange = document.post.message.createTextRange(); textRange.execCommand("RemoveFormat"); textRange.execCommand("Copy"); // alert("Text copied to clipboard"); } } # #-----[ FIND ]------------------------------------------ # function BBCjustify() # #-----[ BEFORE ADD ]------------------------------------ # function BBCspoiler() { var txtarea = document.post.message; if ((clientVer >= 4) && is_ie && is_win) { theSelection = document.selection.createRange().text; if (theSelection != '') { document.selection.createRange().text = "[spoiler]" + theSelection + "[/spoiler]"; document.post.message.focus(); return; } } else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0)) { mozInsert(txtarea, "[spoiler]", "[/spoiler]"); return; } if (Spoiler == 0) { ToAdd = "[spoiler]"; document.post.spoiler.src = bbcb_mg_img_path + "spoiler1.gif"; Spoiler = 1; } else { ToAdd = "[/spoiler]"; document.post.spoiler.src = bbcb_mg_img_path + "spoiler.gif"; Spoiler = 0; } PostWrite(ToAdd); } function BBCcell() { var txtarea = document.post.message; if ((clientVer >= 4) && is_ie && is_win) { theSelection = document.selection.createRange().text; if (theSelection != '') { document.selection.createRange().text = "[cell]" + theSelection + "[/cell]"; document.post.message.focus(); return; } } else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0)) { mozInsert(txtarea, "[cell]", "[/cell]"); return; } if (Cell == 0) { ToAdd = "[cell]"; document.post.cell.src = bbcb_mg_img_path + "cell1.gif"; Cell = 1; } else { ToAdd = "[/cell]"; document.post.cell.src = bbcb_mg_img_path + "cell.gif"; Cell = 0; } PostWrite(ToAdd); } # #-----[ OPEN ]------------------------------------------ # language/lang_english/db_generator.tpl # #-----[ FIND ]------------------------------------------ # $userdata = session_pagestart($user_ip, PAGE_INDEX); # #-----[ REPLACE WITH]----------------------------------- # $userdata = session_pagestart($user_ip); # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_admin.php # #-----[ FIND ]------------------------------------------ # $lang['Permissions List'] = 'Permission List'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Main_index'] = 'Forum Index'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Registered'] = 'Registered'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['Self'] = 'Self'; # #-----[ FIND ]------------------------------------------ # $lang['Forum_REG'] = 'REG'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['Forum_SELF'] = 'SELF'; # #-----[ FIND ]------------------------------------------ # $lang['Permissions'] = 'Permissions'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Board_disable'] = 'Disable board'; $lang['Board_disable_explain'] = 'This will make the board unavailable to users. Administrators are able to access the Administration Panel while the board is disabled.'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Board_disable'] = 'Disable site'; $lang['Board_disable_explain'] = 'This will make the site unavailable to users. Administrators are able to access the Administration Panel while the site is disabled.'; # #-----[ FIND ]------------------------------------------ # $lang['Edit'] = 'Edit'; $lang['Delete'] = 'Delete'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Install'] = 'Install'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Value'] = 'Value'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Ban'] = 'Ban User'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['board_disable_message'] = 'Disable the message by default for the deactivation of the forum.'; $lang['board_disable_message_texte'] = 'Message which will appear when the forum is deactivated'; # #-----[ REPLACE WITH]----------------------------------- # $lang['board_disable_message'] = 'Display a message for the deactivation of the site.'; $lang['board_disable_message_texte'] = 'Message which will appear when the site is deactivated'; # #-----[ FIND ]------------------------------------------ # $lang['Links'] ='Links Admin'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Account_active'] = 'active users'; $lang['Account_inactive'] = 'inactive users'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Account_active'] = 'Active Users'; $lang['Account_inactive'] = 'Inactive Users'; # #-----[ FIND ]------------------------------------------ # $lang['Account_inactive'] = 'Inactive users'; $lang['Account_active'] = 'Active users'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Delete_link'] = 'Tick box to delete this autolink.'; # #-----[ REPLACE WITH]----------------------------------- # //$lang['Delete_link'] = 'Tick box to delete this autolink.'; # #-----[ FIND ]------------------------------------------ # $lang['auth_view_download'] = 'Download'; # #-----[ REPLACE WITH]----------------------------------- # $lang['auth_view_download'] = 'Downloads'; # #-----[ FIND ]------------------------------------------ # $lang['Post_count_explain'] = 'Here you can edit the post count of this user.'; $lang['Modify_post_counts'] = 'Modify User's Post Count'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Forum_Wordgraph'] = 'Forum Wordgraph'; $lang['Forum_Wordgraph_Explain'] = 'This feature will enable a forum based wordgraph at bottom of each forum'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Forum_Wordgraph'] = 'Forum Tags'; $lang['Forum_Wordgraph_Explain'] = 'This feature will enable a forum based tags table at bottom of each forum'; # #-----[ FIND ]------------------------------------------ # $lang['Sort_order'] = 'Order'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['GD_Version'] = 'Version:'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['All_Forums'] = 'All Forums'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Delete'] = 'Delete'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Nivisec_Com'] = 'Nivisec.com'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Delete'] = 'Delete'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Version'] = 'Version'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Affected_Rows'] = '%d known entries removed
'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Links'] = 'Links Manage'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Links'] = 'Links Management'; # #-----[ FIND ]------------------------------------------ # $lang['Preview'] = 'Preview Logo'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Preview'] = 'Preview'; # #-----[ FIND ]------------------------------------------ # $lang['MG_SW_REFERRERS_Explain'] = 'This option allows to disable Referrers feature (this saves SQL space).'; # #-----[ AFTER, ADD ]------------------------------------ # // Icy Phoenix - BUILD 016 $lang['group_rank'] = 'Rank'; $lang['group_color'] = 'Color'; $lang['group_legend'] = 'Show in legend'; $lang['group_legend_short'] = 'Legend'; $lang['group_main'] = 'Main group'; $lang['group_members'] = 'Members'; $lang['group_update'] = 'Apply Changes'; /* lang_color_groups.php - BEGIN */ $lang['Color_Groups'] = 'Color Groups'; $lang['Manage_Color_Groups'] = 'Manage Color Groups'; $lang['Add_New_Group'] = 'Add New Group'; $lang['Color'] = 'Color'; $lang['User_Count'] = 'User Count'; $lang['Color_List'] = 'Color Name List:'; $lang['Group_Name'] = 'Group Name'; $lang['Define_Users'] = 'Define Users'; $lang['Color_Group_User_List'] = 'Color Group User List'; $lang['Options'] = 'Options'; $lang['Example'] = 'Example'; $lang['User_List'] = 'Full User List'; $lang['Unassigned_User_List'] = 'Users With No Group'; $lang['Assigned_User_List'] = 'Users With A Group'; $lang['Add_Arrow'] = 'Add To List'; $lang['Update'] = 'Update'; $lang['Updated_Group'] = 'Updated Group User List
'; $lang['Deleted_Group'] = 'Deleted Specified Group. All users that were in it have been reset to no group membership
'; $lang['Hide'] = 'Hide'; $lang['Un-hide'] = 'Un-hide'; $lang['Move_Up'] = 'Move Up'; $lang['Move_Down'] = 'Move Down'; $lang['Group_Hidden'] = 'Group Hidden
'; $lang['Group_Unhidden'] = 'Group Un-hidden
'; $lang['Groups_Updated'] = 'Group changes have been updated
'; $lang['Moved_Group'] = 'Moved group order
'; //Descriptions $lang['Manage_Color_Groups_Desc'] = 'Update groups, add a new group, or manage the users assigned to a particular color group.
Groups that you choose to "Hide" will not show up on the main index list.'; $lang['Color_Group_User_List_Desc'] = 'Add or remove users to a specified color group.'; //Errors $lang['Error_Group_Table'] = 'Error querying the color groups table.'; $lang['Error_Font_Color'] = 'Warning: The specified font color appears to be invalid!'; $lang['Color_Ok'] = 'The specified font color appears to be valid.'; $lang['No_Groups_Exist'] = 'No groups exist.'; $lang['Error_Users_Table'] = 'Error querying the users table.'; $lang['Invalid_Group_Add'] = '%s is an invalid or duplicate group name.
'; //Dynamic $lang['Group_Updated'] = 'Updated Color Group %s
'; $lang['Editing_Group'] = 'Currently editing the user list for %s.'; $lang['Invalid_User'] = '%s is an invalid username, skipping
'; $lang['Invalid_Order_Num'] = '%s contained an invalid order number, but it has been fixed. Please try your move up/down again.'; //New for 1.2.0 $lang['Users_List'] = 'Users List'; $lang['Groups_List'] = 'User Groups List'; $lang['List_Info'] = 'Notes: '; /* lang_color_groups.php - END */ // Icy Phoenix - BUILD 018 $lang['MG_SW_ShowSocialBookmarks'] = 'Social Bookmarks'; $lang['MG_SW_ShowSocialBookmarks_Explain'] = 'Show Social Bookmarks section when viewing topics'; $lang['MG_SW_ShowForumOnline'] = 'Show Users Online In Forums'; $lang['MG_SW_ShowForumOnline_Explain'] = 'This will enable online users counter for each forum on index'; // Icy Phoenix - BUILD 020 $lang['MG_SW_AllowDrafts'] = 'Allow Drafts'; $lang['MG_SW_AllowDrafts_Explain'] = 'Allow users to save posts as drafts'; # #-----[ FIND ]------------------------------------------ # $lang['110_Manage'] = 'Manage'; // admin_users.php # #-----[ AFTER, ADD ]------------------------------------ # $lang['113_Permissions_Users'] = 'Permissions'; // admin_ug_auth.php $lang['116_CMS_Permissions_Users'] = 'CMS Permissions'; // admin_cms_auth.php # #-----[ FIND ]------------------------------------------ # $lang['230_Permissions_Users'] = 'Permissions'; // admin_ug_auth.php $lang['235_CMS_Permissions_Users'] = 'CMS Permissions'; // admin_cms_auth.php # #-----[ REPLACE WITH]----------------------------------- # # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_album_admin.php # #-----[ FIND ]------------------------------------------ # $lang['Child_Category_Moved'] = 'Selected category had child categories. The child categories got moved to the %s category.'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Child_Category_Moved'] = 'Selected category had child categories. The child categories got moved to the %s category.'; # #-----[ FIND ]------------------------------------------ # $lang['Watermark_explain'] = 'You can specify the watermark file to be used in this category. Insert the watermark file path respect to your phpBB root (i.e.: album_mod/mark_fap.png). The watermark will be applied only if Watermark feature is on.'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['Cat_Pics_Synchronize'] = 'Sync Pics Counter'; $lang['Cat_Pics_Synchronized'] = 'All pictures counter have been synchronized.'; # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_album_main.php # #-----[ FIND ]------------------------------------------ # $lang['Upload_Pics'] = 'Upload Pics'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['JUpload_Pic'] = 'Upload Multiple Pictures with Jupload'; # #-----[ FIND ]------------------------------------------ # $lang['Approved'] = 'Approved'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['Copy'] = 'Copy'; # #-----[ FIND ]------------------------------------------ # ?> # #-----[ BEFORE ADD ]------------------------------------ # // Pic watch $lang['No_longer_watching_comment'] = 'You are no longer watching this pic for comments'; $lang['Watching_comment'] = 'You are now watching this pic for comments'; $lang['Pic_comment_notification'] = 'Album Comment Notification'; $lang['Pic_comment_watch_checkbox'] = 'Check box to be notified on pic comments:'; $lang['Watch_pic'] = 'Watch this pic for comments'; $lang['Unwatch_pic'] = 'Stop watching this pic for comments'; $lang['Click_return_pic'] = 'Click %shere%s to return to pic'; $lang['Pic_RDF'] = 'RSS Feed 1.0'; $lang['Pic_RSS'] = 'RSS Feed 2.0'; # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_bbcb_mg.php # #-----[ FIND ]------------------------------------------ # $lang['bbcb_mg_fade'] = 'Transparency'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['bbcb_mg_spoiler'] = 'Spoiler'; $lang['bbcb_mg_cell'] = 'Cell'; # #-----[ FIND ]------------------------------------------ # $lang['s_spoil_help'] = 'Spoiler: [spoil]text[/spoil]'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['s_fade_help'] = 'Fade: [fade]text[/fade] or [fade][img]http://image_url/[/img][/fade]'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['s_spoiler_help'] = 'Spoiler: [spoiler]text[/spoiler]'; $lang['s_cell_help'] = 'Cell: [cell]text[/cell]'; # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_bbc_tags.php # #-----[ FIND ]------------------------------------------ # $lang['BBC_Overview'] = ' '; # #-----[ REPLACE WITH]----------------------------------- # $lang['BBC_Overview'] = ' '; # #-----[ FIND ]------------------------------------------ #
  • files/album/cache/
  • # #-----[ AFTER, ADD ]------------------------------------ #
  • files/album/jupload/
  • # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_blocks.php # #-----[ FIND ]------------------------------------------ # $lang['Title_wordgraph'] = 'Wordgraph'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Title_wordgraph'] = 'Tags'; # #-----[ FIND ]------------------------------------------ # $lang['cms_var_md_posts_show_portal_explain'] = 'Select all topics or only marked with "Show in Portal"'; # #-----[ REPLACE WITH]----------------------------------- # $lang['cms_var_md_posts_show_portal_explain'] = 'Select all topics or only marked with "Show in Home Page"'; # #-----[ FIND ]------------------------------------------ # $lang['cms_var_md_wordgraph_count'] = 'Enable Word Counts'; $lang['cms_var_md_wordgraph_count_explain'] = 'Display the total number of words next to each word'; $lang['cms_var_md_wordgraph_words'] = 'Maximum Words'; $lang['cms_var_md_wordgraph_words_explain'] = 'Select the maximum number of words to display'; # #-----[ REPLACE WITH]----------------------------------- # $lang['cms_var_md_wordgraph_count'] = 'Enable Tags Counts'; $lang['cms_var_md_wordgraph_count_explain'] = 'Display the total number of tags next to each word'; $lang['cms_var_md_wordgraph_words'] = 'Maximum Tags'; $lang['cms_var_md_wordgraph_words_explain'] = 'Select the maximum number of tags to display'; # #-----[ FIND ]------------------------------------------ # $lang['cms_option_Show_In_Portal'] = 'Show In Portal'; # #-----[ REPLACE WITH]----------------------------------- # $lang['cms_option_Show_In_Portal'] = 'Show in Home Page'; # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_cback_ctracker.php # #-----[ FIND ]------------------------------------------ # $lang['ctracker_settings_on'] = 'Activate'; $lang['ctracker_settings_off'] = 'Deactivate'; # #-----[ REPLACE WITH]----------------------------------- # $lang['ctracker_settings_on'] = 'Enabled'; $lang['ctracker_settings_off'] = 'Disabled'; # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_cms.php # #-----[ FIND ]------------------------------------------ # $lang['Layout_View'] = 'View by'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Layout_View'] = 'View permissions'; $lang['Layout_Edit_Perm'] = 'Edit permissions'; # #-----[ FIND ]------------------------------------------ # $lang['Choose_Layout'] = 'Choose site page'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Standard_Pages'] = 'Standard Pages'; $lang['Custom_Pages'] = 'Customized Pages'; $lang['Choose_Layout'] = 'Choose Page'; # #-----[ FIND ]------------------------------------------ # $lang['cms_block_wordgraph'] = 'Wordgraph'; # #-----[ REPLACE WITH]----------------------------------- # $lang['cms_block_wordgraph'] = 'Tags'; # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_dbmtnc.php # #-----[ FIND ]------------------------------------------ # $lang['Version_of_board'] = 'Version of the Board'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Version_of_board'] = 'Version of Icy Phoenix'; # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_jr_admin.php # #-----[ FIND ]------------------------------------------ # $lang['Color_Group'] = 'Color Group'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_main.php # #-----[ FIND ]------------------------------------------ # $lang['Board_disable'] = 'Sorry, but this board is currently unavailable. Please try again later.'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Board_disabled'] = 'Sorry, but this site is currently unavailable. Please try again later.'; # #-----[ FIND ]------------------------------------------ # $lang['Rules_reply_can'] = 'You can reply to topics in this forum'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['Rules_reply_can_own'] = 'You can reply to your topics in this forum'; # #-----[ FIND ]------------------------------------------ # $lang['Auth_Registered_Users'] = 'registered users'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['Auth_Self_Users'] = 'specific users'; # #-----[ FIND ]------------------------------------------ # $lang['Viewing_HACKSLIST'] = 'Viewing Hacks List'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Viewing_HACKSLIST'] = 'Viewing credits'; # #-----[ FIND ]------------------------------------------ # $lang['Viewing_priv_msgs'] = 'Viewing Private Messages'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Viewing_priv_msgs'] = 'Viewing private messages'; # #-----[ FIND ]------------------------------------------ # $lang['Birthday_greeting_today'] = 'We would like to wish you congratulatons on reaching %s years old today.

    The Management';//%s is substituted with the users age $lang['Birthday_greeting_prev'] = 'We would like to give you a belated congratulatons for becoming %s years old on the %s.

    The Management';//%s is substituted with the users age, and birthday # #-----[ REPLACE WITH]----------------------------------- # $lang['Birthday_greeting_today'] = 'We would like to wish you congratulations on reaching %s years old today.

     ';//%s is substituted with the users age $lang['Birthday_greeting_prev'] = 'We would like to give you a belated congratulations for becoming %s years old on the %s.

     ';//%s is substituted with the users age, and birthday # #-----[ FIND ]------------------------------------------ # $lang['Users_today_total'] = 'In total %d user have visited this site today: '; $lang['User_today_total'] = 'In total %d users have visited this site today: '; # #-----[ REPLACE WITH]----------------------------------- # $lang['Users_today_total'] = 'In total %d users have visited this site today: '; $lang['User_today_total'] = 'In total %d user have visited this site today: '; # #-----[ FIND ]------------------------------------------ # $lang['Full_Version'] = 'Full Version'; # #-----[ REPLACE WITH]----------------------------------- # //$lang['Full_Version'] = 'Full Version'; $lang['Full_Version'] = 'This is a "Lo-Fi" version of our main content. To view the full version with more information, formatting and images, please click here.'; # #-----[ FIND ]------------------------------------------ # $lang['Recent_wrong_mode'] = 'You´ve selected a wrong mode.'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Recent_wrong_mode'] = 'You have selected a wrong mode.'; # #-----[ FIND ]------------------------------------------ # $lang['Version_of_board'] = 'Version of phpbb'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Version_of_ip'] = 'Version of Icy Phoenix'; $lang['Version_of_board'] = 'Version of phpBB'; # #-----[ FIND ]------------------------------------------ # $lang['Show_In_Portal'] = 'Show in portal'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Show_In_Portal'] = 'Show in Home Page'; # #-----[ FIND ]------------------------------------------ # $lang['No_Bookmarks'] = 'You do not have set a bookmark'; # #-----[ REPLACE WITH]----------------------------------- # $lang['No_Bookmarks'] = 'You do not have any bookmark set'; # #-----[ FIND ]------------------------------------------ # $lang['Wordgraph'] = 'Wordgraph'; $lang['Viewing_wordgraph'] = 'Viewing Wordgraph'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Wordgraph'] = 'Tags'; $lang['Viewing_wordgraph'] = 'Viewing Tags'; # #-----[ FIND ]------------------------------------------ # $lang['Trohpy'] = 'Game Trophies'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['quick_links_games'] = 'Games Menu'; # #-----[ FIND ]------------------------------------------ # $lang['Watched_Topics_EXPLAIN'] = 'A list of all the topics you are watching'; # #-----[ REPLACE WITH]----------------------------------- # $lang['WATCHED_TOPICS_EXPLAIN'] = 'A list of all the topics you are watching'; # #-----[ FIND ]------------------------------------------ # $lang['DIGESTS_EXPLAIN'] = 'Digests are periodical email which are sent automatically with an excerpt of the new messages posted in the forum'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['DRAFTS_EXPLAIN'] = 'Manage your Drafts'; # #-----[ FIND ]------------------------------------------ # //$lang[''] = ''; # #-----[ BEFORE ADD]------------------------------------- # // Resend Activation - BEGIN $lang['Resend_activation_email'] = 'Resend activation email'; $lang['Invalid_activation'] = 'User account activation can only be performed by administrators.'; $lang['No_actkey'] = 'There is no activation key for your account. Please contact the board administrator for more information.'; $lang['Send_actmail_flood_error'] = 'You cannot make another request so soon after your last one; please try again in a short while.'; $lang['Resend_activation_email_done'] = 'The activation e-mail has been sent. Please check your email for further information.'; // Resend Activation - END $lang['Bots_Group'] = 'Bots'; $lang['Bots_Color'] = 'Bots Color'; $lang['Active_Users_Group'] = 'Active Users'; $lang['Active_Users_Color'] = 'Active Users Color'; $lang['Group_Default_Membership'] = 'Default Group'; $lang['Group_Default_Membership_Explain'] = 'Choose the default group for user, to assign rank and color.'; $lang['User_Color'] = 'User Color'; $lang['User_Color_Explain'] = 'If you specify a color for this user this will be overwritten by the default group color if you specify one group in the box above. Use the hex code without # example: ff0000 is the code for RED.'; $lang['No_Groups_Membership'] = 'No Membership'; $lang['No_Default_Group'] = 'No Default Group'; $lang['Group_members_updated'] = 'Successfully updated group members.'; $lang['Colorize_All'] = 'Colorize All Members'; $lang['Colorize_Selected'] = 'Colorize Selected'; $lang['CompanyWho'] = 'The Company'; $lang['CompanyWhere'] = 'How To Reach Us'; $lang['CompanyServices'] = 'Services'; $lang['CompanyProducts'] = 'Products'; $lang['ShareThisTopic'] = 'Share this topic'; $lang['Remove_cookies'] = 'Remove Cookies set by this site'; $lang['Cookies_deleted'] = 'All cookies have been deleted. You are now logged out.
    To finalize deletion, you must close your browser now.'; $lang['Delete_cookies'] = 'Delete Cookies'; $lang['cookies_confirm'] = 'Are you you sure you want to delete all cookies set by this site?

    This action will also log you out.'; $lang['CustomIcy'] = 'CustomIcy'; $lang['Drafts'] = 'Drafts'; $lang['Drafts_Action'] = 'Action'; $lang['Drafts_Save'] = 'Save'; $lang['Drafts_Load'] = 'Load'; $lang['Drafts_Saved'] = 'This Draft has been saved'; $lang['Drafts_Loaded'] = 'Draft loaded'; $lang['Drafts_No_Drafts'] = 'No drafts saved'; $lang['Drafts_Delete_Sel'] = 'Delete selected'; $lang['Drafts_Save_Question'] = '

    Are you sure you want to save this message as draft?

    Please note that only message body will be saved while all other settings will be discarded.'; $lang['Drafts_Delete_Question'] = '

    Are you sure you want to delete selected drafts?'; $lang['Drafts_Type'] = 'Draft Type'; $lang['Drafts_Subject'] = 'Draft Subject'; $lang['Drafts_NT'] = 'New topic'; $lang['Drafts_NM'] = 'Reply'; $lang['Drafts_NPM'] = 'Private Message'; # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_main_link.php # #-----[ FIND ]------------------------------------------ # $lang['Links_Preview'] = 'Preview Logo'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Links_Preview'] = 'Preview'; # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_main_settings.php # #-----[ FIND ]------------------------------------------ # $lang['DATE_FORMAT_MG'] = 'Y/m/d - H:i'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['DATE_FORMAT_BIRTHDAY'] = 'd F Y'; # #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ # # EoM [/code][/spoiler] [size=12][color=#ff5500][b]Available Packages[/b][/color][/size] Since this is a beta package, I prefer to release an all in one package which includes in several folders all the extras and templates. I know that this means having a bigger file, but I don't want users trying to install extras in the latest stable release, because with high probability modifications for Icy Phoenix 1.1.0.15 won't work in newer releases, because of the new modifications I made to the core files. Currently available is only a single big pack. [align=center][cell class=mg_attachtitle][font=Trebuchet MS][b][size=14]Icy Phoenix 1.1.5.20 Beta 1[/size][/b][/font][/cell][cell class=mg_attachdiv][b]Package Name: Icy Phoenix Package Version: 1.1.5.20 Beta 1 Release Spot: [gradient cols=DD3333 cole=FF7722 iterations=65]str_replace('24 hours per day', '48 hours per day', $my_life).[/gradient][/b] [b]DOWNLOAD: [/b][url=http://www.icyphoenix.com/dload.php?action=file&file_id=54][b]Icy Phoenix 1.1.5.20 Beta 1[/b][/cell][/align] [color=crimson][i]Should you ask for support, please remember that this is an open source community and me and all the Staff are doing all for free and in their spare time... be kind, be patient and respect other users efforts and hard work.[/i][/color] Enjoy Icy Phoenix! Luca Libralato ----------------------------------- Mighty Gorgon Thu 20 Sep, 2007 01:19 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- I need help in the following tasks: [list][*]Creating FILECHANGES list from 1.1.0.15b [*]Creating TEMPLATECHANGES list from 1.1.0.15b [*]Creating LANGCHANGES list from 1.1.0.15b[/list] Anyone willing to do this, please write here that he is doing it and then post here the results... I will read and eventually move the list in the first post. Thank you for your cooperation with this project. ----------------------------------- Corporacion-Umbrella Thu 20 Sep, 2007 11:07 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- Thanks MG for this great work. ¿Cash Mod is also incluided? CU. ----------------------------------- Zuker Thu 20 Sep, 2007 12:56 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- [quote user="Corporacion-Umbrella" post="19863"]Thanks MG for this great work. ¿Cash Mod is also incluided? CU.[/quote] Yes, but it's not supported ----------------------------------- brandsrus Thu 20 Sep, 2007 18:18 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- I will check the translation changes between the 1.1.0.15b and the 1.1.5.20 Beta 1 version ----------------------------------- brandsrus Thu 20 Sep, 2007 19:23 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- Sorry for this fast post after my first one in this topic but i help Mighty Gorgon for the language changes between 1.1.0.15b and this beta version 1.1.5.20 Beta 1. I have found hopefully all language changes, the language changes are the following: [spoiler][code linenumbers="false"]NEW FILES language/lang_english/email/html/album_comment_notify.tpl language/lang_english/email/txt/album_comment_notify.tpl langauge/lang_english/lang_cash.php DELETED FILES language/lang_english/lang_color_groups.php FILE CHANGES ARE BELOW # #-----[ OPEN ]------------------------------------------ # language/lang_english/email/html/index.html # #-----[ FIND ]------------------------------------------ # # #-----[ AFTER, ADD ]------------------------------------ # # #-----[ OPEN ]------------------------------------------ # language/lang_english/email/txt/index.html # #-----[ FIND ]------------------------------------------ # # #-----[ AFTER, ADD ]------------------------------------ # # #-----[ OPEN ]------------------------------------------ # language/lang_english/email/index.html # #-----[ FIND ]------------------------------------------ # # #-----[ AFTER, ADD ]------------------------------------ # # #-----[ OPEN ]------------------------------------------ # language/lang_english/bbcb_mg.js # #-----[ FIND ]------------------------------------------ # s_spoil_help = 'Spoiler: [spoil]text[/spoil]'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # s_fade_help = 'Fade: [opacity]text[/opacity] or [opacity][img]http://image_url/[/img][/opacity]'; # #-----[ AFTER, ADD ]------------------------------------ # s_spoiler_help = 'Spoiler: [spoiler]text[/spoiler]'; s_cell_help = 'Cell: [cell]text[/cell]'; # #-----[ FIND ]------------------------------------------ # //var Spoiler = 0; # #-----[ REPLACE WITH]----------------------------------- # var Spoiler = 0; var Cell = 0; # #-----[ FIND ]------------------------------------------ # '[fade]','[/fade]', # #-----[ AFTER, ADD ]------------------------------------ # '[spoiler]','[/spoiler]', '[cell]','[/cell]', # #-----[ FIND ]------------------------------------------ # function highlightmetasearch() { document.post.message.select(); document.post.message.focus(); } function copymetasearch() { highlightmetasearch(); textRange = document.post.message.createTextRange(); textRange.execCommand("RemoveFormat"); textRange.execCommand("Copy"); // alert("Il messaggio è stato copiato negli appunti"); } # #-----[ REPLACE WITH]----------------------------------- # function copymetasearch() { document.post.message.select(); document.post.message.focus(); if ( (navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4) ) { textRange = document.post.message.createTextRange(); textRange.execCommand("RemoveFormat"); textRange.execCommand("Copy"); // alert("Text copied to clipboard"); } } # #-----[ FIND ]------------------------------------------ # function BBCjustify() # #-----[ BEFORE ADD ]------------------------------------ # function BBCspoiler() { var txtarea = document.post.message; if ((clientVer >= 4) && is_ie && is_win) { theSelection = document.selection.createRange().text; if (theSelection != '') { document.selection.createRange().text = "[spoiler]" + theSelection + "[/spoiler]"; document.post.message.focus(); return; } } else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0)) { mozInsert(txtarea, "[spoiler]", "[/spoiler]"); return; } if (Spoiler == 0) { ToAdd = "[spoiler]"; document.post.spoiler.src = bbcb_mg_img_path + "spoiler1.gif"; Spoiler = 1; } else { ToAdd = "[/spoiler]"; document.post.spoiler.src = bbcb_mg_img_path + "spoiler.gif"; Spoiler = 0; } PostWrite(ToAdd); } function BBCcell() { var txtarea = document.post.message; if ((clientVer >= 4) && is_ie && is_win) { theSelection = document.selection.createRange().text; if (theSelection != '') { document.selection.createRange().text = "[cell]" + theSelection + "[/cell]"; document.post.message.focus(); return; } } else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0)) { mozInsert(txtarea, "[cell]", "[/cell]"); return; } if (Cell == 0) { ToAdd = "[cell]"; document.post.cell.src = bbcb_mg_img_path + "cell1.gif"; Cell = 1; } else { ToAdd = "[/cell]"; document.post.cell.src = bbcb_mg_img_path + "cell.gif"; Cell = 0; } PostWrite(ToAdd); } # #-----[ OPEN ]------------------------------------------ # language/lang_english/db_generator.tpl # #-----[ FIND ]------------------------------------------ # $userdata = session_pagestart($user_ip, PAGE_INDEX); # #-----[ REPLACE WITH]----------------------------------- # $userdata = session_pagestart($user_ip); # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_admin.php # #-----[ FIND ]------------------------------------------ # $lang['Permissions List'] = 'Permission List'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Main_index'] = 'Forum Index'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Registered'] = 'Registered'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['Self'] = 'Self'; # #-----[ FIND ]------------------------------------------ # $lang['Forum_REG'] = 'REG'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['Forum_SELF'] = 'SELF'; # #-----[ FIND ]------------------------------------------ # $lang['Permissions'] = 'Permissions'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Board_disable'] = 'Disable board'; $lang['Board_disable_explain'] = 'This will make the board unavailable to users. Administrators are able to access the Administration Panel while the board is disabled.'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Board_disable'] = 'Disable site'; $lang['Board_disable_explain'] = 'This will make the site unavailable to users. Administrators are able to access the Administration Panel while the site is disabled.'; # #-----[ FIND ]------------------------------------------ # $lang['Edit'] = 'Edit'; $lang['Delete'] = 'Delete'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Install'] = 'Install'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Value'] = 'Value'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Ban'] = 'Ban User'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['board_disable_message'] = 'Disable the message by default for the deactivation of the forum.'; $lang['board_disable_message_texte'] = 'Message which will appear when the forum is deactivated'; # #-----[ REPLACE WITH]----------------------------------- # $lang['board_disable_message'] = 'Display a message for the deactivation of the site.'; $lang['board_disable_message_texte'] = 'Message which will appear when the site is deactivated'; # #-----[ FIND ]------------------------------------------ # $lang['Links'] ='Links Admin'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Account_active'] = 'active users'; $lang['Account_inactive'] = 'inactive users'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Account_active'] = 'Active Users'; $lang['Account_inactive'] = 'Inactive Users'; # #-----[ FIND ]------------------------------------------ # $lang['Account_inactive'] = 'Inactive users'; $lang['Account_active'] = 'Active users'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Delete_link'] = 'Tick box to delete this autolink.'; # #-----[ REPLACE WITH]----------------------------------- # //$lang['Delete_link'] = 'Tick box to delete this autolink.'; # #-----[ FIND ]------------------------------------------ # $lang['auth_view_download'] = 'Download'; # #-----[ REPLACE WITH]----------------------------------- # $lang['auth_view_download'] = 'Downloads'; # #-----[ FIND ]------------------------------------------ # $lang['Post_count_explain'] = 'Here you can edit the post count of this user.'; $lang['Modify_post_counts'] = 'Modify User's Post Count'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Forum_Wordgraph'] = 'Forum Wordgraph'; $lang['Forum_Wordgraph_Explain'] = 'This feature will enable a forum based wordgraph at bottom of each forum'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Forum_Wordgraph'] = 'Forum Tags'; $lang['Forum_Wordgraph_Explain'] = 'This feature will enable a forum based tags table at bottom of each forum'; # #-----[ FIND ]------------------------------------------ # $lang['Sort_order'] = 'Order'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['GD_Version'] = 'Version:'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['All_Forums'] = 'All Forums'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Delete'] = 'Delete'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Nivisec_Com'] = 'Nivisec.com'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Delete'] = 'Delete'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Version'] = 'Version'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Affected_Rows'] = '%d known entries removed
    '; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['Links'] = 'Links Manage'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Links'] = 'Links Management'; # #-----[ FIND ]------------------------------------------ # $lang['Preview'] = 'Preview Logo'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Preview'] = 'Preview'; # #-----[ FIND ]------------------------------------------ # $lang['MG_SW_REFERRERS_Explain'] = 'This option allows to disable Referrers feature (this saves SQL space).'; # #-----[ AFTER, ADD ]------------------------------------ # // Icy Phoenix - BUILD 016 $lang['group_rank'] = 'Rank'; $lang['group_color'] = 'Color'; $lang['group_legend'] = 'Show in legend'; $lang['group_legend_short'] = 'Legend'; $lang['group_main'] = 'Main group'; $lang['group_members'] = 'Members'; $lang['group_update'] = 'Apply Changes'; /* lang_color_groups.php - BEGIN */ $lang['Color_Groups'] = 'Color Groups'; $lang['Manage_Color_Groups'] = 'Manage Color Groups'; $lang['Add_New_Group'] = 'Add New Group'; $lang['Color'] = 'Color'; $lang['User_Count'] = 'User Count'; $lang['Color_List'] = 'Color Name List:'; $lang['Group_Name'] = 'Group Name'; $lang['Define_Users'] = 'Define Users'; $lang['Color_Group_User_List'] = 'Color Group User List'; $lang['Options'] = 'Options'; $lang['Example'] = 'Example'; $lang['User_List'] = 'Full User List'; $lang['Unassigned_User_List'] = 'Users With No Group'; $lang['Assigned_User_List'] = 'Users With A Group'; $lang['Add_Arrow'] = 'Add To List'; $lang['Update'] = 'Update'; $lang['Updated_Group'] = 'Updated Group User List
    '; $lang['Deleted_Group'] = 'Deleted Specified Group. All users that were in it have been reset to no group membership
    '; $lang['Hide'] = 'Hide'; $lang['Un-hide'] = 'Un-hide'; $lang['Move_Up'] = 'Move Up'; $lang['Move_Down'] = 'Move Down'; $lang['Group_Hidden'] = 'Group Hidden
    '; $lang['Group_Unhidden'] = 'Group Un-hidden
    '; $lang['Groups_Updated'] = 'Group changes have been updated
    '; $lang['Moved_Group'] = 'Moved group order
    '; //Descriptions $lang['Manage_Color_Groups_Desc'] = 'Update groups, add a new group, or manage the users assigned to a particular color group.
    Groups that you choose to "Hide" will not show up on the main index list.'; $lang['Color_Group_User_List_Desc'] = 'Add or remove users to a specified color group.'; //Errors $lang['Error_Group_Table'] = 'Error querying the color groups table.'; $lang['Error_Font_Color'] = 'Warning: The specified font color appears to be invalid!'; $lang['Color_Ok'] = 'The specified font color appears to be valid.'; $lang['No_Groups_Exist'] = 'No groups exist.'; $lang['Error_Users_Table'] = 'Error querying the users table.'; $lang['Invalid_Group_Add'] = '%s is an invalid or duplicate group name.
    '; //Dynamic $lang['Group_Updated'] = 'Updated Color Group %s
    '; $lang['Editing_Group'] = 'Currently editing the user list for %s.'; $lang['Invalid_User'] = '%s is an invalid username, skipping
    '; $lang['Invalid_Order_Num'] = '%s contained an invalid order number, but it has been fixed. Please try your move up/down again.'; //New for 1.2.0 $lang['Users_List'] = 'Users List'; $lang['Groups_List'] = 'User Groups List'; $lang['List_Info'] = 'Notes: '; /* lang_color_groups.php - END */ // Icy Phoenix - BUILD 018 $lang['MG_SW_ShowSocialBookmarks'] = 'Social Bookmarks'; $lang['MG_SW_ShowSocialBookmarks_Explain'] = 'Show Social Bookmarks section when viewing topics'; $lang['MG_SW_ShowForumOnline'] = 'Show Users Online In Forums'; $lang['MG_SW_ShowForumOnline_Explain'] = 'This will enable online users counter for each forum on index'; // Icy Phoenix - BUILD 020 $lang['MG_SW_AllowDrafts'] = 'Allow Drafts'; $lang['MG_SW_AllowDrafts_Explain'] = 'Allow users to save posts as drafts'; # #-----[ FIND ]------------------------------------------ # $lang['110_Manage'] = 'Manage'; // admin_users.php # #-----[ AFTER, ADD ]------------------------------------ # $lang['113_Permissions_Users'] = 'Permissions'; // admin_ug_auth.php $lang['116_CMS_Permissions_Users'] = 'CMS Permissions'; // admin_cms_auth.php # #-----[ FIND ]------------------------------------------ # $lang['230_Permissions_Users'] = 'Permissions'; // admin_ug_auth.php $lang['235_CMS_Permissions_Users'] = 'CMS Permissions'; // admin_cms_auth.php # #-----[ REPLACE WITH]----------------------------------- # # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_album_admin.php # #-----[ FIND ]------------------------------------------ # $lang['Child_Category_Moved'] = 'Selected category had child categories. The child categories got moved to the %s category.'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Child_Category_Moved'] = 'Selected category had child categories. The child categories got moved to the %s category.'; # #-----[ FIND ]------------------------------------------ # $lang['Watermark_explain'] = 'You can specify the watermark file to be used in this category. Insert the watermark file path respect to your phpBB root (i.e.: album_mod/mark_fap.png). The watermark will be applied only if Watermark feature is on.'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['Cat_Pics_Synchronize'] = 'Sync Pics Counter'; $lang['Cat_Pics_Synchronized'] = 'All pictures counter have been synchronized.'; # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_album_main.php # #-----[ FIND ]------------------------------------------ # $lang['Upload_Pics'] = 'Upload Pics'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['JUpload_Pic'] = 'Upload Multiple Pictures with Jupload'; # #-----[ FIND ]------------------------------------------ # $lang['Approved'] = 'Approved'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['Copy'] = 'Copy'; # #-----[ FIND ]------------------------------------------ # ?> # #-----[ BEFORE ADD ]------------------------------------ # // Pic watch $lang['No_longer_watching_comment'] = 'You are no longer watching this pic for comments'; $lang['Watching_comment'] = 'You are now watching this pic for comments'; $lang['Pic_comment_notification'] = 'Album Comment Notification'; $lang['Pic_comment_watch_checkbox'] = 'Check box to be notified on pic comments:'; $lang['Watch_pic'] = 'Watch this pic for comments'; $lang['Unwatch_pic'] = 'Stop watching this pic for comments'; $lang['Click_return_pic'] = 'Click %shere%s to return to pic'; $lang['Pic_RDF'] = 'RSS Feed 1.0'; $lang['Pic_RSS'] = 'RSS Feed 2.0'; # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_bbcb_mg.php # #-----[ FIND ]------------------------------------------ # $lang['bbcb_mg_fade'] = 'Transparency'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['bbcb_mg_spoiler'] = 'Spoiler'; $lang['bbcb_mg_cell'] = 'Cell'; # #-----[ FIND ]------------------------------------------ # $lang['s_spoil_help'] = 'Spoiler: [spoil]text[/spoil]'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ FIND ]------------------------------------------ # $lang['s_fade_help'] = 'Fade: [fade]text[/fade] or [fade][img]http://image_url/[/img][/fade]'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['s_spoiler_help'] = 'Spoiler: [spoiler]text[/spoiler]'; $lang['s_cell_help'] = 'Cell: [cell]text[/cell]'; # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_bbc_tags.php # #-----[ FIND ]------------------------------------------ # $lang['BBC_Overview'] = ' '; # #-----[ REPLACE WITH]----------------------------------- # $lang['BBC_Overview'] = ' '; # #-----[ FIND ]------------------------------------------ #
  • files/album/cache/
  • # #-----[ AFTER, ADD ]------------------------------------ #
  • files/album/jupload/
  • # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_blocks.php # #-----[ FIND ]------------------------------------------ # $lang['Title_wordgraph'] = 'Wordgraph'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Title_wordgraph'] = 'Tags'; # #-----[ FIND ]------------------------------------------ # $lang['cms_var_md_posts_show_portal_explain'] = 'Select all topics or only marked with "Show in Portal"'; # #-----[ REPLACE WITH]----------------------------------- # $lang['cms_var_md_posts_show_portal_explain'] = 'Select all topics or only marked with "Show in Home Page"'; # #-----[ FIND ]------------------------------------------ # $lang['cms_var_md_wordgraph_count'] = 'Enable Word Counts'; $lang['cms_var_md_wordgraph_count_explain'] = 'Display the total number of words next to each word'; $lang['cms_var_md_wordgraph_words'] = 'Maximum Words'; $lang['cms_var_md_wordgraph_words_explain'] = 'Select the maximum number of words to display'; # #-----[ REPLACE WITH]----------------------------------- # $lang['cms_var_md_wordgraph_count'] = 'Enable Tags Counts'; $lang['cms_var_md_wordgraph_count_explain'] = 'Display the total number of tags next to each word'; $lang['cms_var_md_wordgraph_words'] = 'Maximum Tags'; $lang['cms_var_md_wordgraph_words_explain'] = 'Select the maximum number of tags to display'; # #-----[ FIND ]------------------------------------------ # $lang['cms_option_Show_In_Portal'] = 'Show In Portal'; # #-----[ REPLACE WITH]----------------------------------- # $lang['cms_option_Show_In_Portal'] = 'Show in Home Page'; # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_cback_ctracker.php # #-----[ FIND ]------------------------------------------ # $lang['ctracker_settings_on'] = 'Activate'; $lang['ctracker_settings_off'] = 'Deactivate'; # #-----[ REPLACE WITH]----------------------------------- # $lang['ctracker_settings_on'] = 'Enabled'; $lang['ctracker_settings_off'] = 'Disabled'; # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_cms.php # #-----[ FIND ]------------------------------------------ # $lang['Layout_View'] = 'View by'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Layout_View'] = 'View permissions'; $lang['Layout_Edit_Perm'] = 'Edit permissions'; # #-----[ FIND ]------------------------------------------ # $lang['Choose_Layout'] = 'Choose site page'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Standard_Pages'] = 'Standard Pages'; $lang['Custom_Pages'] = 'Customized Pages'; $lang['Choose_Layout'] = 'Choose Page'; # #-----[ FIND ]------------------------------------------ # $lang['cms_block_wordgraph'] = 'Wordgraph'; # #-----[ REPLACE WITH]----------------------------------- # $lang['cms_block_wordgraph'] = 'Tags'; # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_dbmtnc.php # #-----[ FIND ]------------------------------------------ # $lang['Version_of_board'] = 'Version of the Board'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Version_of_board'] = 'Version of Icy Phoenix'; # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_jr_admin.php # #-----[ FIND ]------------------------------------------ # $lang['Color_Group'] = 'Color Group'; # #-----[ REPLACE WITH]----------------------------------- # # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_main.php # #-----[ FIND ]------------------------------------------ # $lang['Board_disable'] = 'Sorry, but this board is currently unavailable. Please try again later.'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Board_disabled'] = 'Sorry, but this site is currently unavailable. Please try again later.'; # #-----[ FIND ]------------------------------------------ # $lang['Rules_reply_can'] = 'You can reply to topics in this forum'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['Rules_reply_can_own'] = 'You can reply to your topics in this forum'; # #-----[ FIND ]------------------------------------------ # $lang['Auth_Registered_Users'] = 'registered users'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['Auth_Self_Users'] = 'specific users'; # #-----[ FIND ]------------------------------------------ # $lang['Viewing_HACKSLIST'] = 'Viewing Hacks List'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Viewing_HACKSLIST'] = 'Viewing credits'; # #-----[ FIND ]------------------------------------------ # $lang['Viewing_priv_msgs'] = 'Viewing Private Messages'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Viewing_priv_msgs'] = 'Viewing private messages'; # #-----[ FIND ]------------------------------------------ # $lang['Birthday_greeting_today'] = 'We would like to wish you congratulatons on reaching %s years old today.

    The Management';//%s is substituted with the users age $lang['Birthday_greeting_prev'] = 'We would like to give you a belated congratulatons for becoming %s years old on the %s.

    The Management';//%s is substituted with the users age, and birthday # #-----[ REPLACE WITH]----------------------------------- # $lang['Birthday_greeting_today'] = 'We would like to wish you congratulations on reaching %s years old today.

     ';//%s is substituted with the users age $lang['Birthday_greeting_prev'] = 'We would like to give you a belated congratulations for becoming %s years old on the %s.

     ';//%s is substituted with the users age, and birthday # #-----[ FIND ]------------------------------------------ # $lang['Users_today_total'] = 'In total %d user have visited this site today: '; $lang['User_today_total'] = 'In total %d users have visited this site today: '; # #-----[ REPLACE WITH]----------------------------------- # $lang['Users_today_total'] = 'In total %d users have visited this site today: '; $lang['User_today_total'] = 'In total %d user have visited this site today: '; # #-----[ FIND ]------------------------------------------ # $lang['Full_Version'] = 'Full Version'; # #-----[ REPLACE WITH]----------------------------------- # //$lang['Full_Version'] = 'Full Version'; $lang['Full_Version'] = 'This is a "Lo-Fi" version of our main content. To view the full version with more information, formatting and images, please click here.'; # #-----[ FIND ]------------------------------------------ # $lang['Recent_wrong_mode'] = 'You´ve selected a wrong mode.'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Recent_wrong_mode'] = 'You have selected a wrong mode.'; # #-----[ FIND ]------------------------------------------ # $lang['Version_of_board'] = 'Version of phpbb'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Version_of_ip'] = 'Version of Icy Phoenix'; $lang['Version_of_board'] = 'Version of phpBB'; # #-----[ FIND ]------------------------------------------ # $lang['Show_In_Portal'] = 'Show in portal'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Show_In_Portal'] = 'Show in Home Page'; # #-----[ FIND ]------------------------------------------ # $lang['No_Bookmarks'] = 'You do not have set a bookmark'; # #-----[ REPLACE WITH]----------------------------------- # $lang['No_Bookmarks'] = 'You do not have any bookmark set'; # #-----[ FIND ]------------------------------------------ # $lang['Wordgraph'] = 'Wordgraph'; $lang['Viewing_wordgraph'] = 'Viewing Wordgraph'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Wordgraph'] = 'Tags'; $lang['Viewing_wordgraph'] = 'Viewing Tags'; # #-----[ FIND ]------------------------------------------ # $lang['Trohpy'] = 'Game Trophies'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['quick_links_games'] = 'Games Menu'; # #-----[ FIND ]------------------------------------------ # $lang['Watched_Topics_EXPLAIN'] = 'A list of all the topics you are watching'; # #-----[ REPLACE WITH]----------------------------------- # $lang['WATCHED_TOPICS_EXPLAIN'] = 'A list of all the topics you are watching'; # #-----[ FIND ]------------------------------------------ # $lang['DIGESTS_EXPLAIN'] = 'Digests are periodical email which are sent automatically with an excerpt of the new messages posted in the forum'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['DRAFTS_EXPLAIN'] = 'Manage your Drafts'; # #-----[ FIND ]------------------------------------------ # //$lang[''] = ''; # #-----[ BEFORE ADD]------------------------------------- # // Resend Activation - BEGIN $lang['Resend_activation_email'] = 'Resend activation email'; $lang['Invalid_activation'] = 'User account activation can only be performed by administrators.'; $lang['No_actkey'] = 'There is no activation key for your account. Please contact the board administrator for more information.'; $lang['Send_actmail_flood_error'] = 'You cannot make another request so soon after your last one; please try again in a short while.'; $lang['Resend_activation_email_done'] = 'The activation e-mail has been sent. Please check your email for further information.'; // Resend Activation - END $lang['Bots_Group'] = 'Bots'; $lang['Bots_Color'] = 'Bots Color'; $lang['Active_Users_Group'] = 'Active Users'; $lang['Active_Users_Color'] = 'Active Users Color'; $lang['Group_Default_Membership'] = 'Default Group'; $lang['Group_Default_Membership_Explain'] = 'Choose the default group for user, to assign rank and color.'; $lang['User_Color'] = 'User Color'; $lang['User_Color_Explain'] = 'If you specify a color for this user this will be overwritten by the default group color if you specify one group in the box above. Use the hex code without # example: ff0000 is the code for RED.'; $lang['No_Groups_Membership'] = 'No Membership'; $lang['No_Default_Group'] = 'No Default Group'; $lang['Group_members_updated'] = 'Successfully updated group members.'; $lang['Colorize_All'] = 'Colorize All Members'; $lang['Colorize_Selected'] = 'Colorize Selected'; $lang['CompanyWho'] = 'The Company'; $lang['CompanyWhere'] = 'How To Reach Us'; $lang['CompanyServices'] = 'Services'; $lang['CompanyProducts'] = 'Products'; $lang['ShareThisTopic'] = 'Share this topic'; $lang['Remove_cookies'] = 'Remove Cookies set by this site'; $lang['Cookies_deleted'] = 'All cookies have been deleted. You are now logged out.
    To finalize deletion, you must close your browser now.'; $lang['Delete_cookies'] = 'Delete Cookies'; $lang['cookies_confirm'] = 'Are you you sure you want to delete all cookies set by this site?

    This action will also log you out.'; $lang['CustomIcy'] = 'CustomIcy'; $lang['Drafts'] = 'Drafts'; $lang['Drafts_Action'] = 'Action'; $lang['Drafts_Save'] = 'Save'; $lang['Drafts_Load'] = 'Load'; $lang['Drafts_Saved'] = 'This Draft has been saved'; $lang['Drafts_Loaded'] = 'Draft loaded'; $lang['Drafts_No_Drafts'] = 'No drafts saved'; $lang['Drafts_Delete_Sel'] = 'Delete selected'; $lang['Drafts_Save_Question'] = '

    Are you sure you want to save this message as draft?

    Please note that only message body will be saved while all other settings will be discarded.'; $lang['Drafts_Delete_Question'] = '

    Are you sure you want to delete selected drafts?'; $lang['Drafts_Type'] = 'Draft Type'; $lang['Drafts_Subject'] = 'Draft Subject'; $lang['Drafts_NT'] = 'New topic'; $lang['Drafts_NM'] = 'Reply'; $lang['Drafts_NPM'] = 'Private Message'; # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_main_link.php # #-----[ FIND ]------------------------------------------ # $lang['Links_Preview'] = 'Preview Logo'; # #-----[ REPLACE WITH]----------------------------------- # $lang['Links_Preview'] = 'Preview'; # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_main_settings.php # #-----[ FIND ]------------------------------------------ # $lang['DATE_FORMAT_MG'] = 'Y/m/d - H:i'; # #-----[ AFTER, ADD ]------------------------------------ # $lang['DATE_FORMAT_BIRTHDAY'] = 'd F Y'; # #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ # # EoM [/code][/spoiler] Good luck with your update! ----------------------------------- Mighty Gorgon Thu 20 Sep, 2007 23:13 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- Wow!!! That is what I call a perfect job [b]brandsrus[/b]!!! Thank you very much for this. First post updated. ----------------------------------- el raro Sat 22 Sep, 2007 09:20 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- very very thanks MG, you are the best!! :mrviolet: :mrorange: :mrblue: :mrgreen: :mricy: ----------------------------------- ronalito Sat 22 Sep, 2007 09:25 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- wow! Cash i very happy for this... a future whit shop mod??? thanks sorry for my bad english :mrgreen: ----------------------------------- algs163 Tue 25 Sep, 2007 05:41 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- Excelent MIGHTY !!! but, i have a problem.. Cash mod appear in viewtopic? i activate cashmod, but, i didn't see the "cash" in viewtopic, only in Profile :S thanks. PD: Sorry for my badly english :S :mrorange: ----------------------------------- mih bonatto Wed 26 Sep, 2007 19:00 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- WOW :shock: I just love you, Lucca. Really! Thanks! And congrats, great job, as always!!! Kisses! ----------------------------------- px87 Sat 29 Sep, 2007 20:20 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- Hi! I'm new in this web... Firstly I want to congratulate Mighty for the excellent work made in the icy phoenix, is a wonderful system and I don't know one that can be compared with it. Well... now I'll tell you my little question... How can I active the Cash-mode in the Icy Phoenix 1.1.5.20 Beta 1? Greetings! Sincerely: px87 ----------------------------------- pepi Sun 30 Sep, 2007 00:10 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- [quote user="px87" post="20170"]Hi! I'm new in this web... Firstly I want to congratulate Mighty for the excellent work made in the icy phoenix, is a wonderful system and I don't know one that can be compared with it. Well... now I'll tell you my little question... How can I active the Cash-mode in the Icy Phoenix 1.1.5.20 Beta 1? Greetings! Sincerely: px87[/quote] Hi look for extras cash then install.txt in Icy Phoenix 1.1.5.20 Beta 1 download-file Pepi ----------------------------------- px87 Sun 30 Sep, 2007 01:30 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- A lot of thanks Pepi !! Greetings! px87 ----------------------------------- Corporacion-Umbrella Mon 01 Oct, 2007 19:12 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- The installation package don't need the Spanish Language for work fine?, or we have wait to somebody help us in the translate for new version? CU Dear Supporters. ----------------------------------- Zuker Mon 01 Oct, 2007 23:43 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- [quote user="Corporacion-Umbrella" post="20202"]The installation package don't need the Spanish Language for work fine?, or we have wait to somebody help us in the translate for new version? CU Dear Supporters.[/quote] http://www.icyphoenix.com/viewtopic.php?f=5&p=20091#p20091 ----------------------------------- cary123 Thu 04 Oct, 2007 03:39 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- when will it be fully done? ----------------------------------- kenefcho Sun 07 Oct, 2007 20:24 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- where i can find oder templates for this relase sorry for my bad english ----------------------------------- Gianni PB Sun 07 Oct, 2007 21:42 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- where is italian translation? I cannot find it... ----------------------------------- Zuker Sun 07 Oct, 2007 21:55 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- inside "extra" folder i think ----------------------------------- Gianni PB Sun 07 Oct, 2007 22:34 Re: Icy Phoenix 1.1.5.20 Beta 1 ----------------------------------- yeah! thank you zuker! :mricy: