Is it more efficient to store translated text in a database or inside a file using an array?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Really depends on what you’re usign to develop, some Frameworks have localization functions, you should check if first. After that, if none is provided, database is a little bit complicated, imagine queries at every word. Id use some sort of INI file, if no localization functions are provided, or you could always check for some localization libraries. But since i don’t know what language you’re using to develop, there’s no much i can do to help. If you want any help to find a library, let me know.