Jump to content

tamplan

Clients
  • Posts

    193
  • Joined

  • Last visited

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by tamplan

  1. File Name: [T] Developpers Tools File Submitter: tamplan File Submitted: 25 Jul 2009 File Category: Applications This little admin application can help you making all the necessary xml files for your application you write. All the xml files are exported in one step. You can make the xml files for severals applications in one step too. Click here to download this file
  2. More than 40 views and none comment ? May I report an issue for the record ?
  3. It is not necessary here to report an issue but to propose an improvement. In the 'cp_skin_restrictions.php' line 327, you use this string 'Grant access to System application?' using two entries from a language file: <div class='tablesubheader'>{$form} {$this->lang->words['r_grantto']} {$application['app_title']} {$this->lang->words['application_bit']}?</div> For the module is in line 341: <div class='tablesubheader'>{$form} {$this->lang->words['r_grantto']} {$module['sys_module_title']} {$this->lang->words['module_bit']}?</div> Is there a way to use only 2 entries and not 3 for example nammed: 'r_grantto_application' => "Grant access to '%s' application?", 'r_grantto_module' => "Grant access to '%s' module?", In French and maybe in others languages, application and module have not the same 'gender' and the words the same places in the sentences. The final strings in French would be: 'r_grantto_application' => "Donner l'acc
  4. Since version 2.3.x of IPB, the ibf_posts and the ibf_topics don't have the same type for the icon_id field. Let's imagine this situation, a member can use 127 (tinyint(2)) icons message in a post but much more in a topic (smallint(3)). We can use API to write topic with a incorrect icon message number we can not change later editing the first post of the topic. Not really a bug but using the same type for the icon_id field should be better not?
  5. This is only possible from version 3.0.2 of IPB. All interventions are my sole purpose as the improvement of IPB that I am a strong advocate and passionate... :wub: Not sure it is properly translated from French. :)
  6. In the 'core_public_global.php ' language file, you must have: 'discussion' => "Forums", 'tb_mlist' => "Members", Because "forums" and "members" are two applications of the IP.Board core and are not applications addons... :cool:
  7. For the skin issue of 'active content', in 'activePostsView', search: {$app['app_public_title']} Replace twice by: {IPSLib::getAppTitle($app['app_directory'])} And for the skin issue of 'new content', in 'newPostsView', search: {$app['app_public_title']} Replace twice by: {IPSLib::getAppTitle($app['app_directory'])} Hope this help, regards :thumbsup:
  8. Language files CAN and must be translated in the ACP.
  9. There is no problem :thumbsup:
  10. This is false and not correct !! Read this code: static public function getAppTitle( $app ) { if ( ! $app ) { return ''; } return isset( ipsRegistry::getClass('class_localization')->words[ $app . '_display_title' ] ) ? ipsRegistry::getClass('class_localization')->words[ $app . '_display_title' ] : ( IN_ACP ? ipsRegistry::$applications[ $app ]['app_title'] : ipsRegistry::$applications[ $app ]['app_public_title'] ); } So, Vesperala, I presume you must add some entries in the romanian language file core_public_global.php: 'blog_display_title' => "Blogs", 'calendar_display_title' => "Calendar", 'chat_display_title' => "Chat", 'downloads_display_title' => "Downloads", 'gallery_display_title' => "Gallery", 'portal_display_title' => "Portal",
  11. I don't understand, this is correct with my boards, the tab names are depending of the language's user.
  12. Have you seen this issue I have reported?
  13. Remember your point of view when IP.Subscriptions will be finalized and completely stable... :thumbsup:
  14. $app is the folder application name. To translate the CCS tab, you add an entry with the following informations :
  15. Completely agree with this point. A week for an user can start on Monday and on Sunday for another one => an entry in language files not in settings. All the messages like the board offline's one => an entry in language files Boards rules ditto Anything that can be translated via PCA and depending on the language of a member should be in language files including date, time and number format. There is always a default language so we can image a 'date_short', 'date_long'... entries in language files not in settings.
  16. There is a new method to import a language pack.
  17. You must add the following lines in In the core_public_global.php french file : 'calendar_display_title' => "Calendrier", 'chat_display_title' => "Tchache", 'downloads_display_title' => "T'blog_display_title' => "Blogs",
  18. I apologize, I thought that move the 2 applications solve different problems at once. I opened this topic more to talk about the translation and removal of tabs
  19. And what about the order for the tabs ? If I choose to set 'IP.CCS' or the portal the default application, I prefer to have the corresponding tab completly on the right in my case... I must change this on each skins I have ? Not really user-friendly, right ?
  20. It is true that this is not logical, we have '\admin\applications': - Core: the system kernel - Forums: Forums - Members: members We have everything else in '\admin\applications_addon': - In 'ips' for applications from IPS (calendar and portal the defaults applications but also blog, downloads, gallery ...) - In 'other' for applications developed by other developers In the core_public_global.php file, we have : 'blog_display_title' => "Blogs", 'calendar_display_title' => "Calendar", 'chat_display_title' => "Chat", 'downloads_display_title' => "Downloads", 'gallery_display_title' => "Gallery", 'portal_display_title' => "Portal", But absolutely nothing for the 2 applications 'forums' and 'members'. It is also for this reason that 'Forums' and' Members' are always the first applications to be offered in the tabs, then come the other applications for which we can change the order. Please move the 'forums' and 'members' applications by default in the '\admin\applications_addon\ips' folder like 'calendar' and 'portal'. All this lack of consistency and it's not very user-friendly...
  21. The returned file isalways 'app_subscriptions_1_0_0_Beta_3.zip'...
  22. Hi, You 'd better start a new issue in the tracker, adding a link to this subject to show the attached thumbnail. hope this help. Regards
  23. I use a MemberSync class to make a bridge between IP.Board and an other application. Everything works fine except when I logout the forum, I would like to logout the other application. Perhaps, IPS devloppers can add a IPSLib::runMemberSync( 'onLogout', $member ) call function in 'admin/sources/handlers/han_login.php' : public function logoutCallback() { /* Member Sync */ IPSLib::runMemberSync( 'onLogout', $this->member_data ); $returns = array(); $redirect = ''; foreach( $this->modules as $k => $obj_reference ) ... To make us sure to not modify sourcecode after every update ? Thanks for reading me. :thumbsup: And sorry for my simple english, I translate from french with my old friend Google... :)
  24. Hy, It's done here : http://resources.invisionpower.com/index.php?appcomponent=downloads&showfile=2478 This is my first application :) Hope this help.
  25. It is a very good reason to develop an application capable of achieving this in one step. :)
×
×
  • Create New...