I would like to write a Java application that will be connected to SQL server and be able to handle other than English languages. Java application will have only two screens.
First screen will display the drop down menu with the list of the avalaible languages (list of available languages will be coming from the database LANGUAGE table).
Second screen will have only one label "Name: ", text box and the button "Submit" (English is a default language of my application). Label and button's text will be written in a language chosen on the first screen (this text will be coming from another table, for instance NAME_SCREEN_TRANSLATION with three columns LANGUAGE_FK, BUTTON_TEXT, LABEL_TEXT where LANGUAGE_FK is a foreign key to LANGUAGE table).
User enters her/his name in a chosen language and then clicks submit button. Application collects data entered in the text box and inserts it in a VISITOR_NAME table:
INSERT INTO VISITOR_NAME (VISITOR_NAME, LANGUAGE_FK)
VALUES ("Ôîëùîð", 35). Here we are inserting a name entered in russian language.
I would greatly appreciate if you could give me a direction on how to write such application.
Kind regards,
SA23.
First screen will display the drop down menu with the list of the avalaible languages (list of available languages will be coming from the database LANGUAGE table).
Second screen will have only one label "Name: ", text box and the button "Submit" (English is a default language of my application). Label and button's text will be written in a language chosen on the first screen (this text will be coming from another table, for instance NAME_SCREEN_TRANSLATION with three columns LANGUAGE_FK, BUTTON_TEXT, LABEL_TEXT where LANGUAGE_FK is a foreign key to LANGUAGE table).
User enters her/his name in a chosen language and then clicks submit button. Application collects data entered in the text box and inserts it in a VISITOR_NAME table:
INSERT INTO VISITOR_NAME (VISITOR_NAME, LANGUAGE_FK)
VALUES ("Ôîëùîð", 35). Here we are inserting a name entered in russian language.
I would greatly appreciate if you could give me a direction on how to write such application.
Kind regards,
SA23.