JavaHelp Localization

I used javahelp 2.0 in my application. It doesn't support Chinese very well. The pargraph in the html file with same font appears different size. That's quite strange.
Meanwhile, I want to change the menu items into Chinese words. Is it possible?
Any suggestions will be appreciated.

Hello,
I never did something in Chinese, but Hindi worked acceptably well. JavaHelp supports only HTML 3.2 if I remember correctly.
What menus are you writing about? JavaHelp itself doesn't have any, as far as I can see.
Regards
J�rg

Similar Messages

  • Javahelp legal localization

    Hi,
    We are developing a project for Turkish users and we need a localized help. However Javahelp does not provide a Turkish localization. What we did was to write our own resource bundle class and to add it to the same path of JavaHelp's resource bundles. However it seems that this is not a legal procedure according to the license agreement. We are expecting to hear what we can do to overcome this license problem and to use JavaHelp in our project. Is there any legal way of Turkish localization of JavaHelp?
    Thanks...

    Hello,
    I never did something in Chinese, but Hindi worked acceptably well. JavaHelp supports only HTML 3.2 if I remember correctly.
    What menus are you writing about? JavaHelp itself doesn't have any, as far as I can see.
    Regards
    J�rg

  • Error in JavaHelp

    Hello:
    I have JWS app I've been working on for a long time. I just added JavaHelp to it. I got it all working nicely on my local machine. When I went to deploy in JWS, I ran into a permission problem. JavaHelp is included as an extension, and I've set <security> to <all-permissions/> in both JNLPs, but I still get the following exception:
    Parsing failed for null
    Exception caught while parsing nulljava.security.AccessControlException: access denied (java.util.PropertyPermission user.home read)
    java.lang.NullPointerException
      at javax.help.plaf.basic.BasicFavoritesNavigatorUI.reloadData(BasicFavoritesNavigatorUI.java:297)
      at javax.help.plaf.basic.BasicFavoritesNavigatorUI.installUI(BasicFavoritesNavigatorUI.java:235)
      at javax.swing.JComponent.setUI(JComponent.java:647)
      at javax.help.JHelpNavigator.setUI(JHelpNavigator.java:257)
      at javax.help.JHelpNavigator.updateUI(JHelpNavigator.java:276)
      at javax.help.JHelpNavigator.<init>(JHelpNavigator.java:105)
      at javax.help.JHelpFavoritesNavigator.<init>(JHelpFavoritesNavigator.java:62)
         ... more omitted
    Here are my JNLP files:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+"
    codebase="http://www.mydomain.com/"
    href="mydomain.jnlp"
    version="0.14">
      <information>
        <title>My Client</title>
        <vendor>MyCompany, LLC</vendor>
        <description>MyCompany rules.</description>
        <homepage href="http://mydomain.com"/>
        <offline-allowed/>
      </information>
      <resources>
        <jar href="mydomain.jar"/>
        <j2se version="1.5+" href="http://java.sun.com/products/autodl/j2se"/>
        <extension name="Java Help" href="lib/javahelp.jnlp"/>
      </resources>
      <application-desc main-class="com.mydomain.core.Main"/>
      <security>
        <all-permissions/>
      </security>
    </jnlp>
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+"
    codebase="http://www.digibunker.com/"
    href="lib/javahelp.jnlp"
    version="2.0">
      <information>
        <title>Java Help</title>
        <vendor>Sun Microsystems</vendor>
        <description>Java Help System.</description>
        <homepage href="http://java.sun.com/javase/technologies/desktop/javahelp"/>
        <offline-allowed/>
      </information>
      <resources>
        <jar href="lib/jh.jar" download="lazy" part="JavaHelp" />
        <jar href="lib/jhall.jar" download="lazy" part="JavaHelp" />
        <jar href="lib/jhbasic.jar" download="lazy" part="JavaHelp" />
        <jar href="lib/jsearch.jar" download="lazy" part="JavaHelp" />
        <j2se version="1.5+" href="http://java.sun.com/products/autodl/j2se"/>
      </resources>
      <component-desc>
      <security>
        <all-permissions/>
      </security>
    </jnlp>
    Any and all help welcomed.
    Thanks, Dan
    Edited by: dlamet on Jan 8, 2010 5:40 PM

    AndrewThompson64
    Thanks for the quick response. I downloaded your app (very good idea BTW!) and ran it against my JNLP file. It reported a number of issues to me, but I don't understand them. I subsequently located the JNLP spec 6.0.10 here and went through it carefully. (I ended up discovering some nice features I added to my file.) I ended up with the following file, but the errors seem to be the same. The output is below the JNLP.
    Is it possible that your app is analyzing against an outdated version of the JNLP spec? It's all that I can figure. Perhaps you could explain just one or two of the node errors to get me started. Thanks again! Dan
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+"
    codebase="http://www.digibunker.com/"
    href="digibunker.jnlp"
    version="0.14">
      <information>
        <title>DigiBunker Client</title>
        <vendor>DigiBunker, LLC</vendor>
        <homepage href="http://www.digibunker.com"/>
        <description kind="tooltip">Automated media back up.</description>
        <description kind="one-line">The DigiBunker client makes protecting your media files easy.</description>
        <icon href="http://www.digibunker.com/images/icon-32.png"
    version="1.0"
    width="32"
    height="32"
    size="6243" />
        <offline-allowed/>
        <shortcut>
          <desktop />
          <menu />
        </shortcut>
      </information>
      <security>
        <all-permissions/>
      </security>
      <resources>
        <j2se version="1.5+" href="http://java.sun.com/products/autodl/j2se"/>
        <jar href="digibunker.jar" main="true" />
        <extension name="Java Help" version="2.0" href="lib/javahelp.jnlp">
          <ext-download download="lazy" />
        </extension>
      </resources>
      <application-desc main-class="com.judedavid.eros.core.Main"/>
    </jnlp>
    Content type application/xml does not equal expected type of application/x-java-jnlp-file
    cvc-complex-type.2.4.a: Invalid content was found starting with element 'homepage'. One of '{description, icon, offline-allowed, shortcut, association, related-content}' is expected.
    cvc-complex-type.2.4.a: Invalid content was found starting with element 'j2se'. One of '{jar, nativelib, extension, property, package}' is expected.
    cvc-complex-type.2.4.d: Invalid content was found starting with element 'security'. No child element is expected at this point.
    cvc-complex-type.2.4.a: Invalid content was found starting with element 'homepage'. One of '{description, icon, offline-allowed, shortcut, association, related-content}' is expected.
    cvc-complex-type.2.4.a: Invalid content was found starting with element 'j2se'. One of '{jar, nativelib, extension, property, package}' is expected.
    cvc-complex-type.2.4.d: Invalid content was found starting with element 'security'. No child element is expected at this point.
    cvc-complex-type.2.4.a: Invalid content was found starting with element 'homepage'. One of '{description, icon, offline-allowed, shortcut, association, related-content}' is expected.
    cvc-complex-type.2.4.a: Invalid content was found starting with element 'homepage'. One of '{description, icon, offline-allowed, shortcut, association, related-content}' is expected.
    cvc-complex-type.2.4.a: Invalid content was found starting with element 'j2se'. One of '{jar, nativelib, extension, property, package}' is expected.
    cvc-complex-type.2.4.a: Invalid content was found starting with element 'j2se'. One of '{jar, nativelib, extension, property, package}' is expected.
    cvc-complex-type.2.4.d: Invalid content was found starting with element 'security'. No child element is expected at this point.
    cvc-complex-type.2.4.d: Invalid content was found starting with element 'security'. No child element is expected at this point.
    XML encoding not known, but declared as utf-8
    Codebase + href 'http://www.digibunker.com/digibunker.jnlp' is not equal to actual location of 'file:/Y:/Moonlighting/JudeDavid/site/athena/public/digibunker.jnlp'.
    Downloads can be optimized by specifying a resource size for 'digibunker.jar'.
    The resource download at digibunker.jar can be optimized by removing the (default) value of download='eager'.
    The resource download at digibunker.jar can be optimized by removing the (default) value of main='false'.
    It might be possible to optimize the start-up of the app. by specifying download='lazy' for the digibunker.jar resource.
    Lazy downloads might not work as expected for digibunker.jar unless the download 'part' is specified.
    Resource type com of resource http://digibunker.com is not one of the allowable types of jar.
    Report for http://www.digibunker.com/lib/javahelp.jnlp

  • Palm Missing Localization Information Display after Mac OS 10.4.6 Update

    Recently I installed the Mac OS 10.4.6 update after confirming that it should improve some minor issues with "Hot Synching".
    Previously I could "Hot Synch" with my Palm Mac Desk Top software 4.2.1 and also with my PC with no issues. My Palm is using Palm OS 4.5, I believe.
    Now I can still can "Hot Sync" on my Mac--with no issues. However, when I take the Palm out of the USB Cradle and try to access the Palm Display page with the featured icons, I get a very unusual error:
    "Application can not be launched because it is missing localization info file xxx--enUS.prc."
    I checked the Palm site and entered the error message and the response was returned that indicated "several applications with the Palm Tungsten T require overlay files to run properly. "Dialer, SMS, & WAP Browser" require and overlay "prc" file that determines which language the application displays on the device. If this "prc" file is missing, it will cause this message to be displayed."
    I was instructed to install the "xxx_enUS.prc" using the Palm Install tool.
    I installed all of the "xxx_enUS.prc" files on Disk 2 and have performed a "Hot Sync" again. A successful "Hot Synch" was performed.
    The above message is still displayed on the Palm screen even after that successful "Hot Synch".
    I can not use any of the screen icons to select any of the features or vprograms on the Palm.
    The face buttons can be depressed but the selection from the Palm hand held icons with the stylus can not be accessed as the "missing localization info, ect" is displayed.
    I have performed soft resets to no avail.
    I still can not get this issues resolved.
    Recently I instlled iSynch and the problems still occur.
    Anyone out there have any suggestions.
    POWER MAC G-4 (933 MHz QuickSilver) Mac OS X (10.4.6) iSite
    POWER MAC G-4 (933 MHz QuickSilver)   Mac OS X (10.4.6)   iSite

    When I do Command-I, I see that I have read/write access for the local drive - depending on the machine I am sitting at - and the other networkeded drives allow read only.
    I guess the question is - how does the system know a user with the same username and password are actually the same person?
    Robert

  • Administração de boletos em  Localização Brasil

    Prezados,
    O SAP Business One precisa se adaptar à localização brasil a que se refere a adminsitração de boleto.
    Dois pontos que notei:
    1 - Mudar data de vencimento quando o boleto estiver no status enviado gerado ou depositado. (esse primeiro já postei no SAP Business One Product Development Collaboration), pois aqui no Brasil é muito comum mudar data de vencimento por demora na entrega da mercadoria por exemplo. da forma como está no B1 tem que cancelar o boleto, alterar a data e depois gerá-lo novamente fazendo com que perca a referência do boleto.
    2 - Dar desconto ou juros no boleto com o boleto no status depositado viabilza, pois não precisaria fazer lançameto manual contábil para contas de maior ou a menor, pois é muito comum no brasil descontos até a data de vencimento, mas não da forma como o SAP B1 faz (na condição de pagamento no Brasil não funciona).
    Se a SAP fizer issoficará mais fácil , agil e interessante na criação de relatórios como o de comissão por exemplo.
    Se eu cancelar o boleto e criá-lo novamente  como o desconto eu perco a referência e atraso o meu processo.
    Estas duas sugestões só seriam permitidas usar com autorização de usuário.
    Att,
    Lucidio Gandra Alves

    Dear,
    SAP Business One must adapt to the location Brazil referred to the Administration of billet.
    Two points I noticed:
    1 - Change the due date, when the billet is in the status sent generated or deposited. (I posted this first in SAP Business One Product Development Collaboration), because here in Brazil is very common to change the due date for delay in delivery of goods for example. how is the B1 has to cancel the ticket, change the date and then regenerate it causing him to lose the reference of the billet.
    2 - Give a discount or interest in the slip with the slip in status filed viabilza therefore do not need lançameto manual accounting for accounts more or less as it is very common in Brazil discounts to maturity, but not the way the SAP B1 is (provided that payment in Brazil does not work).
    If SAP makes it easy issoficará, agile and interesting in reporting as the commission for example.
    If I cancel the slip and create it again as the discount I lose my reference and delay the process.
    These two suggestions would be permitted to use only authorized user.
    Lucidio Gandra Alves

  • Localização Brasil - Preparação do ambiente

    Prezados,
    Gostaria de tirar uma dúvida sobre a preparação do ambiente para implementação da Localização Brasil.
    [Situação]
    Estou atuando em um projeto de rollout internacional e a equipe de TI deseja realizar o processo de preparação do ambiente para Localização Brasil.
    Passamos as instruções iniciais a seguir para prepação do ambiente, conforme links abaixo:
    Criação do client com cópia do client 000;
    Execução da transação O035 para alterar o template para Brasil;
    Execução das CATT de MM e SD;
    Comparar client 000 com novo client, para incluir objetos na request;
    Transporte para o ambiente DEV;
    Início da realização.
    É desta forma que trabalhei até o presente momento em projetos anteriores.
    No entanto, a equipe de TI ficou com algumas dúvidas sobre o processo e entrou em contato com a SAP Alemanha para obter maiores detalhes. Em reunião com a equipe SAP Alemanha, fomos informados que não se executa mais a transação O035 por esta transação alterar informações em diversas tabelas. Ao invés disto há outro processo, onde são selecionados objetos no client 000 e incluidos em uma request (como pricing de MM e SD, tipos de Nota Fiscal, tipo de item de Nota Fiscal, etc.) e transportados para o DEV. Neste contato, não haviam pessoas da SAP Brazil envolvidas.
    Informaram também que não é necessário copiar a empresa/centro 0001 para criar a estrutura organizacional para o Brasil, pode ser realizada a cópia de qualquer centro utilizado em outro país como referência.
    Não encontrei nenhuma documentação sobre este processo, e as documentações mais recentes que localizei recomendam a utilização o Country Installation Program (transação O035).
    [Dúvida]
    A SAP hoje sugere outra forma de preparação do ambiente para Localização Brasil, que não a descrita nos documentos abaixo? Em caso positivo, qual seria o caminho?
    Pesquisando em outros forums, verifiquei a informação que há um site da própria SAP onde é possível informar características do sistema (versão, suporte package, enhancement package, etc) e o site informa quais as notas requeridas para a implementação da Localização Brasil.
    [Informações adicionais]
    Nesta dúvida, não me refiro a notas específicas de processos, como CBT (1706309), MP135, CT-e, NF-e 3.10 etc. A dúvida em sí é sobre a preparação para início das configurações dos processos de negócio.
    [Links de referência]
    Seguem abaixo os links de referência:
    Brazil - SAP Library  (ECC 6.0 EHP 7)
    Quick guide for Brazilian Localization Installation
    Atenciosamente,
    Rafael

    Olá Rafael,
    Também entramos em contato com a responsável na Alemanha  sobre o installation guide para Brasil, mas não obtivemos resposta ainda.
    Na verdade você ainda poderia utilizar a O035 porém o esforço nas configurações seria um pouco maior.
    Assim que eu tiver maiores informações como link para documentação ou qualquer outra informação, posto aqui no SCN.
    Peço também que visite nosso blog de NF-e para outras atualizações.
    http://scn.sap.com/community/portuguese/sped-and-nf-e/blog
    ERP KBA: 2125859 - KBA [3.10] NF-e 3.10 Go-live checklist for SAP ERP
    ERP GRC NF-e: 2123768 KBA [3.10] NF-e 3.10 go-live checklist for SAP NF-e GRC
    Att,
    Adriel

  • Localização Portuguesa e Defir

    Bom dia,
    Relativamente às declarações peródicas do IVA no SAP 2007A, depois de preenchidos os campos da configuração do IVA na localização portuguesa (Sujeito_XX, Base_XX, Estado_XX), devemos ir a Relatórios -> Financeira -> Contabilidade -> Imposto -> Relatório de IVA e exportar para o Defir.
    O problema é que ao exportar para o Defir, ao ir a "Declarações periódicas do IVA", as declarações não apresentam qualquer tipo de valor. Há algum passo necessário além dos que referi?
    Alguém me pode ajudar com esta questão?
    Obrigado e cumprimentos,
    Pedro Santos

    Boa tarde Susana,
    Antes de mais, muito obrigado pela resposta. O problema penso que é mesmo não estarem os campos de IVA todos preenchidos com o "Sujeito_XXX", "Base_XXX", etc. Não sei se bastará isso para a declaração ser preenchida.
    Já agora, relativamente ao modelo22, sabe-me dizer quais os passos necessários para preencher automaticamente a declaração? Já encerrei o ano contabilistico e exportei o balancete para o Defir, mas também não tenho valores no modelo22.
    Desde já agradeço a atenção.
    Cumprimentos,
    Pedro Santos
    Edited by: Paulo Calado on Jun 15, 2009 7:53 PM
    Edited by: Paulo Calado on Nov 27, 2009 5:25 PM

  • How to Change URL of BPA after clicking on Open Document in PO Notification for India Localization?

    In the Purchase Order Approval workflow notification , there are two links at the bottom of page under heading REFERENCES,
    - view PDF
    - open document
    So when we click on open document, the Oracle Forms loads and  purchase order screen will appear in the screen.
    In case of India localization, for standard PO the India local screen opens, where we can see the taxes by clicking on Taxes Button.
    But in case of blanket purchase agreements, when we click on open document link from the notification,we are routed to the application with the screen of global purchase order, instead it
    should go to Purchase Orders(Localization).
    We want to move to the India local po screen for BPA.
    So please let me know, where I can change the URL for Blanket Purchase Agreements.
    Regards
    Sandeep

    Hi kalyani,
    Please check my inbound plug code...tell me what changes wee need to do and where wee need to add this code...once again thanks for your reply..
    METHOD
    ip_inboundplug.
    **CALL METHOD SUPER->IP_INBOUNDPLUG
    ** EXPORTING
    ** iv_collection = iv_collection.
    DATA: lt_ivr_url_param TYPE tihttpnvp,
    ls_ivr_url_param TYPE ihttpnvp,
    lr_searchcustomer TYPE REF TO if_bol_bo_property_access,
    ls_searchcustomer TYPE crmt_bupa_il_header_search.
    CALL METHOD cl_crm_ui_session_manager=>get_initial_form_fields
    CHANGING
    cv_fields = lt_ivr_url_param.
    lr_searchcustomer ?= me->typed_context->searchcustomer->collection_wrapper->get_current( ).
    CHECK lr_searchcustomer IS BOUND.
    READ TABLE lt_ivr_url_param INTO ls_ivr_url_param WITH KEY name = 'sap-phoneno'. "'sap-phoneno'.
    IF ls_ivr_url_param-value IS NOT INITIAL.
    ls_searchcustomer-telephone = ls_ivr_url_param-value.
    CALL METHOD lr_searchcustomer->set_properties( EXPORTING is_attributes = ls_searchcustomer ).
    eh_onsearch( ).
    ENDIF.
    ENDMETHOD

  • Where to find Crystal Report Formats for SAP B1 8.8 (India Localization) ?

    Hi Experts,
    do anybody knows Where to find Crystal Report Formats for SAP B1 8.8 (India Localization) ?
    For example
    Sales Register
    Purchase Register
    Journal Register
    Sales Analysis - Crystal Report
    Purchase Analysis - Crystal Report
    Check Register - Crystal Report
    Production register
    Pending Sales Order
    Outstanding Receivable
    Outstanding Payable
    BankBook
    CashBook
    General Ledger
    BP Ledger (Customer / Supplier)
    Trial Balance
    Balance Sheet
    Profit & Loss Statment
    Cash Flow statment
    Excise reports
       RG 23 A Part I
       RG 23 A Part II
       RG 23 C Part I
       RG 23 C Part II
       Daily Stock Account
       RG 1
       ER 1
       etc....
    Documets Layout
       Incoming Payment
       Outgoing Payment
       Journal Entry
       Transaction Journal Report - Crystal Report
       Sales Quotation
       Sales Order
       Sales Delivery
       Sales Return
       Sales Invoice (A/R Invoice)
       Purchase Order
       Goods Receipt PO
       Purchase Goods Return
       Purchase Invoice (A/P Invoice)
      Inventory Transfer
      Inventory - Goods Receipt
      Inventory - Goods Issue
    Best Regards,
    Samir Gandhi

    Hi Neetu,
    Do you wish that at all customer site all concern involved in implemtation do the same work ?
    I believe ERP is meant for single entry system, and it should be true for implementation also, why to invest man hours for the same task ?
    I expect it standard reports should be released by SAP, so that speed of implementation improve, we have more nos. of satisfied customers.
    customised reports is all together different and it is understood that it is needed to be developed after study the exact requirement.
    Best Regards,
    Samir Gandhi

  • How to get javahelp release install path?

    How to get javahelp release install path?
    currently usage their tool <MagicHelp>.
    magichelp is multi-user help authoring tool,
    currently Support Java help 1.0/2.0.
    Home:http://www.gethelpsoft.com

    @BalusC
    ust for a reference cause i'm new in JSP This has nothing to do with JSP, but with basic knowledge of an essential API. I have given you the link to the File API. Are you saying that you refused to read the API documentation, which clearly explains you how to use the File and shows which methods are all available to you undereach the straightforward getName() method, and expecting that the others may chew the answers for you? Loser.

  • Right Way for Localization

    I use ResourceBundle and *.properties files.
    Each property file matched to class.getName() and located next to *.class file.
    E.g.
    /com/samsol/project1/LoginPanel.class
    /com/samsol/project1/LoginPanel.properties
    /com/samsol/project1/LoginPanel_ru_RU.properties
    1. Is this propper location for *.properties files?
    2. How to localize multiline messages? How and when to use "\n", "\r\n", |\n\r" for different platforms.
    3. Depended on the default font size in the system I want to display icons in menu and toolbars having suitable size. How to use scalable icons?
    4. How to localize the icons? Example. For "login" button somebody like to see the lock, other the key, but some the ID (passport). (This is just example). But how to do it?
    5. Is there are any method to change the localization on the fly?

    1. Whatever you decide.
    2.
    3. Start from [1] and see how you can manage to use SVG for this purpose. [2] can you give some additional ideas.
    5.
         void setLocale(Component component, Locale locale) {
              component.setLocale(locale);
              if (component instanceof Container) {
                   Container cont = (Container) component;
                   for (int i = 0; i < cont.getComponentCount(); i++)
                        setLocale(cont.getComponent(i), locale);
         }Before calling the method above, do
    Locale.setDefault(new Locale(this.langCode, this.countryCode));
    frame.applyComponentOrientation(ComponentOrientation
                        .getOrientation(Locale.getDefault()));where langCode / countryCode specify the locale you wish to set and frame is your main frame (do it for all open frames with Frame.getFrames()). In addition, you'd have to update all the localized showing controls (such as buttons and so on).
    4. Change the icons inside the method above.
    [1] http://weblogs.java.net/blog/kirillcool/archive/2006/10/svg_and_java_ui_3.html
    [2] https://flamingo.dev.java.net/docs/icons.html

  • Open hyperlinks in a web browser in JavaHelp

    Hi,
    I am developing a helpsystem using JavaHelp 1.1.3. The problem is that I am unable to open an external weblink (e.g. www.google.com) in a browser.
    When I try to open the weblink the application just hangs.
    Please let me know if there is a workaround.
    Regards
    Ravi

    The description for Javahelp 2.0 RC says this is because of the sandbox rules that apply within JavaHelp.
    You could try setting application policies for the JavaHelp jars/classes.
    hope this helps,
    Thomas Nagel

  • HT204053 Hello, I have two iphones but one Apple ID. How can I use localization apps for a dedicated device? Tx

    Hello, I have two iphones but one Apple ID. How can I use localization apps for a dedicated device? Tx

    On the iPad open Settings/iCloud and delete the account using the button at the bottom. Once deleted log in using the other account. For iTunes Stores use Settings/iTunes & Apps Stores, tapp on the Apple ID at the top then sign out. Once done sign in using the other account. Once you are happy with the changes plug your iPad into your computer to update the backup.

  • How to get the localization in adf

    Hi Experts,
    Can you please tell me how to achieve the localization in adf application.??
    I want it to support for based on locale.. Can you please tell me the procedure....
    I am using jdev 11.
    Here I need localization in VO layer.not using resource bundle.
    Thanks in advance,
    Harsh

    I don't know if I am the only one struggling to understand what is what you want to achieve. Please, write what is the use case all what you are saying is
    ' I want to use Locale in my app. how do I do it??? '
    You need to say what is the problem, what is what you want to do with your JAVA, and why you want to use JAVA, etc.
    Regards

  • IWeb Localization

    Hello,
    I am building a web site using iWeb (3.0.4) for someone in Germany. I would like to be able to change the text displayed on the slide show from "play slideshow" to whatever in German.
    I went into the generated html for the page and found the statement:
                                                WriteLocalizedString('com-apple-iweb-widget-headercontrols', 'Play Slideshow');
    Changing this is easy, but means changing the page every time I re-publish the site.
    From the statement/function it would seem that apple have realized that there may be some localization necessary. Does anyone know where I can use or get at this feature. I use Lion in English and obviously don't want to change my entire system for the sake of one line on a web-page.
    I also tried pasting the generated code with the changed text as a new html snippet, but that would not work for some reason. It just displayed a small empty box in iweb but nothing on the generated page.
    TIA
    -Paul White-

    http://www.tj-hd.co.uk/en-gb/languageswitcher/

Maybe you are looking for

  • Macbook Pro 13" Early 2011 Lag Spikes

    Okay let me just brief you on my Macbook. In September 2011 i bought a Macbook Pro 13" Early 2011 model, 4GB RAM, 2.7GHz Processor, you can get the rest on the site. ( http://support.apple.com/kb/sp619 ) I bought it as a ex-display model, so you can

  • I want to submit a concurrent program from pl/sql. Please help me.

    Dear all, I want to submit a concurrent program from pl/sql. But I failed. Please help me. Detail: I create a concurrent program in 'Cash Management, Vision Operations (USA)' responsibility. <strong>And it be submitted success in EBS</strong>. Then I

  • Error while reading USB Port : using JSR80

    Hi Everybody Iam trying to read the data from a usb device [a fingerprint scanner] by using jsr80 with the help of following files which are in my classpath 1) jsr80-1.0.1.jar 2) jsr80_ri-1.0.1.jar 3) jsr80_windows.jar 4) commons-logging-api-1.1.1.ja

  • IBooks Author is a terrible program

    First, let me say that I am an Apple fan. Been using exclusively at home & work (teacher) for 10+ years. Second, I am very, very proficient with Pages and when I saw iBooks Author, I was very excited. It had a similar feel and I felt like I could do

  • Apache Poi Excel Question

    If I use Apacha Poi to create an xls on a machine that doesn't have excel, can I still read the values using Apache Poi HSSF of the create xls?