mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-24 07:41:47 +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
55 lines
1.6 KiB
TypeScript
55 lines
1.6 KiB
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const common: TranslationStrings = {
|
|
'common.save': '儲存',
|
|
'common.showMore': '顯示更多',
|
|
'common.showLess': '收起',
|
|
'common.cancel': '取消',
|
|
'common.clear': '清除',
|
|
'common.delete': '刪除',
|
|
'common.edit': '編輯',
|
|
'common.add': '新增',
|
|
'common.loading': '載入中...',
|
|
'common.import': '匯入',
|
|
'common.select': '選擇',
|
|
'common.selectAll': '全選',
|
|
'common.deselectAll': '取消全選',
|
|
'common.error': '錯誤',
|
|
'common.unknownError': '未知錯誤',
|
|
'common.tooManyAttempts': '嘗試次數過多,請稍後再試。',
|
|
'common.back': '返回',
|
|
'common.all': '全部',
|
|
'common.close': '關閉',
|
|
'common.open': '開啟',
|
|
'common.upload': '上傳',
|
|
'common.search': '搜尋',
|
|
'common.confirm': '確認',
|
|
'common.ok': '確定',
|
|
'common.yes': '是',
|
|
'common.no': '否',
|
|
'common.or': '或',
|
|
'common.none': '無',
|
|
'common.date': '日期',
|
|
'common.rename': '重新命名',
|
|
'common.discardChanges': '捨棄變更',
|
|
'common.discard': '捨棄',
|
|
'common.name': '名稱',
|
|
'common.email': '郵箱',
|
|
'common.password': '密碼',
|
|
'common.saving': '儲存中...',
|
|
'common.saved': '已儲存',
|
|
'common.expand': '展開',
|
|
'common.collapse': '折疊',
|
|
'common.update': '更新',
|
|
'common.change': '修改',
|
|
'common.uploading': '上傳中…',
|
|
'common.backToPlanning': '返回規劃',
|
|
'common.reset': '重置',
|
|
'common.copy': '複製',
|
|
'common.copied': '已複製',
|
|
'common.justNow': '剛剛',
|
|
'common.hoursAgo': '{count}小時前',
|
|
'common.daysAgo': '{count}天前',
|
|
};
|
|
export default common;
|