BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
@(Html.EJ().Gantt("Gantt")
//
.Locale("ja-JP")
)@(Html.EJ().ScriptManager())
<script>
ej.Gantt.Locale["ja-JP"] = {
emptyRecord: "レコードは表示されませんします",
alertTexts: {
indentAlert: "何ガントレコードはインデントを行うためにそこに選択されていないされています",
outdentAlert: "何ガントレコードはインデント解除を実行するためにあり選択されていないされています",
predecessorEditingValidationAlert: "循環依存が発生しましたが、前任者を確認してください。",
predecessorAddingValidationAlert: "前身の表のすべての列を埋めます",
idValidationAlert: "重複ID",
dateValidationAlert: "無効な終了日"
},
columnHeaderTexts: {
taskId: "ID",
taskName: "タスク名",
startDate: "開始日",
endDate: "終了日",
resourceInfo: "リソース",
duration: "デュレーション",
status: "進捗",
predecessor: "先行",
type: "タイプ",
offset: "オフセット",
baselineStartDate: "ベースライン開始日",
baselineEndDate: "ベースライン終了日",
WBS: "WBS",
WBSpredecessor: "WBSの前身"
},
editDialogTexts: {
addFormTitle: "新しい仕事",
editFormTitle: "タスクの編集",
saveButton: "セーブ",
deleteButton: "削除",
cancelButton: "キャンセル",
addPredecessor: "新しく追加する",
removePredecessor: "削除します"
},
columnDialogTexts: {
field: "フィールド",
headerText: "ヘッダーテキスト",
editType: "編集タイプ",
filterEditType: "[タイプの編集をフィルタリング",
allowFiltering: "フィルタリングを許可します",
allowFilteringBlankContent: "フィルタリング空白のコンテンツを許可",
allowSorting: "並べ替えを許可します",
visible: "目に見えます",
width: "幅",
textAlign: "テキストアラインメント",
headerTextAlign: "ヘッダーテキストの配置",
columnsDropdownData: "列のドロップダウンデータ",
dropdownTableText: "テキスト",
dropdownTableValue: "値",
addData: "加えます",
deleteData: "削除します",
allowCellSelection: "セルの選択を許可します"
},
toolboxTooltipTexts: {
addTool: "加えます",
editTool: "編集",
saveTool: "更新",
deleteTool: "削除",
cancelTool: "キャンセル",
searchTool: "サーチ",
indentTool: "インデント",
outdentTool: "インデント解除",
expandAllTool: "すべて展開",
collapseAllTool: "すべて折りたたみます",
nextTimeSpanTool: "次のタイムスパン",
prevTimeSpanTool: "前のタイムスパン"
},
durationUnitTexts: {
days: "日々",
hours: "営業時間",
minutes: "分"
},
contextMenuTexts: {
taskDetailsText: "タスクの詳細...",
addNewTaskText: "新しいタスクを追加します。",
indentText: "インデント",
outdentText: "インデント解除",
deleteText: "削除",
aboveText: "上記の",
belowText: "以下"
},
newTaskTexts: {
newTaskName: "新しい仕事"
},
columnMenuTexts: {
sortAscendingText: "昇順で並べ替え",
sortDescendingText: "降順ソート",
columnsText: "コラム",
insertColumnLeft: "列の左に挿入",
insertColumnRight: "列の右を挿入",
deleteColumn: "列の削除",
renameColumn: "列の名前を変更"
},
columnDialogTitle: {
insertColumn: "列の挿入",
deleteColumn: "列の削除",
renameColumn: "列の名前を変更"
},
deleteColumnText: "あなたは、この列を削除してもよろしいですか?",
okButtonText: "[OK]",
cancelButtonText: "キャンセル",
confirmDeleteText: "削除の確認",
predecessorEditingTexts: {
fromText: "から",
toText: "に"
},
};
</script> |
I'm sorry in words less than .
It confirmed that can be localized in the sample that we had offered .
Or sample does not can then continue to provide the Chart of Gantt is displayed in the sample that can be localized ?
@(Html.EJ().Gantt("Gantt")
.ScheduleHeaderSettings(sh=>
{
sh.ScheduleHeaderType(GanttScheduleHeaderType.Week);
sh.WeekHeaderFormat("MMM dd,yyyy");
sh.DayHeaderFormat("ddd");
})
//To apply localization for schedule headers as per the header format
.Locale("ja-JP")
)@(Html.EJ().ScriptManager())
<script>
ej.Gantt.Locale["ja-JP"] = {
//To apply localization for column headers
columnHeaderTexts: {
taskId: "ID",
taskName: "タスク名",
startDate: "開始日",
endDate: "終了日",
resourceInfo: "リソース",
duration: "デュレーション",
status: "進捗",
predecessor: "先行",
type: "タイプ",
offset: "オフセット",
baselineStartDate: "ベースライン開始日",
baselineEndDate: "ベースライン終了日",
WBS: "WBS",
WBSpredecessor: "WBSの前身"
},
//To apply localization for duration units applied for the duration in taskbar tooltip
durationUnitTexts: {
days: "日々",
hours: "営業時間",
minutes: "分"
},
};
</script> |