Support for multiple languages in Skype Chat

Hi,
on my Windows 8.1 laptop, the default language is English, but I have several Windows language packs installed. In Outlook or within a web browser, I can switch easily between languages when typing, and create emails in different languages simultaneously.
In Skype chat however, there is no Right-Click option to change the language, and if I am writing in French, auto-correct keeps trying to change words to English, resulting in lots of typos.
Selecting Tools, Change language to French just seems to change the menu selections and Skype interface, but autocorrect, spelling prompts remain in English?
Any suggestions on how to make Skype play nice and let me switch languages within the chat windows? 
Thanks!

Hi michaelwhyte
Currently only QWERTY, QWERTZ and AZERTY keyboard layouts are available.
Thanks
-CptS
Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

Similar Messages

  • Adding support for multiple languages

    Hi all,
    I've a desktop application with multiple components in it containing .rc files.Now, I'd want to replicate these .rc files in such a way that I should be able to build and generate a localized build from my source.
    To explain more, as of now my release configuration would generate an English language build. Now, I'd want to do the same for all languages. Is there any tutorial on how to achieve this?
    For now, I'm thinking to add multiple build configurations and let different components point to specific resource directories.
    Lets say I have a folder res_english -> this will contain all english resources, res_japanese would contain all japan resources, like this I should have multiple folder each containing specific resources. CAn someone guide how to do this?
    Thanks!

    See
    here.

  • Oracle support for multiple languages

    I have a VB and oracle application. There is a requirement for having spanish language support.
    The current character set is US7ASCII and National Character set is AL16UTF16.
    After some analysis i thought changing these character sets to UTF8 will be a solution for saving spanish characters.
    Can any please help me whether this is correct?
    Thanks in advance

    That's true.
    However since you are moving from single-byte character set to multi-bytes, you should be aware of the data truncation problem. that's the dangerous I was talking about.
    Data Truncation
    When the database is created using byte semantics, the sizes of the CHAR and VARCHAR2 datatypes are specified in bytes, not characters. For example, the specification CHAR(20) in a table definition allows 20 bytes for storing character data. This is acceptable when the database character set uses a single-byte character encoding scheme because the number of characters is equivalent to the number of bytes. If the database character set uses a multibyte character encoding scheme, then the number of bytes no longer equals the number of characters because a character can consist of one or more bytes.
    During migration to a new character set, it is important to verify the column widths of existing CHAR and VARCHAR2 columns because they might need to be extended to support an encoding that requires multibyte storage. Truncation of data can occur if conversion causes expansion of data.

  • Support for Multiple Languages and Keyboard

    Does anyone know if the Playbook can change its keyboard to support different languages and characters like what the iphone can do....
    Any  repies are always greatly appreciated...

    Hi michaelwhyte
    Currently only QWERTY, QWERTZ and AZERTY keyboard layouts are available.
    Thanks
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • 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?

  • Feature request: Support for Multiple Libraries (like in iMovie)

    From the threads, I can tell this topic was raised by many for many years. I would like to propose support for multiple iPhoto libraries -- or more specifically, the ability to distribute media across different storage devices.
    There is a huge gap between my spacially limited MBP 250 GB SSD and my external 4 TB HDD. I am aware that I can juggle two separate libraries in iPhoto but it's just not practical and the moving of media between the libraries is not a simple drag and drop effort but involves exporting and importing with me having to clean up on one side or the other.
    iMovie has had support for several libraries for a long time presumably because the sheer size of media in the video realm gave the iMovie team little choice.
    I can't be the only one having this itch, right?

    Again, you need to clarify your terms
    Aperture can move master photos files around. With Aperture you can write additional metadata to the original file.
    You don't need multiple libraries to thematically arrange photos, though. A simple keywordign system will do that.
    So in Aperture I don't have to restart into different libraries?
    You can have all your photos in a sinble library with the master files stored off-disk easily. You can relocate them from disk to disk too. However, if you;re doing presentations that is probably not necessary if you generate good quality previews. I'd ask about these things on the Aperture forum for more.

  • Support for multiple libraries...?

    Hi, I have a question as how is the best way to manage y music libraries given my usage scenario.
    First let me set the context of what I have. I have over 35GB of ripped music, that resides in an external drive. Currently this music is available through my iTunes application, but it is NOT part of my lybrary (meaning I imported but did NOT copy it into the library). I do NOT want to have 35GB of music in my notebook's HD.
    My iTunes library is in my local HD (music folder). This is a small file that basically has the 'podcasts' and the 'artwork'.
    What do I want? I would love to keep all my music and videos on the external drive, and have my podcasts in my local HD. This way when I am on the road, I can update the podcasts, without having to carry with me all my music.
    This all works fine the way I have it now, except that every time I rip a new CD or buy music from the iTunes Store, they go to my local HD and not my external drive.
    Any ideas on how to work this out? I would love support for multiple libraries, but I don't thnks it's possible as far as I looked into it.
    Thanks SO much!

    This all works fine the way I have it now, except that every time I rip a new CD or buy music from the iTunes Store, they go to my local HD and not my external drive.
    Set the 'iTunes Music folder location' (Preferences>Advanced>General) to the music folder on your external.
    The next time you rip a CD or purchase music, it will be stored there.
    Note: the 'iTunes Music folder location' is not the folder where your music is, but the location where iTunes stores imported music (and added music when 'Copy files to.....' is checked)
    If you ran iTunes once with your external drive not attached/mounted, this location is reset to the internal drive.
    iTunes 7 has support for multiple libraries. Press and hold the Option-key on launching iTunes until a window pops up which asks you to choose a library or create a new one.
    Libra and iTunes Library Manager both work with iTunes 7 and older versions. They also save the preferences for every library you created.
    Hope this helps.
    M
    17' iMac 800 MHz, 768 MB RAM, 200 GB HD, DL burner   Mac OS X (10.4.8)   iTunes 7.0.1

  • Support for Asian Languages

    Well, it looks like support for Asian Languages in Dynamic
    Textfields wasn't included in this version as well. I have a simple
    flash file embeded in an html file with 2 text boxes. Here's the
    code I'm using:
    var strJapanese = "あらわせて"
    var strChinese = "我想你";
    japanese_txt.text = strJapanese;
    chinese_txt.text = strChinese;
    I currently have these fonts installed in the \Windows\Fonts\
    directory:
    mingliu.ttc
    msgothic.ttc
    but all I see is a bunch of squares in the text boxes. I have
    verified that my pocket pc can use these fonts in other programs.
    Any ideas?
    Thanks,
    BackBayChef

    I used both the options but no one helps. Check the images for the understanding the problam. I try Arial unicode ms as other font  but it does give correct visiblity of font.
    tell some another option.

  • Support for Malayalam language

    I wish to buy a Mac. Whether there any support for Malayalam language there? If so which unicode version is using?

    Good News! While reading the features of the upcoming OS X Lion, I found extended language support, including Malayalam! The fonts are probably the same as those by nickshanks, but they might be different since the original fonts were made for iOS devices.
    Expanded language support
    Twenty new font families for document and web display of text provide support for the most common languages in the Indian subcontinent, including Bengali, Kannada, Malayalam, Oriya, Sinhala, and Telugu. Devanagari, Gujarati, Gurmukhi, Urdu, and Tamil have been expanded. And three new font families support Lao, Khmer, and Myanmar.
    http://www.apple.com/macosx/whats-new/features.html

  • One skype number for multiple users in Skype Manag...

    Is it possible to get one Skype-in phone number and assign it to multiple members in Skype Manager?
    If so, how do I go about it?
    I also asked this here: http://community.skype.com/t5/Skype-Number/One-skype-number-for-multiple-users-in-Skype-Manager/m-p/...

    You could always allocate a number to multiple business accounts in Skype Manager. Then re-direct the number via IP-PBX to go to different extensions.
    Try the following here [If you look in the advanced section of this manual, you'll see an example of two accounts using one number]
    http://download.skype.com/share/business/guides/skype-connect-user-guide.pdf
    7.5 Online Numbers for incoming calls
    You can use both business Skype accounts and Online Numbers simultaneously on a
    single SIP Profile if you wish. In other words, you may have multiple business accounts
    and Online Numbers added to one SIP Profile at the same time.
    7.5.1 Adding an Online Number to your SIP Profile
    Shows you how to setup such
    Thanks,
    Kent C.

  • Arabic is not listed as a display language in iTunes for Windows 7. How can I add support for this language?

    Arabic is not listed as a display language in iTunes for Windows 7. How can I add support for this language?

    Edit  ---> referance ----->   general    ------> language

  • [svn] 4875: Adding support for multiple @productversion tags

    Revision: 4875
    Author: [email protected]
    Date: 2009-02-06 08:31:48 -0800 (Fri, 06 Feb 2009)
    Log Message:
    Adding support for multiple @productversion tags
    QE Notes: None.
    Doc Notes: None
    Bugs: SDK-19104
    tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19104
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/DocComment.java

    Revision: 4875
    Author: [email protected]
    Date: 2009-02-06 08:31:48 -0800 (Fri, 06 Feb 2009)
    Log Message:
    Adding support for multiple @productversion tags
    QE Notes: None.
    Doc Notes: None
    Bugs: SDK-19104
    tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19104
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/DocComment.java

  • [svn] 4146: adding support for multiple @playerversion tags.

    Revision: 4146
    Author: [email protected]
    Date: 2008-11-19 21:37:23 -0800 (Wed, 19 Nov 2008)
    Log Message:
    adding support for multiple @playerversion tags.
    Fix for asdoc.exe not outputting information for the @langversion tag.
    Also removing some unused code from DITA generation..
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-18158, SDK-18159
    tests: checkintests, asdoc
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18158
    http://bugs.adobe.com/jira/browse/SDK-18159
    Modified Paths:
    flex/sdk/trunk/asdoc/templates/asdoc-util.xslt
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/DocComment.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.ja va

    Revision: 4146
    Author: [email protected]
    Date: 2008-11-19 21:37:23 -0800 (Wed, 19 Nov 2008)
    Log Message:
    adding support for multiple @playerversion tags.
    Fix for asdoc.exe not outputting information for the @langversion tag.
    Also removing some unused code from DITA generation..
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-18158, SDK-18159
    tests: checkintests, asdoc
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18158
    http://bugs.adobe.com/jira/browse/SDK-18159
    Modified Paths:
    flex/sdk/trunk/asdoc/templates/asdoc-util.xslt
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/DocComment.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.ja va

  • One skype number for multiple users in Skype Manager

    Is it possible to get one Skype-in phone number and assign it to multiple members in Skype Manager? If so, how do I go about it? I also asked this here: http://community.skype.com/t5/Skype-Number/One-skype-number-for-multiple-users-in-Skype-Manager/m-p/3275656#M14366.

    You could always allocate a number to multiple business accounts in Skype Manager. Then re-direct the number via IP-PBX to go to different extensions. Try the following here [If you look in the advanced section of this manual, you'll see an example of two accounts using one number]http://download.skype.com/share/business/guides/skype-connect-user-guide.pdf 7.5 Online Numbers for incoming callsYou can use both business Skype accounts and Online Numbers simultaneously on a
    single SIP Profile if you wish. In other words, you may have multiple business accounts
    and Online Numbers added to one SIP Profile at the same time. 7.5.1 Adding an Online Number to your SIP ProfileShows you how to setup such Thanks,Kent C.

  • Support for multiple email addresses in struts

    Hi,
    I need an example source jsp in struts which contains support for multiple email addresses (dynamic)
    Can I have source for this?
    Thanks

    I'm sorry, I don't understand what you mean - do you want to display multiple email addresses on a page?

Maybe you are looking for

  • Barcode Printing in Smartforms

    Hi all,          I have created a barcode via SE73 and attached it in the Smartstyles via a character Format. I have also added this character format in my Smartforms.          When I click the preview I'm able to see the Barcode getting displayed (Z

  • Exception Aggregation in BPS Layout

    Hi I am not able to get the exception aggregation settings of Key Figure in BPS layout. Below is summary of my problem. BW Headcount cube is loaded every week and headcount keyfigure is having exception aggregation to pick up the latest value in the

  • APEX 4.01 collections rendering issue

    I am creating a collection using apex 4.01. I created an applicaiton with one blank page. I then added a region to the page. I created a report region with a source of sql query. I then placed the query in the source section. I created a on load befo

  • SendAndLoad with accented url

    Hi all, I have a little flash application(cs4) to read xml files and to display the contents. xml files are being read using LoadVars::sendAndLoad() over http. It works fine unless I have an accented characater in the url. For example: http://localho

  • Trigering alert without BPM

    Hi, I can trigger an alert when we get an error message . I would like to trigger an alert without BPM when we receive an acknowledgement succesfully from the legacy system. Thanks, Sharmila