From 599ff8365e6dfe8901d956ab69edb769ab380815 Mon Sep 17 00:00:00 2001 From: apathy Date: Sun, 13 Jul 2025 19:34:03 +0300 Subject: [PATCH 1/5] add and configured CarbonChat(check docker) --- .dockerignore | 3 + .gitignore | 3 + Dockerfile | 3 + src/plugins/CarbonChat/channels/global.conf | 47 +++++ src/plugins/CarbonChat/channels/locate.conf | 49 ++++++ .../CarbonChat/channels/partychat.conf | 48 ++++++ src/plugins/CarbonChat/command-settings.conf | 128 ++++++++++++++ src/plugins/CarbonChat/config.conf | 137 +++++++++++++++ .../locale/messages-en_US.properties | 162 ++++++++++++++++++ .../locale/messages-ja_JP.properties | 160 +++++++++++++++++ .../locale/messages-nl_NL.properties | 82 +++++++++ .../locale/messages-tr_TR.properties | 120 +++++++++++++ .../locale/messages-zh_CN.properties | 160 +++++++++++++++++ .../locale/messages-zh_TW.properties | 160 +++++++++++++++++ src/plugins/MiniPlaceholders-Paper-2.3.0.jar | 3 + src/plugins/PlaceholderAPI-2.11.6.jar | 3 + src/plugins/PlaceholderAPI/config.yml | 18 ++ .../expansions/Expansion-luckperms.jar | 3 + .../carbonchat-paper-3.0.0-beta.27.jar | 3 + 19 files changed, 1292 insertions(+) create mode 100644 src/plugins/CarbonChat/channels/global.conf create mode 100644 src/plugins/CarbonChat/channels/locate.conf create mode 100644 src/plugins/CarbonChat/channels/partychat.conf create mode 100644 src/plugins/CarbonChat/command-settings.conf create mode 100644 src/plugins/CarbonChat/config.conf create mode 100644 src/plugins/CarbonChat/locale/messages-en_US.properties create mode 100644 src/plugins/CarbonChat/locale/messages-ja_JP.properties create mode 100644 src/plugins/CarbonChat/locale/messages-nl_NL.properties create mode 100644 src/plugins/CarbonChat/locale/messages-tr_TR.properties create mode 100644 src/plugins/CarbonChat/locale/messages-zh_CN.properties create mode 100644 src/plugins/CarbonChat/locale/messages-zh_TW.properties create mode 100644 src/plugins/MiniPlaceholders-Paper-2.3.0.jar create mode 100644 src/plugins/PlaceholderAPI-2.11.6.jar create mode 100644 src/plugins/PlaceholderAPI/config.yml create mode 100644 src/plugins/PlaceholderAPI/expansions/Expansion-luckperms.jar create mode 100644 src/plugins/carbonchat-paper-3.0.0-beta.27.jar diff --git a/.dockerignore b/.dockerignore index 5a359f3..aa1a29c 100644 --- a/.dockerignore +++ b/.dockerignore @@ -24,3 +24,6 @@ src/plugins/luckperms/libs src/plugins/PlasmoVoice/voice_mutes.json src/plugins/SuperVanish/data.yml + +src/plugins/CarbonChat/users +src/plugins/CarbonChat/libraries \ No newline at end of file diff --git a/.gitignore b/.gitignore index 0d5e9a0..22eacaf 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,6 @@ src/plugins/LuckPerms/libs src/plugins/PlasmoVoice/voice_mutes.json src/plugins/SuperVanish/data.yml + +src/plugins/CarbonChat/users +src/plugins/CarbonChat/libraries \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index a1effeb..b55d6fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,6 +34,9 @@ RUN mkdir -p ${DATA_PATH}/SuperVanish && \ touch ${DATA_PATH}/SuperVanish/data.yml && \ ln -sf ${DATA_PATH}/SuperVanish/data.yml \ ${CONFIG_PATH}/plugins/SuperVanish/data.yml +RUN mkdir -p ${DATA_PATH}/CarbonChat && \ + ln -sf ${DATA_PATH}/CarbonChat/users \ + ${CONFIG_PATH}/plugins/CarbonChat/users VOLUME ${DATA_PATH} diff --git a/src/plugins/CarbonChat/channels/global.conf b/src/plugins/CarbonChat/channels/global.conf new file mode 100644 index 0000000..48676ca --- /dev/null +++ b/src/plugins/CarbonChat/channels/global.conf @@ -0,0 +1,47 @@ +# The channel's key, used to track the channel. +# You only need to change the second part of the key. "global" by default. +# The value is what's used in commands, this is probably what you want to change. +key="carbon:global" +# The chat formats for this channel. +format { + # Basic chat formats. + # The "default_format" format is the main one you want to edit. + # The "console" format is what's shown to console. + # The "discord" format is what's shown to supported discord integrations. + # If PlaceholderAPI is installed, PAPI placeholders (with %) are supported. + # If MiniPlaceholders is installed, its placeholders (with <>) are supported. + # The keys are group names, the values are chat formats (MiniMessage). + # For example: + # basic { + # default_format="<> " + # vip="[VIP] <> " + # admin="[Prefix] : " + # discord="" + # } + # + basic { + "default_format"="[G] %luckperms_prefix%: " + discord="" + console="[G] : " + } + # Per-Language chat formats. + # You can safely leave this section empty if you don't want to use this feature. + # Each locale section can be configured in the same way as the above 'basic' section. + # Will fall back to the 'basic' section if no format was found for the player's locale. + locales { + "ru_RU" {} + } +} +# Messages will be sent in this channel if they start with this prefix. (Leave empty/blank to disable quick prefix for this channel) +quick-prefix="!" +should-register-commands=true +command-aliases=[] +# The distance players must be within to see each other's messages. +# A value of '0' requires that both players are in the same world. +# On velocity, '0' requires that both players are in the same server. +radius=-1 +# If true, players will be able to see if they're not sending messages to anyone +# because they're out of range from the radius. +empty-radius-recipients-message=true +cooldowns {} +cooldown=-1 diff --git a/src/plugins/CarbonChat/channels/locate.conf b/src/plugins/CarbonChat/channels/locate.conf new file mode 100644 index 0000000..758173c --- /dev/null +++ b/src/plugins/CarbonChat/channels/locate.conf @@ -0,0 +1,49 @@ +# The channel's key, used to track the channel. +# You only need to change the second part of the key. "global" by default. +# The value is what's used in commands, this is probably what you want to change. +key="carbon:locate" +# The chat formats for this channel. +format { + # Basic chat formats. + # The "default_format" format is the main one you want to edit. + # The "console" format is what's shown to console. + # The "discord" format is what's shown to supported discord integrations. + # If PlaceholderAPI is installed, PAPI placeholders (with %) are supported. + # If MiniPlaceholders is installed, its placeholders (with <>) are supported. + # The keys are group names, the values are chat formats (MiniMessage). + # For example: + # basic { + # default_format="<> " + # vip="[VIP] <> " + # admin="[Prefix] : " + # discord="" + # } + # + basic { + "default_format"="[L] %luckperms_prefix%: " + discord="" + console="[] : " + } + # Per-Language chat formats. + # You can safely leave this section empty if you don't want to use this feature. + # Each locale section can be configured in the same way as the above 'basic' section. + # Will fall back to the 'basic' section if no format was found for the player's locale. + locales { + "ru_RU" {} + } +} +# Messages will be sent in this channel if they start with this prefix. (Leave empty/blank to disable quick prefix for this channel) +quick-prefix="" +should-register-commands=true +command-aliases=[ + l +] +# The distance players must be within to see each other's messages. +# A value of '0' requires that both players are in the same world. +# On velocity, '0' requires that both players are in the same server. +radius=200 +# If true, players will be able to see if they're not sending messages to anyone +# because they're out of range from the radius. +empty-radius-recipients-message=false +cooldowns {} +cooldown=-1 diff --git a/src/plugins/CarbonChat/channels/partychat.conf b/src/plugins/CarbonChat/channels/partychat.conf new file mode 100644 index 0000000..b731152 --- /dev/null +++ b/src/plugins/CarbonChat/channels/partychat.conf @@ -0,0 +1,48 @@ +# The channel's key, used to track the channel. +# You only need to change the second part of the key. "global" by default. +# The value is what's used in commands, this is probably what you want to change. +key="carbon:partychat" +# The chat formats for this channel. +format { + # Basic chat formats. + # The "default_format" format is the main one you want to edit. + # The "console" format is what's shown to console. + # The "discord" format is what's shown to supported discord integrations. + # If PlaceholderAPI is installed, PAPI placeholders (with %) are supported. + # If MiniPlaceholders is installed, its placeholders (with <>) are supported. + # The keys are group names, the values are chat formats (MiniMessage). + # For example: + # basic { + # default_format="<> " + # vip="[VIP] <> " + # admin="[Prefix] : " + # discord="" + # } + # + basic { + "default_format"="(party: ) : " + console="[party: ] : " + } + # Per-Language chat formats. + # You can safely leave this section empty if you don't want to use this feature. + # Each locale section can be configured in the same way as the above 'basic' section. + # Will fall back to the 'basic' section if no format was found for the player's locale. + locales { + "ru_RU" {} + } +} +# Messages will be sent in this channel if they start with this prefix. (Leave empty/blank to disable quick prefix for this channel) +quick-prefix="" +should-register-commands=true +command-aliases=[ + pc +] +# The distance players must be within to see each other's messages. +# A value of '0' requires that both players are in the same world. +# On velocity, '0' requires that both players are in the same server. +radius=-1 +# If true, players will be able to see if they're not sending messages to anyone +# because they're out of range from the radius. +empty-radius-recipients-message=true +cooldowns {} +cooldown=-1 diff --git a/src/plugins/CarbonChat/command-settings.conf b/src/plugins/CarbonChat/command-settings.conf new file mode 100644 index 0000000..804dfb5 --- /dev/null +++ b/src/plugins/CarbonChat/command-settings.conf @@ -0,0 +1,128 @@ +settings { + "carbon:help" { + enabled=true + name=carbon + aliases=[] + } + "carbon:reload" { + enabled=true + name=carbon + aliases=[] + } + "carbon:updateusername" { + enabled=true + name=updateusername + aliases=[ + updatename + ] + } + "carbon:party" { + enabled=true + name=party + aliases=[ + group + ] + } + "carbon:reply" { + enabled=true + name=reply + aliases=[ + r + ] + } + "carbon:join" { + enabled=true + name=join + aliases=[] + } + "carbon:ignorelist" { + enabled=true + name=ignorelist + aliases=[ + listignores + ] + } + "carbon:unmute" { + enabled=true + name=unmute + aliases=[] + } + "carbon:ignore" { + enabled=true + name=ignore + aliases=[ + block + ] + } + "carbon:whisper" { + enabled=true + name=whisper + aliases=[ + w, + message, + msg, + m, + tell + ] + } + "carbon:continue" { + enabled=true + name=continue + aliases=[ + c + ] + } + "carbon:togglemsg" { + enabled=true + name=togglemsg + aliases=[ + togglepm + ] + } + "carbon:leave" { + enabled=true + name=leave + aliases=[] + } + "carbon:clearchat" { + enabled=true + name=clearchat + aliases=[ + chatclear, + cc + ] + } + "carbon:debug" { + enabled=true + name=carbondebug + aliases=[ + cdebug + ] + } + "carbon:muteinfo" { + enabled=true + name=muteinfo + aliases=[ + muted + ] + } + "carbon:unignore" { + enabled=true + name=unignore + aliases=[ + unblock + ] + } + "carbon:mute" { + enabled=true + name=mute + aliases=[] + } + "carbon:nickname" { + enabled=true + name=nickname + aliases=[ + nick + ] + } +} diff --git a/src/plugins/CarbonChat/config.conf b/src/plugins/CarbonChat/config.conf new file mode 100644 index 0000000..3788b05 --- /dev/null +++ b/src/plugins/CarbonChat/config.conf @@ -0,0 +1,137 @@ +# Used internally to track changes to the config. Do not edit manually! +config-version=1 +# The default locale for plugin messages. +default-locale="en_US" +# The default channel that new players will be in when they join. +# If the channel is not found or the player cannot use the channel, they will speak in basic non-channel chat. +default-channel="carbon:locate" +# Returns you to the default channel when you use a channel's command while you have that channel active. +return-to-default-channel=false +# The service that will be used to store and load player information. +# One of: JSON, H2, MYSQL, PSQL +# Note: If you choose MYSQL or PSQL make sure you configure the "database-settings" section of this file! +storage-type=JSON +# When "storage-type" is set to MYSQL or PSQL, this section configures the database connection. +# If JSON or H2 storage is used, this section can be ignored. +database-settings { + # JDBC URL. Suggested defaults for each DB: + # MySQL: jdbc:mysql://host:3306/DB + # MariaDB: jdbc:mariadb://host:3306/DB + # PostgreSQL: jdbc:postgresql://host:5432/database + url="jdbc:mysql://localhost:3306/carbon" + # The connection username. + username=username + # The connection password. + password=password + # Settings for the connection pool. This is an advanced configuration that most users won't need to touch. + connection-pool { + maximum-pool-size=8 + minimum-idle=8 + maximum-lifetime=1800000 + keepalive-time=0 + connection-timeout=30000 + } +} +# Settings for cross-server messaging +messaging-settings { + # Whether cross-server messaging is enabled + enabled=false + # One of: RABBITMQ, NATS, REDIS + broker-type=NONE + url="127.0.0.1" + port=5672 + # RabbitMQ VHost + vhost="/" + # NATS credentials file + credentials-file="" + # RabbitMQ username + username=username + # RabbitMQ and Redis password + password=password +} +nickname-settings { + # Whether Carbon's nickname management should be used. Disable this if you wish to have another plugin manage nicknames. + use-carbon-nicknames=true + # Paper only. Updates the player's display name in the tab list to match their nickname. + update-tab-list=true + # Minimum number of characters in nickname (excluding formatting). + min-length=3 + # Maximum number of characters in nickname (excluding formatting). + max-length=16 + black-list=[ + notch, + admin + ] + # Regex pattern nicknames must match in order to be applied, can be bypassed with the permission 'carbon.nickname.filter'. + filter="^[a-zA-Z0-9_]*$" + # Format used when displaying nicknames. + format="@'>~" + # Whether to skip applying 'format' when a nickname matches a players username, only differing in decoration. + skip-format-when-name-matches=true +} +# Plugin-wide custom placeholders. +# These will be parsed in all messages rendered and sent by Carbon. +# This includes chat, command feedback, and others. +# Make sure to close your tags so they do not bleed into other formats. +# Only a single pass is done so custom placeholders will not work within each other. +custom-placeholders {} +# The suggestions shown when using the TAB key in chat. +custom-chat-suggestions=[] +# The placeholders replaced in chat messages, this WILL work with chat previews. +chat-placeholders {} +# Basic regex based chat filter. +chat-filter {} +# Various settings related to pinging players in channels. +ping-settings { + # The color your name will be when another player mentions you. + highlight-text-color=yellow + prefix="@" + play-sound=false + name="minecraft:block.anvil.use" + source=master + volume=1 + pitch=1 +} +party-chat { + # Whether party chat is enabled + enabled=true + expire-invites-after-seconds=45 +} +# Sound for receiving a direct message +message-sound { + name="minecraft:entity.experience_orb.pickup" + source=master + volume=1 + pitch=1 +} +# Settings for the clear chat command +clear-chat-settings { + # The message that will be sent to each player. + message="" + # The number of times the message will be sent to each player. + iterations=50 + # The message to be sent after chat is cleared. + broadcast="Chat has been cleared by ." +} +# Settings for integrations with other plugins/mods. Settings only apply when the relevant plugin/mod is present. +integrations { + factionsuuid { + enabled=false + faction-channel=false + alliance-channel=false + truce-channel=false + } + mcmmo { + enabled=false + # You will likely want to disable Carbon's built-in party system above when using mcMMO party chat. + party-channel=false + } + towny { + enabled=false + town-channel=false + nation-channel=false + alliance-channel=false + } +} +# Whether Carbon should check for updates using the GitHub API on startup. +update-checker=true diff --git a/src/plugins/CarbonChat/locale/messages-en_US.properties b/src/plugins/CarbonChat/locale/messages-en_US.properties new file mode 100644 index 0000000..4c44997 --- /dev/null +++ b/src/plugins/CarbonChat/locale/messages-en_US.properties @@ -0,0 +1,162 @@ +#Sun Jul 13 18:00:32 EEST 2025 +channel.already_left=You have already left this channel +channel.change=You are now messaging +channel.cooldown=You may use chat again in seconds\! +channel.joined=You have rejoined the channel +channel.left=You have left the channel +channel.no_permission=You do not have permission to use this channel +channel.not_found=Channel not found +channel.not_left=You have not left this channel +channel.radius.empty_recipients=You're not close enough to anyone to send a message +command.clearchat.description=Clears the chat window for all players. +command.continue.argument.message=The message to send. +command.continue.description=Sends a message to the last person you messaged. +command.debug.argument.player=The player to check the groups of. +command.debug.description=Shows the permission groups of players. +command.help.argument.query=The search query. +command.help.description=Carbon command list. +command.help.misc.arguments=Arguments +command.help.misc.available_commands=Available Commands +command.help.misc.click_for_next_page=Click for next page +command.help.misc.click_for_previous_page=Click for previous page +command.help.misc.click_to_show_help=Click to show help for this command +command.help.misc.command=Command +command.help.misc.description=Description +command.help.misc.help=Help +command.help.misc.no_description=No description +command.help.misc.no_results_for_query=No results for query +command.help.misc.optional=Optional +command.help.misc.page_out_of_range=Error\: Page is not in range. Must be in range [1, ] +command.help.misc.showing_results_for_query=Showing search results for query +command.ignore.argument.player=The name of the player to ignore. +command.ignore.argument.uuid=The UUID of the player to ignore. +command.ignore.description=Hides all incoming messages from ignored players. +command.ignorelist.description=Displays a paginated list of who you are ignoring. +command.ignorelist.none_ignored=You are not ignoring any players. +command.ignorelist.pagination_element=- '>'>[unignore] +command.ignorelist.pagination_header=Ignored players +command.join.description=Join a channel you have previously left. +command.leave.description=Leave a channel that you currently have access to. +command.mute.argument.player=The name of the player to mute. +command.mute.argument.uuid=The UUID of the player to mute. +command.mute.description=Mutes players, preventing them from using chat or whispering other players. +command.muteinfo.argument.player=The name of the player. +command.muteinfo.argument.uuid=The UUID of the player. +command.muteinfo.description=Shows if players are muted or not. +command.nickname.argument.nickname=The nickname to set. +command.nickname.argument.player=The name of the target player. +command.nickname.description=Shows your nickname. +command.nickname.others.description=Shows player nicknames. +command.nickname.others.reset.description=Removes any set nickname from the target. +command.nickname.others.set.description=Sets player nicknames. +command.nickname.reset.description=Removes your nickname. +command.nickname.set.description=Sets your nickname. +command.party.accept.description=Accept party invites. +command.party.already_in_party= is already in your party. +command.party.cannot_disband_multiple_members=Cannot disband party '', you are not the last member. +command.party.cannot_invite_self=You cannot invite yourself. +command.party.create.description=Create a new party. +command.party.created=Successfully created and joined party ''\! +command.party.current_party=You are in party\: +command.party.description=Get info about and see members of your current party. +command.party.disband.description=Disband your current party. +command.party.disbanded=Successfully disbanded party ''. +command.party.invite.description=Invite a player to your party. +command.party.joined_party=Successfully joined party ''\! +command.party.leave.description=Leave your current party. +command.party.left_party=Successfully left party ''. +command.party.must_be_in_party=You must be in a party to use this command. Use '/party create' to create one, or '/party accept' to accept an invite. +command.party.must_leave_current_first=You must leave your current party first. +command.party.must_specify_invite=You must specify whose party invite to accept. +command.party.name_too_long=Party name is too long. +command.party.no_invite_from=You do not have a pending invite from . +command.party.no_pending_invites=You do not have any pending party invites. +command.party.not_in_party=You are not in a party. Use '/party create' to create one, or '/party accept' to accept an invite. +command.party.pagination_element='\:''> - +command.party.pagination_header=Party members\: +command.party.received_invite=Click to accept'>'>You were invited to the party '' by . Click this message to accept. +command.party.sent_invite=Sent party invite to . +command.reload.description=Reloads Carbon's config, channel settings, and translations. Will not load or unload any channels. +command.reply.argument.message=The message to reply with. +command.reply.description=Sends a message to the last player that messaged you. +command.togglemsg.description=Allows and disallows other players from mesaging you. +command.unignore.argument.player=The name of the player to unignore. +command.unignore.argument.uuid=The UUID of the player to unignore. +command.unignore.description=Stops hiding messages from the specified player. +command.unmute.argument.player=The name of the player to unmute. +command.unmute.argument.uuid=The UUID of the player to unmute. +command.unmute.description=Unmutes players, allowing them to use chat and whisper other players. +command.updateusername.argument.player=The name of the player to update. +command.updateusername.argument.uuid=The uuid of the player to update. +command.updateusername.description=Updates the player's username to match their mojang name. +command.updateusername.fetching=Fetching username... +command.updateusername.notupdated=Unable to fetch username. +command.updateusername.updated=Updated 's username\! +command.whisper.argument.message=The message to send. +command.whisper.argument.player=The name of the player to message. +command.whisper.description=Sends a private message to the specified player. +config.reload.failed=Config failed to reload +config.reload.success=Config reloaded successfully +error.command.argument_parsing=Invalid command argument\: +error.command.command_execution=\n\n Click to copy">'>An internal error occurred while attempting to perform this command. +error.command.command_needs_player=Non-players must provide the player argument to execute this command. +error.command.invalid_player=No player found for input '' +error.command.invalid_sender=Invalid command sender. You must be of type +error.command.invalid_syntax=Invalid command syntax. Correct command syntax is\: / +error.command.no_permission=I'm sorry, but you do not have permission to perform this command.\nPlease contact the server administrators if you believe that this is in error. +ignore.already_ignored=You are already ignoring +ignore.exempt=You cannot ignore +ignore.invalid_target=No target found +ignore.no_longer_ignoring=You are no longer ignoring +ignore.not_ignored=You are not ignoring +ignore.now_ignoring=You are now ignoring +integrations.fuuid.cannot_use_alliance_channel=You must join an alliance to use this channel. +integrations.fuuid.cannot_use_faction_channel=You must join a faction to use this channel. +integrations.fuuid.cannot_use_truce_channel=You must have a truce with another faction to use this channel. +integrations.mcmmo.cannot_use_party_channel=You must join an mcMMO party to use this channel. +integrations.towny.cannot_use_alliance_channel=You must join an alliance to use this channel. +integrations.towny.cannot_use_nation_channel=You must join a nation to use this channel. +integrations.towny.cannot_use_town_channel=You must join a town to use this channel. +mute.alert.players= has been muted +mute.alert.target=You have been muted +mute.cannot_speak=You cannot speak when muted +mute.exempt=That player is exempt from being muted +mute.info.muted= is muted +mute.info.not_muted= is not muted +mute.info.self.muted=You are muted +mute.info.self.not_muted=You are not muted +mute.no_target=No specified player to mute. +mute.spy.prefix=Muted'>M +mute.unmute.alert.players= has been unmuted +mute.unmute.alert.target=You have been unmuted +mute.unmute.no_target=No specified player to unmute. +nickname.error.blacklist=Nickname "" is not allowed. Please choose another name. +nickname.error.character_limit=Nickname "" has exceeded the character limit. Must be set to ~ characters. +nickname.error.filter=Nicknames must be alphanumeric\! +nickname.reset=Your nickname was reset +nickname.reset.others='s nickname was reset +nickname.set=Your nickname has been set to +nickname.set.others=You set 's nickname to +nickname.show=Your nickname is +nickname.show.others='s nickname is +nickname.show.others.unset= does not have a nickname set +nickname.show.unset=You do not have a nickname set +pagination.click_for_next_page=Click for next page +pagination.click_for_previous_page=Click for previous page +pagination.footer=Page / +pagination.page_out_of_range=Page is out of range\! There are only pages. +party.cannot_use_channel=You must join a party to use this channel. +party.player_joined= joined your party. +party.player_left= left your party. +reply.target.missing=You have no-one to reply to +reply.target.self=You cannot whisper to yourself +whisper.console=[] -> [] +whisper.continue.target_missing=You have no one to whisper +whisper.error=Failed to send private message +whisper.from= '>[] -> [You] +whisper.ignored_by_target= is ignoring you +whisper.ignoring_all=You cannot send messages while they are ignored\! +whisper.ignoring_target=You are ignoring +whisper.to= '>'>[You] -> [] +whisper.toggled.off=No longer receiving private messages. +whisper.toggled.on=Now receiving private messages. diff --git a/src/plugins/CarbonChat/locale/messages-ja_JP.properties b/src/plugins/CarbonChat/locale/messages-ja_JP.properties new file mode 100644 index 0000000..574aedc --- /dev/null +++ b/src/plugins/CarbonChat/locale/messages-ja_JP.properties @@ -0,0 +1,160 @@ +#Sun Jul 13 18:00:32 EEST 2025 +channel.already_left=あなたはすでにこのチャンネルから退出しています +channel.change=メッセージを送信中 +channel.joined=チャンネルに再加入しました +channel.left=あなたはチャンネルから退出しました +channel.no_permission=あなたにはこのチャンネルを使用する権限がありません +channel.not_found=チャンネルが見つかりません +channel.not_left=あなたはこのチャンネルから退出していません +channel.radius.empty_recipients=メッセージを送信できる人が近くには誰もいません。 +command.clearchat.description=すべてのプレイヤーのチャットウィンドウをクリアします。 +command.continue.argument.message=送信するメッセージです。 +command.continue.description=最後にメッセージを送った人にメッセージを送信します。 +command.debug.argument.player=プレーヤーのグループをチェックする。 +command.debug.description=プレイヤーの権限グループを表示します。 +command.help.argument.query=検索クエリ。 +command.help.description=Carbonのコマンドリストです。 +command.help.misc.arguments=引数 +command.help.misc.available_commands=利用可能なコマンド一覧 +command.help.misc.click_for_next_page=クリックで次のページへ +command.help.misc.click_for_previous_page=クリックで前のページへ +command.help.misc.click_to_show_help=クリックしてこのコマンドのヘルプを表示 +command.help.misc.command=コマンド +command.help.misc.description=説明 +command.help.misc.help=ヘルプ +command.help.misc.no_description=説明なし +command.help.misc.no_results_for_query=クエリの結果はありません +command.help.misc.optional=オプション +command.help.misc.page_out_of_range=エラー\: ページ は範囲外です。[1, ] の範囲内でなければなりません。 +command.help.misc.showing_results_for_query=クエリの検索結果を表示中 +command.ignore.argument.player=無視するプレーヤーの名前。 +command.ignore.argument.uuid=無視するプレーヤーのUUID。 +command.ignore.description=無視したプレイヤーからのすべてのメッセージを非表示にします。 +command.ignorelist.description=あなたが無視しているプレイヤーのリストをページ順に表示する。 +command.ignorelist.none_ignored=あなたは他のプレイヤーを無視していません。 +command.ignorelist.pagination_element=- ''>''>[unignore] +command.ignorelist.pagination_header=無視したプレイヤー +command.join.description=以前に退出したチャンネルに加入する。 +command.leave.description=現在アクセスしているチャンネルから退出する。 +command.mute.argument.player=ミュートするプレーヤーの名前。 +command.mute.argument.uuid=ミュートするプレーヤーのUUID。 +command.mute.description=プレイヤーをミュートし、チャットや他のプレイヤーへのプライベートメッセージを禁止します。 +command.muteinfo.argument.player=プレイヤーの名前。 +command.muteinfo.argument.uuid=プレイヤーのUUID。 +command.muteinfo.description=プレイヤーがミュートかどうかを表示します。 +command.nickname.argument.nickname=設定するニックネーム。 +command.nickname.argument.player=ターゲットプレイヤーの名前。このフラグがなければ、送信者がターゲットになります。 +command.nickname.description=プレイヤーのニックネームを設定および表示します。 +command.nickname.others.description=プレイヤーのニックネームを表示する。 +command.nickname.others.reset.description=ターゲットから設定されたニックネームを削除する。 +command.nickname.others.set.description=プレイヤーのニックネームを設定する。 +command.nickname.reset.description=あなたのニックネームを削除する。 +command.nickname.set.description=あなたのニックネームを設定する。 +command.party.accept.description=パーティーへの招待を承認する。 +command.party.already_in_party=は既にあなたのパーティーに参加しています。 +command.party.cannot_disband_multiple_members=あなたは最後のメンバーではないため、パーティー「」を解散できません。 +command.party.cannot_invite_self=自分を招待することはできません。 +command.party.create.description=新しいパーティーを作成する。 +command.party.created=パーティー「」の作成と参加に成功しました! +command.party.current_party=あなたが参加しているパーティー\: +command.party.description=現在参加しているパーティーのメンバー情報を確認する。 +command.party.disband.description=現在のパーティーを解散する。 +command.party.disbanded=パーティー「」の解散に成功しました! +command.party.invite.description=プレイヤーをあなたのパーティーに招待する。 +command.party.joined_party=パーティー「」の参加に成功しました! +command.party.leave.description=現在のパーティーから退出する。 +command.party.left_party=パーティー「」の退出に成功しました! +command.party.must_be_in_party=このコマンドを使うには、パーティーに入っていなければなりません。パーティを作成するには「/party create」を、招待を承認するには「/party accept」を使用して下さい。 +command.party.must_leave_current_first=あなたはまず現在のパーティーから退出しなければなりません。 +command.party.must_specify_invite=あなたは誰の招待を承認するか指定しなければなりません。 +command.party.name_too_long=パーティー名が長すぎます。 +command.party.no_invite_from=あなたはからの保留中の招待状はありません。 +command.party.no_pending_invites=あなたには保留中のパーティー招待状はありません。 +command.party.not_in_party=あなたはパーティーに参加していません。パーティを作成するには「/party create」を、招待を承認するには「/party accept」を使用して下さい。 +command.party.pagination_element=''\:''''> - +command.party.pagination_header=パーティーメンバー\: +command.party.received_invite=クリックして承認''>''>あなたはからパーティー「」に招待されました。承認するにはこのメッセージをクリックして下さい。 +command.party.sent_invite=にパーティーの招待状を送信しました。 +command.reload.description=Carbonの設定、チャンネル設定、翻訳をリロードします。チャンネルをロードしたり、アンロードしたりしません。 +command.reply.argument.message=返信するメッセージ。 +command.reply.description=最後にメッセージを送ったプレイヤーにメッセージを送信します。 +command.togglemsg.description=他のプレイヤーからあなたへのメッセージを許可/拒否する。 +command.unignore.argument.player=無視を解除するプレーヤーの名前。 +command.unignore.argument.uuid=無視を解除するプレイヤーのUUID。 +command.unignore.description=指定したプレイヤーからのメッセージの非表示を停止します。 +command.unmute.argument.player=ミュートを解除するプレーヤーの名前。 +command.unmute.argument.uuid=ミュートを解除するプレーヤーのUUID。 +command.unmute.description=プレイヤーのミュートを解除し、チャットや他のプレイヤーへのプライベートメッセージを使用できるようにします。 +command.updateusername.argument.player=更新するプレイヤーの名前。 +command.updateusername.argument.uuid=更新するプレーヤーのuuid。 +command.updateusername.description=プレイヤーのユーザー名をmojangの名前と一致するように更新する。 +command.updateusername.fetching=ユーザー名を取得中... +command.updateusername.notupdated=ユーザー名を取得できません。 +command.updateusername.updated=のユーザー名を更新しました! +command.whisper.argument.message=送信するメッセージ。 +command.whisper.argument.player=メッセージを送信するプレーヤーの名前。 +command.whisper.description=指定したプレーヤーにプライベートメッセージを送信します。 +config.reload.failed=コンフィグのリロードに失敗 +config.reload.success=コンフィグのリロードに成功 +error.command.argument_parsing=無効なコマンド引数: +error.command.command_execution=\n\n クリックしてコピー">>このコマンドの実行中に内部エラーが発生しました。 +error.command.command_needs_player=非プレイヤーがこのコマンドを実行するには、プレーヤーの引数を指定しなければなりません。 +error.command.invalid_player=入力したプレイヤー''''が見つかりません +error.command.invalid_sender=無効なコマンド送信者。 型である必要があります +error.command.invalid_syntax=無効なコマンド構文です。正しいコマンド構文\: / +error.command.no_permission=申し訳ありませんが、このコマンドを実行する権限がありません。これがエラーだと思われる場合は、サーバー管理者にお問い合わせください。 +ignore.already_ignored=あなたは既にを無視しています +ignore.exempt=あなたはを無視する事はできません +ignore.invalid_target=ターゲットが見つかりません +ignore.no_longer_ignoring=あなたはを無視しなくなりました +ignore.not_ignored=あなたはを無視していません +ignore.now_ignoring=あなたはを無視しています +integrations.fuuid.cannot_use_alliance_channel=このチャンネルを利用するには、同盟に参加する必要があります。 +integrations.fuuid.cannot_use_faction_channel=このチャンネルを利用するには、派閥に参加する必要があります。 +integrations.fuuid.cannot_use_truce_channel=このチャンネルを利用するには、他の派閥と休戦する必要があります。 +integrations.mcmmo.cannot_use_party_channel=このチャンネルを利用するには、mcMMOパーティーに参加する必要があります。 +integrations.towny.cannot_use_alliance_channel=このチャンネルを利用するには、同盟に参加する必要があります。 +integrations.towny.cannot_use_nation_channel=このチャンネルを利用するには、国家に参加する必要があります。 +integrations.towny.cannot_use_town_channel=このチャンネルを利用するには、町に参加する必要があります。 +mute.alert.players=がミュートされました +mute.alert.target=あなたはミュートされています +mute.cannot_speak=ミュート時は話すことができません +mute.exempt=そのプレイヤーはミュートされることを免除されています +mute.info.muted=はミュートされています。 +mute.info.not_muted=はミュートされていません +mute.info.self.muted=あなたはミュートされています +mute.info.self.not_muted=あなたはミュートされていません +mute.no_target=ミュートするプレイヤーが指定されていません。 +mute.spy.prefix=ミュートM +mute.unmute.alert.players=のミュートが解除されました +mute.unmute.alert.target=あなたのミュートが解除されました +mute.unmute.no_target=ミュート解除するプレイヤーが指定されていません。 +nickname.error.blacklist=ニックネーム「」は使用できません。他の名前を入力して下さい。 +nickname.error.character_limit=ニックネーム「」は文字数制限を超えています。 文字に設定する必要があります。 +nickname.reset=あなたのニックネームがリセットされました +nickname.reset.others=のニックネームがリセットされました +nickname.set=あなたのニックネームがに設定されました +nickname.set.others=のニックネームをに設定しました +nickname.show=あなたのニックネームはです +nickname.show.others=のニックネームはです +nickname.show.others.unset=にはニックネームが設定されていません +nickname.show.unset=あなたはニックネームが設定されていません +pagination.click_for_next_page=クリックして次のページへ +pagination.click_for_previous_page=クリックして前のページへ +pagination.footer=ページ / +pagination.page_out_of_range= ページは範囲外です!ページまでです。 +party.cannot_use_channel=このチャンネルを使用するには、あなたはパーティーに参加する必要があります。 +party.player_joined=があなたのパーティーに参加しました。 +party.player_left=があなたのパーティーを退出しました。 +reply.target.missing=返信できる人がいません +reply.target.self=自分自身にプライベートメッセージを送信することはできません +whisper.console=[] -> [] +whisper.continue.target_missing=プライベートメッセージを送る相手がいません +whisper.error=プライベートメッセージの送信に失敗しました。 +whisper.from=[] -> [あなた] +whisper.ignored_by_target=はあなたを無視しています +whisper.ignoring_all=無視されている間はメッセージを送信できません! +whisper.ignoring_target=あなたはを無視しています +whisper.to=[あなた] -> [] +whisper.toggled.off=プライベートメッセージを受信しなくなりました。 +whisper.toggled.on=プライベートメッセージを受信しています。 diff --git a/src/plugins/CarbonChat/locale/messages-nl_NL.properties b/src/plugins/CarbonChat/locale/messages-nl_NL.properties new file mode 100644 index 0000000..d917cb0 --- /dev/null +++ b/src/plugins/CarbonChat/locale/messages-nl_NL.properties @@ -0,0 +1,82 @@ +#Sun Jul 13 18:00:32 EEST 2025 +channel.change=Je stuurt nu berichten naar +command.clearchat.description=Wist het chatvenster voor alle spelers. +command.continue.argument.message=Het te verzenden bericht. +command.continue.description=Stuurt een bericht naar de laatste persoon die je een bericht hebt gestuurd. +command.debug.argument.player=De speler om de groepen van te controleren. +command.debug.description=Toont de groepen van de spelers. +command.help.argument.query=De zoekopdracht. +command.help.description=Carbon command lijst. +command.help.misc.arguments=Argumenten +command.help.misc.available_commands=Beschikbare command''s +command.help.misc.click_for_next_page=Klik voor de volgende pagina +command.help.misc.click_for_previous_page=Klik voor de vorige pagina +command.help.misc.click_to_show_help=Klik om hulp voor deze command te tonen +command.help.misc.description=Beschrijving +command.help.misc.help=Hulp +command.help.misc.no_description=Geen beschrijving +command.help.misc.no_results_for_query=Geen zoekresultaten +command.help.misc.optional=Optioneel +command.help.misc.page_out_of_range=Fout\: Pagina is niet in bereik. Moet tussen bereik [1, ] zijn +command.help.misc.showing_results_for_query=Zoekresultaten voor query weergeven +command.ignore.argument.player=De naam van de speler om te negeren. +command.ignore.argument.uuid=Het UUID van de speler om te negeren. +command.ignore.description=Verbergt alle inkomende berichten van genegeerde spelers. +command.mute.argument.player=De naam van de speler om te negeren. +command.mute.argument.uuid=Het UUID van de speler om te negeren. +command.mute.description=Mute spelers, vermijd dat ze chat gebruiken of andere spelers een prive bericht sturen. +command.muteinfo.argument.player=De naam van de speler om te muten. +command.muteinfo.argument.uuid=Het UUID van de speler om te negeren. +command.muteinfo.description=Laat zien of spelers gemute zijn of niet. +command.nickname.argument.nickname=De in te stellen bijnaam. +command.nickname.description=Zet en laat speler bijnaam zien. +command.reload.description=Herlaadt Carbon''s configuratie, kanaalinstellingen en vertalingen. Dit zal geen kanalen laden of ontladen. +command.reply.argument.message=Het bericht waarmee u wilt antwoorden. +command.reply.description=Stuurt een bericht naar de laatste persoon waar je een bericht van hebt ontvangen. +command.unignore.argument.player=De naam van de speler om te stoppen met negeren. +command.unignore.argument.uuid=Het UUID van de speler om te stoppen met negeren. +command.unignore.description=Stopt het verbergen van berichten van de opgegeven speler. +command.unmute.argument.player=De naam van de speler om te stoppen met negeren. +command.unmute.argument.uuid=Het UUID van de speler om te stoppen met negeren. +command.unmute.description=Un-mute spelers, geef ze toegang om chat te gebruiken en andere spelers een prive bericht te sturen. +command.whisper.argument.message=Het te verzenden bericht. +command.whisper.argument.player=De naam van de speler om een bericht naar te sturen. +command.whisper.description=Stuurt een privébericht naar de opgegeven speler. +config.reload.failed=Configuratie kon niet herladen worden +config.reload.success=Configuratie herladen geslaagd +error.command.argument_parsing=Ongeldig command argument\: +error.command.command_execution=\n\n Klik om te kopiëren ">>Er is een interne fout opgetreden tijdens het proberen van deze command. +error.command.invalid_player=Geen speler gevonden voor invoer '''' +error.command.invalid_sender=Ongeldige command zender. Je moet van type zijn +error.command.invalid_syntax=Ongeldige command syntax. Het correcte command syntax\: / +error.command.no_permission=Sorry, maar je hebt geen toestemming om dit commando uit te voeren.\nNeem contact op met de server beheerders als je denkt dat dit een fout is. +ignore.exempt=Je kan niet negeren +ignore.invalid_target=Geen doel gevonden +ignore.no_longer_ignoring=Je bent niet langer aan het negeren +ignore.now_ignoring=Je bent nu aan het negeren +mute.alert.players= is gemute +mute.alert.target=Je bent gemute +mute.cannot_speak=Je kan niet praten wanneer je gemute bent +mute.exempt=Die speler is vrijgesteld van gemute te worden +mute.info.muted= is gemute +mute.info.not_muted= is niet gemute +mute.info.self.muted=Je bent gemute +mute.info.self.not_muted=Je bent niet gemute +mute.no_target=Er is geen speler opgegeven om te muten. +mute.spy.prefix=GemuteM +mute.unmute.alert.players= is gemute +mute.unmute.alert.target=Je bent niet langer gemute +mute.unmute.no_target=Geen speler gespecifieerd om te umuten. +nickname.reset=Jou bijnaam is opnieuw ingesteld +nickname.reset.others=''s bijnaam is opnieuw ingesteld +nickname.set=Je bijnaam is ingesteld op +nickname.set.others=Je hebt ''s bijnaam ingesteld op +nickname.show=Je bijnaam is +nickname.show.others=''s bijnaam is +nickname.show.others.unset= heeft geen bijnaam ingesteld +nickname.show.unset=Je hebt geen bijnaam ingesteld +reply.target.missing=Je hebt niemand om te beantwoorden +reply.target.self=Je kan jezelf geen privebericht sturen +whisper.continue.target_missing=Je hebt niemand om een privebericht naar te sturen +whisper.ignored_by_target= is je aan het negeren +whisper.ignoring_target=Jij negeert diff --git a/src/plugins/CarbonChat/locale/messages-tr_TR.properties b/src/plugins/CarbonChat/locale/messages-tr_TR.properties new file mode 100644 index 0000000..c025717 --- /dev/null +++ b/src/plugins/CarbonChat/locale/messages-tr_TR.properties @@ -0,0 +1,120 @@ +#Sun Jul 13 18:00:32 EEST 2025 +channel.already_left=Zaten bu kanaldan ayrıldınız. +channel.change=Artık ile iletişim kuruyorsunuz. +channel.joined=Kanala tekrar katıldınız. +channel.left=Kanaldan ayrıldınız. +channel.no_permission=Bu kanalı kullanma izniniz yok. +channel.not_found=Kanal bulunamadı. +channel.not_left=Bu kanaldan ayrılmadınız. +channel.radius.empty_recipients=Bir mesaj göndermek için kimseye yeterince yakın değilsiniz. +command.clearchat.description=Tüm oyuncuların sohbet penceresini temizler. +command.continue.argument.message=Gönderilecek mesaj. +command.continue.description=En son iletişim kurduğunuz kişiye bir mesaj gönderir. +command.debug.argument.player=Gruplarını kontrol etmek istediğiniz oyuncu. +command.debug.description=Oyuncuların izin gruplarını gösterir. +command.help.argument.query=Arama sorgusu. +command.help.description=Carbon komut listesi. +command.help.misc.arguments=Argümanlar +command.help.misc.available_commands=Kullanılabilir Komutlar +command.help.misc.click_for_next_page=Sonraki sayfa için tıklayın +command.help.misc.click_for_previous_page=Önceki sayfa için tıklayın +command.help.misc.click_to_show_help=Bu komut için yardımı göstermek için tıklayın +command.help.misc.command=Komut +command.help.misc.description=Açıklama +command.help.misc.help=Yardım +command.help.misc.no_description=Açıklama yok +command.help.misc.no_results_for_query=Sorgu için sonuç bulunamadı +command.help.misc.optional=İsteğe bağlı +command.help.misc.page_out_of_range=Hata\: Sayfa , aralıkta değil. Aralık [1, ] içinde olmalıdır. +command.help.misc.showing_results_for_query=Sorgu için sonuçları gösteriliyor +command.ignore.argument.player=Ignore edilecek oyuncunun adı. +command.ignore.argument.uuid=Ignore edilecek oyuncunun UUID''si. +command.ignore.description=Ignore edilen oyunculardan gelen tüm iletileri gizler. +command.ignorelist.description=Ignore listesindeki oyuncuların sayfalandırılmış bir listesini gösterir. +command.ignorelist.none_ignored=Hiçbir oyuncuyu ignore etmiyorsunuz. +command.ignorelist.pagination_element=- ''> ''> kullanıcısını unignore etmek için tıklayın''>[unignore] +command.ignorelist.pagination_header=Ignore Edilen Oyuncular +command.join.description=Daha önce ayrıldığınız bir kanala katılın. +command.leave.description=Şu anda erişiminiz olan bir kanaldan ayrılın. +command.mute.argument.player=Susturulacak oyuncunun adı. +command.mute.argument.uuid=Susturulacak oyuncunun UUID''si. +command.mute.description=Oyuncuları susturur, onların sohbeti kullanmalarını veya diğer oyunculara fısıltı göndermelerini engeller. +command.muteinfo.argument.player=Oyuncunun adı. +command.muteinfo.argument.uuid=Oyuncunun UUID''si. +command.muteinfo.description=Oyuncuların susturulup susturulmadığını gösterir. +command.nickname.argument.nickname=Ayarlanacak takma ad. +command.nickname.argument.player=Hedef oyuncunun adı. +command.nickname.description=Takma adınızı gösterir. +command.nickname.others.description=Oyuncu takma adlarını gösterir. +command.nickname.others.reset.description=Hedeften ayarlanmış herhangi bir takma adı kaldırır. +command.nickname.others.set.description=Oyuncu takma adlarını ayarlar. +command.nickname.reset.description=Takma adınızı kaldırır. +command.nickname.set.description=Takma adınızı ayarlar. +command.reload.description=Carbon''un yapılandırma, kanal ayarları ve çevirilerini yeniden yükler. Kanalları yüklemeye veya boşaltmaya gitmez. +command.reply.argument.message=Yanıt olarak gönderilecek ileti. +command.reply.description=Size en son mesaj gönderen oyuncuya bir ileti gönderir. +command.togglemsg.description=Diğer oyuncuların size mesaj göndermesine izin verir veya engeller. +command.unignore.argument.player=Ignore''un kaldırılacağı oyuncunun adı. +command.unignore.argument.uuid=Ignore''un kaldırılacağı oyuncunun UUID''si. +command.unignore.description=Belirtilen oyuncunun mesajlarını gizlemeyi bırakır. +command.unmute.argument.player=Susturmanın kaldırılacağı oyuncunun adı. +command.unmute.argument.uuid=Susturmanın kaldırılacağı oyuncunun UUID''si. +command.unmute.description=Oyuncuların susturmasını kaldırır, onların sohbeti kullanmalarına ve diğer oyunculara fısıltı göndermelerine izin verir. +command.updateusername.argument.player=Güncellenecek oyuncunun adı. +command.updateusername.argument.uuid=Oyuncunun UUID''si. +command.updateusername.description=Oyuncunun adını Mojang adıyla eşleşecek şekilde günceller. +command.updateusername.fetching=Kullanıcı adı alınıyor... +command.updateusername.notupdated=Kullanıcı adı alınamıyor. +command.updateusername.updated=''nin kullanıcı adı güncellendi\! +command.whisper.argument.message=Gönderilecek ileti. +command.whisper.argument.player=İletişim kurmak istediğiniz oyuncunun adı. +command.whisper.description=Belirtilen oyuncuya özel bir ileti gönderir. +config.reload.failed=Yapılandırma yeniden yüklenemedi. +config.reload.success=Yapılandırma başarıyla yeniden yüklendi. +error.command.argument_parsing=Geçersiz komut argümanı\: +error.command.command_execution=\n\n Kopyalamak için tıklayın">>Komutu çalıştırmaya çalışırken içsel bir hata oluştu. +error.command.command_needs_player=Oyuncuların bu komutu çalıştırmak için oyuncu argümanı sağlaması gerekir. +error.command.invalid_player='''' için oyuncu bulunamadı. +error.command.invalid_sender=Geçersiz komut gönderen. Tür olmalıdır. +error.command.invalid_syntax=Geçersiz komut sözdizimi. Doğru komut sözdizimi\: / +error.command.no_permission=Üzgünüm, bu komutu gerçekleştirmek için izniniz yok.\nEğer bunun hata olduğuna inanıyorsanız lütfen sunucu yöneticileri ile iletişime geçin. +ignore.already_ignored=Zaten ''i ignore ediyorsunuz. +ignore.exempt=Bu hedef ignore edilemez. +ignore.invalid_target=Hedef bulunamadı. +ignore.no_longer_ignoring=Artık ''i ignore etmiyorsunuz. +ignore.not_ignored=''i ignore etmiyorsunuz. +ignore.now_ignoring=Artık ''i ignore ediyorsunuz. +mute.alert.players= susturuldu. +mute.alert.target=Siz susturuldunuz. +mute.cannot_speak=Susturulduğunuzda konuşamazsınız. +mute.exempt=Bu oyuncunun susturulmasını engelleyemezsiniz. +mute.info.muted= susturulmuş durumda. +mute.info.not_muted= susturulmamış durumda. +mute.info.self.muted=Siz susturuldunuz. +mute.info.self.not_muted=Siz susturulmamış durumdasınız. +mute.no_target=Susturulacak belirli bir oyuncu yok. +mute.spy.prefix=Susturuldu''>S +mute.unmute.alert.players= susturulması kaldırıldı. +mute.unmute.alert.target=Siz artık susturulmamış durumdasınız. +mute.unmute.no_target=Susturulacak belirli bir oyuncu yok. +nickname.reset=Takma adınız sıfırlandı. +nickname.reset.others=''in takma adı sıfırlandı. +nickname.set=Takma adınız olarak ayarlandı. +nickname.set.others=Siz ''in takma adını olarak ayarladınız. +nickname.show=Takma adınız . +nickname.show.others=''in takma adı . +nickname.show.others.unset=''in ayarlanmış bir takma adı yok. +nickname.show.unset=Sizin ayarlanmış bir takma adınız yok. +pagination.click_for_next_page=Sıradaki sayfa için tıklayın. +pagination.click_for_previous_page=Önceki sayfa için tıklayın. +pagination.footer=Sayfa / . +pagination.page_out_of_range=Sayfa aralık dışında\! Sadece sayfa var.. +reply.target.missing=Cevap verecek kimse bulunmamaktadır. +reply.target.self=Kendinize fısıltı gönderemezsiniz. +whisper.continue.target_missing=Yanıt verecek kimse bulunmamaktadır. +whisper.error=Özel ileti gönderme başarısız oldu. +whisper.ignored_by_target= sizin mesajlarınızı görmezden geliyor. +whisper.ignoring_all=Ignore ediliyor durumdayken mesaj gönderemezsiniz\! +whisper.ignoring_target= sizin mesajlarınızı görmezden geliyor. +whisper.toggled.off=Artık özel mesajlar almıyorsunuz. +whisper.toggled.on=Artık özel mesajlar alıyorsunuz. diff --git a/src/plugins/CarbonChat/locale/messages-zh_CN.properties b/src/plugins/CarbonChat/locale/messages-zh_CN.properties new file mode 100644 index 0000000..93aa235 --- /dev/null +++ b/src/plugins/CarbonChat/locale/messages-zh_CN.properties @@ -0,0 +1,160 @@ +#Sun Jul 13 18:00:32 EEST 2025 +channel.already_left=你已经离开了该频道 +channel.change=你正在 频道上聊天 +channel.joined=你已重新加入该频道 +channel.left=你已离开该频道 +channel.no_permission=你没有权限进入该频道 +channel.not_found=找不到该频道 +channel.not_left=你还未离开该频道 +channel.radius.empty_recipients=你附近没有人, 无法发送消息. +command.clearchat.description=清空所有玩家的聊天框. +command.continue.argument.message=要发送的消息. +command.continue.description=向你上次私信你的人发送消息. +command.debug.argument.player=检查玩家的权限组. +command.debug.description=显示玩家的权限组. +command.help.argument.query=搜索查询. +command.help.description=Carbon 命令列表. +command.help.misc.arguments=参数 +command.help.misc.available_commands=可用命令 +command.help.misc.click_for_next_page=下一页 +command.help.misc.click_for_previous_page=上一页 +command.help.misc.click_to_show_help=点击显示此命令的帮助 +command.help.misc.command=命令 +command.help.misc.description=描述 +command.help.misc.help=帮助 +command.help.misc.no_description=无描述 +command.help.misc.no_results_for_query=没有结果 +command.help.misc.optional=可选 +command.help.misc.page_out_of_range=错误\: 页面 不在范围内.必须在范围 [1, ] 内 +command.help.misc.showing_results_for_query=显示搜索结果\: +command.ignore.argument.player=要屏蔽的玩家名字. +command.ignore.argument.uuid=要屏蔽的UUID. +command.ignore.description=屏蔽指定玩家的消息. +command.ignorelist.description=显示你屏蔽的玩家列表. +command.ignorelist.none_ignored=你没有屏蔽任何玩家. +command.ignorelist.pagination_element=- ''>''>[取消屏蔽] +command.ignorelist.pagination_header=屏蔽列表 +command.join.description=加入你上次离开的频道. +command.leave.description=离开你当前的频道. +command.mute.argument.player=要禁言的玩家. +command.mute.argument.uuid=要禁言的UUID. +command.mute.description=禁言指定玩家, 阻止指定玩家发送消息. +command.muteinfo.argument.player=玩家. +command.muteinfo.argument.uuid=UUID. +command.muteinfo.description=显示玩家是否被禁言. +command.nickname.argument.nickname=昵称. +command.nickname.argument.player=玩家. +command.nickname.description=显示你的昵称. +command.nickname.others.description=显示玩家的昵称. +command.nickname.others.reset.description=重置玩家的昵称. +command.nickname.others.set.description=设置玩家的昵称. +command.nickname.reset.description=删除你的昵称. +command.nickname.set.description=设置你的昵称. +command.party.accept.description=接受队伍邀请. +command.party.already_in_party= 已经在你的队伍中. +command.party.cannot_disband_multiple_members=无法解散队伍 '''' , 因为你不是最后一个成员. +command.party.cannot_invite_self=你不能邀请自己. +command.party.create.description=创建一个新的队伍. +command.party.created=成功创建并加入队伍''''\! +command.party.current_party=你在队伍\: +command.party.description=查看当前队伍的信息. +command.party.disband.description=解散当前队伍. +command.party.disbanded=成功解散了队伍 '''' . +command.party.invite.description=邀请玩家加入你的队伍. +command.party.joined_party=成功加入了队伍 '''' \! +command.party.leave.description=离开当前队伍. +command.party.left_party=成功离开了队伍 '''' . +command.party.must_be_in_party=你必须加入一个队伍才能使用该指令.使用 ''/party create'' 创建一个队伍, 或使用 ''/party accept'' 接受邀请. +command.party.must_leave_current_first=你必须先离开当前的队伍. +command.party.must_specify_invite=你必须指定邀请的人. +command.party.name_too_long=队伍名称太长. +command.party.no_invite_from=你没有来自 的待处理邀请. +command.party.no_pending_invites=你没有任何待处理的组队邀请. +command.party.not_in_party=你不在任何队伍中.使用''/party create''创建一个队伍, 或使用''/party accept''接受邀请. +command.party.pagination_element=''\:''''> - +command.party.pagination_header=队伍成员\: +command.party.received_invite=单击接受''>''>你收到来自队伍''''的邀请, 由发送.点击此消息以接受. +command.party.sent_invite=已向 发送队伍邀请. +command.reload.description=重载配置. +command.reply.argument.message=要回复的消息. +command.reply.description=向最近私信你的玩家发送消息. +command.togglemsg.description=允许或禁止其他玩家向你发送消息. +command.unignore.argument.player=要取消屏蔽的玩家. +command.unignore.argument.uuid=要取消屏蔽的UUID. +command.unignore.description=取消屏蔽指定玩家的消息. +command.unmute.argument.player=要取消禁言的玩家. +command.unmute.argument.uuid=要取消禁言的UUID. +command.unmute.description=取消禁言指定玩家. +command.updateusername.argument.player=要更新的玩家名称. +command.updateusername.argument.uuid=要更新的玩家的 UUID. +command.updateusername.description=更新玩家的用户名以匹配其正版名称. +command.updateusername.fetching=获取用户名中... +command.updateusername.notupdated=无法获取用户名. +command.updateusername.updated=已更新 的用户名\! +command.whisper.argument.message=要发送的私聊消息. +command.whisper.argument.player=要发送消息的玩家名称. +command.whisper.description=向指定玩家发送私聊消息. +config.reload.failed=配置加载失败 +config.reload.success=配置加载成功 +error.command.argument_parsing=无效的命令参数\: +error.command.command_execution=\n\n 点击复制">''>执行此命令时发生内部错误. +error.command.command_needs_player=需要提供玩家参数才能执行此命令. +error.command.invalid_player=未找到名为 '''' 的玩家 +error.command.invalid_sender=无效的命令发送者.你必须是类型为 的用户 +error.command.invalid_syntax=无效命令, 正确用法\: / +error.command.no_permission=你没有执行此命令的权限. +ignore.already_ignored=你已经在屏蔽 +ignore.exempt=你不能屏蔽 +ignore.invalid_target=未找到玩家 +ignore.no_longer_ignoring=你不再屏蔽 +ignore.not_ignored=你没有屏蔽 +ignore.now_ignoring=你现在正在屏蔽 +integrations.fuuid.cannot_use_alliance_channel=你必须加入一个联盟才能使用该频道. +integrations.fuuid.cannot_use_faction_channel=你必须加入一个派系才能使用该频道. +integrations.fuuid.cannot_use_truce_channel=你必须与另一个派系结成停战协议才能使用该频道. +integrations.mcmmo.cannot_use_party_channel=你必须加入一个 mcMMO 队伍才能使用该频道. +integrations.towny.cannot_use_alliance_channel=你必须加入一个联盟才能使用该频道. +integrations.towny.cannot_use_nation_channel=你必须加入一个国家才能使用该频道. +integrations.towny.cannot_use_town_channel=你必须加入一个城镇才能使用该频道. +mute.alert.players= 已被禁言 +mute.alert.target=你已被禁言 +mute.cannot_speak=你被禁言时不能发言 +mute.exempt=该玩家不受禁言限制 +mute.info.muted= 被禁言了 +mute.info.not_muted= 没有被禁言 +mute.info.self.muted=你被禁言了 +mute.info.self.not_muted=你没有被禁言 +mute.no_target=没有指定要禁言的玩家. +mute.spy.prefix=禁言''>M +mute.unmute.alert.players= 已被取消禁言 +mute.unmute.alert.target=你已被取消禁言 +mute.unmute.no_target=没有指定要解除禁言的玩家. +nickname.error.blacklist=昵称"" 不允许使用, 请选择其他昵称. +nickname.error.character_limit=昵称 '''' 超过了字符限制, 必须设置为 ~ 个字符. +nickname.reset=你已重置自己的昵称 +nickname.reset.others=你已重置 的昵称 +nickname.set=你的昵称已设置为 +nickname.set.others=你将 的昵称设置为 +nickname.show=你的昵称是 +nickname.show.others= 的昵称是 +nickname.show.others.unset= 未设置昵称 +nickname.show.unset=你未设置昵称 +pagination.click_for_next_page=下一页 +pagination.click_for_previous_page=上一页 +pagination.footer=/ +pagination.page_out_of_range= 页超出范围, 总共只有 页. +party.cannot_use_channel=你必须加入一个队伍才能使用该频道. +party.player_joined=加入了你的队伍. +party.player_left=离开了你的队伍. +reply.target.missing=没有回复 +reply.target.self=你不能给自己发送私信 +whisper.console=[] -> [] +whisper.continue.target_missing=无法继续发送私信 +whisper.error=发送私信失败 +whisper.from= ''>hover\:show_text\:''单击开始回复''[] -> [] +whisper.ignored_by_target= 已经屏蔽你的私信 +whisper.ignoring_all=无法在他们被你屏蔽时发送消息\! +whisper.ignoring_target=你正在屏蔽 +whisper.to= ''>发送消息''>[] -> [] +whisper.toggled.off=你关闭了私信的接收. +whisper.toggled.on=你开启了私信的接收. diff --git a/src/plugins/CarbonChat/locale/messages-zh_TW.properties b/src/plugins/CarbonChat/locale/messages-zh_TW.properties new file mode 100644 index 0000000..e8658ff --- /dev/null +++ b/src/plugins/CarbonChat/locale/messages-zh_TW.properties @@ -0,0 +1,160 @@ +#Sun Jul 13 18:00:32 EEST 2025 +channel.already_left=你已經離開了該頻道 +channel.change=你現在正在屏蔽 +channel.joined=你已重新加入該頻道 +channel.left=你已離開該頻道 +channel.no_permission=你冇有權限進入該頻道 +channel.not_found=找不到該頻道 +channel.not_left=你還未離開該頻道 +channel.radius.empty_recipients=你附近冇有人, 無法發送消息. +command.clearchat.description=清空所有玩家的聊天框. +command.continue.argument.message=要發送的消息. +command.continue.description=嚮你上次私信你的人發送消息. +command.debug.argument.player=檢查玩家的權限組. +command.debug.description=顯示玩家的權限組. +command.help.argument.query=搜索查詢. +command.help.description=Carbon 命令列錶. +command.help.misc.arguments=參數 +command.help.misc.available_commands=可用命令 +command.help.misc.click_for_next_page=下一頁 +command.help.misc.click_for_previous_page=上一頁 +command.help.misc.click_to_show_help=點選顯示此命令的幫助 +command.help.misc.command=命令 +command.help.misc.description=描述 +command.help.misc.help=幫助 +command.help.misc.no_description=無描述 +command.help.misc.no_results_for_query=冇有結果 +command.help.misc.optional=可選 +command.help.misc.page_out_of_range=錯誤\: 頁麵 不在範圍內.必須在範圍 [1, ] 內 +command.help.misc.showing_results_for_query=顯示搜索結果\: +command.ignore.argument.player=要屏蔽的玩家名字. +command.ignore.argument.uuid=要屏蔽的UUID. +command.ignore.description=屏蔽指定玩家的消息. +command.ignorelist.description=顯示你屏蔽的玩家列錶. +command.ignorelist.none_ignored=你冇有屏蔽任何玩家. +command.ignorelist.pagination_element=- ''>''>[取消屏蔽] +command.ignorelist.pagination_header=屏蔽列錶 +command.join.description=加入你上次離開的頻道. +command.leave.description=離開你當前的頻道. +command.mute.argument.player=要禁言的玩家. +command.mute.argument.uuid=要禁言的UUID. +command.mute.description=禁言指定玩家, 阻止指定玩家發送消息. +command.muteinfo.argument.player=玩家. +command.muteinfo.argument.uuid=UUID. +command.muteinfo.description=顯示玩家是否被禁言. +command.nickname.argument.nickname=昵稱. +command.nickname.argument.player=玩家. +command.nickname.description=顯示你的昵稱. +command.nickname.others.description=顯示玩家的昵稱. +command.nickname.others.reset.description=重置玩家的昵稱. +command.nickname.others.set.description=設定玩家的昵稱. +command.nickname.reset.description=刪除你的昵稱. +command.nickname.set.description=設定你的昵稱. +command.party.accept.description=接受隊伍邀請. +command.party.already_in_party= 已經在你的隊伍中. +command.party.cannot_disband_multiple_members=無法解散隊伍 '''' , 因為你不是最後一個成員. +command.party.cannot_invite_self=你不能邀請自己. +command.party.create.description=創建一個新的隊伍. +command.party.created=成功創建並加入隊伍''''\! +command.party.current_party=你在隊伍\: +command.party.description=檢視當前隊伍的信息. +command.party.disband.description=解散當前隊伍. +command.party.disbanded=成功解散了隊伍 '''' . +command.party.invite.description=邀請玩家加入你的隊伍. +command.party.joined_party=成功加入了隊伍 '''' \! +command.party.leave.description=離開當前隊伍. +command.party.left_party=成功離開了隊伍 '''' . +command.party.must_be_in_party=你必須加入一個隊伍才能使用該指令.使用 ''/party create'' 創建一個隊伍, 或使用 ''/party accept'' 接受邀請. +command.party.must_leave_current_first=你必須先離開當前的隊伍. +command.party.must_specify_invite=你必須指定邀請的人. +command.party.name_too_long=隊伍名稱太長. +command.party.no_invite_from=你冇有來自 的待處理邀請. +command.party.no_pending_invites=你冇有任何待處理的組隊邀請. +command.party.not_in_party=你不在任何隊伍中.使用''/party create''創建一個隊伍, 或使用''/party accept''接受邀請. +command.party.pagination_element=''\:''''> - +command.party.pagination_header=隊伍成員\: +command.party.received_invite=單擊接受''>''>你收到來自隊伍''''的邀請, 由發送.點選此消息以接受. +command.party.sent_invite=已嚮 發送隊伍邀請. +command.reload.description=重載配置. +command.reply.argument.message=要回複的消息. +command.reply.description=嚮最近私信你的玩家發送消息. +command.togglemsg.description=允許或禁止其他玩家嚮你發送消息. +command.unignore.argument.player=要取消屏蔽的玩家. +command.unignore.argument.uuid=要取消屏蔽的UUID. +command.unignore.description=取消屏蔽指定玩家的消息. +command.unmute.argument.player=要取消禁言的玩家. +command.unmute.argument.uuid=要取消禁言的UUID. +command.unmute.description=取消禁言指定玩家. +command.updateusername.argument.player=要更新的玩家名稱. +command.updateusername.argument.uuid=要更新的玩家的 UUID. +command.updateusername.description=更新玩家的用戶名以匹配其正版名稱. +command.updateusername.fetching=獲取用戶名中... +command.updateusername.notupdated=無法獲取用戶名. +command.updateusername.updated=已更新 的用戶名\! +command.whisper.argument.message=要發送的私聊消息. +command.whisper.argument.player=要發送消息的玩家名稱. +command.whisper.description=嚮指定玩家發送私聊消息. +config.reload.failed=配置加載失敗 +config.reload.success=配置加載成功 +error.command.argument_parsing=無效的命令參數\: +error.command.command_execution=\n\n 點選複製">''>執行此命令時發生內部錯誤. +error.command.command_needs_player=需要提供玩家參數才能執行此命令. +error.command.invalid_player=未找到名為 '''' 的玩家 +error.command.invalid_sender=無效的命令發送者.你必須是類型為 的用戶 +error.command.invalid_syntax=無效命令, 正確用法\: / +error.command.no_permission=你冇有執行此命令的權限. +ignore.already_ignored=你已經在屏蔽 +ignore.exempt=你不能屏蔽 +ignore.invalid_target=未找到玩家 +ignore.no_longer_ignoring=你不再屏蔽 +ignore.not_ignored=你冇有屏蔽 +ignore.now_ignoring=你現在正在屏蔽 +integrations.fuuid.cannot_use_alliance_channel=你必須加入一個聯盟才能使用該頻道. +integrations.fuuid.cannot_use_faction_channel=你必須加入一個派係才能使用該頻道. +integrations.fuuid.cannot_use_truce_channel=你必須與另一個派係結成停戰協議才能使用該頻道. +integrations.mcmmo.cannot_use_party_channel=你必須加入一個 mcMMO 隊伍才能使用該頻道. +integrations.towny.cannot_use_alliance_channel=你必須加入一個聯盟才能使用該頻道. +integrations.towny.cannot_use_nation_channel=你必須加入一個國家才能使用該頻道. +integrations.towny.cannot_use_town_channel=你必須加入一個城鎮才能使用該頻道. +mute.alert.players= 已被禁言 +mute.alert.target=你已被禁言 +mute.cannot_speak=你被禁言時不能發言 +mute.exempt=該玩家不受禁言限製 +mute.info.muted= 被禁言了 +mute.info.not_muted= 冇有被禁言 +mute.info.self.muted=你被禁言了 +mute.info.self.not_muted=你冇有被禁言 +mute.no_target=冇有指定要禁言的玩家. +mute.spy.prefix=禁言''>M +mute.unmute.alert.players= 已被取消禁言 +mute.unmute.alert.target=你已被取消禁言 +mute.unmute.no_target=冇有指定要解除禁言的玩家. +nickname.error.blacklist=昵稱"" 不允許使用, 請選擇其他昵稱. +nickname.error.character_limit=昵稱 '''' 超過了字符限製, 必須設定為 ~ 個字符. +nickname.reset=你已重置自己的昵稱 +nickname.reset.others=你已重置 的昵稱 +nickname.set=你的昵稱已設定為 +nickname.set.others=你將 的昵稱設定為 +nickname.show=你的昵稱是 +nickname.show.others= 的昵稱是 +nickname.show.others.unset= 未設定昵稱 +nickname.show.unset=你未設定昵稱 +pagination.click_for_next_page=下一頁 +pagination.click_for_previous_page=上一頁 +pagination.footer=/ +pagination.page_out_of_range= 頁超出範圍, 總共隻有 頁. +party.cannot_use_channel=你必須加入一個隊伍才能使用該頻道. +party.player_joined=加入了你的隊伍. +party.player_left=離開了你的隊伍. +reply.target.missing=冇有回複 +reply.target.self=你不能給自己發送私信 +whisper.console=[] -> [] +whisper.continue.target_missing=無法繼續發送私信 +whisper.error=發送私信失敗 +whisper.from= ''>hover\:show_text\:''單擊開始回複''[] -> [] +whisper.ignored_by_target= 已經屏蔽你的私信 +whisper.ignoring_all=無法在他們被你屏蔽時發送消息\! +whisper.ignoring_target=你正在屏蔽 +whisper.to= ''>發送消息''>[] -> [] +whisper.toggled.off=你關閉了私信的接收. +whisper.toggled.on=你開啓了私信的接收. diff --git a/src/plugins/MiniPlaceholders-Paper-2.3.0.jar b/src/plugins/MiniPlaceholders-Paper-2.3.0.jar new file mode 100644 index 0000000..15ad7f8 --- /dev/null +++ b/src/plugins/MiniPlaceholders-Paper-2.3.0.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc70dd344ed3ecb1cae1e9e1e5957cf35bd311bf01b108a3ff353a4c565c7130 +size 1068300 diff --git a/src/plugins/PlaceholderAPI-2.11.6.jar b/src/plugins/PlaceholderAPI-2.11.6.jar new file mode 100644 index 0000000..eb1ece6 --- /dev/null +++ b/src/plugins/PlaceholderAPI-2.11.6.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfea0f235da9e9d576577215acb50c74bb8122e03dcd988315b61145c7b61727 +size 933131 diff --git a/src/plugins/PlaceholderAPI/config.yml b/src/plugins/PlaceholderAPI/config.yml new file mode 100644 index 0000000..a28ad2c --- /dev/null +++ b/src/plugins/PlaceholderAPI/config.yml @@ -0,0 +1,18 @@ +# PlaceholderAPI +# Version: 2.11.6 +# Created by: extended_clip +# Contributors: https://github.com/PlaceholderAPI/PlaceholderAPI/graphs/contributors +# Issues: https://github.com/PlaceholderAPI/PlaceholderAPI/issues +# Expansions: https://placeholderapi.com/ecloud +# Wiki: https://wiki.placeholderapi.com/ +# Discord: https://helpch.at/discord +# No placeholders are provided with this plugin by default. +# Download placeholders: /papi ecloud +check_updates: true +cloud_enabled: true +cloud_sorting: "name" +boolean: + 'true': 'yes' + 'false': 'no' +date_format: MM/dd/yy HH:mm:ss +debug: false diff --git a/src/plugins/PlaceholderAPI/expansions/Expansion-luckperms.jar b/src/plugins/PlaceholderAPI/expansions/Expansion-luckperms.jar new file mode 100644 index 0000000..924c7db --- /dev/null +++ b/src/plugins/PlaceholderAPI/expansions/Expansion-luckperms.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c25d6292973592a1d05e3b7f31da8cbf4299db9f7e68a5a62c87c15789f53777 +size 18961 diff --git a/src/plugins/carbonchat-paper-3.0.0-beta.27.jar b/src/plugins/carbonchat-paper-3.0.0-beta.27.jar new file mode 100644 index 0000000..3d7ad17 --- /dev/null +++ b/src/plugins/carbonchat-paper-3.0.0-beta.27.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f6930ed8827b2898431ee7a48575b71a3b962f50719fc14e86b0262554bb9d4 +size 2843744 -- 2.45.2 From 455dcd739ff01788840f5ddc174665da6a83637b Mon Sep 17 00:00:00 2001 From: cuqmbr Date: Mon, 14 Jul 2025 12:53:35 +0300 Subject: [PATCH 2/5] rename local channel, remove partychat --- src/plugins/CarbonChat/channels/global.conf | 4 +- .../channels/{locate.conf => local.conf} | 4 +- .../CarbonChat/channels/partychat.conf | 48 ------------------- src/plugins/CarbonChat/config.conf | 4 +- 4 files changed, 6 insertions(+), 54 deletions(-) rename src/plugins/CarbonChat/channels/{locate.conf => local.conf} (95%) delete mode 100644 src/plugins/CarbonChat/channels/partychat.conf diff --git a/src/plugins/CarbonChat/channels/global.conf b/src/plugins/CarbonChat/channels/global.conf index 48676ca..5d94d7a 100644 --- a/src/plugins/CarbonChat/channels/global.conf +++ b/src/plugins/CarbonChat/channels/global.conf @@ -20,7 +20,7 @@ format { # } # basic { - "default_format"="[G] %luckperms_prefix%: " + "default_format"="[G] %luckperms_prefix% : " discord="" console="[G] : " } @@ -42,6 +42,6 @@ command-aliases=[] radius=-1 # If true, players will be able to see if they're not sending messages to anyone # because they're out of range from the radius. -empty-radius-recipients-message=true +empty-radius-recipients-message=false cooldowns {} cooldown=-1 diff --git a/src/plugins/CarbonChat/channels/locate.conf b/src/plugins/CarbonChat/channels/local.conf similarity index 95% rename from src/plugins/CarbonChat/channels/locate.conf rename to src/plugins/CarbonChat/channels/local.conf index 758173c..ad64cfc 100644 --- a/src/plugins/CarbonChat/channels/locate.conf +++ b/src/plugins/CarbonChat/channels/local.conf @@ -1,7 +1,7 @@ # The channel's key, used to track the channel. # You only need to change the second part of the key. "global" by default. # The value is what's used in commands, this is probably what you want to change. -key="carbon:locate" +key="carbon:local" # The chat formats for this channel. format { # Basic chat formats. @@ -20,7 +20,7 @@ format { # } # basic { - "default_format"="[L] %luckperms_prefix%: " + "default_format"="[L] %luckperms_prefix% : " discord="" console="[] : " } diff --git a/src/plugins/CarbonChat/channels/partychat.conf b/src/plugins/CarbonChat/channels/partychat.conf deleted file mode 100644 index b731152..0000000 --- a/src/plugins/CarbonChat/channels/partychat.conf +++ /dev/null @@ -1,48 +0,0 @@ -# The channel's key, used to track the channel. -# You only need to change the second part of the key. "global" by default. -# The value is what's used in commands, this is probably what you want to change. -key="carbon:partychat" -# The chat formats for this channel. -format { - # Basic chat formats. - # The "default_format" format is the main one you want to edit. - # The "console" format is what's shown to console. - # The "discord" format is what's shown to supported discord integrations. - # If PlaceholderAPI is installed, PAPI placeholders (with %) are supported. - # If MiniPlaceholders is installed, its placeholders (with <>) are supported. - # The keys are group names, the values are chat formats (MiniMessage). - # For example: - # basic { - # default_format="<> " - # vip="[VIP] <> " - # admin="[Prefix] : " - # discord="" - # } - # - basic { - "default_format"="(party: ) : " - console="[party: ] : " - } - # Per-Language chat formats. - # You can safely leave this section empty if you don't want to use this feature. - # Each locale section can be configured in the same way as the above 'basic' section. - # Will fall back to the 'basic' section if no format was found for the player's locale. - locales { - "ru_RU" {} - } -} -# Messages will be sent in this channel if they start with this prefix. (Leave empty/blank to disable quick prefix for this channel) -quick-prefix="" -should-register-commands=true -command-aliases=[ - pc -] -# The distance players must be within to see each other's messages. -# A value of '0' requires that both players are in the same world. -# On velocity, '0' requires that both players are in the same server. -radius=-1 -# If true, players will be able to see if they're not sending messages to anyone -# because they're out of range from the radius. -empty-radius-recipients-message=true -cooldowns {} -cooldown=-1 diff --git a/src/plugins/CarbonChat/config.conf b/src/plugins/CarbonChat/config.conf index 3788b05..a88dd6a 100644 --- a/src/plugins/CarbonChat/config.conf +++ b/src/plugins/CarbonChat/config.conf @@ -4,7 +4,7 @@ config-version=1 default-locale="en_US" # The default channel that new players will be in when they join. # If the channel is not found or the player cannot use the channel, they will speak in basic non-channel chat. -default-channel="carbon:locate" +default-channel="carbon:local" # Returns you to the default channel when you use a channel's command while you have that channel active. return-to-default-channel=false # The service that will be used to store and load player information. @@ -94,7 +94,7 @@ ping-settings { } party-chat { # Whether party chat is enabled - enabled=true + enabled=false expire-invites-after-seconds=45 } # Sound for receiving a direct message -- 2.45.2 From 1f99a6a4271ae38cfa5e288239ade8e87feb1981 Mon Sep 17 00:00:00 2001 From: cuqmbr Date: Mon, 14 Jul 2025 13:20:48 +0300 Subject: [PATCH 3/5] fix symlink in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9234333..1da2233 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,7 @@ RUN mkdir -p ${DATA_PATH}/SuperVanish && \ touch ${DATA_PATH}/SuperVanish/data.yml && \ ln -sf ${DATA_PATH}/SuperVanish/data.yml \ ${CONFIG_PATH}/plugins/SuperVanish/data.yml -RUN mkdir -p ${DATA_PATH}/CarbonChat && \ +RUN mkdir -p ${DATA_PATH}/CarbonChat/users && \ ln -sf ${DATA_PATH}/CarbonChat/users \ ${CONFIG_PATH}/plugins/CarbonChat/users -- 2.45.2 From 95cd16446cefb6c58ac35f5c496e15fe6c682209 Mon Sep 17 00:00:00 2001 From: cuqmbr Date: Mon, 14 Jul 2025 13:26:25 +0300 Subject: [PATCH 4/5] remove local chat on lobby server only global chat is needed --- src/plugins/CarbonChat/channels/global.conf | 6 +-- src/plugins/CarbonChat/channels/local.conf | 49 --------------------- src/plugins/CarbonChat/config.conf | 2 +- 3 files changed, 4 insertions(+), 53 deletions(-) delete mode 100644 src/plugins/CarbonChat/channels/local.conf diff --git a/src/plugins/CarbonChat/channels/global.conf b/src/plugins/CarbonChat/channels/global.conf index 5d94d7a..ff754a1 100644 --- a/src/plugins/CarbonChat/channels/global.conf +++ b/src/plugins/CarbonChat/channels/global.conf @@ -20,9 +20,9 @@ format { # } # basic { - "default_format"="[G] %luckperms_prefix% : " + "default_format"="%luckperms_prefix% : " discord="" - console="[G] : " + console=": " } # Per-Language chat formats. # You can safely leave this section empty if you don't want to use this feature. @@ -33,7 +33,7 @@ format { } } # Messages will be sent in this channel if they start with this prefix. (Leave empty/blank to disable quick prefix for this channel) -quick-prefix="!" +quick-prefix="" should-register-commands=true command-aliases=[] # The distance players must be within to see each other's messages. diff --git a/src/plugins/CarbonChat/channels/local.conf b/src/plugins/CarbonChat/channels/local.conf deleted file mode 100644 index ad64cfc..0000000 --- a/src/plugins/CarbonChat/channels/local.conf +++ /dev/null @@ -1,49 +0,0 @@ -# The channel's key, used to track the channel. -# You only need to change the second part of the key. "global" by default. -# The value is what's used in commands, this is probably what you want to change. -key="carbon:local" -# The chat formats for this channel. -format { - # Basic chat formats. - # The "default_format" format is the main one you want to edit. - # The "console" format is what's shown to console. - # The "discord" format is what's shown to supported discord integrations. - # If PlaceholderAPI is installed, PAPI placeholders (with %) are supported. - # If MiniPlaceholders is installed, its placeholders (with <>) are supported. - # The keys are group names, the values are chat formats (MiniMessage). - # For example: - # basic { - # default_format="<> " - # vip="[VIP] <> " - # admin="[Prefix] : " - # discord="" - # } - # - basic { - "default_format"="[L] %luckperms_prefix% : " - discord="" - console="[] : " - } - # Per-Language chat formats. - # You can safely leave this section empty if you don't want to use this feature. - # Each locale section can be configured in the same way as the above 'basic' section. - # Will fall back to the 'basic' section if no format was found for the player's locale. - locales { - "ru_RU" {} - } -} -# Messages will be sent in this channel if they start with this prefix. (Leave empty/blank to disable quick prefix for this channel) -quick-prefix="" -should-register-commands=true -command-aliases=[ - l -] -# The distance players must be within to see each other's messages. -# A value of '0' requires that both players are in the same world. -# On velocity, '0' requires that both players are in the same server. -radius=200 -# If true, players will be able to see if they're not sending messages to anyone -# because they're out of range from the radius. -empty-radius-recipients-message=false -cooldowns {} -cooldown=-1 diff --git a/src/plugins/CarbonChat/config.conf b/src/plugins/CarbonChat/config.conf index a88dd6a..5a55323 100644 --- a/src/plugins/CarbonChat/config.conf +++ b/src/plugins/CarbonChat/config.conf @@ -4,7 +4,7 @@ config-version=1 default-locale="en_US" # The default channel that new players will be in when they join. # If the channel is not found or the player cannot use the channel, they will speak in basic non-channel chat. -default-channel="carbon:local" +default-channel="carbon:global" # Returns you to the default channel when you use a channel's command while you have that channel active. return-to-default-channel=false # The service that will be used to store and load player information. -- 2.45.2 From a9d492ed3cbad32c5582ecd021ab846bf5cfbc59 Mon Sep 17 00:00:00 2001 From: cuqmbr Date: Mon, 14 Jul 2025 14:05:16 +0300 Subject: [PATCH 5/5] enable CarbonChat ping sound --- src/plugins/CarbonChat/config.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/CarbonChat/config.conf b/src/plugins/CarbonChat/config.conf index 5a55323..9b4c444 100644 --- a/src/plugins/CarbonChat/config.conf +++ b/src/plugins/CarbonChat/config.conf @@ -84,10 +84,10 @@ chat-filter {} # Various settings related to pinging players in channels. ping-settings { # The color your name will be when another player mentions you. - highlight-text-color=yellow + highlight-text-color="dark_purple" prefix="@" - play-sound=false - name="minecraft:block.anvil.use" + play-sound=true + name="minecraft:block.amethyst_block.hit" source=master volume=1 pitch=1 -- 2.45.2