Message from SFR  ( in French)

Today when I opened my iPad 2 there was a message _
Message from SFR
06/11/2013  11,41  Votre Texto n'a pu etre enboye au 9667. Veullez essayer plus tard ou recharger votre credit
OK
I don't want to say OK without knowing what it is and I am not French.  The iPad will not open without me saying OK

When I translated it with Google, this is what it said: "Your Texting could not be sent to 9667. Please try again later or charge your credit."
Hope this helps...

Similar Messages

  • Message from RIM in French?

    What does this mean?
    Faites la mise à jour à l?OS 2.0 BlackBerry PlayBook, pour obtenir de nouvelles fonctions sensationnelles.
    Why am I getting emails from RIM in French... I don't speak it or read it!  All my past emails from them have been English?

    Well, regardless, now you know what it says.
    Good luck!
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How can I change my auto-correction language from english to french?

    My system language is english, so all the default language is also in english
    but how can I change the auto-correction language from english to french and without changing the menu language?
    Message was edited by: Marixomia

    It's just, I want to change my spelling checker from english to french, that when I type some words in wrong order or miss some, I can know that.
    For now, when I type in french, almost every words are underlined by the red lines...

  • Automated messages from Apple in a language I do not speak

    Hi Everyone!
    For two weeks now everytime I connect to iCloud from any of my iOS devices, I get an automated message from Apple saying that I connected to iCloud using that specific device. The problem is that the message comes in French! Who can help me have Apple use English to communicate with me again????
    All my settings in my devices and iCloud have the language set for English.
    Thanks a lot!
    The message is as follows:
    Cher(ère) User,
    Votre identifiant Apple ([email protected]) a été utilisé pour ouvrir une session iCloud et iMessage à partir d’un iPhone 4S appelé « User´s iPhone ».
    Si vous n’avez pas récemment configuré un iPhone avec votre identifiant Apple, il serait plus sûr de changer le mot de passe de votre identifiant Apple.

    Same here. Except I am English and am in Spain and everything comes in Spanish. Just because I am in a country for a while does not mean I speak that language well enough to read all the details...
    APPLE PLEASE DON'T ASSUME THINGS THAT ARE NOT CORRECT!

  • HT3529 My wife and I both have an iphone.   We initially created it under her apple id.   We will receive each others text messages from certain people not all.   Any ideas why and what we can do to stop it

    My wife and I both have an iphone.  We initially set them up under one apple id account.  When we text sometimes we will receive each others text messages from others.   Example I will text a friend...she will not see my text but the reply comes to both of us.  It seems to be random which ones.  Any ideas how to correct this

    Yup, get your own AppleID.
    The messages that are being sent to both phones are technically not text, they are Apple's iMessage. They use the data part, not the texting part. So if you have an iPad or a Mac computer, you can send/receive the iMessages there too.
    KOT

  • After trying to install the new update, I am getting a message from Windows saying that an MC file is missing, reintall Itunes-which I have now done 3 times. How do I fix this?

    I received the new update from Itunes and after installing, I couldnt get into my Itunes.  I get a message from Windows saying that an MC file is missing and  to reinstall I tunes.  I have reinstalled 3 times, the first time I didn't remove the old version, I installed the update over it.  Next I tried the repair function under Control Panel.  After that, I uninstalled Itunes and reinstalled again from the website.  I still get the same message about missing files from Windows.

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • Unable to capture messages from java.util.logging

    I have a class called (Caller.java) which invokes a method called foo from another java class(Util.java) using reflection API.Now this method foo logs messages using Java's logger.My requirement is to call foo for 3 times from Caller and capture/redirect the log messages into 3 log files.
    But only the first log file is capturing the log messages(from logger) and other two are not ?
    Plz suggest if I am doing somethin wrong here ?
    Caller.java
    package project2;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.PrintStream;
    import java.lang.reflect.Method;
    public class Caller {
        public Caller() {
        public static void main(String[] args) throws Exception {
            Caller caller = new Caller();
            for (int i = 0 ;i<3 ;i++ )  {
                caller.createLogStream(i);
                System.setOut(caller.getPs());
                System.setErr(caller.getPs());
                /*****************Invoking Util.java*****************************/
                Class clas = Class.forName("project2.Util");
                Method m = clas.getMethod("foo",null);
                Object obj =clas.newInstance();
                m.invoke(obj,null);
        public void createLogStream(int i) throws FileNotFoundException {
            ps = new PrintStream(new File(System.getenv("HOME")+File.separator+"MyLog"+i+".log"));
        public void closeLogStream(){
            ps.close();
            ps = null;
        private PrintStream ps = null;
        public PrintStream getPs() {
            return ps;
    } Util.java
    package project2;
    import java.util.logging.Logger;
    public class Util {
        Logger logger = null;
        public Util() {
            logger = Logger.getLogger(this.getClass().getName());
        public void foo(){
            System.out.println("Hello out stream");
            System.err.println("Hello error stream");
            logger.info("This is an information");
            logger.warning("This is a warning message");
            logger.severe("This is fatal!! ");
    }First Log file MyLog0.log:
    Hello out stream
    Hello error stream
    Feb 16, 2009 7:55:55 PM project2.Util foo
    INFO: This is an information
    Feb 16, 2009 7:55:55 PM project2.Util foo
    WARNING: This is a warning message
    Feb 16, 2009 7:55:55 PM project2.Util foo
    SEVERE: This is fatal!!
    Feb 16, 2009 7:55:55 PM project2.Util foo
    INFO: This is an information
    Feb 16, 2009 7:55:55 PM project2.Util foo
    WARNING: This is a warning message
    Feb 16, 2009 7:55:55 PM project2.Util foo
    SEVERE: This is fatal!!
    Feb 16, 2009 7:55:55 PM project2.Util foo
    INFO: This is an information
    Feb 16, 2009 7:55:55 PM project2.Util foo
    WARNING: This is a warning message
    Feb 16, 2009 7:55:55 PM project2.Util foo
    SEVERE: This is fatal!! Other 2 log files have only this much
    Hello out stream
    Hello error stream

    A stale Connection Factory or Connection Handle may be used in SOA 11g
    Regards,
    Anuj

  • I can call out but all incoming calls are going directly to VM with no signal that I missed a call or have VM. I can send/receive text messages from other iPhone/iPad/iTouch users, I am assuming this is really "iMessage." Is it apple software?

    I have spent hours on the phone with Apple and AT&T. I went thought reset, on/off, etc, etc with both companies to no avail. Each company pointed fingers at the other....as being the source of the problem.
    Problems: Suddenly ALL  incoming calls were going directly to VM with no signal I missed calls and/or had VM. I was also unable to receive all Text Messages...Oddly, I could send text messages to anyone (even non-apple users but I could not receive their responses)........then I when I got home I started receiving text messages from other apples users ONLY. I assume now - iMessage kicked in and I could text (send/receive)  other iPhone/iPad/iTouch users ONLY. ....yes, I could still (send) text messages to my husband's blackberry (he received my messages fine) but my phone would NOT receive his text respones.
    Finally, I googled the problem and found this community where other people have had the exact same problems! One person said he "turned off 3 G" which was the solution for him....so I did the same and VIOLA! My problem  solved! Nevermind the fact that I pay for 3G and cannot use it....so here's my question, if 3G is the problem on my phone is this an APPLE issue or a NETWORK problem? Do I purchase a new phone and slip in my same SIM card and hope the same does not occur or do I get a whole new SIM card and phone? What is the long term resolution to this problem?
    I am happy however to find that my problem is NOT an isolated incident and wish Apple or AT&T had told me this is not so uncommon because I thought (based on the baffled response from Apple) that this has never occurred before.  Where is Steve Jobs when we need him?

        jsavage9621,
    It pains me to hear about your experience with the Home Phone Connect.  This device usually works seamlessly and is a great alternative to a landline phone.  It sounds like we've done our fair share of work on your account here.  I'm going to go ahead and send you a Private Message so that we can access your account and review any open tickets for you.  I look forward to speaking with you.
    TrevorC_VZW
    Follow us on Twitter @VZWSupport

  • Cannot send txt messages from my iPhone to a android galaxy gear 3

    My husband switched from an iPhone to a galaxy note three and kept his old cell number.  Now he cannot receive texts from any other iPhones including mine.
    Research on Internet indicates this is common issue when an iPhone user switches to an android device and keeps old number from iPhone!  Problem does not happen with new android devices .any workable solution known?  So far suggestions in forums have not helped.  APPLE store personnel uninformed reissue,as well as Best Buy personnel.

    Looks to me like the question has indeed been asked 500 times or more...but still looks to me like many still have unresolved solutions if they have more than one Apple device.   I've been attempting to follow advice giving in forum conversations...still, no luck.  I had turned off imessage on old IPHONE before, then unregistered my old iphone, but still can not get txt messages from any of my friends who have an iphone...not one.   I do have several other Apple devices..an IMAC, an MAC BOOK PRO, an IPAD 2 and an IPAD3 still on my same Apple Account that my old phone was on.  Is this now the problem

  • Is there any way to copy email messages from an iPhone to a computer (pc or mac)?

    My pc with my mail database was formatted and the mails lost. I have about 1000 mails on my iPhone that I desperately want to transfer back to my desktop.
    My mail was on a POP server and I have no copies anywhere other than on the iphone.
    I am not concerned about future email messages  - my question is about transferring existing messages from the iphone to a computer.
    Any help is much appreciated, in have googled this to death and can't find a solution!!

    This might help..
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive

  • How do I transfer voicemail messages from my iPhone 4 to my Mac?

    Hi
    I'm trying to transfer a selected group of voicemail messages from my iPhone 4 onto my mac - would someone please advise me if there's a simple method to do this?
    Cheers
    Stephen.

    Get this, does that & a whole lot more:
    http://www.ecamm.com/mac/phoneview/

  • How can I delete saved messages from my iphone 5s to be able to update it?

    I have needed to update my Iphone 5s from the past 2 updates but it says that I have 4.2 GB of saved messages.  I don't know where to go to delete them.  I delete regular messages from my phone daily so I'm not sure what is being saved and where.
    Thanks!

    You would need to set up your mail account as a POP account instead of IMAP.
    I'm not sure if Hotmail/msn offers that -

  • How do you delete voicemail messages from iphone 5s

    I'm trying to delete voicemail messages from iphone 5s.  Based on visiting previous discussions on this subject, I've tried "resetting network settings" and "turning airport mode ON, deleting messages, then turning airport mode OFF" -- to no avail. I'm receiving an alert that I've reached capacity...please assist. I run my business on my iPhone and right now I'm missing opportunities.
    Thanks in advance for your expediency.

    From the iPhone User Manual:

  • How to take back up of messages from iphone

    Hello,
    I tried taking a back up from my iphone 3g to iphone 5s, but however on doing that only my contacts and my photographs got transferred but not my messages. Can anyone please let me know how I can take backup of my messages from my previous old iphone to my new iphone.
    Thanks

    hi 3360, i found the following example;
    for back up:
    rman target sys/*** nocatalog
    run {
    allocate channel t1 type disk;
    backup
    format '/app/oracle/backup/%d_t%t_s%s_p%p'
    (database);
    release channel t1;
    i couldn't undertsand this,actually i want the databse which has the
    username:scott
    password:jetora
    host string:jetora
    i want to take the database backup in c:/databasebackup.
    here databasebackup is one folder which is in c:(c directory)
    wil the above mentioned exapmle work? what are the things i have to modify in that examploe to accomplich my need.please help me and please modify that example and show me please

  • Outgoing mail keeps defaulting to a secondary account rather than the account I sent the message from?

    I have a new MacBook Air. I have two google mail accounts set up in the mail app  - one primary account and one secondary account. For some reason my outgoing messages keep defaulting to the secondary account. Even when I create a new message or reply to a message from the primary account and have the primary account highlighted, replies keep coming back to the secondary account. When I hover over the outgoing email address, it looks like it was sent from the secondary account even though I sent it from the primary account. I've gone into settings and looked at everything, and I still can't figure out what is causing this problem.

    i know it may sound crazy, but it does.
    I sent the same email out through my outlook and the person received the correct version. There is an issue with my Mail but thanks for the advice tho.

Maybe you are looking for

  • Cannot remove a job

    Oracle 10G R2 Log in as sysdba SQL> select job,schema_user from dba_jobs; JOB SCHEMA_USER 22 PERFSTAT 1 SYS 21 REPADMIN SQL> SQL> execute dbms_job.remove(22); BEGIN dbms_job.remove(22); END; ERROR at line 1: ORA-23421: job number 22 is not a job in t

  • KEEP ACR IMAGE FILES AT 16 BIT???

    I had my CS-6 ACR set for 16 bit by selecting 16 bit with an image file open, and selecting done, and for some time it remained that way. Yesterday, I processed a dozen images through ACR as TIF files---went to work on some today, and found them all

  • IPhoto/iMovie crashes when importing video

    Whenever I try to import a video into iPhoto, it crashes. Same thing with iMovie. I first thought it was a problem with my quicktime installation, so I reinstalled Quicktime 7. To no avail. I also thought it was linked to the fact that I had once ins

  • Hello applet not running in IE5

    I am using a simple helloworld app and am trying to display in IE5. However all I am seeing is a blank page. The app runs fine using appletviewer. Is this a conflict of JVM and Microsoft VM or is there a setting I haven't seen in IE? I am running NT4

  • HT2534 i can't do it, the none paiment option not present in my ipad and itunes

    All in the object. When i try to verify my new appleid the none paiment metod is not present and i can't go away. I try to make a new subscribtion whit another email but is the same.