forked from P1otrulla/ptrlTimeShop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
26 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
rootProject.name = "dreamTimeShop" | ||
rootProject.name = "dream-timeshop" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/main/java/cc/dreamcode/timeshop/config/ConfigService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 13 additions & 13 deletions
26
src/main/java/cc/dreamcode/timeshop/config/MessagesConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,65 @@ | ||
package cc.dreamcode.timeshop.config; | ||
|
||
import cc.dreamcode.notice.NoticeType; | ||
import cc.dreamcode.notice.bukkit.BukkitNotice; | ||
import cc.dreamcode.notice.minecraft.MinecraftNoticeType; | ||
import cc.dreamcode.notice.minecraft.bukkit.BukkitNotice; | ||
import eu.okaeri.configs.OkaeriConfig; | ||
import eu.okaeri.configs.annotation.Comment; | ||
|
||
public final class MessagesConfiguration extends OkaeriConfig { | ||
|
||
@Comment({ "", "# Ustaw wiadomości:" }) | ||
public BukkitNotice notEnoughtCurrency = new BukkitNotice( | ||
NoticeType.CHAT, | ||
MinecraftNoticeType.CHAT, | ||
"&cNie posiadasz wystarczającej ilości monet! &7(Potrzebujesz jeszcze: {MISSING} {PRURAL})" | ||
); | ||
|
||
public BukkitNotice productBought = new BukkitNotice( | ||
NoticeType.CHAT, | ||
MinecraftNoticeType.CHAT, | ||
"&aKupiłeś produkt &f{PRODUCT}&a za &f{PRICE} &amonet!" | ||
); | ||
|
||
public BukkitNotice noPermission = new BukkitNotice( | ||
NoticeType.CHAT, | ||
MinecraftNoticeType.CHAT, | ||
"&cNie posiadasz uprawnień do tej komendy! &7({PERMISSION})" | ||
); | ||
|
||
public BukkitNotice invalidUsage = new BukkitNotice( | ||
NoticeType.CHAT, | ||
MinecraftNoticeType.CHAT, | ||
"&6Poprawne użycie: &c{USAGE}" | ||
); | ||
|
||
public BukkitNotice invalidUsageHead = new BukkitNotice( | ||
NoticeType.CHAT, | ||
MinecraftNoticeType.CHAT, | ||
"&6Poprawne użycie:" | ||
); | ||
|
||
public BukkitNotice invalidUsageBody = new BukkitNotice( | ||
NoticeType.CHAT, | ||
MinecraftNoticeType.CHAT, | ||
"&8» &c{USAGE}" | ||
); | ||
|
||
public BukkitNotice invalidCurrency = new BukkitNotice( | ||
NoticeType.CHAT, | ||
MinecraftNoticeType.CHAT, | ||
"&cPodana ilość monet jest nieprawidłowa! &7(<=0)" | ||
); | ||
|
||
public BukkitNotice reload = new BukkitNotice( | ||
NoticeType.CHAT, | ||
MinecraftNoticeType.CHAT, | ||
"&aPomyślnie przeładowano konfigurację!" | ||
); | ||
|
||
public BukkitNotice addCurrency = new BukkitNotice( | ||
NoticeType.CHAT, | ||
MinecraftNoticeType.CHAT, | ||
"&aPomyślnie dodano &f{AMOUNT} &amonet, graczowi: &f{USER}!" | ||
); | ||
|
||
public BukkitNotice removeCurrency = new BukkitNotice( | ||
NoticeType.CHAT, | ||
MinecraftNoticeType.CHAT, | ||
"&aPomyślnie usunięto &f{AMOUNT} &amonet, graczowi: &f{USER}!" | ||
); | ||
|
||
public BukkitNotice setCurrency = new BukkitNotice( | ||
NoticeType.CHAT, | ||
MinecraftNoticeType.CHAT, | ||
"&aPomyślnie ustawiono &f{AMOUNT} &amonet, graczowi: &f{USER}!" | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters