pygtk i18n problem---pygtk builtin widgets - pygtk

I am using pygtk and glade to build apps and I have a problem here. I used some gtk-builtin widgets in my app. And I don't know how to localize some label texts. For example
button = gtk.BUTTON_YES_NO
xxxDialog(data, button,text1, text2, xyz)
this would produce a dialog box with two buttons on it, one reads "Yes" and the other "NO". THe question is what sould I do to localize Yes and No to my native language. I do know how to localize texts in python codes(just preappend texts with _() and create a po/mo file), but I don't know how to deal with gtk-builtin widgets. Could you guys please help me with it? Any guidance would be highly appreciated. Thanks in advance.

You don't have to do anything, built-in widgets are automatically localized.

Related

How to show images and text using react-native-material-dropdown?

I'm developing social app using react-native.
There, I have one problm during developing.
I used react-native-material-dropdown module for making dropdown.
I want to show images and text on each element on dropdown.
But react-native-material-dropdown module doesn't support this feature.
How can I solve this problem?
Please help me.
Try using the renderBase prop, see this and this issues that could help you :)

Titanium: On The Fly Masked TextField

Titanium-Alloy SDK 3.2.1, Android 4.2.2.
Hi there, I would like to know if you have had the need to mask a textfield on the fly.
One project I am working on needs the user to input some formatted numbers (numbers+punctuation). On my best efforts, I've made a example project that makes use of a masked textfield using keypressed events on Android. It's HERE.
Questions are:
Should I follow this route?
Or is there a good module avaiable for this?
Any generic javascript option available (no DOM)?
Any suggestions or better ideas of how to deal with the
problem?
Thanks.
passwordMask is a boolean textfield property. If you need to dynamically toggle it, just do so in the controller like
if (condition){
textFieldName.passwordMask = true;
}

Printing a Vaadin Layout

I want to print a Vaadin layout and all of its components (text, tables, html, charts, etc), sending it to a pdf preview, hopefully getting exactly what I see in the screen (for that specific layout)
thanks!!!
The solution, seems to me, that is not something Vaadin is able to provide. You have to extract the html specific to you desired layout and, along with the styling, delegate to a tool that might convert it properly to a PDF, like jsPDF, but you need to integrate it into your Vaadin application.
If you're interested I can try to write some code that will help you. If so, let me know.

Is there any module to generate barcode from number in Titanium Appcelerator?

For barcode scanning there are modules available like Redlaser,Scandit..etc.
Is there any module to generate barcode from number(reverse procedure)?
Thanks.
A nice trick to avoid the main of modules, you can simply download a Barcode font, embed it in your app, and simply show a label with the text and the barcode font.
Be sure to check if the font is real, some are just artists conceptions and do not generate actual barcodes. Just make a few tests with a scanner app before you launch!
M_
There is Scandit api's available for this implementation Here is the working example link,
Here is instructions how to use it.
Hope this may help some one else also.
Thanks.

How can i design menu and title in vb.net?

I Would like to create my menu groups in my desktop application as the one shown in sample image. I would like to know which control is used for it? What extra works we need to do on it?
A reference to similar one is also welcome...
Thanks
CollapsiblePanel or Accordian or TaskPane.
Check out .Net 2.0 SDK Samples, specifically Technologies\WinForms\TaskPane.