Uninstall foreign languages

Trying to clean out my iMac with OS X v. 10.6.8.  Wish to uninstall the foreign language supprt.  Thanks

petermac87 wrote:
fane_j wrote:
petermac87 wrote:
I hate knowing I have foreign languages on my computer
Them danged furriners gets in everywhar…
Sorry, I only have English on my computer. Is that a dialect of American you are speaking? lol Actually American terminology would be another thing I would like to be able to uninstall. lmao
Pete
LOL.  It's 'de-install' Pete, if you really want to be purist about it.    Please let me know if you ever find an app that can do that.
Personally I don't see the point of keeping junk like language files that will never be used on my HDD, despite that I have oodles of space left on my 750gb internal.  I'd rather the space be used for something useful. Removing them will be one of the first jobs I do when ML has finished downloading and has installed itself successfully.
On the other hand, if you do leave them on your HDD, they can be considered as a sort of space-saving device that is easily removed if or when you realise that space is suddenly getting tight.  Just whip 'em out and problem solved - temporarily.
Just need to remember never to remove any English language files. They could be being used by OSX and removing them will certainly cause trouble.

Similar Messages

  • Unwanted foreign language that won't go away!!!

    Hey
    I recently had to reformat my hard drive and rebuild all the software on my laptop. Upon reinstalling itunes I notice that all the playlist titles are in a foreign language that I dont recognise.
    Also in th preferences my library is entitled *Käyttäjän David kirjasto*
    I uninstalled itunes and reinstalled and it is exactly the same. I'm at a bit of a loss. Does anyone have any ideas why this is and how to get rid of it?

    Hey there,
    Have you tried this?
    To change your language settings on a Windows PC:
    Open iTunes.
    From the Edit menu, choose Preferences.
    Select the General tab.
    On the Language pop-up menu (in the lower section of the window), choose your desired language.
    Click OK.
    Quit and reopen iTunes.
    More information can be found through the link below. Hope this helps\
    http://support.apple.com/kb/HT2242?viewlocale=en_US
    B-rock

  • Webpages often show foreign language even after English made preference. How do I fix that?

    When I go to websites, the text is in either a foreign language or wingdings. I never know when this will happen. Web sites that have never done this before are now doing it. I have to close Firefox and use Internet Explorer which I don't like. I have gone to options and made English (US) my preference, restarted the computer, but no change. This happens on websites I use often. Can someone tell me how to fix this? Thank you.

    This issue can be caused by an old bitmap version of the Helvetica or Geneva font or (bitmap) fonts that Firefox can't display in that size.<br />
    Firefox can't display some old bitmap fonts in a larger size and displays gibberish instead.<br />
    You can test that by zooming out (View > Zoom > Zoom Out, Ctrl -) to make the text smaller.<br />
    <br />
    Uninstall (remove) all variants of that not working font to make Firefox use another font or see if you can find a True type version that doesn't show the problem.<br />
    There have also been fonts with a Chinese name reported that identify themselves as Helvetica, so check that as well.<br />

  • Foreign Language in Print Dialog for Officejet K5400

    HP Officejet Pro K5400 on Windows XP 
    Although the tabs and the first screens in the print dialog box are in English, suddenly there is a foreign language in the dialog boxes under Properties.  For example, under features (English tab), the Paper Type is Almindelgt papir and the Paper Source is Valg automatisk.  Photo fix is Fra, Grundlaeggende, or Fuld.
    I have searched online and found instructions for changing an HP dll file for several printer models but not this one.
    Uninstalling and reinstalling from the CD or as a fresh download from HP did not fix it.  
    I suspect it has something to do with new installation of Adobe Reader X, but uninstalling it did not fix it. 
    I called HP tech support and was told to call Microsoft.
    I would appreciate any suggestions.
    Thanks!

    Juan,
    You may check this: GL name - Foreign language
    Thanks,
    Gordon

  • Text in forms and some other websites show up in a foreign language, I think it is cantonese. How do i revert back to normal?

    Form data shows up in a foreign language and im not quite sure how to change it back.

    This issue can be caused by an old bitmap version of the Helvetica or Geneva font or (bitmap) fonts that Firefox can't display in that size.
    Firefox can't display some old bitmap fonts in a larger size and displays gibberish instead.
    You can test that by zooming out (View > Zoom > Zoom Out, Ctrl -) to make the text smaller.
    Uninstall (remove) all variants of that not working font to make Firefox use another font or see if you can find a True type version that doesn't show the problem.
    See also [/tiki-view_forum_thread.php?forumId=1&comments_parentId=566006]
    Use this test to see if the Helvetica font is causing it (Copy & Paste the code in the location bar and press Enter):
    <pre><nowiki>data:text/html,
    Helvetica<br><font face="Helvetica" size="25">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</font><br>
    Helvetica Neue<br><font face="Helvetica Neue" size="25">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</font></nowiki></pre>

  • Catalog id is not getting displayed properly in Foreign Language (French)

    Hi All,
    I have created a web service id for the external catalog and I have assigned the same to one of the user. The name of the web service id is getting displayed properly in the shopping cart creation screen when the language is English. But when we are changing the user language to Foreign language (French), the name is not getting displayed properly.
    Could you please advise me if there any settings needs to be done in the parameters of the specific web service id. Thanks in advance for your help.

    Hi,
    Go to External Web Services and the select the web service ID. Then click on GOTO >Translation and select the language and enter the description of the web service as to be disaplyed while users log in French against the language.
    Thanks,
    Anshu

  • How do you install foreign language fonts?

    Does anyone know how to install foreign language fonts that doesn't come with iPad?

    SkipD wrote:
    What I want to know is: *will* it be, &amp; *how soon*?
    Nobody here has any way to tell you that, and Apple itself never provides this kind of info.  Make sure you tell them you want it here:
    http://www.apple.com/feedback/ipad.html
    (Even on a desktop/laptop Mac with the full version of OS X Ethiopic currently requires installing 3rd party software.  I can provide the source if you are interested)

  • Problem with charsets for foreign languages

    hi
    i have a problem with a webapplication
    in my webapplication i have some code that gets data from a webpage of another webapplication. This other web application can use many foreign languages
    the problem is that those foreign languages contain some special characters, and those special chars aren't displayed the right way
    this is the code to get the data from the other webapp
    private static StringBuffer getContent(String sUrl) throws MalformedURLException, IOException  {
            StringBuffer content = new StringBuffer();
            URL url = new URL(sUrl);
            HttpURLConnection httpURLConn = (HttpURLConnection) url.openConnection();
            httpURLConn.setRequestProperty("charset", "utf-8");
            BufferedReader buffReader = new BufferedReader(new InputStreamReader(httpURLConn.getInputStream()));
            String inputLine;
            while ((inputLine = buffReader.readLine()) != null) {
                content.append("\n" + inputLine);
            return content;
        }as you see , i tried to set the encoding to UTF-8 but that did not solve the problem

    an example of those special chars
    fran�aisis displayed as
    code]
    fran��ais

  • My adobe illustrator is in a foreign language. how can i turn it into english?

    my adobe illustrator is in a foreign language. how can i turn it into english?

    First please remember this is a public forum.  If you are going to respond to the thread via e-mail please remove your signature prior to responding.
    To resolve your difficulties you will need to go to the Language & Text preference pane.  Once there click on Edit List and remove all languages besides English.  You will then likely need to remove and reinstall the trial as the language setting I believe is set during the installation process.

  • Hp printer 3050 all in one j610 series. My window is in a foreign language

    Hi, am wanting to purchase the above printer, it is 2nd hand & I urgently need to set it up to ensure it is working properly.
    I however cannot change the foreign language in the window to put in mine. Can anyone help please. I never received a manual.

    Hi @Seagul ,
    I see by your post that you would like to know how to change the language on the printer's display.
    I would be happy to help you.
    Select the Setup icon on the printer. (should be the first one or top one on the display)
    Select the third option in the list. (Language)
    Then select your desired language.
    If you are still not able to change the language, I can send the reset in a private message.
    In the forum beside your handle name just click on the envelope to view it.
    Have a great day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Reading XML file having various foreign languages from web application.

    Greeting..
    I'm dealing with a so-called serious problem where-in:
    I've to read one of the configuration files(XML files) having values in different foreign languages (like Chinese, Japanese, Arabic etc). I've to read that file contents, in as it is form, in such a way that user can read / change the data from the web application.
    I'm showing the XML file inside the TextArea (the HTML <textarea> tag. While reading this file, it got converted to junk values instead of actual ones. While saving this file it changes those original values to junk in file as well.
    I'm using SAX parser with DefaultHandler.
    Better suggestions are welcome.
    Thanks in advance
    Regards

    rikslovein wrote:
    Better suggestions are welcome.You have a number of places where data corruption could occur. You have not yet identified where it occurs. When you know where it occurs it would be much easier to determine a solution.
    Do NOT display the characters to determine the problem. Instead take a small sample and print the numeric values. And do that at each stage/layer until they do not match.

  • How do I purge foreign language files from OS X, 10.8, without using purchased software?

    I jumped from Snow Leopard on an older MBP to a new MBP with Mtn Lion already installed, and though my older MBP had all but English and Spanish languages deleted from the Snow Leopard install, it appears that I do now have many foreign languages I would rather not have on my hard disk.  I ran across an app from Stellar Software, Speedup Mac, that has a demo version, but without paying the $29 purchase price purging of language files cannot be done.  (It was this app that showed me that all those other languages were hidden on my drive.)  I am simply wondering if there is lesser expensive apps for stripping languages from 10.8 or simple command line instructions that I (not a usual Terminal user) could use to accomplish this "downsizing".  BTW, I'm not too keen on reinstalling 10.8 just to purge the unwanted languages.  I've got plenty of hard drive space (yes, it is HDD not Flash-based) but I think this new MBP would start up faster w/o the extra files.  Despite going from an MBP with a Core2Duo to an MBP with a Corei5, my new machine is way slower starting up.  Much gracias everyone.

    I recommend that you do not do this. Extraneous language files do not occupy much space, and removing them has been known to break future upgrades for those apps. There is also no way to undo their removal, short of restoring your system from a backup.
    Your computer's performance is unaffected by the presence of these localized language files. Deleting them will result in no performance improvement whatsoever. Localized language resources are stored in resource folders contained within each app. They load what is required according to your specifed settings in System Preferences.

  • Just purchased new ipad.  screen in foreign language and says "Dand dat Ngon ngu.   What's that all about?

    Just purchased new ipad.  screen in foreign language and says "Dang dat Ngon ngu?   What's going on??

    The easiest AND quickest way would be to reset the iPad and start over.
      Reset all settings 
      Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. 

  • Foreign language Invoice

    I am using SAP B1 2007A version and would like to be able to invoice in other languages. I have setup in ADMIN/SYSTEM Initi/Company Details to enable Foreign Languages. So now I can go to a B/P and set is to another language e.g Spanish. It also gives me the Option in Items to Translate an Item Description into Spanish. Next step was to design a PLD which is set to SPANISH (in doc layout) and indeed it picks up the Spanish translation. (I have assigned the SPANISH PLD to the relevant BP)
    However, if I follow the same logic for other fields, it does not seem to work:
    1. I have translated Method of payment field and I am unable to pick the traslated version in the PLD. ( I used OPYM table and neither the Description field or Payment Method Code field seem to work). I have spoken to somebody who has SAP b1 2007 version B and told me that it works on his version?
    2. Since option 1 did not work, I have created a UDF for method of Payment and translated this. However after placing this field to the SPANISH Pld report, it does not pick up the translation. B1 2007B seems to be OK but my versionA does not seem to work.
    Does anybody know if this is a bug? Am I missing something in my setup?
    Any help would be appreciated
    Thank you
    Robert

    Hi Carlos
    Sorry, I m not sure how I made this work but I think that it was related to the fact that if your Item is part of a Product Group then you need to ensure that the Group also has a Spanish Translation, otherwise all the Items which are part of this Group, will not show.
    Robert

  • Using a foreign language with the Java I/O, and saving to flat file.

    I want to use a foreign language in my program, in particular, russian. I want to be able to input the russian text into a GUI and then save the data in a flat file as well as retrieve it again. I am able to save some type of data to the flat file but it is unreadable. Question marks or some other unreadable characters appear instead.
    I am also not able to write in a foreign font. Can someone give me some advice for how to input a foreign language into with a GUI, save the information in a flat file, and retrieve it again.

    If you have got a String in Java somehow regardless of interior encoding mode, you can write it in a text file with an encoding you would like (e.g., UTF8).
    //import java.io.*;
    String str = "ABCEDFG";
    try{
       BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(new FileOutputStream("out.txt"),"UTF8"));
       bw.write(str);
       bw.close();
    }catch(IOException ioe){
        //process
    }

Maybe you are looking for