Skip to content

Commit

Permalink
Prepare for moving undo support to this lib
Browse files Browse the repository at this point in the history
  • Loading branch information
mhschmieder committed Mar 16, 2022
1 parent 95db5d4 commit e8837d0
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@

<build>
<sourceDirectory>src/main/java</sourceDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
11 changes: 11 additions & 0 deletions src/main/resources/properties/MsliUndoableActions.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# The file MsliUndoableActions.properties is the default shared resource bundle
# for undoable actions.
#
# As Meyer Sound primarily develops in the USA, American English is the default.
#
# This file may be partially overridden with variants for UK, Canada, etc.
undoableAction.cut.presentationName = Cut
undoableAction.delete.presentationName = Delete
undoableAction.move.presentationName = Move
undoableAction.paste.presentationName = Paste
undoableAction.rotate.presentationName = Rotate
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# The file MsliUndoableActions_sp.properties is the shared resource bundle
# for undoable actions, for all Spanish-speaking locales. It overrides most,
# if not all, of the resources in the default bundle, and in turn may be
# overridden by country-specific variants.
undoableAction.cut.presentationName = corte
undoableAction.delete.presentationName = suprima
undoableAction.move.presentationName = movimiento
undoableAction.paste.presentationName = pegue
undoableAction.rotate.presentationName = rotación

0 comments on commit e8837d0

Please sign in to comment.