mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-21 06:11:45 +00:00
126f2df21b
* chore: move i18n to shared package * chore: move server translations to shared package and apply linter and prettier on entire shared package
23 lines
866 B
TypeScript
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;
|