[OPEN] [#15] Locale problem

Page 1 of 3 123 LastLast
  1. #1

    [OPEN] [#15] Locale problem

    Last edited by RCN; Mar 21, 2013 at 7:04 PM.
  2. #2
    Hi Raphael,

    I guess you mean that loading message is not localized, isn't that so?

    I checked the Locale is applied, but a message is really not localized. It should be localized on ExtJS level, here is a related thread.
    http://www.sencha.com/forum/showthread.php?196742

    But it is still not fixed in ExtJS.

    So, we decided to fix it in Ext.NET, revision #4410.

    Thank you for the report!
  3. #3
    Yes, i meant that loading message was not localized. Your solution worked like a charm. Please mark this Thread as closed when ExtJs team release a permanent solution for this problem.


    Once again, thumbs up to you.
  4. #4
  5. #5
    it's possible to overcome the problems above by doing the following:

    Ext.view.AbstractView.prototype.loadingText = "Ext.Net";
    But i think that ExtJs or Ext.Net should localize the message properly. What is your opinion?
  6. #6
    Raphael, you are right. It should be fixed.

    Here is a bug report.
    http://www.sencha.com/forum/showthread.php?245783

    Here is a workaround for now:

    Workaround
    Ext.onReady(function () {
        Ext.define("Ext.locale.view.AbstractView", {
            override: "Ext.view.AbstractView",
            loadingText: Ext.view.AbstractView.prototype.msg
        });
    
        Ext.define("Ext.locale.LoadMask", {
            override: "Ext.LoadMask",
            msg: Ext.view.AbstractView.prototype.msg
        });
    });
  7. #7
    Sencha opened a bug ticket. We will monitor.
  8. #8
    Thank you Daniil, please keep me posted
  9. #9
    Opened an Issue to track this defect, see

    https://github.com/extnet/Ext.NET/issues/15
    Geoffrey McGill
    Founder
  10. #10
    The thread is related to this one.
    http://forums.ext.net/showthread.php?22698
Page 1 of 3 123 LastLast

Similar Threads

  1. Replies: 4
    Last Post: Dec 29, 2012, 9:40 AM
  2. [OPEN] [#37] Column gradient problem
    By feanor91 in forum 2.x Legacy Premium Help
    Replies: 9
    Last Post: Nov 17, 2012, 12:36 AM
  3. [CLOSED] Locale problem
    By thchuong in forum 1.x Legacy Premium Help
    Replies: 6
    Last Post: Jan 12, 2011, 1:28 AM
  4. Locale
    By flaviodamaia in forum 1.x Help
    Replies: 0
    Last Post: Jul 08, 2010, 12:25 PM
  5. Replies: 1
    Last Post: Oct 10, 2008, 10:28 PM

Posting Permissions