Skip to content

Commit

Permalink
language_jp
Browse files Browse the repository at this point in the history
  • Loading branch information
sharathvignesh committed Feb 21, 2017
1 parent 789dc7f commit 73c42b0
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 16 deletions.
6 changes: 3 additions & 3 deletions reactJS/app/components/RegisterComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ class RegisterComponent extends Component {
<div className='col-sm-offset-2 col-sm-8 col-xs-12'>
<Stepper activeStep={this.props.stepIndex} orientation="vertical">
<Step>
<StepLabel>Enter your name and event name</StepLabel>
<StepLabel>{this.props.languageJson.stepper1Label}</StepLabel>
<StepContent>

<div className='row'>
Expand Down Expand Up @@ -522,11 +522,11 @@ class RegisterComponent extends Component {
<div className='col-md-offset-1 col-md-10 col-sm-12 col-xs-12'>
<Stepper activeStep={this.props.stepIndex}>
<Step>
<StepLabel>Enter your name and events name</StepLabel>
<StepLabel>{this.props.languageJson.stepper1Label}</StepLabel>

</Step>
<Step>
<StepLabel><span style={{'marginTop':'3px'}}>Enter Event location <br></br><span style={{'color':'rgba(0, 0, 0, 0.258824)'}}>Optional</span></span></StepLabel>
<StepLabel><span style={{'marginTop':'3px'}}>{this.props.languageJson.stepper2Label}<br></br><span style={{'color':'rgba(0, 0, 0, 0.258824)'}}>{this.props.languageJson.optional}</span></span></StepLabel>


</Step>
Expand Down
3 changes: 3 additions & 0 deletions reactJS/en.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"header": "Coming Or Not?",
"stepper1Label": "Enter your name and events name",
"stepper2Label": "Enter Event location",
"optional": "optional",
"nameErrorLabel": "Only 40 characters permitted!!!",
"purposeErrorLabel": "Only 100 characters permitted!!!",
"dateArrayEmptyErrorLabel": "No dates selected!!",
Expand Down
29 changes: 16 additions & 13 deletions reactJS/jp.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
{
"header": "Coming Or Not?",
"nameErrorLabel": "Only 40 characters permitted!!!",
"purposeErrorLabel": "Only 100 characters permitted!!!",
"dateArrayEmptyErrorLabel": "No dates selected!!",
"stepper1Label": "あなたの名前とイベント名を入力してください",
"stepper2Label": "イベントの場所を入力",
"optional": "任意",
"nameErrorLabel": "40 文字しか使用できません!",
"purposeErrorLabel": "100 文字しか使用できません!",
"dateArrayEmptyErrorLabel": "日付は選択されていません!",
"nameErrorLabelRequired": "あなたの名前が必要です",
"purposeErrorLabelRequired": "例:葬式",
"name": "主催者名 *",
"attendeeName": "",
"purpose": "イベント名 *",
"calendarLabel": "Select the Dates for the Event",
"geosuggestPlaceholder": "Enter the restaurant location here!",
"calendarLabel": "イベントの日付を選択",
"geosuggestPlaceholder": "ここにレストランの場所を入力してください!",
"register": "登録",
"next": "次へ",
"back": "戻る",
"shareLabel": "Share the Event Url with your friends",
"shareLabel": "友達とイベント URL を共有する",
"eventPageButton": "イベントページ",
"attendeeNameErrorLabel": "あなたの名前が必要です",
"attendeeNameErrorLabelDuplicate": "Name already exists!! Please enter another name",
"dateSelectionLabel": "Enter your convenient Dates",
"dateCastSelectionLabel": "Cast your attendance for the above days by pressing the button",
"eventInformationPartOne": " is organizing ",
"eventInformationPartTwo": ". Please cast your available Dates!!",
"eventTableLabel": "The Event Table",
"numberOfPeopleLabel": "No of people casted votes: "
"attendeeNameErrorLabelDuplicate": "名前は既に存在します!! 別の名前を入力してください",
"dateSelectionLabel": "あなたの便利な日付を入力してください",
"dateCastSelectionLabel": "ボタンを押して上記の日の出席者をキャスト",
"eventInformationPartOne": "組織している",
"eventInformationPartTwo": "。 ご利用可能な日付をキャストしてください!",
"eventTableLabel": "イベント テーブル",
"numberOfPeopleLabel": "人々の投票はキャストされていません:"
}

0 comments on commit 73c42b0

Please sign in to comment.