Skip to content

Commit

Permalink
Updated file menu copy
Browse files Browse the repository at this point in the history
  • Loading branch information
igorski committed Jan 7, 2022
1 parent a038435 commit 646bde3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions src/components/application-menu/application-menu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<ul class="file-menu">
<li>
<button
v-t="'newSong'"
v-t="'new'"
type="button"
class="menu-button"
@click="handleReset()"
Expand All @@ -46,7 +46,7 @@
<!-- applications to hook into their behaviour -->
<li>
<button
v-t="'loadSong'"
v-t="'open'"
type="button"
class="menu-button"
@click="handleLoad()"
Expand All @@ -55,15 +55,15 @@
</li>
<li>
<button
v-t="'saveSong'"
v-t="'save'"
type="button"
class="menu-button"
@click="handleSave( true )"
></button>
</li>
<li>
<button
v-t="'saveSongAs'"
v-t="'saveAs'"
type="button"
class="menu-button"
@click="handleSave( false )"
Expand All @@ -72,15 +72,15 @@
</li>
<li>
<button
v-t="'exportSong'"
v-t="'exportProject'"
type="button"
class="menu-button"
@click="handleExport()"
></button>
</li>
<li>
<button
v-t="'exportAsMidi'"
v-t="'exportMidi'"
type="button"
class="menu-button"
@click="handleMidiExport()"
Expand Down
12 changes: 6 additions & 6 deletions src/components/application-menu/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"en-US": {
"title": "efflux",
"file": "File",
"loadSong": "Load song",
"saveSong": "Save song",
"saveSongAs": "Save song as",
"newSong": "New song",
"new": "New",
"open": "Open",
"save": "Save",
"saveAs": "Save as",
"instruments": "Instruments",
"instrumentEditor": "Instrument editor",
"sampleEditor": "Sample editor",
Expand All @@ -20,8 +20,8 @@
"recordOutput": "Record output",
"stopRecording": "Stop recording",
"emptySong": "Song has no pattern content!",
"exportSong": "Export song",
"exportAsMidi": "Export MIDI",
"exportProject": "Export project",
"exportMidi": "Export MIDI",
"songExported": "Song \"{song}\" exported to your download folder",
"errorSongExport": "Could not export song."
}
Expand Down

0 comments on commit 646bde3

Please sign in to comment.