Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
afshinm committed Sep 3, 2021
2 parents 2a53556 + c4ddc42 commit 0eae157
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
3 changes: 2 additions & 1 deletion l10n/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import trTR from './tr_TR';
import koKR from './ko_KR';
import ruRU from './ru_RU';
import idID from './id_ID';
import jaJP from './ja_JP';
import cnCN from './cn_CN';

export { esES, frFR, itIT, ptPT, trTR, koKR, ruRU, idID, cnCN };
export { esES, frFR, itIT, ptPT, trTR, koKR, ruRU, idID, jaJP, cnCN };
22 changes: 22 additions & 0 deletions l10n/ja_JP.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
export default {
search: {
placeholder: '検索ワードを入力...',
},
sort: {
sortAsc: '昇順でソート',
sortDesc: '降順でソート',
},
pagination: {
previous: '前へ',
next: '次へ',
navigate: (page, pages) => `${page} / ${pages} ページ`,
page: (page) => `${page} ページ`,
showing: '現在',
of: '件目を表示中(全',
to: '~',
results: '件)',
},
loading: 'ロード中...',
noRecordsFound: '一致する検索結果がありません',
error: 'データ取得中にエラーが発生しました',
};

0 comments on commit 0eae157

Please sign in to comment.