I want to report a word error in the portuguese thunderbird. How do i do it?

There's a word error on a question in the portuguese language of the mozilla thunderbird. I just want to report it and i don't know to who. When i try to eliminate a contact, a question will pop asking if i am sure that i want do delete it, and there's a word error on that question. No big deal but i thought you would like to correct that. Thank you.

I think the formal procedure would be to file a bug to [https://bugzilla.mozilla.org/ Bugzilla], using key words like 'Thunderbird', 'Portuguese' and 'localization'. Additional information is given here:
https://wiki.mozilla.org/L10n:Contribute

Similar Messages

  • Scheduled report failures - Unexpected error getting the HTTP response

    Getting this error when scheduled report executes:
    Unexpected error getting the HTTP response stream while generating report: http://cdmdb1c.nam.nsroot.net:4889/em/console/reports/render

    Hi..
    Thanks for the comment.
    Below is how my web.xml entry looks like.
    The requirement is to send a 404 error response and that will be handled by a servlet which inturn writes the output to the response object.
         <servlet>
              <servlet-name>ErrorPageServlet</servlet-name>
              <servlet-class>com.test.ErrorPageServlet</servlet-class>
         </servlet>
         <servlet-mapping>
              <servlet-name>ErrorPageServlet</servlet-name>
              <url-pattern>/error</url-pattern>
         </servlet-mapping>
         <error-page>
              <error-code>404</error-code>
              <location>/error</location>
         </error-page>>>
    the first option to turn off the "show friendly html error pages" works fine.
    It would be better if I can get a different solution

  • I have two fields and I would like the 2nd field to display the word "Error" if the number is smalle

    I have two fields and I would like the 2nd field to display the word "Error" if the number is smaller than the number in field 1.
    can any one help?

    The code for the field? Sure, it's simple.
    You can use something like this as its custom calculation code:
    var v1 = this.getField("Field 1").valueAsString;
    var v2 = this.getField("Field 2").valueAsString;
    if (v1 && v2 && Number(v2)<Number(v1)) event.value = "Error";
    else event.value = "";
    Edit: Fixed code

  • At present I synch my iPhone 4 to my Dell Laptop. I've recently bought an iMac and I want to synch my iPhone 4 to the iMac. How do i transfer all the relevant info from iTunes on my Dell Laptop to my iMac without losing any info, photos, music or apps?

    At present I synch my iPhone 4 to my Dell Laptop. I've recently bought an iMac and I want to synch my iPhone 4 to the iMac. How do i transfer all the relevant info from iTunes on my Dell Laptop to my iMac without losing any info, photos, music or apps?

    there are a number of scenarios to do it.
    The general idea was covered here:
    http://support.apple.com/kb/HT2518
    Make sure you have a full backup of your iPhone before recyncing with the iMac as during this process all data will be wiped out from your iPhone.
    Going forward you may want to check icloud which makes life easier.
    http://www.apple.com/uk/icloud/

  • Safari 7 has some pictures grayed out with the word FLASH in the middle. How do I fix?

    safari 7.0.2 has some (not all) pictures grayed out with the word FLASH in the middle. How do I fix?

    If you click on them, does anything happen ?.
    You may have the clicktoflash extension installed : check Safari menu - Preferences - Extensions

  • HT2534 I was previously using itune gift cards to purchase music. Now, it requering to enter billing information and i don't want to have a credit card on the sytem. How can I bypass this billing/credit card requirement?

    I was previously using itune gift cards to purchase music. Now, it requering to enter billing information and i don't want to have a credit card on the sytem. How can I bypass this billing/credit card requirement?

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • I have an iMac (OSX 10.9.2) and a Macbook (same).  I want to copy photos from one to the other.  how?

    I have an iMac (OSX 10.9.2) and a Macbook (same).  I want to copy photos from one to the other.  how?

    I'm sorry.  I got a little off-the-wall there.
    I want to have the same iPhoto files on both machines.  A few days ago I spent several hours swapping photos back and forth until I had one event with identical picture files on both.  Yesterday I scanned some old photos into the Macbook.  Today I wanted to copy them to the iMac.  I could not remember what I had done a few days ago, so I spent a couple of frustrating hours trying to either remember or find another way, to no avail.  I have no idea what I did right before; I only recall that it was pretty easy.
    I didn't write anything down.  I used to do that, but what I do is so intermittent that by the time I want to copy pictures again either (a) the app has been updated and the old way doesn't work (b) I've lost the paper with the notes on it or (everything seems fine but it just doesn't work.  So I gave that up.
    Yes, I do want both iPhoto libraries to be the same.  The Macbook is the one with the scanner and I download from my camera on the iMac, so I need to be able to move photos from one to the other, I think.

  • Bex report displays text Error in the result

    Hello,
    In my bex query result the text ERROR is displayed beside the value of a keyfigure.
    I'm not able to figure why this appears and how to find the error.
    Thanks.

    This is due to the absense of unit/currency against the key figure in the info provider.
    Maitain the currency/unit and then run the report. This should rectify the report error.
    Naveen.A

  • CLIENT_OLE2 v/s Word  , ERROR in the package

    Hi ...
    I used the package webutil (very useful) , but when execute
    The next code :
    Code
    goto_marcador('MC_LOCALIDAD_01', 'Espanol');
    inserttext (<any value>, 'Espanol');
    Procedures
    procedure Goto_marcador (marcador in varchar2, idioma varchar2) is
    arglist CLIENT_OLE2.list_type;
    begin
    arglist := CLIENT_OLE2.create_arglist;
    CLIENT_OLE2.add_arg (arglist, marcador);
    if idioma = 'Ingles' then
         CLIENT_OLE2.invoke (obj_hnd, 'EditFind', arglist);
    else
         CLIENT_OLE2.invoke (obj_hnd, 'Edici�nBuscar', arglist);
    end if;
    CLIENT_OLE2.destroy_arglist (arglist);
    end;
    procedure inserttext (txt in varchar2, idioma varchar2) is
    arglist CLIENT_OLE2.list_type;
    begin
    arglist := CLIENT_OLE2.create_arglist;
    if not txt IS NULL THEN
         CLIENT_OLE2.add_arg (arglist, txt);
    else
         CLIENT_OLE2.add_arg (arglist, ' ');
    end if;
    if idioma = 'Ingles' then
         CLIENT_OLE2.invoke (obj_hnd, 'insert', arglist);
    else
         CLIENT_OLE2.invoke (obj_hnd, 'insertar', arglist);
    end if;
    CLIENT_OLE2.destroy_arglist (arglist);
    end;
    Appears the next error in the Java Console:
    JInitiator: Versi�n 1.3.1.9
    Usar versi�n JRE 1.3.1.9 Java HotSpot(TM) Client VM
    Directorio local del usuario = C:\Documents and Settings\hulloa
    Configuraci�n del delegado: sin delegado
    JAR cache enabled
    Location: C:\Documents and Settings\hulloa\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Loading http://mlfwebsvt.metlife.cl:7778/forms90/webutil/webutil.jar from JAR cache
    Loading http://mlfwebsvt.metlife.cl:7778/forms90/webutil/jacob.jar from JAR cache
    Loading http://mlfwebsvt.metlife.cl:7778/forms90/java/f90all_jinit.jar from JAR cache
    RegisterWebUtil - Loading Webutil Version 1.0.2 Beta
    Loading http://mlfwebsvt.metlife.cl:7778/forms90/java/iconic_files.jar from JAR cache
    connectMode=HTTP, native.
    La versi�n del applet Forms es: 90290
    2003-oct-22 12:48:05.827 ERROR>WUO-714 [OleFunctions.setExceptionValues()] Unable to get the last OLE Error details; Exception
    null
    2003-oct-22 12:48:05.827 ERROR>WUO-707 [OleFunctions.invoke_obj()] Unable to invoke Method: insert; Exception
    com.jacob.com.ComFailException: A COM exception has been encountered:
    At Invoke of: insert
    Description: No se ha encontrado el miembro.
    2003-oct-22 12:48:11.171 ERROR>WUO-707 [OleFunctions.invoke_obj()] Unable to invoke Method: filesaveas; Exception
    com.jacob.com.ComFailException: Invoke of: filesaveas
    Source: Microsoft Word
    Description: Word no puede guardar este archivo porque est� abierto en otro lugar.
    (C:\TEMP\NCO-1131.DOC)
    2003-oct-22 12:48:14.734 ERROR>WUC-14 [getFromObjectCache] Object Cache Error: Specified object handle 4 not found in the cache
    2003-oct-22 12:48:14.796 ERROR>WUC-14 [getFromObjectCache] Object Cache Error: Specified object handle 4 not found in the cache
    2003-oct-22 12:48:14.796 ERROR>WUC-14 [getFromObjectCache] Object Cache Error: Specified object handle 4 not found in the cache
    2003-oct-22 12:48:14.796 ERROR>WUC-12 [OleFunctions.invoke_obj()] Object Cache Error: Object is not the expected JacobObject,Vector type
    2003-oct-22 12:48:14.937 ERROR>WUC-14 [getFromObjectCache] Object Cache Error: Specified object handle 4 not found in the cache
    2003-oct-22 12:48:14.984 ERROR>WUC-14 [getFromObjectCache] Object Cache Error: Specified object handle 4 not found in the cache
    2003-oct-22 12:48:14.984 ERROR>WUC-14 [getFromObjectCache] Object Cache Error: Specified object handle 4 not found in the cache
    2003-oct-22 12:48:14.984 ERROR>WUC-12 [OleFunctions.invoke_obj()] Object Cache Error: Object is not the expected JacobObject,Vector type
    Why the method Insert is working bad???
    The file jacob.jar is signed correctly
    In the file *.dot exist the marker MC_LOCALIDAD_01 , however CLIENT_OLE2.invoke (obj_hnd, 'EditFind', arglist); , not found , why???
    The method is valid??
    Where found more descriptions of this method or all methods of CLIENT_OLE2??
    Thanks very much
    Regards
    Hector
    PD : Sorry my english

    Hi Andrew
    You says , i can not use the Marker and the template (*.dot) in the forms9i?
    the solution :
    -- insert data into new document from long item
    OLE2.SET_PROPERTY(selection, 'Text', :long_item);
    Not help me , because i use the sofisticated template and i create a template will quasi impossible ..
    Where i found more descriptions of method for example insert???
    Thanks Andrew
    Observation : If i can not use marker or template , the Forms9i is not help me....

  • My computer crashed and I know I lost my music. I have a new one but when I hook my nano itunes wants to delete what I have on the nano. How can I get it to accept the song on the nano and start building my libary again?

    My computer crashed and I lost my music. I have a windows7 now but when I try to connect my nano to it I get message saying it is connected to another libary. I don't want to lose the music on the nano. How can I set it up to a new itune library and start collecting my music again?

    See this older post from another forum member Zevoneer covering the different ways to copy media/content from your iPod back to your PC.
    https://discussions.apple.com/thread/2417169?start=0&tstart=0
    B-rock

  • I have an older iPod Nano 4th generation, and an iTouch 5.  I have music on my nano that I do not have on my iTouch and that I want to transfer onto my iTouch from the nano.  How do I do it?

    I have an older iPod Nano 4th Gen and an iTouch5.
    I have music on the nano that I want to put on the iTouch.  How do I do this? Can Someone Help?

    Launch iTunes on your computer.
    From the menu bar click Store / Authorize This Computer
    Connect the iPod.
    From the iTunes File menu click: Transfer Purchases From ...

  • Have a test version in use for testing purposes and want to buy it now without loosung the files. How to do so?

    I've a test version in use for testing purposes and want to buy it now without loosung the files.

    Just buy it and enter your serial key.

  • WIS 10901 error while running WEBI Report but no error in the DESKI report

    Hi,
    Can anyone please help me to resolve this issue.
    we have recently migrated BOXIR2 - BOXI3.1. many of the reports are from SQL Server and Oracle databases.
    Oracle Database connection universe reports error:
    i'm getting WIS 10901 error while running WEBI report for some particular objects not for all the objects but the same time i could able to pull the same object in the DESKI.
    those particular objects having lenthy data's for ex:100 bytes. but i tried same 100bytes some other objects refreshing fine and displaying results.
    i don't know where we ar missing.
    SQL Server Connection universe reports:
    These reports are giving mismatched results from the original but the callculation are done by the reporter side by creating variables. other than that there are no issues with these reports.
    Please we are struggling lot on these issues, can anyone please help us.

    Hi,
    For your issue 2 check whether any filters used in XI  R2 are missing in XI R3. As during migration some filetrs might be missed. To check this in  slice and dice panel in both bo versions.
    Cheers,
    Suresh Aluri.

  • HT1933 The app i want to report has been removed from the app store, but an app with an IDENTICAL interface has cropped up. I need customer services now please.

    Ages ago, i bought a app called vdownloader+ which boasted a unlimited downloading fucntion, the app downloads off of youtube and saves the video to the app and makes it viewable offline with no internet connection, and can download off other compatible sites too. Now its disappeared off the app store, i have found out it cannot have unlimited downloads. Annoyed. Now, there is another app on the app store with a different logo, barely different may i add, and IDENITCAL interface. This person must of created both apps, and i'm not getting any responce off of either problem email addresses which where supplied with both apps. (I downloased the lite version of the new app called Video downloader lite -Vdownload. I need assistence filing a complaint and taking this extremly seriously as i got conned into buying an app.
    Many thanks.
    -Harryeast1

    You can contact iTunes support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • I want to arrange / organize my photos in the various EVENTs, how is this being done ??? please HELP, thank you, manfred from jupiter

    I  have set up several EVENTs for my photos in iPhoto. Now when I click on an Event, I want to arrange the pictures within this event , when I click on the picture  I  want to move, it does not move, it stays in place. ( yellow fram around the picture does appear )  I clicked on the VIEW tab, selected " sort EVENTS" than I slide over to manually and  the word appears in grey rather than black .  Therefore I am unable to move the picture to the place I want it to be within that same event.  Please be kind and Help,  thank you,  manfred from jupiter

    Hello Old Toad,
    thank you for your reply, very much appreciated.
    I am sending you the same anwer I sent out to LarryHN, since it covers the ame topic.....
    My version of iPhoto is  :  " iPhoto  08 " , version 7.1.5  ( 378 )
    I set up an " Album " as you suggested and this procedure works,  I am able in this new Album to change the pictures around as I want it to be.
    However in checking back at the same  " Event"  Album / Gallery  the pictures still remain the old way and do not show the changes I made in the new Album version.
    I guess that's the way it will be. Take it or leave it..... or do you have another suggestion ????  Thank you for looking into my problem. Please let me know.  Thank you  again manfred from jupiter

Maybe you are looking for

  • From FrontPage .htm to Dreamweaver .htmL

    Hey folks, I'm completely new to Dreamweaver (had it for months, and no closer to learning it than at the first day). I have a big concern.  All of the files in my website which was created 13 years ago with FrontPage end in .htm I understand that fi

  • Difference between IS and AS in procedure?

    difference between IS and AS in procedure?

  • Reading count of a query in formula columns

    I need to supress a field/label from being displayed in the report output if the count of rows returned from another query is 0. I was thinking of defining a formula column that will have the count. Then can I use that formula column in the trigger o

  • Overdue Invoice Check

    I have a client who would like to restrict the creation of sales orders, deliveries, etc if the business partner has overdue invoices.  Does anyone know how or has anyone seen this functionality? Thank you, Jeff

  • Trouble installing Adbe Photoshop 7.0 onto new computer

    Computer is HP Z420 Windows 7 OS. I have original disc, serial @ and customer number.