language

How to convert .po to .mo files on mac?

I have tried using poedit 1.4.6>save as, but .mo is not an option. ...

What's the easiest way of making links to select a language which takes multilingual text from gettext, po, mo files (Wordpress)?

I've been playing with po and mo files and they are working fine so far. But I want to make links for the user to select the languages. What's the easiest and most efficient way of doing this? Or is there any other way of doing this besides using gettext? (it will be OK too) (I swear I've looked for that for days on Google and never f...

Common practice programming applications aside from IO and "Hello World"

I'm beginning to transition from web development into programming and when I learn a new web development language, a common application for me to construct would be a blog or CMS. What are some common applications to try out given any programming language?—aside from IO and "Hello World". ...

Wix ChooseLanguageDialog on Setupstart

Hey, has anyone an idea how to show an Chooselanguagedialog on the startup of my setup. Of course this dialog has to set the lanuage of the Setup (Yes, i use localization like !(loc.xxx) ). Thanks in advance! ...

is it possible to change languages of visual studio 2008?

Hello all, I have a VS 2008 Professional en. Is it possible to change language into german, russian or other languages? thank and take care, ragims ...

Get c#-specific name for a given framework System.Type?

I have a Type (via reflection, for example). I have the value of the Name property on, for example, String... that's "System.String". I want to see "string" ("int" instead of "System.Int32", etc, etc). Can anything in the framework (or the language) give me that? Can I convert a Framework type name to a language type name (or, altern...

macro recording and replaying in eclipse 3.5

Hi, which tool would you recommend for macro recording and replaying ? Is there a language as well ? I frequently switch between Eclipse and Emacs(actually Xemacs) for editing tasks. It would be nice if I didn't have to do as frequently. That would happen if a macro language/recorder were available in eclipse. It's available in Netbean...

Do android support multiple languages?

If i run my android application with a htc magic with locale English, I find my application running properly and if i try to run it on Motorola droid with locale korean, My application(apk) is not even installing on the device. Does android support different language? Is it is because of different language OS versions? ...

Workflow languages?

I am looking for a list of current workflow languages. I know about BPEL, WS-CDL and YAWL. What other current languages are there? A short description of how they operate would be excellent. All suggestions welcome. Thanks! ...

how to localize an asp.net mvc webproject? languages support

Hello, I would like to support many languages in an MVC project. I did it already using WebForms. I used LocalizedPage class inherited from Page. In MVC I am inheriting LocalizedPage from a System.Web.MVC.ViewPage, public class LocalizedPage : System.Web.Mvc.ViewPage and then my model uses it like this: public class OverviewModel ...

Changing language/culture in a MySQL/Dblinq project

Hi everybody, I'm not very familiar in programming databases, but I have a Mysql-Database which I access with Dblinq under C#. Now when I enter dates, numbers etc, the english notation is used, but my customer needs german. How can I switch my database from english to german? (The Database is still empty, I can easily re-create it, if ...

What are ISO languages?

It's in fact 3 questions : What is required for a programming language to be certified "ISO" ? What does ISO certification guarantee about the language? Does other language can be the same? A list of ISO languages? (made community wiki - not sure about the organisation, maybe the first answer should be edited to have the full ISO lan...

What not to do in PHP?

Possible Duplicate: Common programming mistakes for PHP developers to avoid? PHP is hated by a lot of programmers and even more hated is how the code is written by sloppy PHP coders. What, according to you, are the basic things a PHP programmer must follow and things (s)he must never not do? Or give example(s) of the most com...

Why sending events for a sender is forbidden in C#?

Quote from: http://msdn.microsoft.com/en-us/library/aa645739(VS.71).aspx "Invoking an event can only be done from within the class that declared the event." I am puzzled why there is such restriction. Without this limitation I would be able to write a class (one class) which once for good manages sending the events for a given category...

A more consistent, easily readable markup language?

I've been experimenting with several lightweight markup languages, to be precise the ones from this list at Wikipedia: Comparison of lightweight markup language syntax. Honestly, apart from the rules for italic/bold/underline styling, their syntax is incredibly inconsistent and painful to remember. Look at the example for the well know...

read current culture of asp.net mvc project and change language in javascript confirm

I have a javascript confirm. My text is in english, but if I will change language/culture of my asp.net mvc project confirm is of cource still english. I can controll it manually and just write two javascript methods (for both Languages) but it is no so clean I think. And if I will have more than 3 languages its will be more dirty. Co...

Is Java.NET platform independent ?

Java is the supported language by .NET. Where is it used ? Is there any IDE available for programming with Java.NET ? Isn't Java.NET a platform independent ? Can we compile it using JVM ? ...

How to rewrite location in nginx depending on the client-browser's language?

Hello all. How to rewrite location in nginx depending on the client-browser's language? For example: My browser accept-language is 'uk,ru,en'. When I request location mysite.org nginx must forward to mysite.org/uk How to do it? Thanks. ...

future for web server side and client side languages

Possible Duplicate: Which is the future of web development: HTML5 or Silverlight(or other RIA framework)? What do you think about the distiction of server web language like php, ruby, python, ... and client side language(s) into web browser, like javascript? I mean, with the evolution of the web application I think that a lot ...

Why are non-ascii characters still disliked in function / var names?

When I see a small program which is written for some students, I often see something like this: (haskell, german): ueber = "What the haeck!" instead of über = "What the häck!" As many modern languages are specified to allow non-standard charactes in declaration names via UTF-8, is there a special reason for avoiding these in a proj...