Skip to content

Commit e2ca93e

Browse files
committed
add missing files
1 parent dab6947 commit e2ca93e

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

srv/src/main/java/my/bookshop/MessageKeys.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
public class MessageKeys {
44

5+
public static final String QUANTITY_REQUIRE_MINIMUM = "quantity.require.minimum";
56
public static final String BOOK_REQUIRE_STOCK = "book.require.stock";
67
public static final String BOOK_ADDED_ORDER = "book.added.order";
78
public static final String BOOK_MISSING = "book.missing";

srv/src/main/resources/messages.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
quantity.require.minimum = The specified quantity is smaller than 1
12
book.require.stock = Not enough books on stock (only {0} left)
23
book.added.order = Book successfully added to order
34
book.missing = Book does not exist

srv/src/main/resources/messages_de.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
quantity.require.minimum = Die eingetragene Anzahl ist kleiner als 1
12
book.require.stock = Nicht genügend Bücher auf Vorrat (nur {0} übrig)
23
book.added.order = Das Buch wurde der Bestellung erfolgreich hinzugefügt
34
book.missing = Das Buch existiert nicht

0 commit comments

Comments
 (0)