Skip to content

Commit

Permalink
Add Japanese language support
Browse files Browse the repository at this point in the history
  • Loading branch information
billyio committed Mar 20, 2023
1 parent 44675e4 commit c6feee8
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions lib/src/pluto_grid_configuration.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1501,6 +1501,46 @@ class PlutoGridLocaleText {
this.loadingText = 'Lädt',
});

const PlutoGridLocaleText.japanese({
// Column menu
this.unfreezeColumn = '列の固定を解除する',
this.freezeColumnToStart = '列を最初に固定する',
this.freezeColumnToEnd = '列を最後に固定する',
this.autoFitColumn = '列幅の自動修正',
this.hideColumn = '列を非表示にする',
this.setColumns = '列の表示設定',
this.setFilter = 'フィルタの作成',
this.resetFilter = 'フィルタの削除',
// SetColumns popup
this.setColumnsTitle = '列のタイトル',
// Filter popup
this.filterColumn = '列',
this.filterType = '種類',
this.filterValue = '値',
this.filterAllColumns = '全列',
this.filterContains = '含む',
this.filterEquals = '等しい',
this.filterStartsWith = '指定の値で始まる',
this.filterEndsWith = '指定の値で終わる',
this.filterGreaterThan = 'より大きい',
this.filterGreaterThanOrEqualTo = '以上',
this.filterLessThan = '未満',
this.filterLessThanOrEqualTo = '以下',
// Date popup
this.sunday = '日',
this.monday = '月',
this.tuesday = '火',
this.wednesday = '水',
this.thursday = '木',
this.friday = '金',
this.saturday = '土',
// Time column popup
this.hour = '時間',
this.minute = '分',
// Common
this.loadingText = 'にゃ〜',
});

@override
bool operator ==(covariant Object other) {
return identical(this, other) ||
Expand Down

0 comments on commit c6feee8

Please sign in to comment.