Response of USSD request in Arabic language

Hi All,
I am facing one problem, I have got 1 USSD menu(USSR reuest) in ARABIC language, for that i have to respond back also in ARABIC digits, but I am unable to respond back in Arabic language, I can send the response in English but in that case server is rejecting that.
My doubt is, Can I respond back in Arabic language or not. Pls reply this asap.
Waiting for kind response.

Hi,
I am also facing the same problem in Arabic language with USSD, can anyone advice please????
Regards.

Similar Messages

  • How to submit request with default language as 'American English' in other non-english language sessions.

    Dear All,
    Kindly suggest how to submit request with default language as 'American English' in other language sessions (Ex: Arabic).
    R12: 12.1.3
    The issue is we created function using 'arabic' text in it, which runs perfect in the english session, but doesnt gets value in the arabic session.
    So we decided to make the submit request with default language as 'American English'.
    Below is the function. Kindly note that SEGMENT1 is not linked to any valueset.
    CREATE OR REPLACE FUNCTION F_GET_OLD_LEAVE(P_PERSON_ID NUMBER)
      RETURN NUMBER IS
      V_DAYS NUMBER;
    BEGIN
      select
         SUM(EXCD_DAYS)
        INTO V_DAYS
          FROM (
                SELECT
      --            NVL(SEGMENT5, 'تجاوز') Late_type,
      --             SEGMENT1 NOTES,
      --            ACTUAL_TERMINATION_DATE,
    (CASE 
    WHEN NVL(SEGMENT5,'تجاوز') not in ( 'تجاوز' ,'إجازة غير مدفوعة') and segment1 not in ('إجازة غير مدفوعة') THEN 0
    --WHEN SEGMENT1  like 'إجازة غير مدفوعة' THEN
    --TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -
    --TO_DATE(to_date(SUBSTR(segment2, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') +1
    when segment1 not in('بدل نقدي','إجازة غير مدفوعة') and segment4 is null then
    TRUNC(to_date(ACTUAL_TERMINATION_DATE,'DD/MM/RRRR'))- TO_DATE(to_date(SUBSTR(segment3, 1, 10),'DD/MM/YYYY'), 'DD/MM/RRRR')-1 
    when segment1 in('إجازة غير مدفوعة') and segment4 is null then
    TRUNC(to_date(ACTUAL_TERMINATION_DATE,'DD/MM/RRRR'))- TO_DATE(to_date(SUBSTR(segment2, 1, 10),'DD/MM/YYYY'), 'DD/MM/RRRR')
    WHEN SEGMENT1 <> 'إجازة غير مدفوعة' and
                TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  <
                TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') 
    THEN 0
      WHEN SEGMENT1 <> 'إجازة غير مدفوعة' and
                TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  -
                TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  <=1
    THEN 0
    WHEN SEGMENT1 like  '%بدل نقدي%' then 0
               -- TO_DATE(to_date(SUBSTR(segment2, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  
      WHEN SEGMENT1 like '%إجازة سنوية%' and segment5 in( 'إجازة غير مدفوعة','تجاوز')and
                TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  -
                TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  >=2
                then
                TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  -
                TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -1
    WHEN SEGMENT1 like '%إجازة حج%' and segment5 in('إجازة غير مدفوعة','تجاوز') and
                TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  -
                TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  >=2
                then
                TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  -
                TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -1
    when SEGMENT1 LIKE '%إجازة غير مدفوعة%' AND
    TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -
    TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')<=1
    THEN
    TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -
    TO_DATE(to_date(SUBSTR(segment2, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')
    when SEGMENT1 LIKE '%إجازة غير مدفوعة%' AND SEGMENT5 NOT IN('تجاوز','إجازة غير مدفوعة') AND
    TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -
    TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')>=2
    THEN
    TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -
    TO_DATE(to_date(SUBSTR(segment2, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')+1
    when SEGMENT1 LIKE '%إجازة غير مدفوعة%' AND SEGMENT5  IN('تجاوز','إجازة غير مدفوعة') AND
    TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -
    TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')>=2
    THEN
    TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -
    TO_DATE(to_date(SUBSTR(segment2, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')
    WHEN
               EXTRACT(YEAR FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR'))  <>
               EXTRACT(YEAR FROM TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')) 
    THEN
       TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'),'DD/MM/RRRR') -
       TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'),'DD/MM/RRRR') - 2
    WHEN 
            to_char(to_date(SUBSTR(SEGMENT3, 1, 10),'YYYY/MM/DD'),'DD/MM/YYYY') =
            to_char(to_date(SUBSTR(SEGMENT4, 1, 10),'YYYY/MM/DD'),'DD/MM/YYYY')
            THEN  0
    WHEN
    EXTRACT(DAY FROM TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR'))= 31
      THEN
         TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -
      TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')-1
    --------------------------------------------when enddate is NULL---------------------------------------------------------------------------------
    -- WHEN segment3 IS NULL THEN round(TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'),'DD/MM/RRRR') -
    --  TO_DATE(to_date(SUBSTR(segment2, 1, 10),'YYYY/MM/DD'),'DD/MM/RRRR'))
    WHEN segment3 IS NULL THEN ((EXTRACT(MONTH FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')) -
            EXTRACT(MONTH FROM TO_DATE(to_date(SUBSTR(segment2, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR'))) * 30) +
             (EXTRACT(DAY FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')) -
            EXTRACT(DAY FROM TO_DATE(to_date(SUBSTR(segment2, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')))
    -----***********************************when segment1**********************************--------------------------
    WHEN SEGMENT1  like '%صادف%' THEN ((EXTRACT(MONTH FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')) -
            EXTRACT(MONTH FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR'))) * 0) +
             (EXTRACT(DAY FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')) -
            EXTRACT(DAY FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')))
      WHEN 
        EXTRACT(YEAR FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')) =
        EXTRACT(YEAR FROM TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR'))
    THEN
          ((EXTRACT(MONTH FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')) -
            EXTRACT(MONTH FROM TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR'))) * 30) +
           (EXTRACT(DAY FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')) -
            EXTRACT(DAY FROM TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')))-1
             ELSE 0
             END )EXCD_DAYS
                 FROM HR.PER_ANALYSIS_CRITERIA C,
                   PER_ALL_PEOPLE_F         PPF,
                    PER_PERIODS_OF_SERVICE PPPS,
                   PER_PERSON_ANALYSES      T ,
                   fnd_id_flex_structures_vl f
                 WHERE 1 = 1
               AND T.ANALYSIS_CRITERIA_ID = C.ANALYSIS_CRITERIA_ID
               AND PPF.PERSON_ID = T.PERSON_ID
               and ppps.PERSON_ID=ppf.person_id(+)
              and   ppps.ACTUAL_TERMINATION_DATE           BETWEEN  ppf.effective_start_date and nvl(ppf.effective_end_date, to_date('31/12/4712', 'DD/MM/YYYY'))
              -- AND C.ID_FLEX_NUM = 50318
               and c.id_flex_num = f.id_flex_num
        AND f.id_flex_code = 'PEA' 
          and f.ID_FLEX_STRUCTURE_NAME =  'XX_Old_Leave_Details'
        AND PPF.person_id = P_PERSON_ID
    AND T.DATE_FROM>=( select
    TO_DATE(to_date(SUBSTR(xx.global_value, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')
    FROM
    ff_globals_f xx
    where xx.GLOBAL_NAME='XX_NEW_LEAVES_DATE_FROM'
    AND SYSDATE BETWEEN XX.EFFECTIVE_START_DATE AND XX.EFFECTIVE_END_DATE)
    and substr(c.segment1,1,10)>=
               select substr(xx.global_value,1,10)
    FROM
    ff_globals_f xx
    where xx.GLOBAL_NAME='XX_NEW_LEAVES_STD'
    AND SYSDATE BETWEEN XX.EFFECTIVE_START_DATE AND XX.EFFECTIVE_END_DATE
      RETURN NVL(V_DAYS, 0);
    EXCEPTION
      WHEN OTHERS THEN
        RETURN 0;
    END;
    Thanks in Advance.
    Regards,
    Afzal.

    Dear All,
    I found the solution for the above function.
    In the same function I removed the static arabic values replacing with code values from the value set.
    In my scenario there is a value set where some of these values exists, and other we can add there.
    Kindly let me know if someone was successful by using the arabic text in the coding and defaulting the language in conc prog as English.
    Thanks a lot.
    Regards,
    Afzal.

  • How to display Arabic language in oracle 11g?

    Hi,
    I have asked this question before, but no answers where given. I really need an answer because I cant find any working answer through the web.
    my case is:
    I am building a php and oracle application, everything works fine until I tested the insert function for Arabic text, I
    get "?????"
    environment:
           - oracle 11g r2.
           - windows 7 (home)
           - database charset is set to AL32UTF8
           - Arabic language is installed on windows
           - HTML page character set to <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
           - NLS_LANG is set to ARABIC_UNITED ARAB EMIRATES.AL32UTF8
           -  I am viewing the data via Oracle Enterprise Manager
           - data is inserted via html form.
    And I tried using ARABIC_UNITED ARAB EMIRATES.AR8MSWIN1256 instead of AL32UTF8, but did not solve the issue.
    Please guys your help will be much appreciated, my whole application is on hold until this issue is resolved.
    Best Regards

    Yes.. may be that will work/.
    check this link too add arabic :
    http://windows.microsoft.com/en-in/windows-vista/change-your-internet-explorer-language-settings
    By SR i mean raise a service request with Oracle support. I hope you have access to support.oracle.com with a valid login.
    Regards
    Karan

  • Audition CS6 not support file name written in Arabic language

    dear support manager
    i have audition CS6
    Version 5.0 Build 708
    i have issue with Arabic language
    it not support   file name written an arabic language
    please help me argent in arabic language
    i have
    license for 10 user  i spent 3000$ for new audition 
    and the adobe support  guy tell me  it not support arabic
    anay manager in adobe support  can help me please

    This is just the Adobe Audition User to User forum. Such requests to be directed to Adobe's online support teams.
    However there is a reply from an Audition developer at http://forums.adobe.com/message/5587733#5587733. But not good news I'm afraid.

  • Is Arabic language supported in Acrobat XI OCR option?

    Hi,
    I'm Planing to buy Adobe Acrobat XI Pro, please let me know the followings:-
    1- Is Arabic language supported in Acrobat XI OCR option?
    2- Do you have authorized re-seller in Qatar? if yes, please give me their contact details.
    Appreciate your earliest response.
    Thanks,
    Nabeel Ansari

    Hi Nabeel
    I am afraid Arabic language is not supported in Acrobat XI OCR. For more on OCR, please refer to http://blogs.adobe.com/acrobat/acrobat_ocr_make_your_scanned/
    Please visit Find an Adobe reseller for your second query.

  • ARABIC LANGUAGE AND 3G DATA

    HI
    1- I WANT TO USE IPHONE IN ARABIC LANGUAGE BUT ALL THE ITEMS WHICH ARE AVAILABLE IN THE MARKIT CANT SUPPORT ARABIC SO WHAT IS THE SOLUTION?
    2- WHY IPHONE NOT SUPPORT 3G SERVICES WHICH AVAILABLE IN MY COUNTRY?
    3- IS IPHONE CAN USE ANY SIM CARD OR ITS SPECIAL FOR ONE COMPANE ONLY (EX: IN SCOTLAND IPHONE USE BY O2 MOBILE COMPANE ONLY SO IT CANT ACCEPT OTHER SIM CARD)?
    ALL REGARDS

    M95339808M wrote:
    HI
    1- I WANT TO USE IPHONE IN ARABIC LANGUAGE BUT ALL THE ITEMS WHICH ARE AVAILABLE IN THE MARKIT CANT SUPPORT ARABIC SO WHAT IS THE SOLUTION?
    2- WHY IPHONE NOT SUPPORT 3G SERVICES WHICH AVAILABLE IN MY COUNTRY?
    3- IS IPHONE CAN USE ANY SIM CARD OR ITS SPECIAL FOR ONE COMPANE ONLY (EX: IN SCOTLAND IPHONE USE BY O2 MOBILE COMPANE ONLY SO IT CANT ACCEPT OTHER SIM CARD)?
    ALL REGARDS
    Answer to number 1: Just not a supported option at this time. Wait for some SDK Apps to come out maybe someone will create something that can do translation or something along those lines. No one really knows till developers start releasing Apps and seeing what can be done.
    Answer to number 2: Currently there is no 3G Support and currently unknown when and if there will be 3G Support. It mean technically it means making another iPhone. And 3G is not as available in mass networks like EDGE is right now.
    Answer to number 3: Currently iPhone is only available on the select networks we have deals with and no other providers at this time. If you by chance got one of the Unlocked iPhones then perhaps it may work with another provider. But our fellow friends in Germany, France, and U.K. could probably answer that better then I could.
    Any feature requests please submit to http://www.apple.com/feedback/iphone.html

  • Arabic language disappeared after software updater...

    Yesterday night I decided to update my mobile software using nokia software updater to solve a performance issue as mentioned in the website.
    I took a full back on my MMC then started the update.
    My mobile software version was 1.00.XXXXX and the new release is 4.XXXXXX
    The update completed successfully, but after I restarted the mobile I was shoked of the following issues :
    - The arabic language disappeared from the phone lagnauge selection.
    - MMC requested a passrowd to ulock it !!! while I dont remember that I set a password for it or I may set it once long time back but I forgot it now.
    I'm surprized for what happened as I had a discussion last night with my father regarding Nokia trust relation ship .
    Please advice how can I solve my issues ASAP.
    All my contacts are backed up on the memmory .

    read this :
    /t5/Software-Updates/Language-changed-or-missing-after-software-update-sticky/td-p/265903
    -you can show appreciation to my posts if it helped or useful by pressing the green Kudo star beside my post that hepled
    -if my answer was the solution , so click accept as solution button
    Started From Nokia 3310 , Now with Nokia N97 v.22.0.110 + N900 PR1.2

  • CROSS-TAB FOR ARABIC LANGUAGE

    I want to use cross-tab for the languages which are right to left. Please tell me the way to make crosstab work for arabic language. Is there or not?..it will come in future version

    You did not say what version of CR you are using?
    CR 2008 has the ability to select your local language and settings.
    Try using that option to see if it works for you. Otherwise go into Idea Place and add it as an Enhancement request.
    Thank you
    Don

  • Arabic language and patch 12

    I got a lot of unreadable words in Forms and Reports6i
    after installing Patch 12, although some words are readable!
    I check "NLS_LANG" settings i found it as it was
    (Arabic_Saudi Arabia.AR8MSWIN1256)
    By the way, The Previous Patch was Patch 7 in my case, I don't think I have to install all Patches between 7 and 12, am i wright?
    I will be very thankful for any assistance&gt;

    M95339808M wrote:
    HI
    1- I WANT TO USE IPHONE IN ARABIC LANGUAGE BUT ALL THE ITEMS WHICH ARE AVAILABLE IN THE MARKIT CANT SUPPORT ARABIC SO WHAT IS THE SOLUTION?
    2- WHY IPHONE NOT SUPPORT 3G SERVICES WHICH AVAILABLE IN MY COUNTRY?
    3- IS IPHONE CAN USE ANY SIM CARD OR ITS SPECIAL FOR ONE COMPANE ONLY (EX: IN SCOTLAND IPHONE USE BY O2 MOBILE COMPANE ONLY SO IT CANT ACCEPT OTHER SIM CARD)?
    ALL REGARDS
    Answer to number 1: Just not a supported option at this time. Wait for some SDK Apps to come out maybe someone will create something that can do translation or something along those lines. No one really knows till developers start releasing Apps and seeing what can be done.
    Answer to number 2: Currently there is no 3G Support and currently unknown when and if there will be 3G Support. It mean technically it means making another iPhone. And 3G is not as available in mass networks like EDGE is right now.
    Answer to number 3: Currently iPhone is only available on the select networks we have deals with and no other providers at this time. If you by chance got one of the Unlocked iPhones then perhaps it may work with another provider. But our fellow friends in Germany, France, and U.K. could probably answer that better then I could.
    Any feature requests please submit to http://www.apple.com/feedback/iphone.html

  • I need arabic language to my original iphone

    Hi everyone ...
    i have a question and i need the answer as soon as possible...
    i have original iphone and i'm living in +egypt cairo+ and i can't read and write sms in arabic and i cant browsing arabic site ..+so i need arabic language to my iphone to can read and write arabic sites and sms+....
    if anyone have answer tell me and +tell me the steps to did this+ ..........
    and thank's anyway to bring this very smart phone to the world..
    (sorry for my bad engilsh and thank's agian )

    Hello, Welcome to discussions.
    As stated earlier Arabic is currently not a support language on the iPhone at this time. Be it the first generation or second generation. And on Software 2.2 which is the latest.
    If I may suggest. Use the feedback link below to provide apple with your personal feedback on this particular feature request.
    You may also want to check the App Store, As they may offer some alternative applications that can perform certain tasks in the language you are seeing.
    http://www.apple.com/feedback/iphone.html
    Assalamu alaikum

  • I ask to add arabic language in your next version 12

    thank you team I ask to add arabic language in your next version 12

    Please send this request to the Apple developers - this is a user-to-user forum, so your enhancement request may be go unnoticed.
    The feedback form is here: http://www.apple.com/feedback/garageband.html
    Regards
    Léonie

  • Arabic Language aliases issue in Web Analysis reports

    Dears,
    I'm using Web Analysis to build reports with aliases in Arabic language. Aliases appear as small squares. Is there any configuration or workarounds should I do to solve this issue?
    Thanks.
    Regards,
    Ahmad.

    Hi,
    Make sure that you have the right version of JRE in the system. Please try this steps in one client machine
    1. Uninstall all the version f JREs from a client computer
    2. launch Web Analysis Studio from that client computer
    3. It will prompt you to download & install the compatible JRE from the Web Analysis server into your client computer
    4. Install the JRE
    Hope this helps
    Regards,
    Nowshad.

  • The lack of support in the Arabic language we suffer a lot to find solutions to a problem, The lack of support in the Arabic language we suffer a lot to find solutions to a problem

    Why do not you put the Arabic language within the technical support to help us to find solutions
    IPhone 4 My Mediabox does not want to activate the Phone after you make erase data and programs
    And changed the password whenever these items are not accepted to activate the device
    Please Help
    I do not speak speak English
    If the Phone is available by the Arabic language, how technical support is not available in Arabic
    <Personal Information Edited by Host>

    Gentlemen
    I think that you can be sure of the seriousness and reviewing the data provided by which certainly appeared more or less during the period of my use of the phone , before closing with me
    Or clarify who can help the original owner if it was his and did not enter the activation device is also
    Therefore made ​​my e-mail , as well as write the original owner and Tugeony even help me to how to solve this problem
    If the Phone Enabled by airmail previous owner helped me to make it communicates with you in solving this problem
    And that the device was closed to my Fassaadony
    Despite the protection available for this device , but many individuals complain over the complaint of such cases
    Please try to help
    Thank you

  • Adobe master collection CS5.5 5.5 MLP  arabic language problem.

    Hi all of you,
    We have “master collection CS5.5 5.5 MLP international licensed version” it’s working fine but in Photoshop Arabic language is not working properly , I tried with a Photoshop CS5 extended middle east version it’s working fine in Arabic language . Is there any solution for this problem? Can I get any Arabic language pack for Photoshop?

    Moving this discussion to the Photoshop General Discussion

  • The spell check for arabic language in pages v 5.2 are Not working ! please Help !

    The spell check for arabic language in pages v 5.2 in mavericks are Not working ! please Help !

    MANKWT wrote:
    No i Did Not !
    Perhaps you can find an Arabic dictionary for OpenOffice.  That may also work with OS X.
    http://m10lmac.blogspot.com/2011/06/extra-spell-checking-dictionaries-for.html

Maybe you are looking for

  • Need new Mac DESPERATELY, but don't want to "overbuy"

    I'm in desperate need of a new Mac (as you can probably see from my specs) but I have NO clue what to buy. I'm not a gamer, so I don't need the best video money can buy, but I would like to try out things such as Second Life. I mostly use my Mac for

  • Hi, how to use URL encoding in jsp

    hi, how to apply URL encoding in jsp for a string, could u pls suggest some ideas to use URL encoding in jsp thank you in advance

  • PSE 7 fonts, icons and boxes info is small on my screen

    Why would my fonts and icons appear small on my screen?   The actual window itself fills my laptop screen.   I went from a 15 to 15.6 screen, not much different but slightly larger.   Why are the fonts and icons so small?

  • Ask the user to insert an attachment

    hello I am French, I'm doing poorly in English. I would like to create a fillable form for the user to complete its data. it is an application form for a job. this poses no problem, but I created a picture box so the user can attach a photo attached.

  • Changing SAPGUI Font programmatically

    Hello,    I require to control the font (Font name, font style, font size) programmatically in ABAP program. (I require this to control the font in the document overview in Enjoy transactions ME51n, ME21n etc. This on SAP R/3 4.7, basis version 6.20.