c# - Making Alternative Languages For a ASP.NET WebSite -


i using website's source codes summer project. website language using english. want translate turkish. found language pack on internet.i using , , there codes that:

        <localeresource name="reviews.seeafterapproving">             <value>some turkish correspondings</value>         </localeresource>          <localeresource name="reviews.submitbutton">             <value>some turkish correspondings</value>         </localeresource>         <localeresource name="reviews.successfullyadded">              <value>some turkish correspondings</value>           </localeresource> 

now there missing part in language pack found. want fix it. don't know code corresponds "localeresource name". example lets there ;

<localeresource name="reviews.write">         <value></value>     </localeresource> 

and want translate "reviews.write" turkish. how can find reviews.write stand for? in visual studio , there way find reviews.write's english representative?

thanks.

you can add resource file each language want support.

for example: create 2 resource files, 1 english , other turkish. these can named locale-en.resx , locale-tk.resx. in these files create variables reviews.write , translate them specified language. last thing need tell localeresource file use.

see also


Comments

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -