<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.expertiza.ncsu.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Hbbadiya</id>
	<title>Expertiza_Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.expertiza.ncsu.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Hbbadiya"/>
	<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=Special:Contributions/Hbbadiya"/>
	<updated>2026-05-18T20:59:51Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123952</id>
		<title>E1932 Expertiza Internationalization - Spring 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123952"/>
		<updated>2019-04-13T00:40:53Z</updated>

		<summary type="html">&lt;p&gt;Hbbadiya: /* Previous work */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sections to be created:&lt;br /&gt;
==Introduction==&lt;br /&gt;
===Team Members===&lt;br /&gt;
Mandhani Kushal  [mkushal@ncsu.edu]&lt;br /&gt;
&lt;br /&gt;
Srinivas Nethra Padala  [spadala@ncsu.edu]&lt;br /&gt;
&lt;br /&gt;
Anusha Godavarthi  [agodava@ncsu.edu]&lt;br /&gt;
&lt;br /&gt;
Harshit Badiyani  [hbbadiya@ncsu.edu]&lt;br /&gt;
&lt;br /&gt;
===Mentor===&lt;br /&gt;
Zhewei Hu (zhu6@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
===Expertiza===&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is an open source project based on [http://rubyonrails.org/ Ruby on Rails] framework. Expertiza allows the instructor to create new assignments and customize new or existing assignments. It also allows the instructor to create a list of topics the students can sign up for. Students can form teams in Expertiza to work on various projects and assignments. Students can also peer review other students' submissions. Expertiza supports submission across various document types, including the URLs and wiki pages.&lt;br /&gt;
&lt;br /&gt;
===Internationalization===&lt;br /&gt;
Internationalization is the process of designing a software application so that it can be adapted to various languages and regions without engineering changes. Localization is the process of adapting internationalized software for a specific region or language by translating text and adding locale-specific components. Both in re-engineering an existing software or designing a new internationalized software, the first step of internationalization is to split each potentially locale-dependent part (whether code, text or data) into a separate module. Each module can then either rely on a standard library/dependency or be independently replaced as needed for each locale.&lt;br /&gt;
&lt;br /&gt;
Currently Expertiza only supports the English language. Many students are from other countries. So, we aimed to allow them to view their pages in another language. This is done by internationalizing static strings in Expertiza for Student Assignment related pages to another language (ex: Hindi or Chinese). Students had the ability to change the language through a dropdown located in navigation bar at the top of the page. We did not affect any strings that are dynamically shown. We focused on adding the Hindi language as a lot of students are Indian.&lt;br /&gt;
===Link to pull request and git repo===&lt;br /&gt;
Pull Request: Coming Soon!&lt;br /&gt;
&lt;br /&gt;
Git Repository: https://github.com/Mandhani/expertiza&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
As of now , expertiza only supports English and many students are from other countries and speak different languages. They might not be able to understand english. The purpose of our project - expertiza internationalization is to allow students to understand the web application in their own language by modifying the existing code base and emphasizing on the student views. Our end goal would be to enable students to change the language through a dropdown located in the navigation bar at the top of the web page without any page breaks. The language that we would work with is Hindi. Our problem statement can be viewed [https://docs.google.com/document/d/1_CBSj7QMhWcT0K223qG9DhBjDeFxFhPofzill8qJG8I/edit?usp=sharing here]&lt;br /&gt;
&lt;br /&gt;
==Project design==&lt;br /&gt;
===Previous work===&lt;br /&gt;
A team has worked on Internationalization problem and they have added the following functionalities: &lt;br /&gt;
&lt;br /&gt;
Allowing Student to change language for Assignment Pages&lt;br /&gt;
* They added a dropdown in the navigation bar for a student to use&lt;br /&gt;
* They are able to choose from English or Hindi&lt;br /&gt;
* Students could also manually change the language in the URL themselves by. The language is put before the page name. Example: www.example.com/en/book -&amp;gt; www.example.com/hi_IN/book&lt;br /&gt;
&lt;br /&gt;
Adding Multi-Language Support&lt;br /&gt;
&lt;br /&gt;
* They used Google Translate to convert the strings to Hindi.&lt;br /&gt;
* There are two &amp;lt;code&amp;gt;yml&amp;lt;/code&amp;gt; files in the &amp;lt;code&amp;gt;config/locales&amp;lt;/code&amp;gt; directory representing the different languages that were used in Expertiza.&lt;br /&gt;
** One for English, which will be the default language used, and another for Hindi. &lt;br /&gt;
*** &amp;lt;code&amp;gt;en.yml&amp;lt;/code&amp;gt;&lt;br /&gt;
*** &amp;lt;code&amp;gt;hi_IN.yml&amp;lt;/code&amp;gt;&lt;br /&gt;
** These &amp;lt;code&amp;gt;yaml&amp;lt;/code&amp;gt; files contained the translated strings for their respective language.&lt;br /&gt;
* We editied the &amp;lt;code&amp;gt;routes.rb, application.rb, application_controller.rb&amp;lt;/code&amp;gt; files and all the view files related to Student Assignments (which you can see at the top of the wiki) so that it can read from the &amp;lt;code&amp;gt;yml&amp;lt;/code&amp;gt; files to show other languages.&lt;br /&gt;
&lt;br /&gt;
* Student Views were translated as shown below:&lt;br /&gt;
** Regular Static Strings&lt;br /&gt;
* key_name comes from the key in the .yml files. The locale variable (en or hi_IN) would determine which one it pulls from.&lt;br /&gt;
** This is how you would change the strings for an html page.&lt;br /&gt;
** Static strings for buttons, dropdowns, etc.&lt;br /&gt;
** Example: &amp;lt;%= submit_tag 'Save' %&amp;gt; . You would replace 'Save' with t('.key_name').&lt;br /&gt;
** It would now look like this &amp;lt;%= submit_tag t('.key_name') %&amp;gt;&lt;br /&gt;
Other Info&lt;br /&gt;
* Because the .yml know what view folders to look in when choosing the keys, when you type . for the key_namefor the translation code (shown above), it will show the list of keys available for the html page you are in, at least in RubyMine.&lt;br /&gt;
** Reference keys in other html files (Look at below code for example)&lt;br /&gt;
You can reference keys under from another html file within the same sub view folder.&lt;br /&gt;
* For example, you can reference the key select_assignment from the view/student_task/view.html.erb in view/student_task/list.html.erb by doing &amp;lt;%=t &amp;quot;.view.select_assignment&amp;quot; %&amp;gt; for a static string in view/student_task/list.html.erb&lt;br /&gt;
* You can reference keys from another html file in a different sub view folder&lt;br /&gt;
* For example, you can reference the key sign_up from view/publishing/view.html.erb in view/student_task/list.html.erb from by doing &amp;lt;%=t &amp;quot;.publishing.view.sign_up&amp;quot; %&amp;gt; for a static string in view/student_task/list.html.erb&lt;br /&gt;
By referencing keys not in the html file you are working on, you can reduce duplicate key names.&lt;br /&gt;
&lt;br /&gt;
=== Use Cases ===&lt;br /&gt;
Our mentor has instructed us to refine and fix the issues pertaining only to the student views. &lt;br /&gt;
The use case diagrams below show the approach of changing the language in the assignment landing page as well as changing the language of the view when you select a particular assignment. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Inter.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Issues to be fixed===&lt;br /&gt;
&lt;br /&gt;
The previous project on expertiza internationalization was successful in translating the static strings to Hindi but it had a few issues that we have identified due to which it could not be merged into expertiza :&lt;br /&gt;
&lt;br /&gt;
* Bugs in view/student_review files that prevents the parameter id  to persist in the web page link after making the language change from english to hindi. &lt;br /&gt;
 &lt;br /&gt;
* Page not found errors when trying links other than the main Assignment page after the language conversion occurs.&lt;br /&gt;
&lt;br /&gt;
* The select language option is not consistent i.e if the selected language is Hindi, and you navigate back, the web application changes to the default language setting that is English. The session is not consistent, the default locale language persists.&lt;br /&gt;
&lt;br /&gt;
* Static text translation not entirely done &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Mock Screens====&lt;br /&gt;
Original Assignments page:&lt;br /&gt;
[[File:English.JPG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Translated Assignments page:&lt;br /&gt;
[[File:Hindi.JPG]]&lt;br /&gt;
&lt;br /&gt;
For the scope of this project, we are focusing only on the student views and propose changes in the following files to address the issues mentioned above :&lt;br /&gt;
&lt;br /&gt;
* app/views/&lt;br /&gt;
** views/student_review&lt;br /&gt;
***_responses.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** _set_dynamic_review.html.erb&lt;br /&gt;
**views/participants&lt;br /&gt;
***change_handle.html.erb&lt;br /&gt;
** sign_up_sheet/&lt;br /&gt;
*** _suggested_topic.html.erb&lt;br /&gt;
*** _table_header.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
** student_task/&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
*** _publishing_rights.html.erb&lt;br /&gt;
** student_teams/&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
** submitted_content/&lt;br /&gt;
*** _hyperlink.html.erb&lt;br /&gt;
*** _main.html.erb&lt;br /&gt;
*** _self_review.html.erb&lt;br /&gt;
*** _submitted_files.html.erb&lt;br /&gt;
*** _title.html.erb&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
** grades/&lt;br /&gt;
*** view_my_scores.html.erb&lt;br /&gt;
*** view_team.html.erb&lt;br /&gt;
&lt;br /&gt;
From our observation, errors are prevalent when referencing keys from other files.&lt;br /&gt;
&lt;br /&gt;
==Implementation==&lt;br /&gt;
What files have been/are to be changed will be updated in this section once we fix the issues mentioned above.&lt;br /&gt;
&lt;br /&gt;
==Test Plan==&lt;br /&gt;
&lt;br /&gt;
Our test plan would include two parts  - Feature testing and Manual testing &lt;br /&gt;
&lt;br /&gt;
===Feature Testing===&lt;br /&gt;
&lt;br /&gt;
Feature testing in our project aims is used to add new functionality , modify existing functionality and test these new features to the files in expertiza/spec/features folder that can be accessed [https://github.com/expertiza/expertiza/tree/master/spec/features  here]. We plan to recreate methods in the test files to reflect the language change to hindi in the student views. The following list of files have been identified for our testing purposes in the student view functionality :&lt;br /&gt;
* assignment_submission_spec.rb&lt;br /&gt;
* assignment_creation_spec.rb&lt;br /&gt;
* topic_suggestion_spec.rb&lt;br /&gt;
* assignment_creation_spec.rb&lt;br /&gt;
* team_creation_spec.rb&lt;br /&gt;
* course_creation_spec.rb&lt;br /&gt;
&lt;br /&gt;
===Manual Testing===&lt;br /&gt;
Through manual testing, we aim to identify if all the features of the application are working as intended when the language conversion occurs.&lt;br /&gt;
=====Scenario 1=====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to language dropdown in the navigation bar and choose Hindi. &lt;br /&gt;
&lt;br /&gt;
3. Check if language is changed in the URL from en to hi_IN&lt;br /&gt;
&lt;br /&gt;
4. Check to see if the English strings on the page are translated to Hindi&lt;br /&gt;
&lt;br /&gt;
5. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
=====Scenario 2=====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to language dropdown in the navigation bar and choose Hindi. &lt;br /&gt;
&lt;br /&gt;
3. Check if language is changed in the URL from en to hi_IN&lt;br /&gt;
&lt;br /&gt;
4. Check to see if the English strings on the page are translated to Hindi&lt;br /&gt;
&lt;br /&gt;
5. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
6. Go back to the main Assignment page and choose English from the dropdown. &lt;br /&gt;
&lt;br /&gt;
7. See if the language was changed in the URL to en. &lt;br /&gt;
&lt;br /&gt;
8. See if the strings are translated back to English for all Assignment related pages. &lt;br /&gt;
&lt;br /&gt;
====Scenario 3====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to URL and change the language from en to hi_IN. &lt;br /&gt;
&lt;br /&gt;
3. Check to see if the English strings on the page are translated to Hindi.&lt;br /&gt;
&lt;br /&gt;
4. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
====Scenario 4====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to URL and change the language from en to hi_IN. &lt;br /&gt;
&lt;br /&gt;
3. Check to see if the English strings on the page are translated to Hindi.&lt;br /&gt;
&lt;br /&gt;
4. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
5. Now change the language back from hi_IN to en in the URL. &lt;br /&gt;
&lt;br /&gt;
6. See if the Hindi strings are translated back to English for all Assignment related pages.&lt;br /&gt;
&lt;br /&gt;
==Links/References==&lt;br /&gt;
1. Internationalization and Localization Wikipedia: https://en.wikipedia.org/wiki/Internationalization_and_localization&lt;br /&gt;
&lt;br /&gt;
===Support Material===&lt;br /&gt;
1. https://guides.rubyonrails.org/i18n.html#how-i18n-in-ruby-on-rails-works[https://guides.rubyonrails.org/i18n.html#how-i18n-in-ruby-on-rails-works]&lt;br /&gt;
&lt;br /&gt;
2. https://guides.rubyonrails.org/i18n.html#setting-the-locale-from-url-params[https://guides.rubyonrails.org/i18n.html#setting-the-locale-from-url-params]&lt;br /&gt;
&lt;br /&gt;
3. https://guides.rubyonrails.org/i18n.html#abstracting-localized-code[https://guides.rubyonrails.org/i18n.html#abstracting-localized-code]&lt;br /&gt;
&lt;br /&gt;
4. https://guides.rubyonrails.org/i18n.html#providing-translations-for-internationalized-strings[https://guides.rubyonrails.org/i18n.html#providing-translations-for-internationalized-strings] &lt;br /&gt;
&lt;br /&gt;
5. https://guides.rubyonrails.org/i18n.html#passing-variables-to-translations [https://guides.rubyonrails.org/i18n.html#passing-variables-to-translations]&lt;br /&gt;
&lt;br /&gt;
6. https://www.youtube.com/watch?v=HLb0hEgrXTc [https://www.youtube.com/watch?v=HLb0hEgrXTc]&lt;br /&gt;
&lt;br /&gt;
8. https://phraseapp.com/blog/posts/rails-i18n-guide&lt;br /&gt;
[https://phraseapp.com/blog/posts/rails-i18n-guide]&lt;/div&gt;</summary>
		<author><name>Hbbadiya</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123943</id>
		<title>E1932 Expertiza Internationalization - Spring 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123943"/>
		<updated>2019-04-13T00:21:36Z</updated>

		<summary type="html">&lt;p&gt;Hbbadiya: /* Previous work */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sections to be created:&lt;br /&gt;
==Introduction==&lt;br /&gt;
===Team Members===&lt;br /&gt;
Mandhani Kushal  [mkushal@ncsu.edu]&lt;br /&gt;
&lt;br /&gt;
Srinivas Nethra Padala  [spadala@ncsu.edu]&lt;br /&gt;
&lt;br /&gt;
Anusha Godavarthi  [agodava@ncsu.edu]&lt;br /&gt;
&lt;br /&gt;
Harshit Badiyani  [hbbadiya@ncsu.edu]&lt;br /&gt;
&lt;br /&gt;
===Mentor===&lt;br /&gt;
Zhewei Hu (zhu6@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
===Expertiza===&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is an open source project based on [http://rubyonrails.org/ Ruby on Rails] framework. Expertiza allows the instructor to create new assignments and customize new or existing assignments. It also allows the instructor to create a list of topics the students can sign up for. Students can form teams in Expertiza to work on various projects and assignments. Students can also peer review other students' submissions. Expertiza supports submission across various document types, including the URLs and wiki pages.&lt;br /&gt;
&lt;br /&gt;
===Internationalization===&lt;br /&gt;
Internationalization is the process of designing a software application so that it can be adapted to various languages and regions without engineering changes. Localization is the process of adapting internationalized software for a specific region or language by translating text and adding locale-specific components. Both in re-engineering an existing software or designing a new internationalized software, the first step of internationalization is to split each potentially locale-dependent part (whether code, text or data) into a separate module. Each module can then either rely on a standard library/dependency or be independently replaced as needed for each locale.&lt;br /&gt;
&lt;br /&gt;
Currently Expertiza only supports the English language. Many students are from other countries. So, we aimed to allow them to view their pages in another language. This is done by internationalizing static strings in Expertiza for Student Assignment related pages to another language (ex: Hindi or Chinese). Students had the ability to change the language through a dropdown located in navigation bar at the top of the page. We did not affect any strings that are dynamically shown. We focused on adding the Hindi language as a lot of students are Indian.&lt;br /&gt;
===Link to pull request and git repo===&lt;br /&gt;
Pull Request: Coming Soon!&lt;br /&gt;
&lt;br /&gt;
Git Repository: https://github.com/Mandhani/expertiza&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
As of now , expertiza only supports English and many students are from other countries and speak different languages. They might not be able to understand english. The purpose of our project - expertiza internationalization is to allow students to understand the web application in their own language by modifying the existing code base and emphasizing on the student views. Our end goal would be to enable students to change the language through a dropdown located in the navigation bar at the top of the web page without any page breaks. The language that we would work with is Hindi.&lt;br /&gt;
&lt;br /&gt;
==Project design==&lt;br /&gt;
===Previous work===&lt;br /&gt;
A team has worked on Internationalization problem and they have added the following functionalities: &lt;br /&gt;
*&lt;br /&gt;
HIII&lt;br /&gt;
&lt;br /&gt;
== Use Cases ==&lt;br /&gt;
The use case diagrams below show the approach of changing the language in the assignment landing page as well as changing the language of the view when you select a particular assignment. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Inter.png]]&lt;br /&gt;
&lt;br /&gt;
==Changes proposed==&lt;br /&gt;
&lt;br /&gt;
The previous project on expertiza internationalization was successful in translating the static strings to Hindi but it had a few issues that we have identified due to which it could not be merged into expertiza :&lt;br /&gt;
&lt;br /&gt;
* Bugs in view/student_review files that prevents the parameter id  to persist in the web page link after making the language change from english to hindi. &lt;br /&gt;
 &lt;br /&gt;
* Page not found errors when trying links other than the main Assignment page after the language conversion occurs.&lt;br /&gt;
&lt;br /&gt;
* The select language option is not consistent i.e if the selected language is Hindi, and you navigate back, the web application changes to the default language setting that is English. The session is not consistent, the default locale language persists.&lt;br /&gt;
&lt;br /&gt;
* Static text translation not entirely done &lt;br /&gt;
&lt;br /&gt;
===Mock Screens===&lt;br /&gt;
Original Assignments page:&lt;br /&gt;
[[File:English.JPG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Translated Assignments page:&lt;br /&gt;
[[File:Hindi.JPG]]&lt;br /&gt;
&lt;br /&gt;
For the scope of this project, we are focusing only on the student views and propose changes in the following files to address the issues mentioned above :&lt;br /&gt;
&lt;br /&gt;
* app/views/&lt;br /&gt;
** views/student_review&lt;br /&gt;
***_responses.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** _set_dynamic_review.html.erb&lt;br /&gt;
**views/participants&lt;br /&gt;
***change_handle.html.erb&lt;br /&gt;
** sign_up_sheet/&lt;br /&gt;
*** _suggested_topic.html.erb&lt;br /&gt;
*** _table_header.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
** student_task/&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
*** _publishing_rights.html.erb&lt;br /&gt;
** student_teams/&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
** submitted_content/&lt;br /&gt;
*** _hyperlink.html.erb&lt;br /&gt;
*** _main.html.erb&lt;br /&gt;
*** _self_review.html.erb&lt;br /&gt;
*** _submitted_files.html.erb&lt;br /&gt;
*** _title.html.erb&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
** grades/&lt;br /&gt;
*** view_my_scores.html.erb&lt;br /&gt;
*** view_team.html.erb&lt;br /&gt;
&lt;br /&gt;
From our observation, errors are prevalent when referencing keys from other files.&lt;br /&gt;
&lt;br /&gt;
==Implementation==&lt;br /&gt;
What files have been/are to be changed will be updated in this section once we fix the issues mentioned above.&lt;br /&gt;
&lt;br /&gt;
==Test Plan==&lt;br /&gt;
&lt;br /&gt;
Our test plan would include two parts  - Feature testing and Manual testing &lt;br /&gt;
&lt;br /&gt;
===Feature Testing===&lt;br /&gt;
&lt;br /&gt;
Feature testing in our project aims is used to add new functionality , modify existing functionality and test these new features to the files in expertiza/spec/features folder that can be accessed [https://github.com/expertiza/expertiza/tree/master/spec/features  here]. We plan to recreate methods in the test files to reflect the language change to hindi in the student views. The following list of files have been identified for our testing purposes in the student view functionality :&lt;br /&gt;
* assignment_submission_spec.rb&lt;br /&gt;
* assignment_creation_spec.rb&lt;br /&gt;
* topic_suggestion_spec.rb&lt;br /&gt;
* assignment_creation_spec.rb&lt;br /&gt;
* team_creation_spec.rb&lt;br /&gt;
* course_creation_spec.rb&lt;br /&gt;
&lt;br /&gt;
===Manual Testing===&lt;br /&gt;
Through manual testing, we aim to identify if all the features of the application are working as intended when the language conversion occurs.&lt;br /&gt;
=====Scenario 1=====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to language dropdown in the navigation bar and choose Hindi. &lt;br /&gt;
&lt;br /&gt;
3. Check if language is changed in the URL from en to hi_IN&lt;br /&gt;
&lt;br /&gt;
4. Check to see if the English strings on the page are translated to Hindi&lt;br /&gt;
&lt;br /&gt;
5. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
=====Scenario 2=====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to language dropdown in the navigation bar and choose Hindi. &lt;br /&gt;
&lt;br /&gt;
3. Check if language is changed in the URL from en to hi_IN&lt;br /&gt;
&lt;br /&gt;
4. Check to see if the English strings on the page are translated to Hindi&lt;br /&gt;
&lt;br /&gt;
5. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
6. Go back to the main Assignment page and choose English from the dropdown. &lt;br /&gt;
&lt;br /&gt;
7. See if the language was changed in the URL to en. &lt;br /&gt;
&lt;br /&gt;
8. See if the strings are translated back to English for all Assignment related pages. &lt;br /&gt;
&lt;br /&gt;
====Scenario 3====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to URL and change the language from en to hi_IN. &lt;br /&gt;
&lt;br /&gt;
3. Check to see if the English strings on the page are translated to Hindi.&lt;br /&gt;
&lt;br /&gt;
4. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
====Scenario 4====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to URL and change the language from en to hi_IN. &lt;br /&gt;
&lt;br /&gt;
3. Check to see if the English strings on the page are translated to Hindi.&lt;br /&gt;
&lt;br /&gt;
4. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
5. Now change the language back from hi_IN to en in the URL. &lt;br /&gt;
&lt;br /&gt;
6. See if the Hindi strings are translated back to English for all Assignment related pages.&lt;br /&gt;
&lt;br /&gt;
==Links/References==&lt;br /&gt;
1. Internationalization and Localization Wikipedia: https://en.wikipedia.org/wiki/Internationalization_and_localization&lt;br /&gt;
&lt;br /&gt;
===Support Material===&lt;br /&gt;
1. https://guides.rubyonrails.org/i18n.html#how-i18n-in-ruby-on-rails-works[https://guides.rubyonrails.org/i18n.html#how-i18n-in-ruby-on-rails-works]&lt;br /&gt;
&lt;br /&gt;
2. https://guides.rubyonrails.org/i18n.html#setting-the-locale-from-url-params[https://guides.rubyonrails.org/i18n.html#setting-the-locale-from-url-params]&lt;br /&gt;
&lt;br /&gt;
3. https://guides.rubyonrails.org/i18n.html#abstracting-localized-code[https://guides.rubyonrails.org/i18n.html#abstracting-localized-code]&lt;br /&gt;
&lt;br /&gt;
4. https://guides.rubyonrails.org/i18n.html#providing-translations-for-internationalized-strings[https://guides.rubyonrails.org/i18n.html#providing-translations-for-internationalized-strings] &lt;br /&gt;
&lt;br /&gt;
5. https://guides.rubyonrails.org/i18n.html#passing-variables-to-translations [https://guides.rubyonrails.org/i18n.html#passing-variables-to-translations]&lt;br /&gt;
&lt;br /&gt;
6. https://www.youtube.com/watch?v=HLb0hEgrXTc [https://www.youtube.com/watch?v=HLb0hEgrXTc]&lt;br /&gt;
&lt;br /&gt;
8. https://phraseapp.com/blog/posts/rails-i18n-guide&lt;br /&gt;
[https://phraseapp.com/blog/posts/rails-i18n-guide]&lt;/div&gt;</summary>
		<author><name>Hbbadiya</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123938</id>
		<title>E1932 Expertiza Internationalization - Spring 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123938"/>
		<updated>2019-04-13T00:13:44Z</updated>

		<summary type="html">&lt;p&gt;Hbbadiya: /* Feature Testing */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sections to be created:&lt;br /&gt;
==Introduction==&lt;br /&gt;
===Team Members===&lt;br /&gt;
Mandhani Kushal  [mkushal@ncsu.edu]&lt;br /&gt;
&lt;br /&gt;
Srinivas Nethra Padala  [spadala@ncsu.edu]&lt;br /&gt;
&lt;br /&gt;
Anusha Godavarthi  [agodava@ncsu.edu]&lt;br /&gt;
&lt;br /&gt;
Harshit Badiyani  [hbbadiya@ncsu.edu]&lt;br /&gt;
&lt;br /&gt;
===Mentor===&lt;br /&gt;
Zhewei Hu (zhu6@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
===Expertiza===&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is an open source project based on [http://rubyonrails.org/ Ruby on Rails] framework. Expertiza allows the instructor to create new assignments and customize new or existing assignments. It also allows the instructor to create a list of topics the students can sign up for. Students can form teams in Expertiza to work on various projects and assignments. Students can also peer review other students' submissions. Expertiza supports submission across various document types, including the URLs and wiki pages.&lt;br /&gt;
&lt;br /&gt;
===Internationalization===&lt;br /&gt;
Internationalization is the process of designing a software application so that it can be adapted to various languages and regions without engineering changes. Localization is the process of adapting internationalized software for a specific region or language by translating text and adding locale-specific components. Both in re-engineering an existing software or designing a new internationalized software, the first step of internationalization is to split each potentially locale-dependent part (whether code, text or data) into a separate module. Each module can then either rely on a standard library/dependency or be independently replaced as needed for each locale.&lt;br /&gt;
&lt;br /&gt;
Currently Expertiza only supports the English language. Many students are from other countries. So, we aimed to allow them to view their pages in another language. This is done by internationalizing static strings in Expertiza for Student Assignment related pages to another language (ex: Hindi or Chinese). Students had the ability to change the language through a dropdown located in navigation bar at the top of the page. We did not affect any strings that are dynamically shown. We focused on adding the Hindi language as a lot of students are Indian.&lt;br /&gt;
===Link to pull request and git repo===&lt;br /&gt;
Pull Request: Coming Soon!&lt;br /&gt;
&lt;br /&gt;
Git Repository: https://github.com/Mandhani/expertiza&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
As of now , expertiza only supports English and many students are from other countries and speak different languages. They might not be able to understand english. The purpose of our project - expertiza internationalization is to allow students to understand the web application in their own language by modifying the existing code base and emphasizing on the student views. Our end goal would be to enable students to change the language through a dropdown located in the navigation bar at the top of the web page without any page breaks. The language that we would work with is Hindi.&lt;br /&gt;
&lt;br /&gt;
== Use Cases ==&lt;br /&gt;
The use case diagrams below show the approach of changing the language in the assignment landing page as well as changing the language of the view when you select a particular assignment. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Inter.png]]&lt;br /&gt;
&lt;br /&gt;
==Changes proposed==&lt;br /&gt;
&lt;br /&gt;
The previous project on expertiza internationalization was successful in translating the static strings to Hindi but it had a few issues that we have identified due to which it could not be merged into expertiza :&lt;br /&gt;
&lt;br /&gt;
* Bugs in view/student_review files that prevents the parameter id  to persist in the web page link after making the language change from english to hindi. &lt;br /&gt;
 &lt;br /&gt;
* Page not found errors when trying links other than the main Assignment page after the language conversion occurs.&lt;br /&gt;
&lt;br /&gt;
* The select language option is not consistent i.e if the selected language is Hindi, and you navigate back, the web application changes to the default language setting that is English. The session is not consistent, the default locale language persists.&lt;br /&gt;
&lt;br /&gt;
* Static text translation not entirely done &lt;br /&gt;
&lt;br /&gt;
===Mock Screens===&lt;br /&gt;
Original Assignments page:&lt;br /&gt;
[[File:English.JPG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Translated Assignments page:&lt;br /&gt;
[[File:Hindi.JPG]]&lt;br /&gt;
&lt;br /&gt;
For the scope of this project, we are focusing only on the student views and propose changes in the following files to address the issues mentioned above :&lt;br /&gt;
&lt;br /&gt;
* app/views/&lt;br /&gt;
** views/student_review&lt;br /&gt;
***_responses.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** _set_dynamic_review.html.erb&lt;br /&gt;
**views/participants&lt;br /&gt;
***change_handle.html.erb&lt;br /&gt;
** sign_up_sheet/&lt;br /&gt;
*** _suggested_topic.html.erb&lt;br /&gt;
*** _table_header.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
** student_task/&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
*** _publishing_rights.html.erb&lt;br /&gt;
** student_teams/&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
** submitted_content/&lt;br /&gt;
*** _hyperlink.html.erb&lt;br /&gt;
*** _main.html.erb&lt;br /&gt;
*** _self_review.html.erb&lt;br /&gt;
*** _submitted_files.html.erb&lt;br /&gt;
*** _title.html.erb&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
** grades/&lt;br /&gt;
*** view_my_scores.html.erb&lt;br /&gt;
*** view_team.html.erb&lt;br /&gt;
&lt;br /&gt;
From our observation, errors are prevalent when referencing keys from other files.&lt;br /&gt;
&lt;br /&gt;
==Implementation==&lt;br /&gt;
What files have been/are to be changed will be updated in this section once we fix the issues mentioned above.&lt;br /&gt;
&lt;br /&gt;
==Test Plan==&lt;br /&gt;
&lt;br /&gt;
Our test plan would include two parts  - Feature testing and Manual testing &lt;br /&gt;
&lt;br /&gt;
===Feature Testing===&lt;br /&gt;
&lt;br /&gt;
Feature testing in our project aims is used to add new functionality , modify existing functionality and test these new features to the files in expertiza/spec/features folder that can be accessed [https://github.com/expertiza/expertiza/tree/master/spec/features  here]. We plan to recreate methods in the test files to reflect the language change to hindi in the student views. The following list of files have been identified for our testing purposes in the student view functionality :&lt;br /&gt;
* assignment_submission_spec.rb&lt;br /&gt;
* assignment_creation_spec.rb&lt;br /&gt;
* topic_suggestion_spec.rb&lt;br /&gt;
* assignment_creation_spec.rb&lt;br /&gt;
* team_creation_spec.rb&lt;br /&gt;
* course_creation_spec.rb&lt;br /&gt;
&lt;br /&gt;
===Manual Testing===&lt;br /&gt;
Through manual testing, we aim to identify if all the features of the application are working as intended when the language conversion occurs.&lt;br /&gt;
=====Scenario 1=====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to language dropdown in the navigation bar and choose Hindi. &lt;br /&gt;
&lt;br /&gt;
3. Check if language is changed in the URL from en to hi_IN&lt;br /&gt;
&lt;br /&gt;
4. Check to see if the English strings on the page are translated to Hindi&lt;br /&gt;
&lt;br /&gt;
5. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
=====Scenario 2=====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to language dropdown in the navigation bar and choose Hindi. &lt;br /&gt;
&lt;br /&gt;
3. Check if language is changed in the URL from en to hi_IN&lt;br /&gt;
&lt;br /&gt;
4. Check to see if the English strings on the page are translated to Hindi&lt;br /&gt;
&lt;br /&gt;
5. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
6. Go back to the main Assignment page and choose English from the dropdown. &lt;br /&gt;
&lt;br /&gt;
7. See if the language was changed in the URL to en. &lt;br /&gt;
&lt;br /&gt;
8. See if the strings are translated back to English for all Assignment related pages. &lt;br /&gt;
&lt;br /&gt;
====Scenario 3====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to URL and change the language from en to hi_IN. &lt;br /&gt;
&lt;br /&gt;
3. Check to see if the English strings on the page are translated to Hindi.&lt;br /&gt;
&lt;br /&gt;
4. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
====Scenario 4====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to URL and change the language from en to hi_IN. &lt;br /&gt;
&lt;br /&gt;
3. Check to see if the English strings on the page are translated to Hindi.&lt;br /&gt;
&lt;br /&gt;
4. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
5. Now change the language back from hi_IN to en in the URL. &lt;br /&gt;
&lt;br /&gt;
6. See if the Hindi strings are translated back to English for all Assignment related pages.&lt;br /&gt;
&lt;br /&gt;
==Links/References==&lt;br /&gt;
1. Internationalization and Localization Wikipedia: https://en.wikipedia.org/wiki/Internationalization_and_localization&lt;br /&gt;
&lt;br /&gt;
===Support Material===&lt;br /&gt;
1. https://guides.rubyonrails.org/i18n.html#how-i18n-in-ruby-on-rails-works[https://guides.rubyonrails.org/i18n.html#how-i18n-in-ruby-on-rails-works]&lt;br /&gt;
&lt;br /&gt;
2. https://guides.rubyonrails.org/i18n.html#setting-the-locale-from-url-params[https://guides.rubyonrails.org/i18n.html#setting-the-locale-from-url-params]&lt;br /&gt;
&lt;br /&gt;
3. https://guides.rubyonrails.org/i18n.html#abstracting-localized-code[https://guides.rubyonrails.org/i18n.html#abstracting-localized-code]&lt;br /&gt;
&lt;br /&gt;
4. https://guides.rubyonrails.org/i18n.html#providing-translations-for-internationalized-strings[https://guides.rubyonrails.org/i18n.html#providing-translations-for-internationalized-strings] &lt;br /&gt;
&lt;br /&gt;
5. https://guides.rubyonrails.org/i18n.html#passing-variables-to-translations [https://guides.rubyonrails.org/i18n.html#passing-variables-to-translations]&lt;br /&gt;
&lt;br /&gt;
6. https://www.youtube.com/watch?v=HLb0hEgrXTc [https://www.youtube.com/watch?v=HLb0hEgrXTc]&lt;br /&gt;
&lt;br /&gt;
8. https://phraseapp.com/blog/posts/rails-i18n-guide&lt;br /&gt;
[https://phraseapp.com/blog/posts/rails-i18n-guide]&lt;/div&gt;</summary>
		<author><name>Hbbadiya</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123895</id>
		<title>E1932 Expertiza Internationalization - Spring 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123895"/>
		<updated>2019-04-12T22:24:46Z</updated>

		<summary type="html">&lt;p&gt;Hbbadiya: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sections to be created:&lt;br /&gt;
==Introduction==&lt;br /&gt;
===Team Members===&lt;br /&gt;
Mandhani Kushal  [mkushal@ncsu.edu]&lt;br /&gt;
&lt;br /&gt;
Srinivas Nethra Padala  [spadala@ncsu.edu]&lt;br /&gt;
&lt;br /&gt;
Anusha Godavarthi  [agodava@ncsu.edu]&lt;br /&gt;
&lt;br /&gt;
Harshit Badiyani  [hbbadiya@ncsu.edu]&lt;br /&gt;
&lt;br /&gt;
===Mentor===&lt;br /&gt;
Zhewei Hu (zhu6@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
===Expertiza===&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is an open source project based on [http://rubyonrails.org/ Ruby on Rails] framework. Expertiza allows the instructor to create new assignments and customize new or existing assignments. It also allows the instructor to create a list of topics the students can sign up for. Students can form teams in Expertiza to work on various projects and assignments. Students can also peer review other students' submissions. Expertiza supports submission across various document types, including the URLs and wiki pages.&lt;br /&gt;
&lt;br /&gt;
===Internationalization===&lt;br /&gt;
Internationalization is the process of designing a software application so that it can be adapted to various languages and regions without engineering changes. Localization is the process of adapting internationalized software for a specific region or language by translating text and adding locale-specific components. Both in re-engineering an existing software or designing a new internationalized software, the first step of internationalization is to split each potentially locale-dependent part (whether code, text or data) into a separate module. Each module can then either rely on a standard library/dependency or be independently replaced as needed for each locale.&lt;br /&gt;
&lt;br /&gt;
Currently Expertiza only supports the English language. Many students are from other countries. So, we aimed to allow them to view their pages in another language. This is done by internationalizing static strings in Expertiza for Student Assignment related pages to another language (ex: Hindi or Chinese). Students had the ability to change the language through a dropdown located in navigation bar at the top of the page. We did not affect any strings that are dynamically shown. We focused on adding the Hindi language as a lot of students are Indian.&lt;br /&gt;
===Link to pull request and git repo===&lt;br /&gt;
Pull Request: Coming Soon!&lt;br /&gt;
&lt;br /&gt;
Git Repository: https://github.com/Mandhani/expertiza&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Expertiza is an open source web application that was built on Ruby on Rails stack. It provides a platform to students with various features that includes peer - reviewing projects, submitting work, form teams, viewing grades, etc. The project is maintained by students and faculty at NCSU.&lt;br /&gt;
&lt;br /&gt;
Right now, expertiza only supports English and many students are from other countries and speak different languages. They might not be able to understand english. The purpose of our project - expertiza internationalization is to allow students to understand the web application in their own language by modifying the existing code base and emphasizing on the student views. Our end goal would be to enable students to change the language through a dropdown located in the navigation bar at the top of the web page without any page breaks. The language that we would work with is Hindi.&lt;br /&gt;
&lt;br /&gt;
==Changes proposed==&lt;br /&gt;
&lt;br /&gt;
The previous project on expertiza internationalization was successful in translating the static strings to Hindi but it had a few issues that we have identified due to which it could not be merged into expertiza :&lt;br /&gt;
&lt;br /&gt;
* Bugs in view/student_review files that prevents the parameter id  to persist in the web page link after making the language change from english to hindi. &lt;br /&gt;
 &lt;br /&gt;
* Page not found errors when trying links other than the main Assignment page after the language conversion occurs.&lt;br /&gt;
&lt;br /&gt;
* The select language option is not consistent i.e if the selected language is Hindi, and you navigate back, the web application changes to the default language setting that is English. The session is not consistent, the default locale language persists.&lt;br /&gt;
&lt;br /&gt;
* Static text translation not entirely done &lt;br /&gt;
&lt;br /&gt;
===Mock Screens===&lt;br /&gt;
Original Assignments page:&lt;br /&gt;
[[File:English.JPG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Translated Assignments page:&lt;br /&gt;
[[File:Hindi.JPG]]&lt;br /&gt;
&lt;br /&gt;
For the scope of this project, we are focusing only on the student views and propose changes in the following files to address the issues mentioned above :&lt;br /&gt;
&lt;br /&gt;
* app/views/&lt;br /&gt;
** views/student_review&lt;br /&gt;
***_responses.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** _set_dynamic_review.html.erb&lt;br /&gt;
**views/participants&lt;br /&gt;
***change_handle.html.erb&lt;br /&gt;
** sign_up_sheet/&lt;br /&gt;
*** _suggested_topic.html.erb&lt;br /&gt;
*** _table_header.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
** student_task/&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
*** _publishing_rights.html.erb&lt;br /&gt;
** student_teams/&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
** submitted_content/&lt;br /&gt;
*** _hyperlink.html.erb&lt;br /&gt;
*** _main.html.erb&lt;br /&gt;
*** _self_review.html.erb&lt;br /&gt;
*** _submitted_files.html.erb&lt;br /&gt;
*** _title.html.erb&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
** grades/&lt;br /&gt;
*** view_my_scores.html.erb&lt;br /&gt;
*** view_team.html.erb&lt;br /&gt;
&lt;br /&gt;
From our observation, errors are prevalent when referencing keys from other files.&lt;br /&gt;
&lt;br /&gt;
==Implementation==&lt;br /&gt;
What files have been/are to be changed will be updated in this section once we fix the issues mentioned above.&lt;br /&gt;
&lt;br /&gt;
==Test Plan==&lt;br /&gt;
&lt;br /&gt;
===Student Credentials===&lt;br /&gt;
username: student1016 or student[4000-8000]&lt;br /&gt;
&lt;br /&gt;
password: password&lt;br /&gt;
&lt;br /&gt;
===Before Testing===&lt;br /&gt;
Since the issues mentioned are not fixed yet, there are some gotchas to keep in mind:&lt;br /&gt;
* When going between pages, use the Back button link located on the bottom of pages, not on the browser.&lt;br /&gt;
* When going to the main Assignment page, use the Back button link to get there to test out the scenarios below, not the link in the navigation bar.&lt;br /&gt;
&lt;br /&gt;
====Scenario 1====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to language dropdown in the navigation bar and choose Hindi. &lt;br /&gt;
&lt;br /&gt;
3. Check if language is changed in the URL from en to hi_IN&lt;br /&gt;
&lt;br /&gt;
4. Check to see if the English strings on the page are translated to Hindi&lt;br /&gt;
&lt;br /&gt;
5. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
====Scenario 2====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to language dropdown in the navigation bar and choose Hindi. &lt;br /&gt;
&lt;br /&gt;
3. Check if language is changed in the URL from en to hi_IN&lt;br /&gt;
&lt;br /&gt;
4. Check to see if the English strings on the page are translated to Hindi&lt;br /&gt;
&lt;br /&gt;
5. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
6. Go back to the main Assignment page and choose English from the dropdown. &lt;br /&gt;
&lt;br /&gt;
7. See if the language was changed in the URL to en. &lt;br /&gt;
&lt;br /&gt;
8. See if the strings are translated back to English for all Assignment related pages. &lt;br /&gt;
&lt;br /&gt;
====Scenario 3====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to URL and change the language from en to hi_IN. &lt;br /&gt;
&lt;br /&gt;
3. Check to see if the English strings on the page are translated to Hindi.&lt;br /&gt;
&lt;br /&gt;
4. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
====Scenario 4====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to URL and change the language from en to hi_IN. &lt;br /&gt;
&lt;br /&gt;
3. Check to see if the English strings on the page are translated to Hindi.&lt;br /&gt;
&lt;br /&gt;
4. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
5. Now change the language back from hi_IN to en in the URL. &lt;br /&gt;
&lt;br /&gt;
6. See if the Hindi strings are translated back to English for all Assignment related pages.&lt;br /&gt;
&lt;br /&gt;
==Links/References==&lt;br /&gt;
1. Internationalization and Localization Wikipedia: https://en.wikipedia.org/wiki/Internationalization_and_localization&lt;br /&gt;
&lt;br /&gt;
===Support Material===&lt;br /&gt;
1. https://guides.rubyonrails.org/i18n.html#how-i18n-in-ruby-on-rails-works[https://guides.rubyonrails.org/i18n.html#how-i18n-in-ruby-on-rails-works]&lt;br /&gt;
&lt;br /&gt;
2. https://guides.rubyonrails.org/i18n.html#setting-the-locale-from-url-params[https://guides.rubyonrails.org/i18n.html#setting-the-locale-from-url-params]&lt;br /&gt;
&lt;br /&gt;
3. https://guides.rubyonrails.org/i18n.html#abstracting-localized-code[https://guides.rubyonrails.org/i18n.html#abstracting-localized-code]&lt;br /&gt;
&lt;br /&gt;
4. https://guides.rubyonrails.org/i18n.html#providing-translations-for-internationalized-strings[https://guides.rubyonrails.org/i18n.html#providing-translations-for-internationalized-strings] &lt;br /&gt;
&lt;br /&gt;
5. https://guides.rubyonrails.org/i18n.html#passing-variables-to-translations [https://guides.rubyonrails.org/i18n.html#passing-variables-to-translations]&lt;br /&gt;
&lt;br /&gt;
6. https://www.youtube.com/watch?v=HLb0hEgrXTc [https://www.youtube.com/watch?v=HLb0hEgrXTc]&lt;br /&gt;
&lt;br /&gt;
8. https://phraseapp.com/blog/posts/rails-i18n-guide&lt;br /&gt;
[https://phraseapp.com/blog/posts/rails-i18n-guide]&lt;/div&gt;</summary>
		<author><name>Hbbadiya</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123893</id>
		<title>E1932 Expertiza Internationalization - Spring 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123893"/>
		<updated>2019-04-12T22:20:35Z</updated>

		<summary type="html">&lt;p&gt;Hbbadiya: /* Links/References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sections to be created:&lt;br /&gt;
==Introduction==&lt;br /&gt;
===Expertiza===&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is an open source project based on [http://rubyonrails.org/ Ruby on Rails] framework. Expertiza allows the instructor to create new assignments and customize new or existing assignments. It also allows the instructor to create a list of topics the students can sign up for. Students can form teams in Expertiza to work on various projects and assignments. Students can also peer review other students' submissions. Expertiza supports submission across various document types, including the URLs and wiki pages.&lt;br /&gt;
&lt;br /&gt;
===Internationalization===&lt;br /&gt;
Internationalization is the process of designing a software application so that it can be adapted to various languages and regions without engineering changes. Localization is the process of adapting internationalized software for a specific region or language by translating text and adding locale-specific components. Both in re-engineering an existing software or designing a new internationalized software, the first step of internationalization is to split each potentially locale-dependent part (whether code, text or data) into a separate module. Each module can then either rely on a standard library/dependency or be independently replaced as needed for each locale.&lt;br /&gt;
&lt;br /&gt;
===Link to pull request and git repo===&lt;br /&gt;
Pull Request: Coming Soon!&lt;br /&gt;
&lt;br /&gt;
Git Repository: https://github.com/Mandhani/expertiza&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Expertiza is an open source web application that was built on Ruby on Rails stack. It provides a platform to students with various features that includes peer - reviewing projects, submitting work, form teams, viewing grades, etc. The project is maintained by students and faculty at NCSU.&lt;br /&gt;
&lt;br /&gt;
Right now, expertiza only supports English and many students are from other countries and speak different languages. They might not be able to understand english. The purpose of our project - expertiza internationalization is to allow students to understand the web application in their own language by modifying the existing code base and emphasizing on the student views. Our end goal would be to enable students to change the language through a dropdown located in the navigation bar at the top of the web page without any page breaks. The language that we would work with is Hindi.&lt;br /&gt;
&lt;br /&gt;
==Changes proposed==&lt;br /&gt;
&lt;br /&gt;
The previous project on expertiza internationalization was successful in translating the static strings to Hindi but it had a few issues that we have identified due to which it could not be merged into expertiza :&lt;br /&gt;
&lt;br /&gt;
* Bugs in view/student_review files that prevents the parameter id  to persist in the web page link after making the language change from english to hindi. &lt;br /&gt;
 &lt;br /&gt;
* Page not found errors when trying links other than the main Assignment page after the language conversion occurs.&lt;br /&gt;
&lt;br /&gt;
* The select language option is not consistent i.e if the selected language is Hindi, and you navigate back, the web application changes to the default language setting that is English. The session is not consistent, the default locale language persists.&lt;br /&gt;
&lt;br /&gt;
* Static text translation not entirely done &lt;br /&gt;
&lt;br /&gt;
===Mock Screens===&lt;br /&gt;
Original Assignments page:&lt;br /&gt;
[[File:English.JPG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Translated Assignments page:&lt;br /&gt;
[[File:Hindi.JPG]]&lt;br /&gt;
&lt;br /&gt;
For the scope of this project, we are focusing only on the student views and propose changes in the following files to address the issues mentioned above :&lt;br /&gt;
&lt;br /&gt;
* app/views/&lt;br /&gt;
** views/student_review&lt;br /&gt;
***_responses.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** _set_dynamic_review.html.erb&lt;br /&gt;
**views/participants&lt;br /&gt;
***change_handle.html.erb&lt;br /&gt;
** sign_up_sheet/&lt;br /&gt;
*** _suggested_topic.html.erb&lt;br /&gt;
*** _table_header.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
** student_task/&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
*** _publishing_rights.html.erb&lt;br /&gt;
** student_teams/&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
** submitted_content/&lt;br /&gt;
*** _hyperlink.html.erb&lt;br /&gt;
*** _main.html.erb&lt;br /&gt;
*** _self_review.html.erb&lt;br /&gt;
*** _submitted_files.html.erb&lt;br /&gt;
*** _title.html.erb&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
** grades/&lt;br /&gt;
*** view_my_scores.html.erb&lt;br /&gt;
*** view_team.html.erb&lt;br /&gt;
&lt;br /&gt;
From our observation, errors are prevalent when referencing keys from other files.&lt;br /&gt;
&lt;br /&gt;
==Implementation==&lt;br /&gt;
What files have been/are to be changed will be updated in this section once we fix the issues mentioned above.&lt;br /&gt;
&lt;br /&gt;
==Test Plan==&lt;br /&gt;
&lt;br /&gt;
===Student Credentials===&lt;br /&gt;
username: student1016 or student[4000-8000]&lt;br /&gt;
&lt;br /&gt;
password: password&lt;br /&gt;
&lt;br /&gt;
===Before Testing===&lt;br /&gt;
Since the issues mentioned are not fixed yet, there are some gotchas to keep in mind:&lt;br /&gt;
* When going between pages, use the Back button link located on the bottom of pages, not on the browser.&lt;br /&gt;
* When going to the main Assignment page, use the Back button link to get there to test out the scenarios below, not the link in the navigation bar.&lt;br /&gt;
&lt;br /&gt;
====Scenario 1====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to language dropdown in the navigation bar and choose Hindi. &lt;br /&gt;
&lt;br /&gt;
3. Check if language is changed in the URL from en to hi_IN&lt;br /&gt;
&lt;br /&gt;
4. Check to see if the English strings on the page are translated to Hindi&lt;br /&gt;
&lt;br /&gt;
5. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
====Scenario 2====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to language dropdown in the navigation bar and choose Hindi. &lt;br /&gt;
&lt;br /&gt;
3. Check if language is changed in the URL from en to hi_IN&lt;br /&gt;
&lt;br /&gt;
4. Check to see if the English strings on the page are translated to Hindi&lt;br /&gt;
&lt;br /&gt;
5. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
6. Go back to the main Assignment page and choose English from the dropdown. &lt;br /&gt;
&lt;br /&gt;
7. See if the language was changed in the URL to en. &lt;br /&gt;
&lt;br /&gt;
8. See if the strings are translated back to English for all Assignment related pages. &lt;br /&gt;
&lt;br /&gt;
====Scenario 3====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to URL and change the language from en to hi_IN. &lt;br /&gt;
&lt;br /&gt;
3. Check to see if the English strings on the page are translated to Hindi.&lt;br /&gt;
&lt;br /&gt;
4. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
====Scenario 4====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to URL and change the language from en to hi_IN. &lt;br /&gt;
&lt;br /&gt;
3. Check to see if the English strings on the page are translated to Hindi.&lt;br /&gt;
&lt;br /&gt;
4. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
5. Now change the language back from hi_IN to en in the URL. &lt;br /&gt;
&lt;br /&gt;
6. See if the Hindi strings are translated back to English for all Assignment related pages.&lt;br /&gt;
&lt;br /&gt;
==Links/References==&lt;br /&gt;
1. Internationalization and Localization Wikipedia: https://en.wikipedia.org/wiki/Internationalization_and_localization&lt;br /&gt;
&lt;br /&gt;
===Support Material===&lt;br /&gt;
1. https://guides.rubyonrails.org/i18n.html#how-i18n-in-ruby-on-rails-works[https://guides.rubyonrails.org/i18n.html#how-i18n-in-ruby-on-rails-works]&lt;br /&gt;
&lt;br /&gt;
2. https://guides.rubyonrails.org/i18n.html#setting-the-locale-from-url-params[https://guides.rubyonrails.org/i18n.html#setting-the-locale-from-url-params]&lt;br /&gt;
&lt;br /&gt;
3. https://guides.rubyonrails.org/i18n.html#abstracting-localized-code[https://guides.rubyonrails.org/i18n.html#abstracting-localized-code]&lt;br /&gt;
&lt;br /&gt;
4. https://guides.rubyonrails.org/i18n.html#providing-translations-for-internationalized-strings[https://guides.rubyonrails.org/i18n.html#providing-translations-for-internationalized-strings] &lt;br /&gt;
&lt;br /&gt;
5. https://guides.rubyonrails.org/i18n.html#passing-variables-to-translations [https://guides.rubyonrails.org/i18n.html#passing-variables-to-translations]&lt;br /&gt;
&lt;br /&gt;
6. https://www.youtube.com/watch?v=HLb0hEgrXTc [https://www.youtube.com/watch?v=HLb0hEgrXTc]&lt;br /&gt;
&lt;br /&gt;
8. https://phraseapp.com/blog/posts/rails-i18n-guide&lt;br /&gt;
[https://phraseapp.com/blog/posts/rails-i18n-guide]&lt;/div&gt;</summary>
		<author><name>Hbbadiya</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123881</id>
		<title>E1932 Expertiza Internationalization - Spring 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123881"/>
		<updated>2019-04-12T21:44:26Z</updated>

		<summary type="html">&lt;p&gt;Hbbadiya: /* Support Material */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sections to be created:&lt;br /&gt;
==Introduction==&lt;br /&gt;
===Expertiza===&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is an open source project based on [http://rubyonrails.org/ Ruby on Rails] framework. Expertiza allows the instructor to create new assignments and customize new or existing assignments. It also allows the instructor to create a list of topics the students can sign up for. Students can form teams in Expertiza to work on various projects and assignments. Students can also peer review other students' submissions. Expertiza supports submission across various document types, including the URLs and wiki pages.&lt;br /&gt;
&lt;br /&gt;
===Internationalization===&lt;br /&gt;
Internationalization is the process of designing a software application so that it can be adapted to various languages and regions without engineering changes. Localization is the process of adapting internationalized software for a specific region or language by translating text and adding locale-specific components. Both in re-engineering an existing software or designing a new internationalized software, the first step of internationalization is to split each potentially locale-dependent part (whether code, text or data) into a separate module. Each module can then either rely on a standard library/dependency or be independently replaced as needed for each locale.&lt;br /&gt;
&lt;br /&gt;
===Link to pull request and git repo===&lt;br /&gt;
Pull Request: Coming Soon!&lt;br /&gt;
&lt;br /&gt;
Git Repository: https://github.com/Mandhani/expertiza&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Expertiza is an open source web application that was built on Ruby on Rails stack. It provides a platform to students with various features that includes peer - reviewing projects, submitting work, form teams, viewing grades, etc. The project is maintained by students and faculty at NCSU.&lt;br /&gt;
&lt;br /&gt;
Right now, expertiza only supports English and many students are from other countries and speak different languages. They might not be able to understand english. The purpose of our project - expertiza internationalization is to allow students to understand the web application in their own language by modifying the existing code base and emphasizing on the student views. Our end goal would be to enable students to change the language through a dropdown located in the navigation bar at the top of the web page without any page breaks. The language that we would work with is Hindi.&lt;br /&gt;
&lt;br /&gt;
==Changes proposed==&lt;br /&gt;
&lt;br /&gt;
The previous project on expertiza internationalization was successful in translating the static strings to Hindi but it had a few issues that we have identified due to which it could not be merged into expertiza :&lt;br /&gt;
&lt;br /&gt;
* Bugs in view/student_review files that prevents the parameter id  to persist in the web page link after making the language change from english to hindi. &lt;br /&gt;
 &lt;br /&gt;
* Page not found errors when trying links other than the main Assignment page after the language conversion occurs.&lt;br /&gt;
&lt;br /&gt;
* The select language option is not consistent i.e if the selected language is Hindi, and you navigate back, the web application changes to the default language setting that is English. The session is not consistent, the default locale language persists.&lt;br /&gt;
&lt;br /&gt;
* Static text translation not entirely done &lt;br /&gt;
&lt;br /&gt;
For the scope of this project , we are focusing only on the student views and propose changes in the following files to address the issues mentioned above :&lt;br /&gt;
&lt;br /&gt;
* app/views/&lt;br /&gt;
** views/student_review&lt;br /&gt;
***_responses.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** _set_dynamic_review.html.erb&lt;br /&gt;
**views/participants&lt;br /&gt;
***change_handle.html.erb&lt;br /&gt;
** sign_up_sheet/&lt;br /&gt;
*** _suggested_topic.html.erb&lt;br /&gt;
*** _table_header.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
** student_task/&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
*** _publishing_rights.html.erb&lt;br /&gt;
** student_teams/&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
** submitted_content/&lt;br /&gt;
*** _hyperlink.html.erb&lt;br /&gt;
*** _main.html.erb&lt;br /&gt;
*** _self_review.html.erb&lt;br /&gt;
*** _submitted_files.html.erb&lt;br /&gt;
*** _title.html.erb&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
** grades/&lt;br /&gt;
*** view_my_scores.html.erb&lt;br /&gt;
*** view_team.html.erb&lt;br /&gt;
&lt;br /&gt;
From our observation, errors are prevalent when referencing keys from other files.&lt;br /&gt;
&lt;br /&gt;
==Implementation==&lt;br /&gt;
What files have been/are to be changed will be updated in this section once we fix the issues mentioned above.&lt;br /&gt;
&lt;br /&gt;
==Test Plan==&lt;br /&gt;
&lt;br /&gt;
===Student Credentials===&lt;br /&gt;
username: student1016 or student[4000-8000]&lt;br /&gt;
&lt;br /&gt;
password: password&lt;br /&gt;
&lt;br /&gt;
===Before Testing===&lt;br /&gt;
Since the issues mentioned are not fixed yet, there are some gotchas to keep in mind:&lt;br /&gt;
* When going between pages, use the Back button link located on the bottom of pages, not on the browser.&lt;br /&gt;
* When going to the main Assignment page, use the Back button link to get there to test out the scenarios below, not the link in the navigation bar.&lt;br /&gt;
&lt;br /&gt;
====Scenario 1====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to language dropdown in the navigation bar and choose Hindi. &lt;br /&gt;
&lt;br /&gt;
3. Check if language is changed in the URL from en to hi_IN&lt;br /&gt;
&lt;br /&gt;
4. Check to see if the English strings on the page are translated to Hindi&lt;br /&gt;
&lt;br /&gt;
5. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
====Scenario 2====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to language dropdown in the navigation bar and choose Hindi. &lt;br /&gt;
&lt;br /&gt;
3. Check if language is changed in the URL from en to hi_IN&lt;br /&gt;
&lt;br /&gt;
4. Check to see if the English strings on the page are translated to Hindi&lt;br /&gt;
&lt;br /&gt;
5. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
6. Go back to the main Assignment page and choose English from the dropdown. &lt;br /&gt;
&lt;br /&gt;
7. See if the language was changed in the URL to en. &lt;br /&gt;
&lt;br /&gt;
8. See if the strings are translated back to English for all Assignment related pages. &lt;br /&gt;
&lt;br /&gt;
====Scenario 3====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to URL and change the language from en to hi_IN. &lt;br /&gt;
&lt;br /&gt;
3. Check to see if the English strings on the page are translated to Hindi.&lt;br /&gt;
&lt;br /&gt;
4. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
====Scenario 4====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to URL and change the language from en to hi_IN. &lt;br /&gt;
&lt;br /&gt;
3. Check to see if the English strings on the page are translated to Hindi.&lt;br /&gt;
&lt;br /&gt;
4. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
5. Now change the language back from hi_IN to en in the URL. &lt;br /&gt;
&lt;br /&gt;
6. See if the Hindi strings are translated back to English for all Assignment related pages.&lt;br /&gt;
&lt;br /&gt;
==Links/References==&lt;br /&gt;
1. Internationalization and Localization Wikipedia: https://en.wikipedia.org/wiki/Internationalization_and_localization&lt;br /&gt;
&lt;br /&gt;
===Support Material===&lt;br /&gt;
1. https://guides.rubyonrails.org/i18n.html#how-i18n-in-ruby-on-rails-works[https://guides.rubyonrails.org/i18n.html#how-i18n-in-ruby-on-rails-works]&lt;br /&gt;
&lt;br /&gt;
2. https://guides.rubyonrails.org/i18n.html#setting-the-locale-from-url-params[https://guides.rubyonrails.org/i18n.html#setting-the-locale-from-url-params]&lt;br /&gt;
&lt;br /&gt;
3. https://guides.rubyonrails.org/i18n.html#abstracting-localized-code[https://guides.rubyonrails.org/i18n.html#abstracting-localized-code]&lt;br /&gt;
4. [https://guides.rubyonrails.org/i18n.html#providing-translations-for-internationalized-strings] &lt;br /&gt;
5. [https://guides.rubyonrails.org/i18n.html#passing-variables-to-translations]&lt;br /&gt;
6. [https://www.youtube.com/watch?v=HLb0hEgrXTc]&lt;br /&gt;
8. [https://phraseapp.com/blog/posts/rails-i18n-guide]&lt;/div&gt;</summary>
		<author><name>Hbbadiya</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123879</id>
		<title>E1932 Expertiza Internationalization - Spring 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123879"/>
		<updated>2019-04-12T21:43:59Z</updated>

		<summary type="html">&lt;p&gt;Hbbadiya: /* Support Material */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sections to be created:&lt;br /&gt;
==Introduction==&lt;br /&gt;
===Expertiza===&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is an open source project based on [http://rubyonrails.org/ Ruby on Rails] framework. Expertiza allows the instructor to create new assignments and customize new or existing assignments. It also allows the instructor to create a list of topics the students can sign up for. Students can form teams in Expertiza to work on various projects and assignments. Students can also peer review other students' submissions. Expertiza supports submission across various document types, including the URLs and wiki pages.&lt;br /&gt;
&lt;br /&gt;
===Internationalization===&lt;br /&gt;
Internationalization is the process of designing a software application so that it can be adapted to various languages and regions without engineering changes. Localization is the process of adapting internationalized software for a specific region or language by translating text and adding locale-specific components. Both in re-engineering an existing software or designing a new internationalized software, the first step of internationalization is to split each potentially locale-dependent part (whether code, text or data) into a separate module. Each module can then either rely on a standard library/dependency or be independently replaced as needed for each locale.&lt;br /&gt;
&lt;br /&gt;
===Link to pull request and git repo===&lt;br /&gt;
Pull Request: Coming Soon!&lt;br /&gt;
&lt;br /&gt;
Git Repository: https://github.com/Mandhani/expertiza&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Expertiza is an open source web application that was built on Ruby on Rails stack. It provides a platform to students with various features that includes peer - reviewing projects, submitting work, form teams, viewing grades, etc. The project is maintained by students and faculty at NCSU.&lt;br /&gt;
&lt;br /&gt;
Right now, expertiza only supports English and many students are from other countries and speak different languages. They might not be able to understand english. The purpose of our project - expertiza internationalization is to allow students to understand the web application in their own language by modifying the existing code base and emphasizing on the student views. Our end goal would be to enable students to change the language through a dropdown located in the navigation bar at the top of the web page without any page breaks. The language that we would work with is Hindi.&lt;br /&gt;
&lt;br /&gt;
==Changes proposed==&lt;br /&gt;
&lt;br /&gt;
The previous project on expertiza internationalization was successful in translating the static strings to Hindi but it had a few issues that we have identified due to which it could not be merged into expertiza :&lt;br /&gt;
&lt;br /&gt;
* Bugs in view/student_review files that prevents the parameter id  to persist in the web page link after making the language change from english to hindi. &lt;br /&gt;
 &lt;br /&gt;
* Page not found errors when trying links other than the main Assignment page after the language conversion occurs.&lt;br /&gt;
&lt;br /&gt;
* The select language option is not consistent i.e if the selected language is Hindi, and you navigate back, the web application changes to the default language setting that is English. The session is not consistent, the default locale language persists.&lt;br /&gt;
&lt;br /&gt;
* Static text translation not entirely done &lt;br /&gt;
&lt;br /&gt;
For the scope of this project , we are focusing only on the student views and propose changes in the following files to address the issues mentioned above :&lt;br /&gt;
&lt;br /&gt;
* app/views/&lt;br /&gt;
** views/student_review&lt;br /&gt;
***_responses.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** _set_dynamic_review.html.erb&lt;br /&gt;
**views/participants&lt;br /&gt;
***change_handle.html.erb&lt;br /&gt;
** sign_up_sheet/&lt;br /&gt;
*** _suggested_topic.html.erb&lt;br /&gt;
*** _table_header.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
** student_task/&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
*** _publishing_rights.html.erb&lt;br /&gt;
** student_teams/&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
** submitted_content/&lt;br /&gt;
*** _hyperlink.html.erb&lt;br /&gt;
*** _main.html.erb&lt;br /&gt;
*** _self_review.html.erb&lt;br /&gt;
*** _submitted_files.html.erb&lt;br /&gt;
*** _title.html.erb&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
** grades/&lt;br /&gt;
*** view_my_scores.html.erb&lt;br /&gt;
*** view_team.html.erb&lt;br /&gt;
&lt;br /&gt;
From our observation, errors are prevalent when referencing keys from other files.&lt;br /&gt;
&lt;br /&gt;
==Implementation==&lt;br /&gt;
What files have been/are to be changed will be updated in this section once we fix the issues mentioned above.&lt;br /&gt;
&lt;br /&gt;
==Test Plan==&lt;br /&gt;
&lt;br /&gt;
===Student Credentials===&lt;br /&gt;
username: student1016 or student[4000-8000]&lt;br /&gt;
&lt;br /&gt;
password: password&lt;br /&gt;
&lt;br /&gt;
===Before Testing===&lt;br /&gt;
Since the issues mentioned are not fixed yet, there are some gotchas to keep in mind:&lt;br /&gt;
* When going between pages, use the Back button link located on the bottom of pages, not on the browser.&lt;br /&gt;
* When going to the main Assignment page, use the Back button link to get there to test out the scenarios below, not the link in the navigation bar.&lt;br /&gt;
&lt;br /&gt;
====Scenario 1====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to language dropdown in the navigation bar and choose Hindi. &lt;br /&gt;
&lt;br /&gt;
3. Check if language is changed in the URL from en to hi_IN&lt;br /&gt;
&lt;br /&gt;
4. Check to see if the English strings on the page are translated to Hindi&lt;br /&gt;
&lt;br /&gt;
5. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
====Scenario 2====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to language dropdown in the navigation bar and choose Hindi. &lt;br /&gt;
&lt;br /&gt;
3. Check if language is changed in the URL from en to hi_IN&lt;br /&gt;
&lt;br /&gt;
4. Check to see if the English strings on the page are translated to Hindi&lt;br /&gt;
&lt;br /&gt;
5. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
6. Go back to the main Assignment page and choose English from the dropdown. &lt;br /&gt;
&lt;br /&gt;
7. See if the language was changed in the URL to en. &lt;br /&gt;
&lt;br /&gt;
8. See if the strings are translated back to English for all Assignment related pages. &lt;br /&gt;
&lt;br /&gt;
====Scenario 3====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to URL and change the language from en to hi_IN. &lt;br /&gt;
&lt;br /&gt;
3. Check to see if the English strings on the page are translated to Hindi.&lt;br /&gt;
&lt;br /&gt;
4. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
====Scenario 4====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to URL and change the language from en to hi_IN. &lt;br /&gt;
&lt;br /&gt;
3. Check to see if the English strings on the page are translated to Hindi.&lt;br /&gt;
&lt;br /&gt;
4. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
5. Now change the language back from hi_IN to en in the URL. &lt;br /&gt;
&lt;br /&gt;
6. See if the Hindi strings are translated back to English for all Assignment related pages.&lt;br /&gt;
&lt;br /&gt;
==Links/References==&lt;br /&gt;
1. Internationalization and Localization Wikipedia: https://en.wikipedia.org/wiki/Internationalization_and_localization&lt;br /&gt;
&lt;br /&gt;
===Support Material===&lt;br /&gt;
1. https://guides.rubyonrails.org/i18n.html#how-i18n-in-ruby-on-rails-works[https://guides.rubyonrails.org/i18n.html#how-i18n-in-ruby-on-rails-works]&lt;br /&gt;
2. [https://guides.rubyonrails.org/i18n.html#setting-the-locale-from-url-params]&lt;br /&gt;
3. [https://guides.rubyonrails.org/i18n.html#abstracting-localized-code]&lt;br /&gt;
4. [https://guides.rubyonrails.org/i18n.html#providing-translations-for-internationalized-strings] &lt;br /&gt;
5. [https://guides.rubyonrails.org/i18n.html#passing-variables-to-translations]&lt;br /&gt;
6. [https://www.youtube.com/watch?v=HLb0hEgrXTc]&lt;br /&gt;
8. [https://phraseapp.com/blog/posts/rails-i18n-guide]&lt;/div&gt;</summary>
		<author><name>Hbbadiya</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123878</id>
		<title>E1932 Expertiza Internationalization - Spring 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123878"/>
		<updated>2019-04-12T21:43:39Z</updated>

		<summary type="html">&lt;p&gt;Hbbadiya: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sections to be created:&lt;br /&gt;
==Introduction==&lt;br /&gt;
===Expertiza===&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is an open source project based on [http://rubyonrails.org/ Ruby on Rails] framework. Expertiza allows the instructor to create new assignments and customize new or existing assignments. It also allows the instructor to create a list of topics the students can sign up for. Students can form teams in Expertiza to work on various projects and assignments. Students can also peer review other students' submissions. Expertiza supports submission across various document types, including the URLs and wiki pages.&lt;br /&gt;
&lt;br /&gt;
===Internationalization===&lt;br /&gt;
Internationalization is the process of designing a software application so that it can be adapted to various languages and regions without engineering changes. Localization is the process of adapting internationalized software for a specific region or language by translating text and adding locale-specific components. Both in re-engineering an existing software or designing a new internationalized software, the first step of internationalization is to split each potentially locale-dependent part (whether code, text or data) into a separate module. Each module can then either rely on a standard library/dependency or be independently replaced as needed for each locale.&lt;br /&gt;
&lt;br /&gt;
===Link to pull request and git repo===&lt;br /&gt;
Pull Request: Coming Soon!&lt;br /&gt;
&lt;br /&gt;
Git Repository: https://github.com/Mandhani/expertiza&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Expertiza is an open source web application that was built on Ruby on Rails stack. It provides a platform to students with various features that includes peer - reviewing projects, submitting work, form teams, viewing grades, etc. The project is maintained by students and faculty at NCSU.&lt;br /&gt;
&lt;br /&gt;
Right now, expertiza only supports English and many students are from other countries and speak different languages. They might not be able to understand english. The purpose of our project - expertiza internationalization is to allow students to understand the web application in their own language by modifying the existing code base and emphasizing on the student views. Our end goal would be to enable students to change the language through a dropdown located in the navigation bar at the top of the web page without any page breaks. The language that we would work with is Hindi.&lt;br /&gt;
&lt;br /&gt;
==Changes proposed==&lt;br /&gt;
&lt;br /&gt;
The previous project on expertiza internationalization was successful in translating the static strings to Hindi but it had a few issues that we have identified due to which it could not be merged into expertiza :&lt;br /&gt;
&lt;br /&gt;
* Bugs in view/student_review files that prevents the parameter id  to persist in the web page link after making the language change from english to hindi. &lt;br /&gt;
 &lt;br /&gt;
* Page not found errors when trying links other than the main Assignment page after the language conversion occurs.&lt;br /&gt;
&lt;br /&gt;
* The select language option is not consistent i.e if the selected language is Hindi, and you navigate back, the web application changes to the default language setting that is English. The session is not consistent, the default locale language persists.&lt;br /&gt;
&lt;br /&gt;
* Static text translation not entirely done &lt;br /&gt;
&lt;br /&gt;
For the scope of this project , we are focusing only on the student views and propose changes in the following files to address the issues mentioned above :&lt;br /&gt;
&lt;br /&gt;
* app/views/&lt;br /&gt;
** views/student_review&lt;br /&gt;
***_responses.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** _set_dynamic_review.html.erb&lt;br /&gt;
**views/participants&lt;br /&gt;
***change_handle.html.erb&lt;br /&gt;
** sign_up_sheet/&lt;br /&gt;
*** _suggested_topic.html.erb&lt;br /&gt;
*** _table_header.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
** student_task/&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
*** _publishing_rights.html.erb&lt;br /&gt;
** student_teams/&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
** submitted_content/&lt;br /&gt;
*** _hyperlink.html.erb&lt;br /&gt;
*** _main.html.erb&lt;br /&gt;
*** _self_review.html.erb&lt;br /&gt;
*** _submitted_files.html.erb&lt;br /&gt;
*** _title.html.erb&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
** grades/&lt;br /&gt;
*** view_my_scores.html.erb&lt;br /&gt;
*** view_team.html.erb&lt;br /&gt;
&lt;br /&gt;
From our observation, errors are prevalent when referencing keys from other files.&lt;br /&gt;
&lt;br /&gt;
==Implementation==&lt;br /&gt;
What files have been/are to be changed will be updated in this section once we fix the issues mentioned above.&lt;br /&gt;
&lt;br /&gt;
==Test Plan==&lt;br /&gt;
&lt;br /&gt;
===Student Credentials===&lt;br /&gt;
username: student1016 or student[4000-8000]&lt;br /&gt;
&lt;br /&gt;
password: password&lt;br /&gt;
&lt;br /&gt;
===Before Testing===&lt;br /&gt;
Since the issues mentioned are not fixed yet, there are some gotchas to keep in mind:&lt;br /&gt;
* When going between pages, use the Back button link located on the bottom of pages, not on the browser.&lt;br /&gt;
* When going to the main Assignment page, use the Back button link to get there to test out the scenarios below, not the link in the navigation bar.&lt;br /&gt;
&lt;br /&gt;
====Scenario 1====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to language dropdown in the navigation bar and choose Hindi. &lt;br /&gt;
&lt;br /&gt;
3. Check if language is changed in the URL from en to hi_IN&lt;br /&gt;
&lt;br /&gt;
4. Check to see if the English strings on the page are translated to Hindi&lt;br /&gt;
&lt;br /&gt;
5. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
====Scenario 2====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to language dropdown in the navigation bar and choose Hindi. &lt;br /&gt;
&lt;br /&gt;
3. Check if language is changed in the URL from en to hi_IN&lt;br /&gt;
&lt;br /&gt;
4. Check to see if the English strings on the page are translated to Hindi&lt;br /&gt;
&lt;br /&gt;
5. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
6. Go back to the main Assignment page and choose English from the dropdown. &lt;br /&gt;
&lt;br /&gt;
7. See if the language was changed in the URL to en. &lt;br /&gt;
&lt;br /&gt;
8. See if the strings are translated back to English for all Assignment related pages. &lt;br /&gt;
&lt;br /&gt;
====Scenario 3====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to URL and change the language from en to hi_IN. &lt;br /&gt;
&lt;br /&gt;
3. Check to see if the English strings on the page are translated to Hindi.&lt;br /&gt;
&lt;br /&gt;
4. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
====Scenario 4====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to URL and change the language from en to hi_IN. &lt;br /&gt;
&lt;br /&gt;
3. Check to see if the English strings on the page are translated to Hindi.&lt;br /&gt;
&lt;br /&gt;
4. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
5. Now change the language back from hi_IN to en in the URL. &lt;br /&gt;
&lt;br /&gt;
6. See if the Hindi strings are translated back to English for all Assignment related pages.&lt;br /&gt;
&lt;br /&gt;
==Links/References==&lt;br /&gt;
1. Internationalization and Localization Wikipedia: https://en.wikipedia.org/wiki/Internationalization_and_localization&lt;br /&gt;
&lt;br /&gt;
===Support Material===&lt;br /&gt;
1. [https://guides.rubyonrails.org/i18n.html#how-i18n-in-ruby-on-rails-works]&lt;br /&gt;
2. [https://guides.rubyonrails.org/i18n.html#setting-the-locale-from-url-params]&lt;br /&gt;
3. [https://guides.rubyonrails.org/i18n.html#abstracting-localized-code]&lt;br /&gt;
4. [https://guides.rubyonrails.org/i18n.html#providing-translations-for-internationalized-strings] &lt;br /&gt;
5. [https://guides.rubyonrails.org/i18n.html#passing-variables-to-translations]&lt;br /&gt;
6. [https://www.youtube.com/watch?v=HLb0hEgrXTc]&lt;br /&gt;
8. [https://phraseapp.com/blog/posts/rails-i18n-guide]&lt;/div&gt;</summary>
		<author><name>Hbbadiya</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123633</id>
		<title>E1932 Expertiza Internationalization - Spring 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123633"/>
		<updated>2019-04-08T20:58:04Z</updated>

		<summary type="html">&lt;p&gt;Hbbadiya: /* Test Plan */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sections to be created:&lt;br /&gt;
==Introduction==&lt;br /&gt;
===Expertiza===&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is an open source project based on [http://rubyonrails.org/ Ruby on Rails] framework. Expertiza allows the instructor to create new assignments and customize new or existing assignments. It also allows the instructor to create a list of topics the students can sign up for. Students can form teams in Expertiza to work on various projects and assignments. Students can also peer review other students' submissions. Expertiza supports submission across various document types, including the URLs and wiki pages.&lt;br /&gt;
&lt;br /&gt;
===Internationalization===&lt;br /&gt;
Internationalization is the process of designing a software application so that it can be adapted to various languages and regions without engineering changes. Localization is the process of adapting internationalized software for a specific region or language by translating text and adding locale-specific components. Both in re-engineering an existing software or designing a new internationalized software, the first step of internationalization is to split each potentially locale-dependent part (whether code, text or data) into a separate module. Each module can then either rely on a standard library/dependency or be independently replaced as needed for each locale.&lt;br /&gt;
&lt;br /&gt;
===Link to pull request and git repo===&lt;br /&gt;
Pull Request: To be updated.&lt;br /&gt;
&lt;br /&gt;
Git Repository: https://github.com/Mandhani/expertiza&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Expertiza is an open source web application that was built on Ruby on Rails stack. It provides a platform to students with various features that includes peer - reviewing projects, submitting work, form teams, viewing grades, etc. The project is maintained by students and faculty at NCSU.&lt;br /&gt;
&lt;br /&gt;
Right now, expertiza only supports English and many students are from other countries and speak different languages. They might not be able to understand english. The purpose of our project - expertiza internationalization is to allow students to understand the web application in their own language by modifying the existing code base and emphasizing on the student views. Our end goal would be to enable students to change the language through a dropdown located in the navigation bar at the top of the web page without any page breaks. The language that we would work with is Hindi.&lt;br /&gt;
&lt;br /&gt;
==Changes proposed==&lt;br /&gt;
&lt;br /&gt;
The previous project on expertiza internationalization was successful in translating the static strings to Hindi but it had a few issues that we have identified due to which it could not be merged into expertiza :&lt;br /&gt;
&lt;br /&gt;
* Bugs in view/student_review files that prevents the parameter id  to persist in the web page link after making the language change from english to hindi. &lt;br /&gt;
 &lt;br /&gt;
* Page not found errors when trying links other than the main Assignment page after the language conversion occurs.&lt;br /&gt;
&lt;br /&gt;
* The select language option is not consistent i.e if the selected language is Hindi, and you navigate back, the web application changes to the default language setting that is English. The session is not consistent, the default locale language persists.&lt;br /&gt;
&lt;br /&gt;
* Static text translation not entirely done &lt;br /&gt;
&lt;br /&gt;
For the scope of this project , we are focusing only on the student views and propose changes in the following files to address the issues mentioned above :&lt;br /&gt;
&lt;br /&gt;
* app/views/&lt;br /&gt;
** views/student_review&lt;br /&gt;
***_responses.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** _set_dynamic_review.html.erb&lt;br /&gt;
**views/participants&lt;br /&gt;
***change_handle.html.erb&lt;br /&gt;
** sign_up_sheet/&lt;br /&gt;
*** _suggested_topic.html.erb&lt;br /&gt;
*** _table_header.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
** student_task/&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
*** _publishing_rights.html.erb&lt;br /&gt;
** student_teams/&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
** submitted_content/&lt;br /&gt;
*** _hyperlink.html.erb&lt;br /&gt;
*** _main.html.erb&lt;br /&gt;
*** _self_review.html.erb&lt;br /&gt;
*** _submitted_files.html.erb&lt;br /&gt;
*** _title.html.erb&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
** grades/&lt;br /&gt;
*** view_my_scores.html.erb&lt;br /&gt;
*** view_team.html.erb&lt;br /&gt;
&lt;br /&gt;
Referencing keys could be a problem that is causing the errors ( will look up what this is and elaborate, found it in prev documentation)&lt;br /&gt;
&lt;br /&gt;
==Implementation==&lt;br /&gt;
What files have been/are to be changed.&lt;br /&gt;
==Test Plan==&lt;br /&gt;
===Test Plan===&lt;br /&gt;
&lt;br /&gt;
====Student Credentials====&lt;br /&gt;
username: student1016 or student[4000-8000]&lt;br /&gt;
&lt;br /&gt;
password: password&lt;br /&gt;
&lt;br /&gt;
====Before Testing====&lt;br /&gt;
&lt;br /&gt;
* When going between pages, use the Back button link located on the bottom of pages, not on the browser&lt;br /&gt;
* When going to the main Assignment page, use the Back button link to get there to test out the scenarios below, not the link in the navigation bar.&lt;br /&gt;
&lt;br /&gt;
====Scenario 1====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to language dropdown in the navigation bar and choose Hindi. &lt;br /&gt;
&lt;br /&gt;
3. Check if language is changed in the URL from en to hi_IN&lt;br /&gt;
&lt;br /&gt;
4. Check to see if the English strings on the page are translated to Hindi&lt;br /&gt;
&lt;br /&gt;
5. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
====Scenario 2====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to language dropdown in the navigation bar and choose Hindi. &lt;br /&gt;
&lt;br /&gt;
3. Check if language is changed in the URL from en to hi_IN&lt;br /&gt;
&lt;br /&gt;
4. Check to see if the English strings on the page are translated to Hindi&lt;br /&gt;
&lt;br /&gt;
5. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
6. Go back to the main Assignment page and choose English from the dropdown. &lt;br /&gt;
&lt;br /&gt;
7. See if the language was changed in the URL to en. &lt;br /&gt;
&lt;br /&gt;
8. See if the strings are translated back to English for all Assignment related pages. &lt;br /&gt;
&lt;br /&gt;
====Scenario 3====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to URL and change the language from en to hi_IN. &lt;br /&gt;
&lt;br /&gt;
3. Check to see if the English strings on the page are translated to Hindi.&lt;br /&gt;
&lt;br /&gt;
4. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
====Scenario 4====&lt;br /&gt;
&lt;br /&gt;
1. Log in to Expertiza as a student. &lt;br /&gt;
&lt;br /&gt;
2. Go to URL and change the language from en to hi_IN. &lt;br /&gt;
&lt;br /&gt;
3. Check to see if the English strings on the page are translated to Hindi.&lt;br /&gt;
&lt;br /&gt;
4. While still logged in as a Student, check if the other Assignment related pages are also translated.&lt;br /&gt;
&lt;br /&gt;
5. Now change the language back from hi_IN to en in the URL. &lt;br /&gt;
&lt;br /&gt;
6. See if the Hindi strings are translated back to English for all Assignment related pages.&lt;br /&gt;
&lt;br /&gt;
==Future Scope==&lt;br /&gt;
If anything&lt;br /&gt;
==References==&lt;br /&gt;
1. Internationalization and Localization Wikipedia: https://en.wikipedia.org/wiki/Internationalization_and_localization&lt;br /&gt;
&lt;br /&gt;
Add other references as you find them here.&lt;/div&gt;</summary>
		<author><name>Hbbadiya</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123632</id>
		<title>E1932 Expertiza Internationalization - Spring 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123632"/>
		<updated>2019-04-08T20:57:31Z</updated>

		<summary type="html">&lt;p&gt;Hbbadiya: /* Student Credentials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sections to be created:&lt;br /&gt;
==Introduction==&lt;br /&gt;
===Expertiza===&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is an open source project based on [http://rubyonrails.org/ Ruby on Rails] framework. Expertiza allows the instructor to create new assignments and customize new or existing assignments. It also allows the instructor to create a list of topics the students can sign up for. Students can form teams in Expertiza to work on various projects and assignments. Students can also peer review other students' submissions. Expertiza supports submission across various document types, including the URLs and wiki pages.&lt;br /&gt;
&lt;br /&gt;
===Internationalization===&lt;br /&gt;
Internationalization is the process of designing a software application so that it can be adapted to various languages and regions without engineering changes. Localization is the process of adapting internationalized software for a specific region or language by translating text and adding locale-specific components. Both in re-engineering an existing software or designing a new internationalized software, the first step of internationalization is to split each potentially locale-dependent part (whether code, text or data) into a separate module. Each module can then either rely on a standard library/dependency or be independently replaced as needed for each locale.&lt;br /&gt;
&lt;br /&gt;
===Link to pull request and git repo===&lt;br /&gt;
Pull Request: To be updated.&lt;br /&gt;
&lt;br /&gt;
Git Repository: https://github.com/Mandhani/expertiza&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Expertiza is an open source web application that was built on Ruby on Rails stack. It provides a platform to students with various features that includes peer - reviewing projects, submitting work, form teams, viewing grades, etc. The project is maintained by students and faculty at NCSU.&lt;br /&gt;
&lt;br /&gt;
Right now, expertiza only supports English and many students are from other countries and speak different languages. They might not be able to understand english. The purpose of our project - expertiza internationalization is to allow students to understand the web application in their own language by modifying the existing code base and emphasizing on the student views. Our end goal would be to enable students to change the language through a dropdown located in the navigation bar at the top of the web page without any page breaks. The language that we would work with is Hindi.&lt;br /&gt;
&lt;br /&gt;
==Changes proposed==&lt;br /&gt;
&lt;br /&gt;
The previous project on expertiza internationalization was successful in translating the static strings to Hindi but it had a few issues that we have identified due to which it could not be merged into expertiza :&lt;br /&gt;
&lt;br /&gt;
* Bugs in view/student_review files that prevents the parameter id  to persist in the web page link after making the language change from english to hindi. &lt;br /&gt;
 &lt;br /&gt;
* Page not found errors when trying links other than the main Assignment page after the language conversion occurs.&lt;br /&gt;
&lt;br /&gt;
* The select language option is not consistent i.e if the selected language is Hindi, and you navigate back, the web application changes to the default language setting that is English. The session is not consistent, the default locale language persists.&lt;br /&gt;
&lt;br /&gt;
* Static text translation not entirely done &lt;br /&gt;
&lt;br /&gt;
For the scope of this project , we are focusing only on the student views and propose changes in the following files to address the issues mentioned above :&lt;br /&gt;
&lt;br /&gt;
* app/views/&lt;br /&gt;
** views/student_review&lt;br /&gt;
***_responses.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** _set_dynamic_review.html.erb&lt;br /&gt;
**views/participants&lt;br /&gt;
***change_handle.html.erb&lt;br /&gt;
** sign_up_sheet/&lt;br /&gt;
*** _suggested_topic.html.erb&lt;br /&gt;
*** _table_header.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
** student_task/&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
*** _publishing_rights.html.erb&lt;br /&gt;
** student_teams/&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
** submitted_content/&lt;br /&gt;
*** _hyperlink.html.erb&lt;br /&gt;
*** _main.html.erb&lt;br /&gt;
*** _self_review.html.erb&lt;br /&gt;
*** _submitted_files.html.erb&lt;br /&gt;
*** _title.html.erb&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
** grades/&lt;br /&gt;
*** view_my_scores.html.erb&lt;br /&gt;
*** view_team.html.erb&lt;br /&gt;
&lt;br /&gt;
Referencing keys could be a problem that is causing the errors ( will look up what this is and elaborate, found it in prev documentation)&lt;br /&gt;
&lt;br /&gt;
==Implementation==&lt;br /&gt;
What files have been/are to be changed.&lt;br /&gt;
==Test Plan==&lt;br /&gt;
==Future Scope==&lt;br /&gt;
If anything&lt;br /&gt;
==References==&lt;br /&gt;
1. Internationalization and Localization Wikipedia: https://en.wikipedia.org/wiki/Internationalization_and_localization&lt;br /&gt;
&lt;br /&gt;
Add other references as you find them here.&lt;/div&gt;</summary>
		<author><name>Hbbadiya</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123631</id>
		<title>E1932 Expertiza Internationalization - Spring 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=E1932_Expertiza_Internationalization_-_Spring_2019&amp;diff=123631"/>
		<updated>2019-04-08T20:57:18Z</updated>

		<summary type="html">&lt;p&gt;Hbbadiya: /* Test Plan */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sections to be created:&lt;br /&gt;
==Introduction==&lt;br /&gt;
===Expertiza===&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is an open source project based on [http://rubyonrails.org/ Ruby on Rails] framework. Expertiza allows the instructor to create new assignments and customize new or existing assignments. It also allows the instructor to create a list of topics the students can sign up for. Students can form teams in Expertiza to work on various projects and assignments. Students can also peer review other students' submissions. Expertiza supports submission across various document types, including the URLs and wiki pages.&lt;br /&gt;
&lt;br /&gt;
===Internationalization===&lt;br /&gt;
Internationalization is the process of designing a software application so that it can be adapted to various languages and regions without engineering changes. Localization is the process of adapting internationalized software for a specific region or language by translating text and adding locale-specific components. Both in re-engineering an existing software or designing a new internationalized software, the first step of internationalization is to split each potentially locale-dependent part (whether code, text or data) into a separate module. Each module can then either rely on a standard library/dependency or be independently replaced as needed for each locale.&lt;br /&gt;
&lt;br /&gt;
===Link to pull request and git repo===&lt;br /&gt;
Pull Request: To be updated.&lt;br /&gt;
&lt;br /&gt;
Git Repository: https://github.com/Mandhani/expertiza&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Expertiza is an open source web application that was built on Ruby on Rails stack. It provides a platform to students with various features that includes peer - reviewing projects, submitting work, form teams, viewing grades, etc. The project is maintained by students and faculty at NCSU.&lt;br /&gt;
&lt;br /&gt;
Right now, expertiza only supports English and many students are from other countries and speak different languages. They might not be able to understand english. The purpose of our project - expertiza internationalization is to allow students to understand the web application in their own language by modifying the existing code base and emphasizing on the student views. Our end goal would be to enable students to change the language through a dropdown located in the navigation bar at the top of the web page without any page breaks. The language that we would work with is Hindi.&lt;br /&gt;
&lt;br /&gt;
==Changes proposed==&lt;br /&gt;
&lt;br /&gt;
The previous project on expertiza internationalization was successful in translating the static strings to Hindi but it had a few issues that we have identified due to which it could not be merged into expertiza :&lt;br /&gt;
&lt;br /&gt;
* Bugs in view/student_review files that prevents the parameter id  to persist in the web page link after making the language change from english to hindi. &lt;br /&gt;
 &lt;br /&gt;
* Page not found errors when trying links other than the main Assignment page after the language conversion occurs.&lt;br /&gt;
&lt;br /&gt;
* The select language option is not consistent i.e if the selected language is Hindi, and you navigate back, the web application changes to the default language setting that is English. The session is not consistent, the default locale language persists.&lt;br /&gt;
&lt;br /&gt;
* Static text translation not entirely done &lt;br /&gt;
&lt;br /&gt;
For the scope of this project , we are focusing only on the student views and propose changes in the following files to address the issues mentioned above :&lt;br /&gt;
&lt;br /&gt;
* app/views/&lt;br /&gt;
** views/student_review&lt;br /&gt;
***_responses.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** _set_dynamic_review.html.erb&lt;br /&gt;
**views/participants&lt;br /&gt;
***change_handle.html.erb&lt;br /&gt;
** sign_up_sheet/&lt;br /&gt;
*** _suggested_topic.html.erb&lt;br /&gt;
*** _table_header.html.erb&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
** student_task/&lt;br /&gt;
*** list.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
*** _publishing_rights.html.erb&lt;br /&gt;
** student_teams/&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
*** view.html.erb&lt;br /&gt;
** submitted_content/&lt;br /&gt;
*** _hyperlink.html.erb&lt;br /&gt;
*** _main.html.erb&lt;br /&gt;
*** _self_review.html.erb&lt;br /&gt;
*** _submitted_files.html.erb&lt;br /&gt;
*** _title.html.erb&lt;br /&gt;
*** edit.html.erb&lt;br /&gt;
** grades/&lt;br /&gt;
*** view_my_scores.html.erb&lt;br /&gt;
*** view_team.html.erb&lt;br /&gt;
&lt;br /&gt;
Referencing keys could be a problem that is causing the errors ( will look up what this is and elaborate, found it in prev documentation)&lt;br /&gt;
&lt;br /&gt;
==Implementation==&lt;br /&gt;
What files have been/are to be changed.&lt;br /&gt;
==Test Plan==&lt;br /&gt;
==Student Credentials==&lt;br /&gt;
username: student1016 or student[4000-8000]&lt;br /&gt;
&lt;br /&gt;
password: password&lt;br /&gt;
&lt;br /&gt;
==Future Scope==&lt;br /&gt;
If anything&lt;br /&gt;
==References==&lt;br /&gt;
1. Internationalization and Localization Wikipedia: https://en.wikipedia.org/wiki/Internationalization_and_localization&lt;br /&gt;
&lt;br /&gt;
Add other references as you find them here.&lt;/div&gt;</summary>
		<author><name>Hbbadiya</name></author>
	</entry>
</feed>