Preferred display language in safari without modifying the system language?

Hi
I have my system language set to US English.
I want to change only safari preferred language to another language without having to change the default OS language.
In firefox it's easy to have firefox in english but the default language for site specific languages another language.
any idea how to do this in safari 4.x for osx?
Cheers

I don't think there is no way to do what you want.
http://www.w3.org/International/questions/qa-lang-priorities
Ask Apple for fix it here:
http://www.apple.com/feedback/macosx.html

Similar Messages

  • Debugging a smartform without modifying the code ?

    Hi all, please forgive my noobyness but it's the first time I'm working on smartforms...
    Basically; I have a smartform that prints out a pdf showing all the entries of a purchase order, but there's a thing that I have to correct... The price amount for position is not correct, because it doesn't contains an extra amount, let's call this quantity "limit", that is a specific property of each row in the order.
    Problem: I'm not that good to find in the code the exact point in which the price for a row is calculated, or better.... I thought I found it, did a little correction but without success.
    I'd like to debug exactly the pieces of code that are in the smartform, how to do it without modifying the code ? I've read something about hardcoding a break-point but I won't insert new code because I'm working on a pre-production machine and porting a CR is not as easy. Is there any way to debug without doing a mod on the code? Thanks in advance.

    Hi Matteo,
    it's quite simple.
    Found the Fm name of the SMARTFORM (Menu Utilities-> F.M. Name) (Something like
    /1BCDWB/SF00000015).
    Then go in SE37 transaction and put the FM founded and then display it.
    Go in the main info of the FM (tab. Propierties) and the double click on the main program.
    Then double click on the include that ends with *F01. There you will find all the code of your SF. Then you can put a breakpoint the piece of code that you want.
    This should be works.
    Let us know
    Bye
    Andrea

  • How to change the width for adf shuttle without modify the skin file

    Dear Professionals
    I haven an ADF Shuttle component in my jsp screen , How can i change the width for the two boxes without modify the skin files.(I know i can do that by skin but what i want to change one shuttle just in one screen not change all shuttles on other screens).
    Regards
    Wish79

    Okay, I didnt try with the trinidad selectmanyshuttle, but this worked for me on the af:selectmanyshuttle..
            <af:selectManyShuttle label="Label 1" styleClass="mycustcss">
              <af:selectItem label="Label1" value="value1"/>
              <af:selectItem label="Label2" value="value2"/>
            </af:selectManyShuttle>
            <af:selectManyShuttle label="Label 1">
              <af:selectItem label="Label1" value="value1"/>
              <af:selectItem label="Label2" value="value2"/>
            </af:selectManyShuttle>        And in my css file, I have
    af|selectManyShuttle.mycustcss::content { width: 800.0px;}
    The first selectManyShuttle came up very wide and the second one came up in the default width..
    Julian.

  • I did a presentation with many images and animations, now I need to change only the images without modify the related animations. How can I do it?

    I did a presentation with many images and animations, now I need to change only the images without modify the related animations. How can I do it?
    I use Keynote 09

    Select the image you want to change and go to Format Menu>Advanced>Define as Media Placeholder (or command, option, control i).

  • Print report in excel report without modifying the layout

    Offcourse we can print or view report in excel format by setting parameter desformat=delimited.But the o/p generated is not in proper format , with bolierplates repeating ???.And the o/p is more worse in case of complex report.Is there anyway to have proper excel o/p without modifying the layout

    See the responses to the separate thread
    "Send data to excel". The quick answer is
    "no", but there are ways to get pretty
    Excel outputs. Not from Reports, though,
    as best I can tell.
    -- Allan Plumb

  • How to write a Web service Handler without modifying the Web service code

    Hi,
    How can I write a SOAPHandler without modifying the Web service code. I want to add a generic handler which will take care of SOAPHeader for all the webmethods. To add a handler is it necessary to modify the web service code?

    You will find answer in [implementing_handlers_using_jaxws_2|http://blogs.sun.com/sdimilla/entry/implementing_handlers_using_jaxws_2]

  • HT201541 How can I update Safari without updating the OS?

    How can I update Safari without updating the OS? I presently have 10.7.5 and 1.6.1
    I am getting too many notices that my browser is out of date...
    b
    PS, a note to Apple. You use terms like Mountain Lion,  Yosemite, etc. But in other places you use
    10.6, 11.7, etc. Could you be consistent? use one or the other, not both. Please. Or always use both together.

    Shoot Apple, you don't make things easy. I don't want to upgrade OS as you now require an itunes account to get upgrades, and I'm against that. (until I have to).
    So I switched to the chrome browser, that works.
    PS, Ralph, yes, I can lookup the version numbers, but I have not felt the need to memorize them. My question is why does apple make it so difficult that we have to memorize the version number to name correspondence?
    b

  • How to update view  without modifying the base table ?

    Hi Experts , I need help in two qurstions
    1. How to update a view without modifying the base table ?
    2. How to write a file unix operating system in pl/sql ? is there any built in procedure is there ?
    Thank you

    Hi,
    I'm not sure what you're asking in either question. It would help if you gave a specific example of what you want to do.
    SowmyRaj wrote:
    Hi Experts , I need help in two qurstions
    1. How to update a view without modifying the base table ?You can't.
    Views don't contain any data; they just query base tables.
    You can change the definition of a view (CREATE OR REPLACE VIEW ...) so that it appears that the base table(s) have changed; that won't change the base tables.
    2. How to write a file unix operating system in pl/sql ? is there any built in procedure is there ?The package utl_file has routines for working with files.

  • Alv -change the output without modify the code

    hi...............
    how can we  change the alv output without modifying the code .
    plz help me.

    hi satya vani ,
    use this code..after execution choose the button(ctrl+f8) then you can give the position and length of the output field..
    then it will automatically changed...
    report .
    TABLES:LFA1.
    SELECT-OPTIONS:LIFNR FOR LFA1-LIFNR.
    DATA:BEGIN OF ITAB OCCURS 0,
    LIFNR LIKE LFA1-LIFNR,
    NAME1 LIKE LFA1-NAME1,
    LAND1 LIKE LFA1-LAND1,
    ORT01 LIKE LFA1-ORT01,
    REGIO LIKE LFA1-REGIO,
    SORTL LIKE LFA1-SORTL,
    CFIELD(4) TYPE C,
    END OF ITAB.
    DATA:LINE TYPE I.
    SELECT * FROM LFA1 INTO CORRESPONDING FIELDS OF TABLE ITAB WHERE LIFNR
    IN LIFNR.
    DESCRIBE TABLE ITAB LINES LINE.
    LOOP AT ITAB.
    IF SY-TABIX = LINE.
    ITAB-CFIELD = 'C410'.
    MODIFY ITAB.
    ENDIF.
    ENDLOOP.
    TYPE-POOLS:SLIS.
    DATA:FCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA:LAYOUT TYPE SLIS_LAYOUT_ALV.
    DATA:SORT TYPE slis_t_sortinfo_alv WITH HEADER LINE.
    LAYOUT-COLWIDTH_OPTIMIZE = 'X'.
    LAYOUT-WINDOW_TITLEBAR = 'VENDORS DETAILS SCREEN'.
    LAYOUT-EDIT = 'X'.
    LAYOUT-info_fieldname = 'CFIELD'.
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
    I_PROGRAM_NAME = SY-REPID
    I_INTERNAL_TABNAME = 'ITAB'
    I_INCLNAME = SY-REPID
    CHANGING
    CT_FIELDCAT = FCAT.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    I_CALLBACK_PROGRAM = SY-REPID
    IS_LAYOUT = LAYOUT
    IT_FIELDCAT = FCAT
    TABLES
    T_OUTTAB = ITAB.
    regards,
    venkat.

  • Get the system language

    Hi ,
    There is FM which can provide the system language which stored on RZ11 ?
    i found this FM RSRA_GET_DEFAULT_LANGUAGE   ,
    but i need other FM .
    Regards
    Nina

    There is no Where-Used-List for this "logic" and if you do an F1 on the CALL ' ...statement you will see that the documentation is not meant to be encouraging...
    I would do a code scan for use of the statement by SAP and try to find a (preferably released) FM or method which encapsulates it.
    If there isn't one, then I guess it is either not foreseen (or even illogical) or a functional deficiency.
    @ Nina: Is your concern that the user can logon with a language which is different to the system default language? So you actually want to make it a system mandatory language?
    Cheers,
    Julius

  • HT203192 "networksetup is trying to modify the system network configurations" type your password to allow this.

    "networksetup is trying to modify the system network configurations" type your password to allow this.Type your password to allow this.  No amount of password typing seems to satisfy the request. The pop up box will not go away!!!!

    Hi Glenyse,
    Did you find the answer to your question?  I have the same problem.  Or can anyone else help?
    My wife’s 2012 Macbook Pro has Yosemite and is using Wi Fi for the internet connection. 
    Every time, both on startup and awaking from sleep, a window appears on the desktop with a locked icon saying, “Networksetup is trying to modify this system.  Type your password in to allow this”.
    The window (which can’t be moved or dragged) shows the computer’s user name. The password has to be repeatedly typed in as many as 10 times and the highlighted ‘modify configuration’ box clicked before the window disappears and the computer then functions normally.
    Needless to say, this is driving my wife up the wall…    I would certainly appreciate information on how to get rid of this troublesome window!

  • Why i always get "Network is trying to  modify the system network configuration type your password to allow this

    why do i always get "Network is trying to  modify the system network configuration type your password to allow this"

    Hello, let's see if this old cure still works...
    To stop the pop-up, Go to System Preferences: Security. Check the box next to "Require password to unlock each secure system preference." Then lock Security.

  • Extracting Time without using the System Date and Time

    Hi, can I know how to process a task at this particular time eg. 6PM everyday without using the System Date and Time..
    Do I need to use a Timer to get this done or is there any other solution to do this? Can give me a few hints? Thanks in advance =D

    You could use a timer...assuming you had some good reference point when you started so you would know that from your starting point it's now 6pm.
    I thought I saw you asked this question once already...and you were given a similar answer....I think by Sylviae?

  • How can change the system language on my S4 to Italian?

    I would like to change the system language on my S4 to Italian but that is not an option.  In fact, there are only about six choices of language, which is ridiculous for the type of phone.  How can I add languages?  I know people with the same phone on other carriers that can do this very easily from system settings.

    I know Italian is not currently an option.  That is the reason for my question.  I would like to change the system language to Italian.  Any third party apps,  as you recommend, require the phone to be rooted and I do not want to do that. Why is it that the same phone on other carriers has a wide selection of languages to choose from but Verizon's version only has six options to choose from? You have the ability to change the keyboard language,  which I did,  but not the system language.

  • Is there a way to erase data without reinstalling the system?

    Hi
    I have an old PowerMac G5 that I want to sell. I want to erase the hard drive, but I no longer have the system disks. Is there any way to erase the data without reinstalling the system?

    Hi-
    You could set up a new user (Administration) account, and then delete the old user account that has data related to it.
    Once that is done, if you want a more secure elimination of the data (so it cannot be scavenged) clone the drive to a second drive, and then you can erase and write zeros to the first drive.
    Reclone the cloned version back, and you should have a very clean, "fresh" system drive.
    Use SuperDuper! for the cloning.
    Mind you, I haven't tried that process, but I don't see why it wouldn't work.
    Keep a copy of the system drive (backup), just in case......
    Message was edited by: japamac

Maybe you are looking for

  • Sidebar not extending, footer not at foot

    Okay. I have a mess of new pages to build for my site (about 80 of them). I have existing templates to start them from. The templates are fine. The old pages are fine. In the new pages, however, the sidebar won't extend to the bottom of the content b

  • PXE Failing on only one DP out of 85!?

    I have one DP, on the other side of the world which wont PXE boot... I've removed it all (Boot Images, Pxe, WDS) and reinstalled a few times... I think the issue is when I distribute the boot images. I just see this in smsdpprov.log: [1AEC][Sat 01/11

  • Is it safe to delete driver zip files after driver udpate?

    I have recently updated some drivers on my computer and I would like to know if it is safe to delete these zip files once the drivers have actually been installed. There are also some that are just files in the same update folder which are not compre

  • Song info isn't same on iPhone as on iTunes

    Hello, I just upgraded to an iPhone 6+ 64gb. I've successfully restored everything to my new phone and all is well, until I was playing music in my car and I noticed just about every songs information is incorrect. So, I went to itunes.. and it's cor

  • Photohop Elements 10 Organizer Crash on .tif files

    I have 30-40MB .tif files created by a Nikon LS-5000 scanner.  When I add all but one or two particular pictures to the catalog the Organizer crashes.  Elements 7 also crashes.  The editor works fine with them as does Lightroom 4 and Windows Photo Vi