-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: 国际化支持,新增法语和日语 * feat: 国际化支持,新增法语和日语
- Loading branch information
Showing
4 changed files
with
71 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
export default { | ||
save: "Sauvegarder", | ||
confirm: "Confirmer", | ||
cancel: "Annuler", | ||
delete: "Suprimer", | ||
loading: "Chargement...", | ||
placehold: "Entrez...", | ||
image: { | ||
loadError: "Échec du chargement", | ||
}, | ||
pullRefresh: { | ||
pulling: "Tirer pour actualiser...", | ||
loosing: "Relâchez pour actualiser...", | ||
}, | ||
search: { | ||
placeholder: "Entrez...", | ||
}, | ||
actionSheet: { | ||
shareTitle: "Partager avec", | ||
}, | ||
calendar: { | ||
end: "Fin", | ||
start: "Début", | ||
title: "Calendrier", | ||
weekdays: ["Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam"], | ||
monthTitle: (year: number, month: number) => `${year}/${month}`, | ||
rangePrompt: (maxRange: number | string) => | ||
`Choisir pas plus de ${maxRange} jours`, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
export default { | ||
save: "セーブ", | ||
confirm: "確認", | ||
cancel: "キャンセル", | ||
delete: "削除", | ||
loading: "読み込み中...", | ||
placehold: "割引コードを入力してください", | ||
image: { | ||
loadError: "読み込みに失敗しました", | ||
}, | ||
pullRefresh: { | ||
pulling: "プルダウンして更新...", | ||
loosing: "リリース時に更新...", | ||
}, | ||
search: { | ||
placeholder: "割引コードを入力してください", | ||
}, | ||
actionSheet: { | ||
shareTitle: "共有先", | ||
}, | ||
calendar: { | ||
end: "終了", | ||
start: "開始", | ||
title: "日付選択", | ||
weekdays: ["日", "月", "火", "水", "木", "金", "土"], | ||
monthTitle: (year: number, month: number) => `${year}年/${month}月`, | ||
rangePrompt: (maxRange: number | string) => `${maxRange}日まで選択`, | ||
}, | ||
}; |