Skip to content

Commit

Permalink
More succinct keys
Browse files Browse the repository at this point in the history
  • Loading branch information
willeastcott committed Sep 24, 2024
1 parent 45b2937 commit 20c4dd8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions src/ui/localization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const localizeInit = () => {
"scene.new": "New",
"scene.open": "Open",
"scene.import": "Import",
"scene.load-all-ply-data": "Load all PLY data",
"scene.load-all-data": "Load all PLY data",
"scene.save": "Save",
"scene.save-as": "Save As...",
"scene.export": "Export",
Expand All @@ -36,7 +36,7 @@ export const localizeInit = () => {
"help": "Help",
"help.shortcuts": "Keyboard Shortcuts",
"help.user-guide": "User Guide",
"help.log-an-issue": "Log an Issue",
"help.log-issue": "Log an Issue",
"help.github-repo": "GitHub Repo",
"help.discord": "Discord Server",
"help.forum": "Forum",
Expand Down Expand Up @@ -115,7 +115,7 @@ export const localizeInit = () => {
"scene.new": "新規作成",
"scene.open": "開く",
"scene.import": "インポート",
"scene.load-all-ply-data": "全ての PLY データを読み込む",
"scene.load-all-data": "全ての PLY データを読み込む",
"scene.save": "保存",
"scene.save-as": "名前を付けて保存",
"scene.export": "エクスポート",
Expand All @@ -136,7 +136,7 @@ export const localizeInit = () => {
"help": "ヘルプ",
"help.shortcuts": "キーボードショートカット",
"help.user-guide": "ユーザーガイド",
"help.log-an-issue": "問題を報告",
"help.log-issue": "問題を報告",
"help.github-repo": "GitHub リポジトリ",
"help.discord": "Discord サーバー",
"help.forum": "フォーラム",
Expand Down Expand Up @@ -215,7 +215,7 @@ export const localizeInit = () => {
"scene.new": "새로 만들기",
"scene.open": "열기",
"scene.import": "가져오기",
"scene.load-all-ply-data": "모든 PLY 데이터 불러오기",
"scene.load-all-data": "모든 PLY 데이터 불러오기",
"scene.save": "저장",
"scene.save-as": "다른 이름으로 저장...",
"scene.export": "내보내기",
Expand All @@ -236,7 +236,7 @@ export const localizeInit = () => {
"help": "도움말",
"help.shortcuts": "키보드 단축키",
"help.user-guide": "사용자 가이드",
"help.log-an-issue": "문제 보고",
"help.log-issue": "문제 보고",
"help.github-repo": "GitHub 저장소",
"help.discord": "Discord 서버",
"help.forum": "포럼",
Expand Down Expand Up @@ -315,7 +315,7 @@ export const localizeInit = () => {
"scene.new": "新建",
"scene.open": "打开",
"scene.import": "导入",
"scene.load-all-ply-data": "加载所有 PLY 数据",
"scene.load-all-data": "加载所有 PLY 数据",
"scene.save": "保存",
"scene.save-as": "另存为...",
"scene.export": "导出",
Expand All @@ -336,7 +336,7 @@ export const localizeInit = () => {
"help": "帮助",
"help.shortcuts": "键盘快捷键",
"help.user-guide": "用户指南",
"help.log-an-issue": "报告问题",
"help.log-issue": "报告问题",
"help.github-repo": "GitHub 仓库",
"help.discord": "Discord 服务器",
"help.forum": "论坛",
Expand Down
4 changes: 2 additions & 2 deletions src/ui/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class Menu extends Container {
}, {
// separator
}, {
text: localize('scene.load-all-ply-data'),
text: localize('scene.load-all-data'),
extra: allDataToggle,
onSelect: () => {
events.fire('toggleAllData');
Expand Down Expand Up @@ -210,7 +210,7 @@ class Menu extends Container {
icon: 'E232',
onSelect: () => window.open('https://github.com/playcanvas/supersplat/blob/main/docs/index.md#supersplat-user-guide', '_blank').focus()
}, {
text: localize('help.log-an-issue'),
text: localize('help.log-issue'),
icon: 'E336',
onSelect: () => window.open('https://github.com/playcanvas/supersplat/issues', '_blank').focus()
}, {
Expand Down

0 comments on commit 20c4dd8

Please sign in to comment.