Language code on iWeb

I have used iWeb for my website design (www.intarkstudio.no) but I see now that I have a problem I am not sure how to solve. The site is in Norwegian - where the use of ø, æ and å is impossible to avoid. I see that the site is downloaded on the server without these vocals - ex. the word: interiør becomes interi;r or something. I have been told that this is because iWeb uses the Utf-8 code and I should replace it with "charset=iso-8859-1". I have downloaded TextWrangler in order to do this but I am getting cold feet here. For the first, I am not sure if this is right and secondly, I am sure TextWrangler is very easy to use but for me this is "Chinese". I don´t have the time to learn webcoding...

Hei. This is not shown on the website, itself. It is like this only in the file manager /public_html/www directory on the server I use. There the downloaded files
have the titles of the pages without these vocals. I´ve send a request to the webhotel company I use and the only answer I´ve got was not to use these vocals.
This can´t be a solution. I had to change the title of the pages on iWeb, like from
interiørdesign to interiordesign, f.ex. but this isn´t the way the word is written in norwegian. I am afraid I am not visible in search enginees (google)in norway (which) is the market I adress, because of this.
I have lounged my site since april 2010 and still I don´t appear in a search even in the 20th page or something.

Similar Messages

  • Invalid Language Code Error while Migrating

    Im using migration tool...while pasting im getting this kind of error. Anyone know what this means?
    SEVERE: <?xml version = '1.0' encoding = 'UTF-8'?>
    <env:Fault xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns2="urn:/crmondemand/xml/AccessProfile/Data" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns1="urn:/crmondemand/xml/AccessProfile/Query" xmlns:ns0="urn:crmondemand/ws/odesabs/accessprofile/"><faultcode xmlns="">env:Server</faultcode><faultstring xmlns="">Invalid Language Code. Your company is not configured for this language. Please use a language it has been configured for.(SBL-ODS-50732)</faultstring><faultactor xmlns=""/></env:Fault>

    As already suggested, please find the most appropriate forum according to the product you are working on (obviously not a feedback to give about OTN forum) for posting.
    Thank you.
    Thread locked.
    Nicolas.

  • How to display the 'language code' for language dependent 'Short text' ?

    Hi,
    I am new to BW.
    Can somebody help me with the following issue?
    I have an attribute 'Material category description'  and I chose short text exists and made it language dependent. I had loaded the master data successfully.
    Now I want to know how to check the 'language code' for this material category description. When I display the data, will the language code display by defalult?
    I had checked the text table using SE11
    It displays the following fields over there.
    /BIC/TS1_MCT_DS   [  /BIC/TS1(InfoObject name)  ]
    LANGU
    TXTSH
    I appreciate your help!
    Thank you
    Sekhar

    Dinesh,
    I went to RSD1 -> info-object -> Master Data/text tab. It shows my language selections there (Short text selected, language time dependent etc.) with everything grayed out.
    In SE16, I could display the data in the following format.
    /BIC/ST_PRID                TXTSH                 TXTMD
    P01                                   umbrella                 rainyday
    P02                                  tent                         waterproof
    etc.
    I want to see the 'language code' as one of the columns in this table.
    Can you help me do that?
    Thank you,
    Sekhar

  • Help with jquery code into iweb

    Hello,
    I am new to inserting code into iweb and was wondering if it was possible to use code such as the jquery plugins into an iweb html snippet? i would like to create a simple image gallery such as the following link:
    http://malsup.com/jquery/cycle/lite/
    interested in the click transitions (fade in out), but instead of using the prev / next as the click triggers if it was possible to use "+" and signs
    i appreciate any help you guys may provide,
    grodr

    Yes, you can use JavaScript in the HTML Snippet. But it requires knowledge of HTML/CSS/JavaScript and how iWeb works.
    Anything you paste in the HTML Snippet is your responsibility. iWeb does not care whether it works or not. It happily publishes the stuff you paste.
    Read this article : [Using the iWeb HTML Snippet|http://www.wyodor.net/blog/archives/2009/07/entry_213.html]
    Follow the link in the article and read this sentence very very carefully:
    *Publish the page on the server and test it. Make sure it works. And test it again. And again. And again. No excuse.*
    And this : [How to display a remote picture in your iWeb page|http://www.wyodor.net/Tutorials/ImageWidget/ImageWidget.html]
    This pages uses it in the two slideshows :
    http://www.wyodor.net/_Demo/MyHouse/Huis.html
    And here it is explained how to create such slideshow :
    http://www.wyodor.net/iWebBlogTest/Wyodor_1/WebBanner.html
    And this topic :
    http://discussions.apple.com/thread.jspa?threadID=2351764&tstart=0

  • Get Locale country and language codes

    I have checked the documentation, but nothing is jumping out
    at me. Is there a function that returns the locale country and
    language codes? GetLocale() returns the "locale name as it is
    represented in ColdFusion":
    ie:
    English (US)
    Spanish (Standard)
    What I am looking for is the
    ISO
    codes
    en US
    es ES
    I can get the information using getPageContext(), but just
    wondered if I was overlooking a built-in CF function.

    -==cfSearching==- wrote:
    > The problem with the functions I have seen is that they
    return
    locale name
    > as it is represented in ColdFusion (ie English (US)
    ). But what I am
    > looking for the ISO language and country codes.
    ...hmm this didn't go thru on the 16th. let me try again.
    that should only be for the "traditional" cf supported
    locales (backwards
    compatibility is always foremost in the cf team's minds), the
    rest should be in
    normal java style locale ID (th_TH, ar_AE, etc).
    no, there's nothing built-in in cf for what you want. you'll
    have to dip down
    into java:
    <cfscript>
    localeObj=createObject("java","java.util.Locale");
    locales=localeObj.getAvailableLocales();
    writeOutput("<table border='1'>");
    writeOutput("<tr align='center'><td
    colspan='2'>Locale</td><td>Language</td><td>Country</td></tr>");
    for (i=1; i LTE arrayLen(locales);i=i+1) {
    thisLocale=locales
    thisLanguage=thisLocale.getLanguage();
    thisCountry=thisLocale.getCountry();
    writeOutput("<td>#thisLocale.toString()#</td><td>#thisLocale.getDisplayName()#</td><td>#t hisLanguage#</td><td>#thisCountry#</td></tr>");
    writeOutput("</table>");
    </cfscript>
    note that this snippet doesn't show variants (eg. th_TH_TH)
    & shows language
    only locales (en, fr, etc.), nor is it sorted in any order i
    can recognize. also
    keep in mind that what this shows depends on the server's JRE
    version. if you
    want a "better" source of locales, use the icu4j lib's
    ULocale class. it's based
    on the latest CLDR & contains way more locales (and they
    actually tend to fix
    locale bugs in your lifetime).

  • Build Cancelled due to Language Code

    My build is canceling during the initial compiler phase stating " Language cods for 'English' and 'English-2' must differ "
    Please advise!
    Heather

    Is there a "language code virus" on the loose?
    This has been answered several times the last few days.
    Look in the outline tab, You will find that you have two language flags set to the same language. Delete the second one, or if you are actually using two languages - change the language for flag nr. 2.

  • Googling for Apple answers - Language code supplied is invalid

    When I Google for problems, many times an Apple Kbase article is listed in the search results. However, when I click on the link, I'm asked to log into support.apple.com (WHY??? - that is idiotic, if the Google cache has the answer, why do you need to know who I am to show it to me?)
    When I enter my username and password, the only response is "Language Code supplied is invalid." There is no way around this unless you dig the kbase article code out of the link and then login, and then search Apple for the article number.
    Can someone assist me on this?

    Example:
    I go to http://www.apple.com/support/snowleopardserver/
    I click on Setup and Administration, and see the two links and the discussions are not what I want. I click on See all Setup and Administration articles <http://support.apple.com/kb/index?page=search&src=support_site.psp.snowleopard .more&q=Setup%20and%20Administration>.
    I get taken to the login page and get the error. At no point do I have an option to select a language.

  • Hi all: Change language Code in C.

    I am developing CI based soap web services in PeopleSoft. i want response in different in languages.

    You posted a duplicated thread here :
    Hi all: Change language Code in CI based web services.
    -- mod. action: locking this one --
    Nicolas.

  • Hi all: Change language Code in CI based web services.

    I am developing CI based soap web services in peoplesoft. i want response in different in languages. I need that language is selected at request time. mean need to change Language Code in CI based web services.
    Can anybody help me?
    thanks

    You posted a duplicated thread here :
    Hi all: Change language Code in CI based web services.
    -- mod. action: locking this one --
    Nicolas.

  • Recommended Dimension language code approach matching SEO/ISO standards?

    Hi All,
    I noted that some language codes are alluded to in the developer guide for configuring Dimensions, but are not listed in their entirity.
    - en_US (US English)
    - de_DE (German)
    - de_CH (Swiss German)
    - de_AT (Austrian German)
    Is there a defined standard for these which allows successful use of the values with the various SEO meta tags and ISO language codes?
    <html lang="en">
    <meta http-equiv="content-language" content="en, fr">
    <link rel="alternate" hreflang="es" href="http://es.example.com/" />
    E.g. Some combination of ISO 639 http://www.seoconsultants.com/meta-tags/language
    Thanks

    Found out.... ISO 693 two character language code and ISO 3166 country code groupings as defined by RFC 4646.
    http://docs.oracle.com/cd/E13214_01/wli/docs92/xref/xqisocodes.html

  • Language Code in DTW 2005

    I'm using the new version of DTW Version 2005.0.3 and
    API version 6.80.123.
    When i want to use the different language codes (8 for German, 3 for English UK, ...), the DTW doesn't translate the language code and it puts the value for all the records in the default language value of the company.
    Am i using the wrong values or what ?
    thanks for helping me

    Mario,
    Did you test this behavior in Business One itself, ie., if in the Business One user interface it is set to use a default language of English and you do not have the "Multiple Language Support" flag turned on in Administration > System Initialization > Company Details > Basic Initialization, then you would only be allowed the default language in the Business One user interface as well as coming in through the DTW.  If this is the case in Business One where you are only being allowed the default language and this setting is not turned on, then the DTW for 2005A uses and follows the same rules as the DI API itself.
    Hope this helps,
    Eddy

  • Adding code to iWeb

    Is it possible to add code to iWeb templates? Using iWeb version 1.1.2.
    Thanks in advance.
    Roy

    I then put it back into the folder on my iDisk.
    I don't understand what you mean by that. If you open something on your idisk, edit, and save, there is nothing to "put back". It never went anywhere.
    Did you do this on the local copy of your idisk? In that case it might not have synched with the real one on .Mac.
    I then opened it in my browser (Firefox), and it looked exactly the same as before. I selected view page source to see if it had been erased and the added .html was still there.
    If you added html and open the page with your browser and there was no change, there could be two reasons: the html you added was not correct in terms of making the change you wanted, or your browser was looking at the old version of the page from its cache. The latter is very common with Safari and can be fixed by doing Safari > Empty Cache.
    If you want to provide the url of the page you have changed with some info about what is not showing up, I'd be happy to have a look.

  • Creating a new custom language code?

    Hi!
    What would be the process to create a new custom language code to MDMP enabled SAP (6.20)? And the same question for a Unicode system ECC6.0?
    The new language (let's call it ZZ) would be an exact copy of Chinese language ZH.
    As far as I have understood, the requirement is to maintain different Chinese material descriptions and tax rates for the same material in different Chinese customs areas. Standard SAP doesn't support this it seems. So, ZH would be used for custom area 1 and ZZ for customs area 2. Each with their own descriptions and tax rates.
    Solution-wise I appreciate any good tips but if we really  have to go down to this "second Chinese language" path I'd like to know how big a task it is.

    Hi,
    in a Non-Unicode system, SAP notes 112065 and 302063 describe possibilities to use additional language keys.
    In a Unicode system, SAP note 73606 (attachment supportedlanguages2.xls) shows all supported language keys.
    However these additional language keys enable you to maintain additional descriptions (e.g. for display or printing).
    But in general it is not possible to enable different tax rates depending on language keys.
    This sounds rather like a localization requirement. For this area there are usually other attributes which can be used (like e.g. company code).
    Best regards,
    Nils Buerckel
    SAP AG

  • Code and iweb

    I have iweb "08. I want to delete the beige boxes on my website left from Google ADsense. I have deleted all code in Iweb SEO Tool that relates to the widgets but these boxes are still on my page. Please see at www.gilreathdecorativefinishes.com.  I need help to make my site look more presentable to clients. Tried to contact Google to no avail.

    I would personally delete this widgets from within iWeb it self it looks like the code on this particular page was widget 4 & 5 on the "Venetian_Plaster.html" page the code to delete would be:
    <div class="com-apple-iweb-widget-googleads" id="widget4" style="background-color: #f3eedf; height: 125px; left: 508px; position: absolute; top: 216px; width: 125px; z-index: 1; "></div>
              <div class="com-apple-iweb-widget-googleads" id="widget5" style="background-color: #f3eedf; height: 125px; left: 58px; position: absolute; top: 216px; width: 125px; z-index: 1; "></div>
    http://jeffnitschke.com

  • Language codes for 'english' and 'english-2' must differ?

    I am trying to build my project but as I do I get the following pop up: Compiler: Language codes for 'english' and 'english-2' must differ. What do I need to change?

    You have added a language to your project which you don't need. Look in the outline view at the bottom for the folder called langauges, then delete the second one. Both will be English and this cannot be the case on a DVD - the player will not know which assets to use on a menu if there are two langauges the same.
    The languages are used when you want to create a disc that will display the correct menu backgrounds when used in players in different countries - the DVD player settings will have a language set up, and the DVD will use the appropriate language files to construct the menus accordingly.

Maybe you are looking for

  • WBS Settlement Strategy

    Dear Experts, Please note that I have implemented SAP Note 211324, but still I am not able to see Account Assignment Category 5 - Superior WBS Element in customizing. http://wiki.sdn.sap.com/wiki/display/PLM/ModificationnoteforStrategyforsettlementto

  • Orainst.cm no such file name or directory

    It's quite obvious that I'm missing something in setting up my environment, but for the life of me, I can't figure out what it is. After I think I have my environment set up correctly I run the orainst script and it gives me the message ./orainst.cm

  • Ubuntu 10.10 - F-Spot encountered a fatal error

    I've installed F-Spot to Ubuntu 10.10 and after scanning for pictures to add to the library it will not start. I simply get this message: 'F-Spot encountered a fatal error. Value is greater than Int32.MaxValue or less than Int32.MinValue. Screenshot

  • Serial data manchester

    Hello All, I am new to the forums here. I need help converting the following code for use in LabVIEW. The data is coming in using rs232 format in ASCII. The bits are manchester encoded. I have setup the normal vi for reading serial data but when inde

  • Calling a function module from a Web Template

    Hi, I need to call a function module from a web template. Any pointers on how i can do this ? Is this even possible ? Thanks Shailesh