File tree Expand file tree Collapse file tree 3 files changed +0
-44
lines changed
eternalcore-core/src/main/java/com/eternalcode/core/translation Expand file tree Collapse file tree 3 files changed +0
-44
lines changed Original file line number Diff line number Diff line change @@ -174,12 +174,6 @@ interface ItemSection {
174
174
Notice enchantedMessageBy ();
175
175
}
176
176
177
- interface LanguageSection {
178
- Notice languageChanged ();
179
-
180
- List <ConfigItem > decorationItems ();
181
- }
182
-
183
177
interface ContainerSection {
184
178
Notice genericContainerOpened ();
185
179
Notice genericContainerOpenedBy ();
@@ -241,8 +235,6 @@ interface ContainerSection {
241
235
ItemEditMessages itemEdit ();
242
236
// time and weather
243
237
TimeAndWeatherMessages timeAndWeather ();
244
- // language section
245
- LanguageSection language ();
246
238
// container section
247
239
ContainerSection container ();
248
240
// auto message section
Original file line number Diff line number Diff line change @@ -539,24 +539,6 @@ public static class ENContainerSection extends OkaeriConfig implements Container
539
539
public Notice genericContainerOpenedFor = Notice .chat ("<green>► <white>The specified container has been opened for <green>{PLAYER}<white>!" );
540
540
}
541
541
542
- @ Comment ({" " , "# Information sent, when the language is changed to English" })
543
- public ENLanguageSection language = new ENLanguageSection ();
544
-
545
- @ Getter
546
- public static class ENLanguageSection extends OkaeriConfig implements LanguageSection {
547
- public Notice languageChanged = Notice .chat ("<green>► <white>Language changed to <green>English<white>!" );
548
-
549
- public List <ConfigItem > decorationItems = List .of (
550
- ConfigItem .builder ()
551
- .withMaterial (Material .SUNFLOWER )
552
- .withGlow (true )
553
- .withSlot (40 )
554
- .withName ("&7Our discord" )
555
- .withLore (Collections .singletonList ("&8» &6https://discord.gg/TRbDApaJaJ" ))
556
- .build ()
557
- );
558
- }
559
-
560
542
@ Comment ({" " , "# Set's max players on the server, the messages for the /setslot command" })
561
543
public ENSetSlotMessages setSlot = new ENSetSlotMessages ();
562
544
Original file line number Diff line number Diff line change @@ -564,24 +564,6 @@ public static class PLContainerSection extends OkaeriConfig implements Container
564
564
public Notice genericContainerOpenedFor = Notice .chat ("<green>► <white>Otwarto kontener dla gracza <green>{PLAYER}<white>!" );
565
565
}
566
566
567
- @ Comment ({" " , "# Informacja zwrotna, gdy gracz zmienia język pluginu na polski" })
568
- public PLLanguageSection language = new PLLanguageSection ();
569
-
570
- @ Getter
571
- public static class PLLanguageSection extends OkaeriConfig implements LanguageSection {
572
- public Notice languageChanged = Notice .chat ("<green>► <white>Zmieniono język na <green>Polski<white>!" );
573
-
574
- public List <ConfigItem > decorationItems = List .of (
575
- ConfigItem .builder ()
576
- .withMaterial (Material .SUNFLOWER )
577
- .withGlow (true )
578
- .withSlot (40 )
579
- .withName ("&7Nasz discord" )
580
- .withLore (Collections .singletonList ("&8» &6https://discord.gg/TRbDApaJaJ" ))
581
- .build ()
582
- );
583
- }
584
-
585
567
@ Comment ({" " , "# Ta sekcja odpowiada za wiadomości dotyczące pojemnosci serwera" })
586
568
public PLSetSlotMessages setSlot = new PLSetSlotMessages ();
587
569
You can’t perform that action at this time.
0 commit comments