Skip to content

Commit 646bde3

Browse files
committed
Updated file menu copy
1 parent a038435 commit 646bde3

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

src/components/application-menu/application-menu.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<ul class="file-menu">
3737
<li>
3838
<button
39-
v-t="'newSong'"
39+
v-t="'new'"
4040
type="button"
4141
class="menu-button"
4242
@click="handleReset()"
@@ -46,7 +46,7 @@
4646
<!-- applications to hook into their behaviour -->
4747
<li>
4848
<button
49-
v-t="'loadSong'"
49+
v-t="'open'"
5050
type="button"
5151
class="menu-button"
5252
@click="handleLoad()"
@@ -55,15 +55,15 @@
5555
</li>
5656
<li>
5757
<button
58-
v-t="'saveSong'"
58+
v-t="'save'"
5959
type="button"
6060
class="menu-button"
6161
@click="handleSave( true )"
6262
></button>
6363
</li>
6464
<li>
6565
<button
66-
v-t="'saveSongAs'"
66+
v-t="'saveAs'"
6767
type="button"
6868
class="menu-button"
6969
@click="handleSave( false )"
@@ -72,15 +72,15 @@
7272
</li>
7373
<li>
7474
<button
75-
v-t="'exportSong'"
75+
v-t="'exportProject'"
7676
type="button"
7777
class="menu-button"
7878
@click="handleExport()"
7979
></button>
8080
</li>
8181
<li>
8282
<button
83-
v-t="'exportAsMidi'"
83+
v-t="'exportMidi'"
8484
type="button"
8585
class="menu-button"
8686
@click="handleMidiExport()"

src/components/application-menu/messages.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
"en-US": {
33
"title": "efflux",
44
"file": "File",
5-
"loadSong": "Load song",
6-
"saveSong": "Save song",
7-
"saveSongAs": "Save song as",
8-
"newSong": "New song",
5+
"new": "New",
6+
"open": "Open",
7+
"save": "Save",
8+
"saveAs": "Save as",
99
"instruments": "Instruments",
1010
"instrumentEditor": "Instrument editor",
1111
"sampleEditor": "Sample editor",
@@ -20,8 +20,8 @@
2020
"recordOutput": "Record output",
2121
"stopRecording": "Stop recording",
2222
"emptySong": "Song has no pattern content!",
23-
"exportSong": "Export song",
24-
"exportAsMidi": "Export MIDI",
23+
"exportProject": "Export project",
24+
"exportMidi": "Export MIDI",
2525
"songExported": "Song \"{song}\" exported to your download folder",
2626
"errorSongExport": "Could not export song."
2727
}

0 commit comments

Comments
 (0)