If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
I need an enumeration table "Word" which is generalized by some other enumeration tables "WordInEnglish" and "WordInGerman":
"WordInEnglish" ---> "Word" <--- "WordInGerman"
----------------
| WordInEnglish |
----------------
| one |
| two |
| three |
----------------
-----------------
| WordInGerman |
-----------------
| ein |
| zwei |
| drei |
-----------------
Using such a manner I decided to resolve an user interface language problem.
Is it ok?
Probably this is not the one way to resolve an iteration value of different language. Please writte any suggestion apropos of such kind of a problem.