Siri in more languages?

Does anyone know when siri will be aviable in more languages?

Sorry it wasn't the answer you wanted.
Submit your feedback directly to Apple requesting they add Greek using the appropriate link on the Feedback page:
http://www.apple.com/feedback

Similar Messages

  • I just updated my iPhone 5 and Siri sounds more like a robot and I don't know what's wrong. My iPad Siri and my moms iPhone Siri sound like real people. Why doesn't my phone Siri sound like it should???

    Siri sounds more robotic on my iphone for the iOS 7 update.....  Help????

    Hello smartbud,
    The following article provides steps for changing the way Siri sounds.
    Can I change how Siri sounds?
    New female and male voices will be available initially in U.S. English, French, and German. You can change the gender by going to Settings > General > Siri > Voice Gender. Your iOS device initially uses a compact voice for Siri. iOS will automatically download and install a more natural-sounding voice when you first connect to power and a Wi-Fi network.
    iOS: About Siri
    http://support.apple.com/kb/HT4992
    Cheers,
    Allen

  • Beta: Support for more languages

    We've added support for many more languages.  See the full list below.  You can access the beta by clicking this special link.  This link will allow you to use the site, same as before, but will also enable the new language support. 
    You can find additional supported languages in the footer menu.  Once you select your desired language, you can begin creating themes.  Try it out and let us know how it works for you. We look forward to reading your feedback and seeing new localized themes in Kuler!
    List of supported languages:
    Brazilian Portuguese
    Danish
    Dutch
    English (default)
    Finnish
    German
    Italian
    Japanese
    Korean
    Norwegian
    Russian
    Spanish
    Swedish
    Traditional Chinese
    Turkish
    Polish
    Czech

    http://na.blackberry.com/eng/support/downloads/download_sites.jsp
    go to this page and find a carrier for the country you want (here : Sweden).
    Download the Handheld Device Software OS and install it on your blackberry.
    for the installation howto, please refer to this discussion :
    http://supportforums.blackberry.com/rim/board/message?board.id=8300&thread.id=6807&jump=true
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • More language versions to come?

    Is there any chance Photoshop Album Starter Edition 3.0 will be provided in more language versions besides English and British English? I am waiting for the German-language version. PS A SE 2.0 is there in German---why not PS A SE 3.0, too?
    Or can I possibly localize it myself, perhaps by manually merging some string resource files from PS A SE 2.0 and 3.0 ...? If so, how?
    -- Olaf

    Hallo Olaf,
    wir sind hier nur Endbenutzer wie du. Also wir wissen nichts. Nur Adobe
    selbst kann diese Frage antworten. Es tut mir leid.
    Tschüß aus Kanada
    Jim
    Hello Olaf,
    We are just end-users here like you. We don't know. Only Adobe itself can
    answer this question. I'm sorry.
    Cheers
    Jim

  • Frutiger for more languages

    Is there a version of Frutiger that can be used in different languages? The current version does not support the special characters used in, for instance, Polish or Romanian. Is there perhaps a place where I could find a list of the languages supported by (this new/different type of) Frutiger?

    Frutiger Std supports Adobe Western 2 which includes the following languages: Afrikaans, Basque, Breton, Catalan, Danish, Dutch, English, Finnish, French, Gaelic, German, Icelandic, Indonesian, Irish, Italian, Norwegian, Portuguese, Sami, Spanish, Swahili and Swedish.
    If you need more language support you'll have to license one of the versions sold by Linotype.com.

  • More Language support in Story.

    Ok so i am from israel and i want to create a script, but there are NO scriptwriting programs for hebrew at all. so i saw story is a great program, so maybe you can integrate hebrew. please. . oh and i have free edition.

    Hello and sorry for the delay.
    We are evaluating supporting more languages in Story but it is going to need a lot more time. We’ll write back when we have a date for supporting more languages. We do not have a definite plan at the moment.
    --Anubhav

  • Peace Be Upon You - Have Arabic, would like more languages.

    This code was available at my former physci.org site, & will soon be available again on my new site. It shows Arabic for "Peace be upon you".
    I was wondering if anyone could provide translations (with appropriate glyph changes) for other languages (Manchurian, German, Hindi, ..Tanu Tuvan)?
    BTW - I am not sure if this actually falls under the 'Integrationalization' group, but I figure the right people are listening.
    import javax.swing.*;
    import java.awt.*;
    /** "Peace Be Upon You", "Aslam Alykm' to which the common
    reply is "Wa alaykum as salaam", "And upon you, peace".
    Information obtained from the document
    http://www.unicode.org/charts/PDF/U0600.pdf
    Copyright © 1991-2003 Unicode, Inc. All rights reserved.
    Arabic is written and read from right to left.
    This source is adapted from the original 'Peace'
    source written by mromarkhan ("Peace be unto you").
    @author Omar Khan
    @author Andrew Thompson
    @version 2004-05-31 */
    public class JArabicInUnicode extends JFrame {
      /** Unicode constant used in this example. */
      public final static String
        ALEF= "\u0627",
        LAM= "\u0644",
        SEEN= "\u0633",
        MEEM= "\u0645",
        AIN= "\u0639",
        YEH= "\u064A",
        KAF= "\u0643",
        HEH= "\u0647";
      /** An array of the letters that spell 'Aslam Alykm'. */
      String text[] = {
          ALEF, //a
          LAM + SEEN, //s
          LAM, //l
          ALEF, //a
          MEEM, //m
          AIN, //a
          LAM, //l
          YEH, //y
          KAF, //k
          MEEM //m
      /** Displays the letters of the phrase 'Aslam Alykm'
      as well as the words spelt out letter by letter. */
      public JArabicInUnicode() {
        super("Peace be upon you");
        JTextArea textwod= new JTextArea(7,10);
        textwod.setEditable(false);
        textwod.setFont(new Font("null",Font.PLAIN,22));
        String EOL = System.getProperty("line.separator";);
        // write the phrase to the text area
        textwod.append( getCharacters() + EOL );
        // now spell it, one letter at a time
        for (int ii=0; ii<=text.length; ii++) {
          textwod.append( getCharacters(ii) + EOL );
        textwod.setCaretPosition(0);
        getContentPane().add(
          new JScrollPane(textwod,
            ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED,
            ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED),
            BorderLayout.CENTER);
        pack();
        setMinimumSize( getPreferredSize() );
        try {
          setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          setLocationRelativeTo(null);
        } catch (Exception e) { }  // allows to run under 1.2
      /** Get a string of the entire phrase. */
      String getCharacters() {
        return getCharacters( text.length );
      /** Get a string of the 1st 'num' characters of the phrase. */
      String getCharacters(int num) {
        StringBuffer sb = new StringBuffer();
        for (int ii=1; ii<num; ii++) {
          sb.append( text[ii] );
        return sb.toString();
      /** Instantiate an ArabicInUnicode frame. */
      public static void main(String [] args) {
        new JArabicInUnicode().setVisible(true);
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    DrClap wrote:
    AndrewThompson64 wrote:
    I'd like to see if I can get a couple more languages before I try to rely on Google translate - which I do not entirely trust.But you trust responses from random strangers on the Internet? Not to impugn anything that has been posted so far, but that isn't a good strategy either.Interesting points. Though I would consider the following two factors put the 'strangers on the internet' ahead of Google translate.
    1) The text is open for public scrutiny/correction.
    2) The poster (supposedly) has a reputation to uphold, if only in their own mind. The thought of being corrected in public, gives a keen motivation not to stuff up in the first place, hopefully. ;)
    On the side of Google translate, is that these translation services get better all the time, especially with the engine encouraging users to submit a better translation.
    Actually, now I think about it, it seems 'six of one, half a dozen of the other'. So yes, your point is valid - neither source is necessarily better.
    In any case, this thread has just about run the extra week I requested of the mods, so it seems time to 'wrap it up'.
    Thanks to all contributors.

  • Any way to make address book sort contacts in 2 (or more) languages?

    Any way to make address book sort contacts in 2 (or more) languages?
    It is very very annoyin that address book sorts contacts only in one language (the one selected as as a system wide) and puts any entries in other languages under #

    Fast Contacts well let you sort by nickname or a lot of other ways. It's on sale - free today!
    http://itunes.apple.com/us/app/fast-contacts/id286543435?mt=8

  • Strongly recommend update more Language packs!!!

    Nokia officia!
    Here your customers need you pay attention on this.
    We really need you to update more Language packs in Ovi store.
    It help Nokia customers more convenience for read and type on text & mail.
    As a smart phone like "N8" only can read in five Languages, even there has some other Language packs can download on Ovi store, but most are in Europe not include Asia.
    So I am saying is update more Language packs as global please
    Thank You very much!

    Hi DellPatrick,
    I would uninstall all CS6 products using the uninstallers located at Mac HD > Applications > Utilities > Adobe Installers
    Then download and run the cleaner tool and remove everything Creative Cloud related
    http://www.adobe.com/support/contact/cscleanertool.html
    Finally create a new admin user account, log out of the current account and reinstall from the newly created one
    10.8 - http://support.apple.com/kb/PH11468
    -Dave

  • Adding more languages to CCA

    Has anyone added additional languages to CCA for IVR prompts.
    I don’t care if the GUI has any more but do need more languages in IVR.
    What is the basic process?

    Hi,
    I was able to add Italian Language and it seems to work correctly:
    - open localelanguages table
    - find your language and set the "Usage" column to 1
    - go in AM
    - open "Resource Bundle" and select "Files" folder
    - then select "ALL" as "Resource Bundle" and "GENERATE"
    - now you have to add your new language in the "Language Library" in AM
    - naturally you have to translate all in you language if not already so...

  • When using Exprt PDF, the choice of language for the document to be exported is sometimes very restricted, while sometimes many more languages are available. What's the matter?

    When using Exprt PDF, the choice of language for the document to be exported is sometimes very restricted, while sometimes many more languages are available. What's the matter?

    Dear Mrs.,
    I now add 2 print screens which show what I get when I try to export a PDF from Adobe Reader and which languages are available.
    The same problem does not exist when I use the website.
    I hope this gives you a clue.
    Many thanks,
    Jos MERTENS,
    Advocaat.

  • When will siri support arabic language ?

    when will siri support arabic language ?

    Tell Apple  you want it via
    http://www.apple.com/feedback/iphone.html

  • More languages are listed than my application is localized

    I developed my application for iOS with Flash CS5.5.
    In the app store, more languages are listed than my application is localized for. Why?

    Hi,
    I am sorry you are running into this bug. Unfortunately, there is no workaround available. For your reference, the bug number is 2878252. You can quote it for any updates about the status.
    Thanks,
    Sanika

  • I18n - how to add support for more languages (CQ 5.4)

    I have a number of questions around adding support for more languages. We are already using multiple languages and would like to add more.
    1. Standard languages provided
    in /libs/wcm/core/i18n I can see the standard ootb languages for CQ 5.4: de es fr it ja zh-cn
    How can I add more? Are there additional language packages provided by Adobe for CQ 5.4?
    2. Translator tool
    We have our own additional keys/strings in
      /apps/site/i18n/publish
    When I open these with the translator tool
      /libs/cq/i18n/translator.html
    as admin, I can see them all just fine.
    However when I open them as another user, I only see the columns of the languages defined in /libs/wcm/core/i18n
    There is a description how to extend this for 5.5 here:
    http://dev.day.com/docs/en/cq/5-5/developing/cq5-translator.html#Changing%20Languages%20Li sted%20in%20the%20Grid
    and I have added the languages to /etc/languages in the "languages" property, but this does not work with 5.4 apparently (at least as far as I have tried).
    I still only get the default languages from /libs/wcm/core/i18n despite the other languages being there in
      /apps/site/i18n/publish
    and as admin I can see and edit them.
    How do I make them visible and editable for other users?
    3. Tags
    When editing the translations of tags, I want all the possible languages to appear in the dialog box for editors.
    I have extended the "languages" property in /etc/tags and this works basically fine (as expected) as described in:
    http://dev.day.com/docs/en/cq/5-5/developing/cq5-translator.html#Changing%20Language%20Nam es%20and%20Default%20Countries
    The desired language must be supported and listed in:
      /libs/wcm/core/resources/languages
    I want to use a 2-letter iso code (e.g. "no" for Norway") and this desired 2-letter iso code must exist as a node. If that is not the case and only nodes with locales exist (e.g. "no_no" and "no_no_ny") then a 2-letter node must be created with a default setting pointing to the default locale.
    I have tried this and it works fine as expected when the default language node is created in
      /libs/wcm/core/resources/languages
    But /libs is a system folder that should not be modified, it could be potentially overwritten by Adobe packages.
    The 5.5 docs say to create the node in
      /apps/wcm/core/resources/languages
    instead, but this did not work for me in CQ 5.4 and I could find no other docs describing a process for 5.4
    How to do this properly in 5.4?

    Thanks for that hint, I checked it and the user does have read access to /etc/languages and /etc/tags and also /libs
    So it seems the only workaround would be to create dummy nodes in /libs/wcm/core/i18n - which I did with a script (to be able to repeat after installation of hotfixes/and updates).
    So for example for Norwegian:
    # set default 2-letter node for norway (since it is missing)
    curl -u "admin:${PASS}" -X POST "http://${SERVER_IP}:${PORT}/libs/wcm/core/resources/languages/no" -d 'jcr:primaryType@TypeHint=Name' -d 'jcr:primaryType=nt:unstructured' -isS | grep HTTP
    curl -u "admin:${PASS}" -X POST "http://${SERVER_IP}:${PORT}/libs/wcm/core/resources/languages/no" -d 'country=*' -isS | grep HTTP
    curl -u "admin:${PASS}" -X POST "http://${SERVER_IP}:${PORT}/libs/wcm/core/resources/languages/no" -d 'defaultCountry=no_no' -isS | grep HTTP
    curl -u "admin:${PASS}" -X POST "http://${SERVER_IP}:${PORT}/libs/wcm/core/resources/languages/no" -d 'language=Norwegian' -isS | grep HTTP
    # set dummy node for missing languages in /libs/wcm/core/i18n
    curl -u "admin:${PASS}" -X POST "http://${SERVER_IP}:${PORT}/libs/wcm/core/i18n/no" -d 'jcr:primaryType@TypeHint=Name' -d 'jcr:primaryType=nt:folder' -isS | grep HTTP
    curl -u "admin:${PASS}" -X POST "http://${SERVER_IP}:${PORT}/libs/wcm/core/i18n/no" -d 'jcr:mixinTypes@TypeHint=Name[]' -d 'jcr:mixinTypes=mix:language' -isS | grep HTTP
    curl -u "admin:${PASS}" -X POST "http://${SERVER_IP}:${PORT}/libs/wcm/core/i18n/no" -d 'jcr:language=no' -isS | grep HTTP
    This does create a proper dummy node (which is otherwise empty) in /libs/wcm/core/i18n
    But unfortunately the Norwegian language still does not show up in the translator tool /libs/cq/i18n/translator.html
    Only the standard languages show for my user.
    Admin user does see all langauges we have in /apps/site/i18n/publish (but that was already the case before) - so I assume it must be some permissions are missing. I also tried giving that user modify+create permissions to /apps/site/i18n/publish but that did not make any difference.
    Any other ideas what could be missing?

  • Add more languages to dictionary

    Hi everyone,
    Is there any way to add more languages to the built-in Dictionary App of Mavericks? It's already great with english, french and wikipedia but  I'll love to have spanish too .
    Thanks for your help,

    I mean a Spanish-English dictionary. Do anyone have data of a Spanish-English dictionary for adding to Dictionnary app?
    Thanks

Maybe you are looking for

  • BW HR Reports (Payroll)

    Hi,   Any one familar with HR BW(Payroll) reports please respond. I need to create payroll report with following requirments positions,cost planning,wage types and actuals... Please advise how shall i proceed and r there any Business Content cubes th

  • My blackberry 8830 stop working

    My blackberry's model is 8830 and its the problems is that its is not turning and keep flashing a red light. My service provider is O2 though its doesn't have the handset i have a pay as you go sim. I attached it to the computer using a usb and used

  • ITunes - Vista - Music on Seperate Drive

    OK so I updated to Vista, and did a clean install. All my music was saved on a seperate drive so that wasn't an issue, or so I thought. I downloaed and installed iTunes last night, and left it sorting through my 140+GB of music. When I got up this AM

  • Can't import MapInfo TrueType fonts into MapBuilder

    Hi forum I am trying to import TrueType fonts from MapInfo, that we used to use in the MapInfo application, that we are migrating from. I try to use the "Import TrueType font" function in MapBuilder, but when I want to view the font afterwards, I jus

  • Restored and replaced router, same private IP's

    My devices received the same private IP's after restoring the router to factory settings. I replaced the router later in the day and they still had them same IP's. Doesn't the DHCP table clear out upon restoring? Also,  how can I make my addresses st