How to Translate the Title bars into other languages.

Hi,
I have created a titles using the SET Title statement.  I want to translate the title into other languages.  Please help me ASAP.
Thanks,
Sreenivas.

Hi,
From SE38, GOTO (from menu bar)-->translation.
Regards,
Jyothi CH.

Similar Messages

  • How to change the title bar wdith , scroll bar widths in tune with a 7" screen

    can you please help me customize my user chrome section so that I can REDUCE the WIDTH of the scroll bar ( horizontal and vertical ) . That is , at max the scroll bar can be ___ pixels of __ % of total width. ( prefer the relative reference )
    Also the title bar ( that black surrounding area that bears the minimize, maximize,close buttons ) needs its width reduced to half of what it is now. How do I do this ?

    No. That doesn't work any more. In current Firefox versions native scroll bars are used and you can't do style those via userChrome.css (user interface; chrome windows) and userContent.css (websites). You can try a large theme if you do not want to make the changes via the Control Panel

  • How to customize the title bar on my own Look And Feel?

    Hi all!
    I am creating my own Look and Feel which extends from NimbusLookAndFeel. What I'm doing is overwriting UIDefaults values??, referring to the Painters. For example:
    +uiDefault.put ("Button [Enabled]", new ButtonEnabledPainter());+
    But now I need is to customize the title bar of the JFrame's, but I do not see this option in Painter's values ??can be overwritten by Nimbus (http://docs.oracle.com/javase/tutorial/uiswing/lookandfeel/_nimbusDefaults . html).
    You know as possible? I have to overwrite an existing UI component? The idea is I want to make the look and feel like SeaGlass, but the code seems a bit complex to know where to begin.
    I hope you can guide me on this issue.
    Thank you very much for everything! And excuse my English!.
    Greetings!

    very simple example, with direct methods
    import java.awt.*;
    import java.awt.event.*;
    import java.util.LinkedList;
    import java.util.Queue;
    import javax.swing.*;
    public class NimbusBorderPainterDemo extends JFrame {
        private static final long serialVersionUID = 1L;
        private JFrame frame = new JFrame();
        private JPanel fatherPanel = new JPanel();
        private JPanel contentPanel = new JPanel();
        private GradientPanel titlePanel = new GradientPanel(Color.BLACK);
        private JLabel buttonPanel = new JLabel();
        private Queue<Icon> iconQueue = new LinkedList<Icon>();
        public NimbusBorderPainterDemo() {
            iconQueue.add(UIManager.getIcon("OptionPane.errorIcon"));
            iconQueue.add(UIManager.getIcon("OptionPane.informationIcon"));
            iconQueue.add(UIManager.getIcon("OptionPane.warningIcon"));
            iconQueue.add(UIManager.getIcon("OptionPane.questionIcon"));
            JButton button0 = createButton();
            button0.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    frame.setExtendedState(ICONIFIED);
            JButton button1 = createButton();
            button1.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    frame.setExtendedState(MAXIMIZED_BOTH | NORMAL);
                }//quick implemented, not correct you have to override both methods
            JButton button2 = createButton();
            button2.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    int confirm = JOptionPane.showOptionDialog(frame,
                            "Are You Sure to Close Application?", "Exit Confirmation",
                            JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE,
                            null, null, null);
                    if (confirm == JOptionPane.YES_OPTION) {
                        System.exit(1);
            buttonPanel.setLayout(new GridLayout(0, 3, 5, 0));
            buttonPanel.setPreferredSize(new Dimension(160, 30));
            buttonPanel.add(button0);// JLabel is best and cross_platform JComponents
            buttonPanel.add(button1);// not possible put there witouth set Dimmnesion
            buttonPanel.add(button2);// and LayoutManager, work in all cases better
            titlePanel.setLayout(new BorderLayout());//than JPanel or JCompoenent
            titlePanel.add(new JLabel(nextIcon()), BorderLayout.WEST);
            titlePanel.add(new JLabel("My Frame"), BorderLayout.CENTER);
            titlePanel.setBorder(BorderFactory.createLineBorder(Color.GRAY));
            titlePanel.add(buttonPanel, BorderLayout.EAST);
            JTextField field = new JTextField(50);
            JButton btn = new JButton("Close Me");
            btn.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    System.exit(1);
            contentPanel.add(field);
            contentPanel.add(btn);
            fatherPanel.setLayout(new BorderLayout());
            fatherPanel.add(titlePanel, BorderLayout.NORTH);
            fatherPanel.add(contentPanel, BorderLayout.CENTER);
            frame.setUndecorated(true);
            frame.add(fatherPanel);
            frame.setLocation(50, 50);
            frame.pack();
            frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
            frame.setVisible(true);
            ComponentMover cm = new ComponentMover(frame, titlePanel);
            //by camickr http://tips4java.wordpress.com/2009/06/14/moving-windows/
        private JButton createButton() {
            JButton button = new JButton();
            button.setBorderPainted(false);
            button.setBorder(null);
            button.setFocusable(false);
            button.setMargin(new Insets(0, 0, 0, 0));
            button.setContentAreaFilled(false);
            button.setIcon(nextIcon());
            button.setRolloverIcon(nextIcon());
            button.setPressedIcon(nextIcon());
            button.setDisabledIcon(nextIcon());
            nextIcon();
            return button;
        private Icon nextIcon() {
            Icon icon = iconQueue.peek();
            iconQueue.add(iconQueue.remove());
            return icon;
        private class GradientPanel extends JPanel {
            private static final long serialVersionUID = 1L;
            public GradientPanel(Color background) {
                setBackground(background);
            @Override
            public void paintComponent(Graphics g) {
                super.paintComponent(g);
                if (isOpaque()) {
                    Color background = new Color(168, 210, 241);
                    Color controlColor = new Color(230, 240, 230);
                    int width = getWidth();
                    int height = getHeight();
                    Graphics2D g2 = (Graphics2D) g;
                    Paint oldPaint = g2.getPaint();
                    g2.setPaint(new GradientPaint(0, 0, background, width, 0, controlColor));
                    g2.fillRect(0, 0, width, height);
                    g2.setPaint(oldPaint);
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                @Override
                public void run() {
                    try {
                        UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel");
                    } catch (Exception fail) {
                    UIManager.getLookAndFeelDefaults().put("nimbusFocus", Color.RED);
                    NimbusBorderPainterDemo nimbusBorderPainterDemo = new NimbusBorderPainterDemo();
    }

  • How to remove the title bar of a frame(java.awt.Frame)?

    How to get a frame without any TitleBar?

    setUndecorated(true);
    This also gets rid of the minimize, normalize, and close buttons from the upper right corner of the screen--so have a way to close and resize if you need it.
    btw: do you know how to bring up the API docs?

  • How to blink jframe title bar?

    hi, i have an application i dont know how to blink the title bar of the frame when it is minimized. I hope you can help me. Thanx in advance.

    When the frame doesnt have focus
    you can use
    yourFrame.setVisible(true);
    and it will blink similar to the MSN Messenger on the task bar..
    It works well on XP, 98 n ME.. I havent tried on 2000 but i use it for the messenger I developed and it works absolutely fine
    Hope it helped
    Boney S.
    [email protected]

  • After installing FF4 on 2 computers (both Win7Ultimate), one places tabs in the title bar, the other below it; how can I get both to place tabs in the title bar?

    I have the same options selected on each computer, both have "Tabs on top" selected.
    The one I am using now has a double-height title bar, with the Firefox botton on the top left, and tabs below it also on the left.
    The right side of the title bar is blank (semitransparent) space.

    Found the problem - on one computer, I run Firefox maximised, and Tabs go into the title bar.
    On the other, Firefox runs in an unmaximised window, and tabs sit below the title bar.
    This seems very silly.
    Hey, developers, how about keeping the tabs in the title bar all the time? This is a good feature spoilt by this quirk.
    How about changing it for the next update?

  • How to replace the icon in the title bar and minimized window

    I am not sure if this is a Swing question. But since nobody answered it in the Java Programming forum, let me place it here:
    I would like to set my own icon in the title bar and in the minimized window of my java application, replacing the java coffee cup icon.
    I am using:
    frame.setIconImage(new ImageIcon("image.gif").getImage())
    as was suggested previously in the Java Programming forum at:
    http://forum.java.sun.com/thread.jspa?forumID=31&threadID=5212059
    This does create the icon in both places. However, it only works when I run the program from JBuilder 2006. It doesn't work if I run the program from the .jar or the .exe file.
    How can I make it work for my .jar and .exe file?
    Please help! Thanks!

    It doesn't work if I run the program from the .jar...working example for a .jar
    import javax.swing.*;
    import java.awt.*;
    class Testing
      public void buildGUI()
        JFrame f = new JFrame();
        Image img;
        try
          java.net.URL url = new java.net.URL(getClass().getResource("Save.gif"), "Save.gif");//correct capitalization required
          if (url != null)
            img = javax.imageio.ImageIO.read(url);
            f.setIconImage(img);
        catch(Exception e){}//do nothing - default will display
        f.setSize(200,200);
        f.setLocationRelativeTo(null);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setVisible(true);
      public static void main(String[] args)
        SwingUtilities.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    }

  • How can I get back the title bar in Thunderbird 38?

    The title bar can be turned on and off in Firefox. In the current version of Thunderbird (31), the title bar is present by default and there is no option to turn it off. In the beta version (38), there is no title bar by default… but I can't believe that there's no way to get it back. So, where is this setting? I can't find it.

    I sure agree that the setting isn't easily discoverable, but that's too late for the 38.0 release given that string freezes went in effect already (the reason being that localizers have to translate all UI elements for their respective language).
    The respective [https://bugzilla.mozilla.org/show_bug.cgi?id=814571 bug report] has been up for more than two years, but thus far not much progress in terms of a solution acceptable by the developers. I don't know if the extension proposed in the last comment was ever developed and posted.

  • How do you make the title bar display different text than the page title?

    I'm looking for a way for the title bar display of my web page to be different than the text in the actual nav bar created by iWeb. For instance, I'd like the nav bar to just say Home for my main page, but in the title bar in the browser say "blah blah blah."
    I know there has to be a way to do this. iWeb has actually done it on one page already, but I can't figure out how. I think it picked up the title bar text from the first text box in the page. For instance, the page name in the navigation bar is "blahs for today" but the browser title bar when you open that page says "blah blah," which happens to be the first line of text on the page. The page title in iWeb.app, though, is "blahs for today." But if I look at the source code it lists title as "blah blah."
    I'm guessing I might be able to work around by making an invisible text box with the text that I want in the title bar as the very first thing on the page, and hope iWeb makes that the title bar text. I'd rather have a more correct way of doing it.
    Is there a way of doing this in the source code without having to change a lot of stuff?
    Thanks for any help.

    Richard Kirkman1 wrote:
    I think it picked up the title bar text from the first text box in the page. (...) I'm guessing I might be able to work around by making an invisible text box with the text that I want in the title bar...
    Richard ~ The key is the default Title box that iWeb creates for every new page — it's that which you need to edit, not another text box you've created. And to make the text in that Title box invisible, see here.

  • How to change the position of the title bar in XFCE?

    I hate widescreens, but I bought one because only those are sold. There's a problem with them - The amount of text you can fit on the screen horizontally is quite low which means less lines of text and more scrolling. Also, I noticed that at least 50px is taken up by misc title bars and menus. There would be much more space if I got rid of them.
    Unfortunately, getting rid of them is not an option. I need them. I was thinking that it perhaps would be possible to move the title bars of the windows to the side of the window. Mockup of how it would work included. Do you know of any such solution? That would really help.
    Mockup: http://yfrog.com/j4screenshotesp

    Already been requested ( http://xfce.wikia.com/wiki/Wish_List ) but not yet available AFAIK.

  • I downloaded google translate and another app that allows you to speak into the microphone and it translates what you said into another language. The microphone on both programs says "speak now" and after I speak it doent do anything. How do I get the mic

    I downloaded google translate and another app that allows you to speak in the microphone and it translates what you said into another language. Both apps say "speak now" into the microphone but when I speak it doesnt do anything. How do I get the microphone to work on these applications?

    What mic/iPod are you using?
    Does the mic work for other apps?

  • Who Will Be the First to Tweak IE9 To Restore the Page Title into the Title Bar?

    It's a well-known fact that if you disable the tabbed view (i.e., you prefer to use multiple separate windows for your browser pages) the Page Title from whatever web page you visit doesn't show up anywhere.
    How does a blatant omission like this pass a design review?
    It's like someone at Microsoft doesn't think titles belong in Title Bars any more.  Who is this person, and do they actually USE a computer?
    In a similar vein, Windows Explorer windows no longer put the path in the Title Bar -
    unless you use one of the fine aftermarket products such as ShellFolderFix or ClassicShell to restore the Title Bar to service.
    Has anyone figured out yet what to tweak to put the page title in the Window Title Bar for IE9?
    -Noel

    I see I just got another up-vote for the original post in this thread.
    Perhaps it's time to follow up...
    TODAY, with Windows 8.1 and IE11, we see that you can no longer eliminate tabbed view.  Thus there is a place - at the expense of some space for the address bar, where the page
    title appears.  But it is not the Title bar, and it's usually not wide enough to fit the whole title.
    Why is Microsoft continuing to choose to do ANYTHING but follow their own desktop usability standards? 
    We see the ongoing departure of application design from standards not only in IE, but also in Office and other Microsoft applications.
    Hey!  We users didn't designate that space across the tops of windows as a title area.  Microsoft did.  We just got used to using it.  When we look to activate the proper window on our desktops, we look at the titles.  Fortunately,
    there are 3rd party developers who make programs to put the right things back, but I'm forced to ask:  Why?  This is not an accident.
    Are we being groomed by Microsoft to become used to and ultimately begin to accept random UI design?
    Microsoft engineers, are you being instructed to make your designs less conformant to desktop usability standards by your bosses?  If so, you need to tell them to kiss your collective asses!  You're not doing your products any favors by following
    such ridiculous advice, and as your products go so will your company.  You are not too big to fail!
    People will only allow themselves to be manipulated for so long.  Then you'll find some other company has made a product that's better (something you're
    facilitating by making your product worse) and is eating your lunch.
    Have a nice day in Redmond.
    -Noel
    Detailed how-to in my eBooks:  
    Configure The Windows 7 "To Work" Options
    Configure The Windows 8 "To Work" Options

  • How to insert image in the title bar?

    Hi experts,
    how to insert the image or icon in the title bar of a screen, similar to the screen below.
    Att.,
    Luiz.

    Hi Luiz,
    You can create them in GUI Status. If you are using a module pool program uncomment SET PF-STATUS '<STATUS-NAME>' statement, double click on  <STATUS-NAME> and you will be directed to the screen for setting your GUI status.There you can create buttons with desired icons. If it is a report program add SET PF-STATUS '<STATUS-NAME>'  statement to your program and follow the same procedure.
    Refer the wiki for more details.
    GUI Status of A Program using Menu Painter - ABAP Development - SCN Wiki
    Regards
    Anoop

  • How the show version of the Acorbat in the title bar?

    How the show version of the Acorbat in the title bar?
    I’m not sure if there is an option that shows the version of the Acobat (8.0, 8.1, 9, …) on the title bar! Wondering why it is not shown by default. We need to know where we are!
    AutoCAD has this feature!
    Thank you for the help,
    Best
    Jamal

    You can try the Feature Requests forum, but to be honest I don't see what's
    the big deal. As you showed in your screenshots, a single click on the Help
    menu reveals the version, and if you click on the "About" item, you'll get
    all the full version info. And since you can't have more than one version
    of Acrobat on the computer, there's no real chance of accidentally using
    the wrong version.

  • How to add an icon in the title bar,next to the maximize and minimize icons

    I need to add an icon ( help icon; ?) in the JInternalFrame� title bar. Anyone could help me????
    Thanks

    have you get the answer ?? on how you add an icon to the title bar?? ...
    if you do please inform me..
    thanks

Maybe you are looking for

  • Attachment issues in Mail and Outlook

    We recently started to upgrade computers to Mountain Lion (10.8.2) and have discovered a frustrating issue. Sending attachments from the mail app (.jpgs, sending zipped files is not an option) to PC's running Outlook (all current versions I believe),

  • SAP transaction in UWL

    Hello Experts, We have developed 1 SAP transaction (module pool) for our workflow which executes in backend completely workitems are accessed from SAP inbox. This transaction basically has 2 buttons - > approve n reject and 1 text box with rejection

  • Data submission format - Tab missing?

    Using LiveCycle Designer > Working with Objects > Using objects > Using buttons > To insert a button that sends an email that includes XML data The help doc that describes how to insert a button that sends email including xml data references a 'Submi

  • (SOLVED)Problem to recover backup created using mysqldump, shows error

    I use this command to restore: mysql -u root -ppasswd db1 < /media/wd1500GB/backup/mysql/db1_2014-03-28.sql Shows this error: ERROR 1050 (42S01) at line 25: Table '`db1`.`phpbb_acl_groups`' already exists Mysql is running. What can be wrong? thanks L

  • Adobe Tutorial Help please?

    Hi, Trying to do the tutorial but have no idea of C#. I have tried running the code through a convertor but keep getting errors. Can anyone convert this from C# to VB <script runat="server"> protected void Page_Load(Object Src, EventArgs E) // Don't