chore: move i18n to shared package (#1066)

* chore: move i18n to shared package

* chore: move server translations to shared package and apply linter and prettier on entire shared package
This commit is contained in:
Julien G.
2026-05-26 20:27:29 +02:00
committed by GitHub
parent 324d930ca3
commit 126f2df21b
860 changed files with 56891 additions and 46377 deletions
+22
View File
@@ -0,0 +1,22 @@
import type { TranslationStrings } from '../types';
const inspector: TranslationStrings = {
'inspector.opened': '営業中',
'inspector.closed': '営業時間外',
'inspector.openingHours': '営業時間',
'inspector.showHours': '営業時間を表示',
'inspector.files': 'ファイル',
'inspector.remove': '削除',
'inspector.filesCount': '{count}件のファイル',
'inspector.removeFromDay': 'この日から削除',
'inspector.addToDay': '日に追加',
'inspector.confirmedRes': '確定済み予約',
'inspector.pendingRes': '保留中の予約',
'inspector.google': 'Googleマップで開く',
'inspector.website': 'Webサイトを開く',
'inspector.addRes': '予約',
'inspector.editRes': '予約を編集',
'inspector.participants': '参加者',
'inspector.trackStats': '統計を記録',
};
export default inspector;