Files
TREK/shared/src/i18n/ja/inspector.ts
T
Julien G. 126f2df21b 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
2026-05-26 20:27:29 +02:00

23 lines
866 B
TypeScript

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;