Facetious accentuation when texting on current S40

Hello,
There's a bug in the current Series 40 Nokia OS, and it's a quite annoying one. The issue happens when you write (also receive?) a text message, then save it (also send it?). I'm using version 02.03b 08-04-13 RM-840 on a Nokia 301. I had a Nokia 2700 phone before that, with a previous version of the OS, and the issue wasn't there.
What happens is this:
(sorry for the quality, my flatbed scanner is not really used to phones)
Most of the accentuated characters are wiped out, and replaced by their non-accentuated equivalent. Here are in red all the glyphs that are concerned by this radical parsing:
A transcript of the letters as they have been typed when redacting the text message on the phone:
À Â Ä Á Ã Ç É È Ê Ë Ğ Ï Î
Ì Í Ô Ö Ò Ó Ñ Û Ù Ü Ú Ÿ
à â ä á ã ç é è ê ë ğ ï î
ì í ô ö ò ó ñ û ù ü ú ÿ
~ ^ ` « »
And how it is parsed once you save it:
A A Ä A A Ç É E E E G I I
I I O Ö O O Ñ U U Ü U
à a ä a a c é è e e g i i
ì i o ö ò o ñ u ù ü u y
~ ^
The only letters to be preserved with their diacritics are Ä, Ç, É, Ö, Ñ, Ü, à, ä, é, è, ì, ö, ò, ñ, ù and ü. On all the others, the accents are gone. It's not even consistent between uppercases and lowercases! Some characters even entirely disappears – as Ÿ, «, and » (can't we quote anything in a text message?). I can imagine more symbols are affected by this issue, but these are the ones directly accessible when composing from the phone (when set in French, at least).
As a result, you can't write any non-English messages without doing many spelling mistakes and misinterpretations. I still have to test how it behaves when sending and receiving messages.
Does someone have a solution or know if the bug is planned to be fixed?
Many thanks!  : )
Solved!
Go to Solution.
Attachments:
nokia_missing_accents.jpg ‏49 KB
nokia_missing_accents_highlighted.jpg ‏32 KB

User:Roady has found a working solution to this issue!
Here is it, if ever someone encounters this weirdness too:
From the Menu, go to Messaging → More → Msg. settings → Text messages → Character support ;
Select Full (instead of Reduced) ;
It seems to work : )
(It was actually a feature, not a bug!)

Similar Messages

  • How to insert text in current Pdf?

    I try to insert text into current pdf i am getting unexepected error
        PDEContent pdeContent;
        AVDoc avDoc = AVAppGetActiveDoc();
        PDDoc pdDoc = AVDocGetPDDoc (avDoc);
        PDPage pdPage = PDDocAcquirePage(pdDoc,AVPageViewGetPageNum(AVDocGetPageView(AVAppGetActiveDoc())));
        pdeContent = PDPageAcquirePDEContent(pdPage, NULL);
        //Create a PDEText object
        PDEText pdeText = PDETextCreate();
      //  Create a DEGraphicState object and set its attributes
        ASFixedMatrix textMatrix;
        //Create an ASFixedMatrix object
        memset(&textMatrix, 0, sizeof(textMatrix)); /* Set the buffer size */
        textMatrix.a = Int16ToFixed(24); /* Set font width and height */
        textMatrix.d = Int16ToFixed(24); /* to 24 point size */
        textMatrix.h = Int16ToFixed(1*72); /* x,y coordinate on page */
        textMatrix.v = Int16ToFixed(2*72); /* in this case, 1" x 2" */
        PDEGraphicState gState;
        PDEColorSpace pdeColorSpace = PDEColorSpaceCreateFromName(ASAtomFromString(colour_space.c_str()));
        memset(&gState, 0, sizeof(PDEGraphicState));
        gState.strokeColorSpec.space = gState.fillColorSpec.space = pdeColorSpace;
        gState.miterLimit = fixedTen;
        gState.flatness = fixedOne;
        gState.lineWidth = fixedOne;
        PDSysFont sysFont;
        PDEFont pdeFont;
        PDEFontAttrs pdeFontAttrs;
        //Set the size of the PDSysFont and set its attributes
        memset(&pdeFontAttrs, 0, sizeof(pdeFontAttrs));
        pdeFontAttrs.name = ASAtomFromString("CourierStd");
        pdeFontAttrs.type = ASAtomFromString("Type1");
        //Get system font
        sysFont = PDFindSysFont(&pdeFontAttrs, sizeof(PDEFontAttrs), 0);
        //Create a font that is used to draw text on a page
        pdeFont = PDEFontCreateFromSysFont(sysFont, kPDEFontDoNotEmbed);
        char *chrNewFilePath = "Doc.pdf";
        ASText  asFilePath =  ASTextFromUnicode(reinterpret_cast <ASUTF16Val *> (chrNewFilePath), kUTF8);
        //Create a character pointer
        char *HelloWorldStr = "Hello There";
        //Create new text run
        PDETextAdd(pdeText, //Text container to add to
                   kPDETextRun, // kPDETextRun
                   0, // in
                   (unsigned char*)HelloWorldStr, // Text to add
                   strlen(HelloWorldStr),// Length of text
                   pdeFont, // Font to apply to text
                   &gState, //Address of PDEGraphicState object
                   sizeof(gState), //Size of graphic state to apply to text
                   NULL,
                   0,
                   &textMatrix, //Transformation matrix for text
                   NULL); //Stroke matrix
        ::free(chrNewFilePath);
        ASFileSys  asFileSys =  ASGetDefaultFileSysForPath(ASAtomFromString( "ASTextPath" ), asFilePath);
        ASPathName asNewPath =  ASFileSysCreatePathName(asFileSys,  ASAtomFromString( "ASTextPath" ), asFilePath, 0);
        PDDocSave(pdDoc, PDSaveFull , asNewPath , asFileSys, NULL, NULL);

    I changed that code to below mention code, when i was run the plugin and after close the acrobat it asking for save, but it doesn't show any text text
    ASFixedRect  cropBox;
        char  errorMsg[256];
        ASInt32  errorCode = 0;
        PDPageGetCropBox  (pdPage, &cropBox);
        // Initialize the font descriptor then create the font reference.
        // Because we're using one of the base 14 Type 1 fonts, we only
        // need to pass a small amount of information to PDEFontCreate().
        PDEFont  pdeFont =  NULL;
        PDEFontAttrs  pdeFontAttrs;
        memset(&pdeFontAttrs, 0,  sizeof (pdeFontAttrs));
        pdeFontAttrs.name  =  ASAtomFromString( "Courier" );
        pdeFontAttrs.type  =  ASAtomFromString( "Type1" );
        DURING
        // Create the font reference.
        pdeFont =  PDEFontCreate(&pdeFontAttrs, sizeof (pdeFontAttrs), 0, 255, 0, 0,  ASAtomNull, 0, 0, 0, 0);
        HANDLER
        ASGetErrorString  (ASGetExceptionErrorCode(), errorMsg, 256);
        AVAlertNote  (errorMsg);
        return   NULL;
        END_HANDLER
        PDEColorSpace  pdeColorSpace =  PDEColorSpaceCreateFromName(ASAtomFromString( "DeviceGray" ));
        PDEGraphicState  gState;
        ASFixedMatrix  textMatrix;
        // The graphics state controls the various style properties of the text
        // including color, weight, and so forth.
        memset (&gState, 0,  sizeof (PDEGraphicState));
        gState.strokeColorSpec.space  = gState.fillColorSpec.space  = pdeColorSpace;
        gState.miterLimit  =  fixedTen;
        gState.flatness  =  fixedOne;
        gState.lineWidth  =  fixedOne;
        // Fill out the text matrix, which determines the point
        // size of the text and where it will is drawn on the page.
        memset (&textMatrix, 0,  sizeof (textMatrix));
        textMatrix.a  =  ASInt16ToFixed(12);
        textMatrix.d  =  ASInt16ToFixed(12);
        textMatrix.h  = cropBox.left  + (cropBox.right  - cropBox.left)/2 -  fixedSeventyTwo;
        textMatrix.v  = cropBox.top  - (cropBox.top  - cropBox.bottom)/2 -  fixedThirtyTwo;
        PDEText   volatile  pdeText =  NULL;
        DURING
        // Create a new PDEText element and add a kPDETextRun object to it.
        pdeText =  PDETextCreate();
        PDETextAdd  (pdeText,  kPDETextRun, 0, (Uns8  *) "This page intentionally blank" , 30,
                     pdeFont, &gState,  sizeof (gState),  NULL, 0, &textMatrix,  NULL);
        // Insert text element into page content.
        PDEContentAddElem  (pdeContent,  kPDEAfterLast, (PDEElement)pdeText);
        // Commit the changes to the PDEContent.
        PDPageSetPDEContent(pdPage, gExtensionID);
        // Advertise that we changed the contents so the viewer redraws the
        // page and other clients can re-acquire the page contents if needed.
        PDPageNotifyContentsDidChange  (pdPage);
        HANDLER
        // Store the error code.
        errorCode = ASGetExceptionErrorCode();
        END_HANDLER
        // Release any objects we may have created or acquired.
        // Note : PDERelease correctly handles NULL, so we don't
        // need to test for valid objects.
        PDERelease  ((PDEObject) pdeColorSpace);
        PDERelease  ((PDEObject) pdeFont);

  • Only my number shows up when texting how to display name

    only my number shows when texting, how to show name and number....

    Hello Nodycart,
    That is an interesting issue that your contact is showing up as a different number on another iPhone. If it is using iMessage, I would check to see that you are starting a new conversation with the right number by going to Settings > Messages and look at the Start New Conversation. That also would be a good idea to delete the current conversation thread and start a new one to test it out further. 
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/en-us/HT201349
    Send messages with your iPhone, iPad, or iPod touch
    http://support.apple.com/en-us/HT201287
    Regards,
    -Norm G.  

  • My phone was recently updated to 8.1.  After the update, when text messages are sent when my phone is off, I no longer receive when my phone is turned on.  Is there something in Settings that needs to be changed?  I never had this problem before the updat

    My phone was recently updated to 8.1.  After the update, when text messages are sent when my phone is turned off, they no longer appear when I turn the phone on.  Is there something in Settings that needs to be changed?

    MetsFanGirl,
    Thanks for verifying. Are you having issues receiving both iMessages and standard text messages when they are sent when the phone is turned off? Try this and test... http://vz.to/1qjiOs7
    LindseyT_VZW
    Follow us on Twitter @VZWSupport

  • How to get a cell in a table NOT to expand when text is added in Acrobat?

    In one row I have one cell that expands the row height when text is added in Acrobat.  The cell next to it with what seems to be the same characteristics does not.  I have copied that cell onto the cell that expanded - but it is still expanding.  What attribute needs to be changed?  Thanks.

    Just found "Expand to fit" checked in layout - sorry for inquiry.  Thanks for being there.  Tucson102

  • What is wrong with my Iphone 4s when it won't alert me by sound when text is received

    What is wrong with my Iphone 4s when it wont alert me by sound when text is received?

    You use the side control and make sure your phone isn't on vibrate.  Up is for ringer down is for vibrate.

  • My iphone 5 suddenly won't switch to landscape mode when texting

    I've had iphone 5 for about 2 weeks and recently when I turn my phone to landscape when texting it doesn't switch to landscape

    Again make sure rotation lock is disabled as TJBUSMC1973 kindly suggested. Then what you want to do is:
    - leave the multitasking bar up
    - hold your finger on the messages app till it starts to wiggle
    - tap the red button with the - in it on the messages app
    then do a reset:
    - hold the home button and sleep/wake button down at the same time
    - the iphone will turn off(keep holding) then release both buttons as soon as you see the apple logo appear
    Now try opening the messages app and view it landscape.

  • I want to be alerted when pdf is currently in use by another user?

    I want to be alerted when pdf is currently in use by another user?

    Currently in acrobat 10 it allows you to open a pdf that is in use. I would like to know how turn the alert on.

  • Keyboard not working correctly when texting.

    Since updating my iphone 4 to the latest software version! everytime i write a text about halfway through it if i try to press the space bar or a letter the keyboard selects a letter near it. this has only happened since the software update and it only happens when texting. any idea's? or do apple know of the problem?

    rbrylawski wrote:
    Do you by any chance have the Emoji Free app on your iPhone? Other's reported this some time ago and the common thread (and solution) was to get rid of that app. Here's a link you can click on to read that thread: http://discussions.apple.com/thread.jspa?messageID=12296289&#12296289
    That isn't the problem. I have the same problem with it typing a B or M sometimes when I double tap the space bar for a period. I have never installed that app and have no reason to.

  • I have a new iPhone 5 and receive the following message when texting some people within my contacts.  Message sent using invalid number of digits please resend using 10 digit number or valid short code Msg:2114

    I have a new iPhone 5 and receive the following message when texting some people within my contacts.  Message sent using invalid number of digits please resend using 10 digit number or valid short code Msg:2114. Online I found a discussion that stated i needed to delete contact and re-add. I have done that to no avail. Any ideas?

    I had the same issue with the iPhone 6 and tried everything!  I now understand that at some point I stored a number for a contact without including the area code and sent a text message.  So, to correct the issue, you must literally "erase" all references to the contact, not just the number.  Deleting the contact and entering a new one is not enough because the iPhone stores references to that number in multiple places.  The steps below worked and are very simple:
    1) On the contact screen, delete everything stored for that number.  You can't just edit the contact to fix the problem, so write down or record the info somewhere before you complete this step.  Choose edit and then select DELETE to eliminate the entire contact which means home, work, cell, email address, etc.
    2) Delete the entire string of messages you sent to that number.  That's every single message...
    3) Now delete the entire string of invalid 2114 messages you received after your text(s) failed.
    4) Finaly, remove the contact from FAVORITES if you saved it that way. 
    5) To validate that all this worked, simply go to the keypad or contact screen and enter the number associated with the contact to verify successful removal.  I used the keypad and dialed to confirm.  If the contact number still shows up, you need to go back and recheck your steps.  Trust me, I had to do this a few times.
    Several posts suggested that you should  reset and turn off your phone.  After following these steps, it was not necessary for me to reset or turn off my device. 
    is there a much faster way to achieve the same results?  Probably, but this was safe for an iPhone novice and may help you avoid inadvertently deleting other contacts or replacing factory settings that you need.  

  • Keyboard freeze when texting in landscape mode

    I'm finding that my keyboard may freeze when texting in landscape mode. If I turn the phone upright, I can resume texting. If I type a few words and return to landscape mode, everything seems to work fine. This does not happen all of the time when texting in landscape mode...only on occasion. I have not had any other issues using the landscape keyboard in another application. Has anyone else had this issue? Any solutions? Using the iPhone 6 with iOS 8.

    Yep this is an ios8 issue. Never had it with ios7 or previous.
    This his is the most buggy iOS to date.
    Come on, Apple. Fix this.
    THis is with iphine 5 as well.

  • When texting one contact bubbles are blue instead of green, and texts sent are not being received, how do i sort this? cheers

    when texting a friend, bubbles are blue instead of green and they dont receive the message. this is only happening with one contact,why's this happening and what can i do to sort it? cheers

    Blue bubbles are using for iMessages, so problem with receiving is in iMessage.

  • HT3529 When texting with other iphone users, the text used to be in a blue bubble. Now it's green. What happened? Am I being charged for these text messages now? I'm with Verizon if that matters.

    When texting with other iphone users, the text used to be in a blue bubble. Now it's green. What happened? Am I being charged for these text messages now? I'm with Verizon if that matters.

    Thanks for the help, Allan Sampson.
    I updated itunes, shut the phone off and on, it still didn't give me blue bubbles. Kept following the suggestions on the page ...  I didn't know there was an IMessaging switch, but, shoot, it was OFF. Anyway, I toggled it on and now the text bubbles are blue again.

  • HT201812 why did my playlists erease when i downloaded current version of itunes

    when I downloaded current version of itunes all playlist did not transfer?

    Simply downloading won't erase anything.  Did you install too?  If you installed too then normally it also should not affect the library but sometimes for strange reasons it does which is why you need to do a computer backup before installing any updates of any kind.  Do you have a backup?
    iTunes: How to re-create your iTunes library and playlists - http://support.apple.com/kb/ht1451

  • How come I can't define a word when texting on ios 7?

    How come I can't define a word when texting or using notes on ios7 it just said no definition found?

    Highlight word.
    Select define.
    In the no definition window, hit manage in the lower left.
    Select a dictionary to download.

Maybe you are looking for

  • "Add Printer" not functioning

    Hello- I've been experiencing a weird problem within my Printer Setup Utility. When i click the "Add +" icon to add a printer to my queue(sp?), nothing happens... nothing. I first tried it with a laser printer connected vis ethernet to my wireless Be

  • NALWIN32 and NALDESK Interaction

    I have a NW6.5 server with ZFD4.0.1IR7 and Client 4.91SP2 (also true for 4.91SP1). If I launch NALWIN32 from the login script and NALDESK from the Start Menu (which worked at one stage in my setting up process) I now find that the NALWIN32 splash scr

  • Photoshop CC Save is greyed out

    Hi, I have noticed on occasion that an image I have been working on in Photoshop CC v14.0 will have the Save option greyed out even though changes have been made. Usually when I make only a few small changes to an existing image, as opposed to starti

  • Jpegs are darker in Photoshop CS2 then when viewed on PC

    I set levels in photoshop and then when I open them on my PC in Windows picture viewer they are much lighter and overexposed looking. How do I set up my photoshop CS2 to be at the same level.

  • BOM Explosion query

    Hi, Actually we required to have exploded BOM structure. Can any one have query to find all level of BOM explosion. Regards, Rakesh Mishra