Portal provider - graphic in different languages?

I was wondering if Blackberry will allow the different screen capture, screen, etc. with different regional settings?

It seems that this capability is not there!

Unfortunately not. You can specify screenshots/images for different patforms (BBOS, 10 BlackBerry PlayBook), but not the specific locale.

More info here:

https://developer.BlackBerry.com/DevZone/blackberryworld/adding_icons_screens_and_images.html

Tags: BlackBerry Developers

Similar Questions

  • New on the portal provider, digital goods. App update of doubt!

    Hi guys,.

    I'm new to the forum so please be kind if I am not aware of the rules here. I'm new to getting started with selling digital products from the supplier portal. I created a sample application using the AIR, like the BB dev portal. I've also added a new goods (consumable charge .99cents) in the portal provider (draft mode). I added the user sandbox to my account. I opened my Z10 account connected to BBworld with developer on mode. I'm in the content ID and looked content, the app mentioned that he is "not available for this device.

    I have some doubts.

    1. how to connect using the user account of bac to sand? Should I use a different device linked to the same BBID?

    2. why the content is "not available for this device?

    3. can I simulate purchases by using the 'PaymentSystem.CONNECTION_MODE_LOCAL '? I see the UI with the purchase ID and response on the 'success', but 'purchaseSuccessHandler' is not have triggered.

    My final question is,

    4. I'm planning store xml data and other assets in the appStorageDir once the user makes the purchase. Now, what happens if I update the application? The xml in the appStrorageDir file will also get deleted? How to maintain existing data when the user updates the application?

    Sorry for the long post amateur. Help is very appreciated.

    Thank you.

    1 see the following page for information on test applications with a user sandbox account.  You want to make sure that your digital good is approved / available, even if your version of the app is in draft mode.  Make sure to clear cache in BlackBerry World once you have downloaded your application on the portal of the seller.

    2. sometimes, this error occurs if you load the app (from your dev machine) side and try to buy a digital camera right.  The payment service requires that the application be downloaded from BlackBerry World in order to make digital good purchases.  If side you load it, you will get probably errors.

    3. I don't know why purchaseSuccessHandler will not fire.

    4. There is a shared folder on the device that you can place the application in legacy.  If the application is removed, the assets would persist.  You are right, that if you store your goods in the storage location of local file for your application, it will be deleted if a user deletes the app.

  • As a result of different languages

    Hello! I have a table with a text column with texts of store on different languages.
    There are some things I want to know:
    (1) there is no language column in the table base (with presentation of the chain), but there is the column with the language id (FK), so I have a link with the language table where I put the names of languages for oracle.
    Can I use cross lexer with this language ID column?
    (2) I intend to use lexer auto and specify the query language setting for each query nls_language, that I wanted to do or in the query pattern. So I create indexes in this way:

    Start:
    ctx_ddl.create_statement ('my_lexer', 'auto_lexer');
    ctx_ddl.set_attribute ('my_lexer', 'index_stems', 'Yes');
    end;

    create indexes my_index on my_table (colonne_texte)
    indexType is ctxsys.context
    parameters ("lexer my_lexer");

    After that, I tried to query:
    SELECT count (*) FROM my_table WHERE CONTAINS (colonne_texte, '$sing') > 0;
    SELECT count (*) FROM my_table WHERE CONTAINS (colonne_texte, '$sang') > 0;
    SELECT count (*) FROM my_table WHERE CONTAINS (colonne_texte, '$sung') > 0;

    I supposed to get the same count for each SELECT, but each time it was different.
    So what I am doing wrong?

    (3) what is the difference between auto_lexer and world_lexer?
    According to the literature, two of them are used for indexing the columns that contain documents of different languages and using automatic detection.

    (1) there is no language column in the table base (with presentation of the chain), but there is the column with the language id (FK), so I have a link with the language table where I put the names of languages for oracle.
    Can I use cross lexer with this language ID column?

    Ctx_ddl.add_sub_lexer has a fourth parameter to a different value for the language. You can use your language and in your creation of index IDs, but it must be character, not text. Alternatively, you can create a materialized view that converts a numeric value to text and create your index on it.

    (2) I intend to use lexer auto and specify the query language setting for each query nls_language, that I wanted to do or in the query pattern. So I create indexes in this way:

    Start:
    ctx_ddl.create_statement ('my_lexer', 'auto_lexer');
    ctx_ddl.set_attribute ('my_lexer', 'index_stems', 'Yes');
    end;

    create indexes my_index on my_table (colonne_texte)
    indexType is ctxsys.context
    parameters ("lexer my_lexer");

    After that, I tried to query:
    SELECT count (*) FROM my_table WHERE CONTAINS (colonne_texte, '$sing') > 0;
    SELECT count (*) FROM my_table WHERE CONTAINS (colonne_texte, '$sang') > 0;
    SELECT count (*) FROM my_table WHERE CONTAINS (colonne_texte, '$sung') > 0;

    I supposed to get the same count for each SELECT, but each time it was different.
    So what I am doing wrong?

    Use a list of words with the set of attributes of generator stemmers for the automobile, instead of setting the index_stems attribute in a lexer. If you use the derived forms and index_stems generator, it uses index_stems and not the derived forms generator, so make sure that you do not use index_stems, to avoid the conflict.

    (3) what is the difference between auto_lexer and world_lexer?
    According to the literature, two of them are used for indexing the columns that contain documents of different languages and using automatic detection.

    Auto_lexer is new to 11g and has several attributes and characteristics. World_lexer is still provided for backward compatibility, so that the code that was written before 11g and uses it to run.

    I presented a demo below, using some of the discussed methods. I have also added filter by lang_id and surlabasedesdonneesdufabricantduballast to improve performance when the limitation of requests for specific languages.

    SCOTT@orcl_11gR2> CREATE TABLE lang_tab
      2    (lang_id   VARCHAR2 ( 1) PRIMARY KEY,
      3       language  VARCHAR2 (30))
      4  /
    
    Table created.
    
    SCOTT@orcl_11gR2> INSERT ALL
      2  INTO lang_tab VALUES (1, 'ENGLISH')
      3  INTO lang_tab VALUES (4, 'FRENCH')
      4  INTO lang_tab VALUES (5, 'GERMAN')
      5  INTO lang_tab VALUES (7, 'SPANISH')
      6  SELECT * FROM DUAL
      7  /
    
    4 rows created.
    
    SCOTT@orcl_11gR2> CREATE TABLE my_table
      2    (lang_id      VARCHAR2 (1) REFERENCES lang_tab,
      3       text_column  CLOB)
      4  /
    
    Table created.
    
    SCOTT@orcl_11gR2> INSERT ALL
      2  INTO my_table VALUES (1, 'I will sing a song.')
      3  INTO my_table VALUES (1, 'I sang a song.')
      4  INTO my_table VALUES (1, 'Many songs were sung.')
      5  INTO my_table VALUES (4, 'Je vais chanter une chanson.')
      6  INTO my_table VALUES (4, 'J''ai chanté une chanson.')
      7  INTO my_table VALUES (4, 'Beaucoup de chansons ont été chantées.')
      8  INTO my_table VALUES (5, 'Ich werde ein Lied singen.')
      9  INTO my_table VALUES (5, 'Ich sang ein Lied.')
     10  INTO my_table VALUES (5, 'Viele Lieder wurden gesungen.')
     11  INTO my_table VALUES (7, 'Voy a cantar una canción.')
     12  INTO my_table VALUES (7, 'Me cantó una canción.')
     13  INTO my_table VALUES (7, 'Muchas canciones fueron cantadas.')
     14  SELECT * FROM DUAL
     15  /
    
    12 rows created.
    
    SCOTT@orcl_11gR2> BEGIN
      2    CTX_DDL.CREATE_PREFERENCE ('english_lexer', 'basic_lexer');
      3    CTX_DDL.CREATE_PREFERENCE ('french_lexer', 'basic_lexer');
      4    CTX_DDL.CREATE_PREFERENCE ('german_lexer', 'basic_lexer');
      5    CTX_DDL.CREATE_PREFERENCE ('spanish_lexer', 'basic_lexer');
      6    CTX_DDL.CREATE_PREFERENCE ('my_lexer', 'multi_lexer');
      7    CTX_DDL.ADD_SUB_LEXER ('my_lexer', 'default', 'english_lexer');
      8    CTX_DDL.ADD_SUB_LEXER ('my_lexer', 'french', 'french_lexer', '4');
      9    CTX_DDL.ADD_SUB_LEXER ('my_lexer', 'german', 'german_lexer', '5');
     10    CTX_DDL.ADD_SUB_LEXER ('my_lexer', 'spanish', 'spanish_lexer', '7');
     11    CTX_DDL.CREATE_PREFERENCE ('my_wordlist', 'basic_wordlist');
     12    CTX_DDL.SET_ATTRIBUTE ('my_wordlist', 'stemmer', 'auto');
     13  END;
     14  /
    
    PL/SQL procedure successfully completed.
    
    SCOTT@orcl_11gR2> CREATE INDEX my_index ON my_table (text_column)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  FILTER BY lang_id
      4  PARAMETERS
      5    ('LEXER            my_lexer
      6        LANGUAGE COLUMN  lang_id
      7        WORDLIST       my_wordlist')
      8  /
    
    Index created.
    
    SCOTT@orcl_11gR2> COLUMN text_column FORMAT A45
    SCOTT@orcl_11gR2> SELECT * FROM my_table
      2  WHERE  CONTAINS (text_column, '$sing AND SDATA (lang_id = "1")') > 0
      3  /
    
    L TEXT_COLUMN
    - ---------------------------------------------
    1 I will sing a song.
    1 I sang a song.
    1 Many songs were sung.
    
    3 rows selected.
    
    SCOTT@orcl_11gR2> SELECT * FROM my_table
      2  WHERE  CONTAINS (text_column, '$sang AND SDATA (lang_id = "1")') > 0
      3  /
    
    L TEXT_COLUMN
    - ---------------------------------------------
    1 I will sing a song.
    1 I sang a song.
    1 Many songs were sung.
    
    3 rows selected.
    
    SCOTT@orcl_11gR2> SELECT * FROM my_table
      2  WHERE  CONTAINS (text_column, '$sung AND SDATA (lang_id = "1")') > 0
      3  /
    
    L TEXT_COLUMN
    - ---------------------------------------------
    1 I will sing a song.
    1 I sang a song.
    1 Many songs were sung.
    
    3 rows selected.
    
    SCOTT@orcl_11gR2> ALTER SESSION SET NLS_LANGUAGE = 'FRENCH'
      2  /
    
    Session altered.
    
    SCOTT@orcl_11gR2> SELECT * FROM my_table
      2  WHERE  CONTAINS (text_column, '$chanter AND SDATA (lang_id = "4")') > 0
      3  /
    
    L TEXT_COLUMN
    - ---------------------------------------------
    4 Je vais chanter une chanson.
    4 J'ai chanté une chanson.
    4 Beaucoup de chansons ont été chantées.
    
    3 rows selected.
    
    SCOTT@orcl_11gR2> ALTER SESSION SET NLS_LANGUAGE = 'GERMAN'
      2  /
    
    Session altered.
    
    SCOTT@orcl_11gR2> SELECT * FROM my_table
      2  WHERE  CONTAINS (text_column, '$singen AND SDATA (lang_id = "5")') > 0
      3  /
    
    L TEXT_COLUMN
    - ---------------------------------------------
    5 Ich werde ein Lied singen.
    5 Ich sang ein Lied.
    5 Viele Lieder wurden gesungen.
    
    3 rows selected.
    
    SCOTT@orcl_11gR2> ALTER SESSION SET NLS_LANGUAGE = 'SPANISH'
      2  /
    
    Session altered.
    
    SCOTT@orcl_11gR2> SELECT * FROM my_table
      2  WHERE  CONTAINS (text_column, '$cantar AND SDATA (lang_id = "7")') > 0
      3  /
    
    L TEXT_COLUMN
    - ---------------------------------------------
    7 Voy a cantar una canción.
    7 Me cantó una canción.
    7 Muchas canciones fueron cantadas.
    
    3 rows selected.
    
    SCOTT@orcl_11gR2>
    
  • Lock screen showing Hello in different languages

    I woke up during the night and clicked my iPhone5 on the top button to see the time and the screen is different that usual, he says hello and if I do not drag, he goes to different languages, one after the other. I slipped to the right put my unlock code and I need to choose a network and correct is already ticked so I click Next, then there is an Activate iPhone message want me to my ID Apple and the password. Is - this sound normal?

    My details are all in the phone before going to bed, then is - it safe to put these details in and continue?

    You update the phone before?

    It looks like the program for setting up the phone, and you will need to fill in all the details to put the phone back to work again.

  • Two different language versions of Firefox at the same time?

    I am running Windows 7 Home Premium. I have two accounts, one for me and one for my wife. She uses Firefox (Japanese), and I've been using another browser. But I would like to firstly using Firefox (in English).

    Is it possible to run two different language versions of Firefox on the same computer? I want to be able to run both at the same time... (So if I navigate and she wants to check an auction quickly it can without my duty close my browser).

    Can be done with relative ease?

    Make sure that each of you has their own Firefox profile folder.

    See:

    You can add - no.-distance to the command line to open another instance of Firefox with its own profile and run multiple instances of Firefox at the same time.

  • the bar of menus in itunes is in a different language.  All the rest in English, but the bar menu is in Chinese

    the bar of menus in itunes is in a different language.  All the rest in English, but the bar menu is in Chinese.  How can I change it back to English.  I bought something when my vpn has been connected to Singapore and the menu bar has changed after

    CTRL + , < comma > to display the Preferences dialog box, the tab the leftmost is General, the drop-down list language is located at the bottom of the dialog box, English UK and English American are the ninth and tenth entries in the list, respectively. The OK button is the second from the bottom right. Close iTunes and reopen it to apply.

    Or, see change the language you see in iTunes - Apple Support.

    TT2

  • Accidentally, I chose different language that I don't understand on Apple TV. How can I go back to this first stage in?

    Accidentally, I chose different language that I don't understand on Apple TV.

    How can I return to the language selection?

    See change the language on your Apple TV - Apple Support.

    TT2

  • How can I dictation in 2 different languages?

    I have conversations of messages with friends from different countries and different languages. How can I use dictated in different languages?

    Hello

    On your Apple Watch, after tapping on answer, press firmly on the screen, and then tap on choose language to a different language for your reply (including the dictation).

    The default language for any given conversation is on the same language as the active keyboard on your iPhone (in Messages) for this particular conversation. When you change the language of the keyboard for this conversation on your iPhone, it also changes on your Apple Watch.

    To change the language for a chat on your iPhone (and also on your watch):

    • Lock your iPhone (press the Sleep / Wake button briefly).
    • Open the conversation with this contact on your watch and press on answer.
    • On your iPhone, press the Sleep / Wake button briefly to display the lock screen.
    • The lower left corner of the lock screen, drag upward on the Messages icon (where transfer icons appear).
    • This will open this conversation in Messages on your iPhone.
    • Press the symbol of the globe by the SPACEBAR on the keyboard of the iPhone and choose your preferred language.
    • Start typing a response on your iPhone (one or more characters), then delete (implements the choice of language of keyboard for this conversation).
    • On your watch, in the Messages application, exit the screen to answer.
    • Start a new response when this conversation - the new language will be used for dictation and short answers in this conversation.

    More information:

    Use Dictation on your Apple Watch - Apple Support

  • The Windows Easy Transfer of data application does not work if there are two windows of different language.

    I bought a data transfer cable and I tried to make a transfer of data from the laptop with non - English Windows XP Profesional a laptop with Windows 7 Home via WINDOWS EASY TRANSFER viz English.

    http://Windows.Microsoft.com/en-us/Windows7/products/features/Windows-easy-transfer
    but I was surprised that I got a message "that a different language to the windows version has been so that data transfer can not live there. And above all, there was a message "that the data cable has not been detected."
    Microsoft is working with so many language versions, then why this simple problem is not solve upward? It cannot be too big problem to compensate for a versatile application that would work on all versions of Windows.

    No, it doesn't work of course between the various language versions, has never and will never be.  Will not be fixed either, because Windows XP is in the extended now support (only security patches issued) and becomes entirely non supported in about a year.  Save and move documents using a different method.

  • EventLog in English while the operating system is in a different language

    Hi, I support a lot of different PC in several countries. Each country uses its own version of Windows XP - Czech, Slovak, Poland... Someone told me, there is a way - probably by changing some dll files - how to have Eventlog in English, while the operating system itself is in a different language. I tried searching, but have not been successful so far.

    If anyone knows how to solve this problem, I would be very gratefull

    Hello Tomas_V,

    Your question of Windows 7 is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the MSDN forum on. Following your question thanks for posting the link below:

    http://social.msdn.Microsoft.com/forums/en-us/categories

    With regard to:

    Samhrutha G S - Microsoft technical support.

    Visit ourMicrosoft answers feedback Forum and let us know what you think.

  • Switch keyboard blackBerry 10 between different languages

    Does anyone know if the keyboard BB10 will feature an easy switch between the different languages that will preserve the anticipation of the frequently used words / etc?

    nouaspe wrote:

    It is very good - thank you very much. What is a basic characteristic? Is there a list of the languages (if you seek one with less traffic)?

    in the input languages, there is a list of language to activate, and then it will work immediately

  • Portal provider does not

    I have posted 2 other themes on the portal, have received emails that they are on sale, but they are not displayed on the AppWorld, is there a channel that I can use to this address with portal provider? or the AppWorld store manager? To add to that, I can post is no longer request of sale from the vendor portal, because the links on this page do not respond to the click, I don't get a message or the success error response "nothing happens" when I click. I think that RIM should have a link or a way to receive responses with questions like these to the supplier portal users... It's really discouraging perfected me to a device and the brand I love somuch!... I have 12 requests more I hesitate to present due to this challenge.

    I'm going to try from another browser, I use IE and Navigator devices (9800), I'm going to reformat my phone as well, and give it a go, thanks!... will let you know more.

  • New portal provider - errors on App download?

    (Posted in the forum of Java, but it may be more relevant here)

    Hello

    I am preparing a new version of my app, but the new App World gave me the following errors:

    • Invalid binary file (ExtraUrban_Petrol.alx8102848832346627187.alx)
    • Invalid binary file (ExtraUrban_Petrol - 1.debug4283819131792742989.debug)
    • Invalid binary file (ExtraUrban_Petrol.csl1752474416905501530.csl)
    • Invalid binary file (ExtraUrban_Petrol.cso1182382901597539722.cso)
    • Invalid binary file (ExtraUrban_Petrol.debug8006375434270060229.debug)
    • Invalid binary file (ExtraUrban_Petrol.jar7414250321944344372.jar)
    • Invalid binary file (ExtraUrban_Petrol.rapc2786812954744217169.rapc)

    I'm following the same process as before the upgrade (worked each time), advice?

    Thank you

    Paul

    These files are not required for your release, so it's probably a bug in the new version of the portal provider (the old version of the portal provider used to ignore these files and download only the COD files to your release)

    I imagine that you have just compressed distributables file and presented it as a liberation. Delete these files and download just the COD files instead, and everything should work fine

  • Update of portal provider applications

    Hi guys I am implementing an update on the portal provider for my application, but I can't see any link updated on the product edition. Can someone help on the steps to download a new version of the app?

    Hello

    To update an application, you must go to:

    > Product management

    > Click on the sign, heading 'Press' for the app you want to udpate +.

    > And then configure your new version adding a set of files and setting additional options

  • Portal provider charges

    I registered on the portal provider of blackberry, but on the payments tab info that there is a link "check" out with paypal after you have clicked on this link, I am staging ' credit or debit card ' and asking for details of the card.
    I saw on the site of the developers they have written "no registration or submission fees. None. $0.00 "." Why do they ask to pay by card?

    Help me!
    Eager to showcase my work.

    Thank you

    Hi dharmesh88,

    How how PayPal validates your PayPal - its process a sham $ 0.01 charge on your account.  To do this, they require a source of payment.  In this case, they will want a "InstantPayment" type (IE. Credit card, PayPal balance).  Debit card may not work for this binding process.

    You're right - there is no cost or hidden fees when creating or maintaining an account provider in BlackBerry App World.

Maybe you are looking for