diff --git a/core/src/main/java/co/aikar/commands/CommandCompletions.java b/core/src/main/java/co/aikar/commands/CommandCompletions.java index 0325abcc..1ca0ff5e 100644 --- a/core/src/main/java/co/aikar/commands/CommandCompletions.java +++ b/core/src/main/java/co/aikar/commands/CommandCompletions.java @@ -47,7 +47,9 @@ public class CommandCompletions { public CommandCompletions(CommandManager manager) { this.manager = manager; - registerAsyncCompletion("nothing", c -> Collections.emptyList()); + registerStaticCompletion("empty", Collections.emptyList()); + registerStaticCompletion("nothing", Collections.emptyList()); + registerStaticCompletion("timeunits", Arrays.asList("minutes", "hours", "days", "weeks", "months", "years")); registerAsyncCompletion("range", (c) -> { String config = c.getConfig(); if (config == null) { @@ -65,8 +67,6 @@ public class CommandCompletions { } return IntStream.rangeClosed(start, end).mapToObj(Integer::toString).collect(Collectors.toList()); }); - List timeunits = Arrays.asList("minutes", "hours", "days", "weeks", "months", "years"); - registerAsyncCompletion("timeunits", (c) -> timeunits); } /** diff --git a/core/src/main/java/co/aikar/commands/CommandHelpFormatter.java b/core/src/main/java/co/aikar/commands/CommandHelpFormatter.java index 4ac1f883..109eaac0 100644 --- a/core/src/main/java/co/aikar/commands/CommandHelpFormatter.java +++ b/core/src/main/java/co/aikar/commands/CommandHelpFormatter.java @@ -193,6 +193,7 @@ public class CommandHelpFormatter { //{name} {description} return new String[]{ "{name}", param.getName(), + "{syntaxorname}", ACFUtil.nullDefault(param.getSyntax(), param.getName()), "{syntax}", ACFUtil.nullDefault(param.getSyntax(), ""), "{description}", ACFUtil.nullDefault(param.getDescription(), ""), "{command}", help.getCommandName(), diff --git a/languages/core/acf-core_de.properties b/languages/core/acf-core_de.properties index 1e2000c0..2f69f753 100644 --- a/languages/core/acf-core_de.properties +++ b/languages/core/acf-core_de.properties @@ -19,28 +19,27 @@ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # - -acf-core.permission_denied = Du hast nicht die benötigte Berechtigung um diesen Befehl auszuführen. -acf-core.error_generic_logged = Ein Fehler ist aufgetreten. Dieses Problem wurde protokolliert. Entschuldigung für die Unannehmlichkeiten. -acf-core.unknown_command = Unbekannter Befehl, gib /help ein, um Hilfe zu bekommen. -acf-core.invalid_syntax = Verwendung: {command} {syntax} -acf-core.error_prefix = Fehler: {message} -acf-core.error_performing_command = Beim Ausführen des Befehls ist ein Fehler aufgetreten. -acf-core.info_message = {message} -acf-core.please_specify_one_of = Fehler: Du must aus diesen Optionen wählen ({valid}). -acf-core.must_be_a_number = Fehler: Du musst eine Zahl eingeben. -acf-core.must_be_min_length = Fehler: Du musst mindestens {min} Buchstaben eingeben. -acf-core.must_be_max_length = Fehler: Du kannst maximal {max} Buchstaben eingeben. -acf-core.please_specify_at_most = Fehler: Bitte gib eine Zahl kleiner oder gleich {max} ein. -acf-core.please_specify_at_least = Error: Bitte gib eine Zahl größer oder gleich {min} ein. -acf-core.not_allowed_on_console = Fehler: Die Konsole darf diesen Befehl nicht ausführen. -acf-core.could_not_find_player = Fehler: Es konnte kein Spieler mit dem Namen {search} gefunden werden. -acf-core.help_format = {command} {parameters} {separator} {description} -acf-core.no_command_matched_search = Es wurde kein mit {search} übereinstimmender Befehl gefunden. -acf-core.help_page_information = - Seite {page} von {totalpages} ({results} Ergebnisse). -acf-core.help_no_results = Fehler: Keine weiteren Ergebnisse. -acf-core.help_header = === Hilfe für {commandprefix}{command} === -acf-core.help_detailed_header = === Detaillierte Hilfe für {commandprefix}{command} === -acf-core.help_detailed_command_format = {command} {parameters} {separator} {description} -acf-core.help_detailed_parameter_format = {name}: {description} -acf-core.help_search_header = === Suchergebnisse für {commandprefix}{command} {search} === +acf-core.permission_denied=Du hast nicht die benötigte Berechtigung um diesen Befehl auszuführen. +acf-core.error_generic_logged=Ein Fehler ist aufgetreten. Dieses Problem wurde protokolliert. Entschuldigung für die Unannehmlichkeiten. +acf-core.unknown_command=Unbekannter Befehl, gib /help ein, um Hilfe zu bekommen. +acf-core.invalid_syntax=Verwendung: {command} {syntax} +acf-core.error_prefix=Fehler: {message} +acf-core.error_performing_command=Beim Ausführen des Befehls ist ein Fehler aufgetreten. +acf-core.info_message={message} +acf-core.please_specify_one_of=Fehler: Du must aus diesen Optionen wählen ({valid}). +acf-core.must_be_a_number=Fehler: Du musst eine Zahl eingeben. +acf-core.must_be_min_length=Fehler: Du musst mindestens {min} Buchstaben eingeben. +acf-core.must_be_max_length=Fehler: Du kannst maximal {max} Buchstaben eingeben. +acf-core.please_specify_at_most=Fehler: Bitte gib eine Zahl kleiner oder gleich {max} ein. +acf-core.please_specify_at_least=Error: Bitte gib eine Zahl größer oder gleich {min} ein. +acf-core.not_allowed_on_console=Fehler: Die Konsole darf diesen Befehl nicht ausführen. +acf-core.could_not_find_player=Fehler: Es konnte kein Spieler mit dem Namen {search} gefunden werden. +acf-core.help_format={command} {parameters} {separator} {description} +acf-core.no_command_matched_search=Es wurde kein mit {search} übereinstimmender Befehl gefunden. +acf-core.help_page_information=- Seite {page} von {totalpages} ({results} Ergebnisse). +acf-core.help_no_results=Fehler: Keine weiteren Ergebnisse. +acf-core.help_header==== Hilfe für {commandprefix}{command} === +acf-core.help_detailed_header==== Detaillierte Hilfe für {commandprefix}{command} === +acf-core.help_detailed_command_format={command} {parameters} {separator} {description} +acf-core.help_detailed_parameter_format={syntaxorname}: {description} +acf-core.help_search_header==== Suchergebnisse für {commandprefix}{command} {search} === diff --git a/languages/core/acf-core_en.properties b/languages/core/acf-core_en.properties index 40d08b8c..1441f276 100644 --- a/languages/core/acf-core_en.properties +++ b/languages/core/acf-core_en.properties @@ -42,5 +42,5 @@ acf-core.help_header==== Showing help for {commandprefix}{ acf-core.help_format={command} {parameters} {separator} {description} acf-core.help_detailed_header==== Showing detailed help for {commandprefix}{command} === acf-core.help_detailed_command_format={command} {parameters} {separator} {description} -acf-core.help_detailed_parameter_format={name}: {description} +acf-core.help_detailed_parameter_format={syntaxorname}: {description} acf-core.help_search_header==== Search results for {commandprefix}{command} {search} === diff --git a/languages/core/acf-core_es.properties b/languages/core/acf-core_es.properties index c7caa72d..56edfd8b 100644 --- a/languages/core/acf-core_es.properties +++ b/languages/core/acf-core_es.properties @@ -19,25 +19,24 @@ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # - -acf-core.error_generic_logged = Se ha producido un error. El problema ha sido registrado. Disculpe las inconveniencias. -acf-core.unknown_command = Comando desconocido, por favor use /help -acf-core.invalid_syntax = Uso: {command} {syntax} -acf-core.error_prefix = Error: {message} -acf-core.error_performing_command = Lo siento, pero hubo un error ejecutando este comando. -acf-core.info_message = {message} -acf-core.please_specify_one_of = Error: Por favor especifique uno de los ({valid}). -acf-core.must_be_a_number = Error: Tiene que ser un número. -acf-core.must_be_min_length = Error: Debería tener al menos {min} caracteres de largo. -acf-core.must_be_max_length = Error: Debería tener como máximo {max} caracteres de largo. -acf-core.please_specify_at_most = Error: Por favor especifique un valor con un máximo de {max}. -acf-core.please_specify_at_least = Error: Por favor especifique {min}. -acf-core.not_allowed_on_console = Error: La consola no puede ejecutar este comando. -acf-core.could_not_find_player = Error: No se pudo encontrar un jugador con el nombre: {search} -acf-core.no_command_matched_search = No se ha encontrado un comando que coincida con {search}. -acf-core.help_page_information = - Mostrando página {page} de {totalpages} ({results} resultados). +acf-core.error_generic_logged=Se ha producido un error. El problema ha sido registrado. Disculpe las inconveniencias. +acf-core.unknown_command=Comando desconocido, por favor use /help +acf-core.invalid_syntax=Uso: {command} {syntax} +acf-core.error_prefix=Error: {message} +acf-core.error_performing_command=Lo siento, pero hubo un error ejecutando este comando. +acf-core.info_message={message} +acf-core.please_specify_one_of=Error: Por favor especifique uno de los ({valid}). +acf-core.must_be_a_number=Error: Tiene que ser un número. +acf-core.must_be_min_length=Error: Debería tener al menos {min} caracteres de largo. +acf-core.must_be_max_length=Error: Debería tener como máximo {max} caracteres de largo. +acf-core.please_specify_at_most=Error: Por favor especifique un valor con un máximo de {max}. +acf-core.please_specify_at_least=Error: Por favor especifique {min}. +acf-core.not_allowed_on_console=Error: La consola no puede ejecutar este comando. +acf-core.could_not_find_player=Error: No se pudo encontrar un jugador con el nombre: {search} +acf-core.no_command_matched_search=No se ha encontrado un comando que coincida con {search}. +acf-core.help_page_information=- Mostrando página {page} de {totalpages} ({results} resultados). acf-core.help_format={command} {parameters} {separator} {description} -acf-core.help_detailed_header = === Mostrando ayuda detallada para {commandprefix}{command} === -acf-core.help_detailed_command_format = {command} {parameters} {separator} {description} -acf-core.help_detailed_parameter_format = {name}: {description} -acf-core.help_search_header = === Resultados de la busqueda para {commandprefix}{command} {search} === \ No newline at end of file +acf-core.help_detailed_header==== Mostrando ayuda detallada para {commandprefix}{command} === +acf-core.help_detailed_command_format={command} {parameters} {separator} {description} +acf-core.help_detailed_parameter_format={syntaxorname}: {description} +acf-core.help_search_header==== Resultados de la busqueda para {commandprefix}{command} {search} === diff --git a/languages/core/acf-core_fr.properties b/languages/core/acf-core_fr.properties index 7e2e108e..18e21985 100644 --- a/languages/core/acf-core_fr.properties +++ b/languages/core/acf-core_fr.properties @@ -20,28 +20,27 @@ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # - -acf-core.permission_denied = Vous n'avez pas la permission d'excuter cette commande. -acf-core.error_generic_logged = Une erreur est survenue. Ce problme a t enregistr. Dsol pour le drangement. -acf-core.unknown_command = Commande inconnue, merci de faire /help -acf-core.invalid_syntax = Usage: {command} {syntax} -acf-core.error_prefix = Erreur: {message} -acf-core.error_performing_command = Une erreur est survenue lors de l'excution de cette commande. -acf-core.info_message = {message} -acf-core.please_specify_one_of = Erreur: Veuillez choisir parmi ({valid}). -acf-core.must_be_a_number = Erreur: {num} doit tre un nombre. -acf-core.must_be_min_length = Erreur: Doit faire au moins {min} caractres. -acf-core.must_be_max_length = Erreur: Doit faire moins de {max} caractres. -acf-core.please_specify_at_most = Erreur: Veuillez spcifier une valeur infrieure {max} -acf-core.please_specify_at_least = Erreur: Veuillez spcifier une valeur suprieure {min} -acf-core.not_allowed_on_console = Erreur: La console ne peut pas excuter cette commande. -acf-core.could_not_find_player = Erreur: Impossible de trouver un joueur avec le nom: {search} -acf-core.no_command_matched_search = Aucune commande correspondant {search}. -acf-core.help_page_information = - Page {page} de {totalpages} ({results} rsultats). -acf-core.help_no_results = Erreur: Plus aucun rsultats. -acf-core.help_header = === Affichage de l'aide pour {commandprefix}{command} === -acf-core.help_format = {command} {parameters} {separator} {description} -acf-core.help_detailed_header = === Affichage de l'aide dtaille pour {commandprefix}{command} === -acf-core.help_detailed_command_format = {command} {parameters} {separator} {description} -acf-core.help_detailed_parameter_format = {name}: {description} -acf-core.help_search_header = === Rsultats de la recherche pour {commandprefix}{command} {search} === +acf-core.permission_denied=Vous n'avez pas la permission d'ex�cuter cette commande. +acf-core.error_generic_logged=Une erreur est survenue. Ce probl�me a �t� enregistr�. D�sol� pour le d�rangement. +acf-core.unknown_command=Commande inconnue, merci de faire /help +acf-core.invalid_syntax=Usage: {command} {syntax} +acf-core.error_prefix=Erreur: {message} +acf-core.error_performing_command=Une erreur est survenue lors de l'ex�cution de cette commande. +acf-core.info_message={message} +acf-core.please_specify_one_of=Erreur: Veuillez choisir parmi ({valid}). +acf-core.must_be_a_number=Erreur: {num} doit �tre un nombre. +acf-core.must_be_min_length=Erreur: Doit faire au moins {min} caract�res. +acf-core.must_be_max_length=Erreur: Doit faire moins de {max} caract�res. +acf-core.please_specify_at_most=Erreur: Veuillez sp�cifier une valeur inf�rieure � {max} +acf-core.please_specify_at_least=Erreur: Veuillez sp�cifier une valeur sup�rieure � {min} +acf-core.not_allowed_on_console=Erreur: La console ne peut pas ex�cuter cette commande. +acf-core.could_not_find_player=Erreur: Impossible de trouver un joueur avec le nom: {search} +acf-core.no_command_matched_search=Aucune commande correspondant � {search}. +acf-core.help_page_information=- Page {page} de {totalpages} ({results} r�sultats). +acf-core.help_no_results=Erreur: Plus aucun r�sultats. +acf-core.help_header==== Affichage de l'aide pour {commandprefix}{command} === +acf-core.help_format={command} {parameters} {separator} {description} +acf-core.help_detailed_header==== Affichage de l'aide d�taill�e pour {commandprefix}{command} === +acf-core.help_detailed_command_format={command} {parameters} {separator} {description} +acf-core.help_detailed_parameter_format={syntaxorname}: {description} +acf-core.help_search_header==== R�sultats de la recherche pour {commandprefix}{command} {search} === diff --git a/languages/core/acf-core_nb.properties b/languages/core/acf-core_nb.properties index 7c75c47e..165fc0df 100644 --- a/languages/core/acf-core_nb.properties +++ b/languages/core/acf-core_nb.properties @@ -19,28 +19,27 @@ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # - -acf-core.permission_denied = Beklager, du har ikke tilgang til denne kommandoen. -acf-core.error_generic_logged = En feil har oppstått. Problemet har blitt logget. Beklager for all besvær dette har skapt. -acf-core.unknown_command = Ukjent kommando, vennligst skriv /help. -acf-core.invalid_syntax = Syntaks: {command} {syntax} -acf-core.error_prefix = Feil: {message} -acf-core.error_performing_command = Beklager, det oppsto en feil under kommandoen. -acf-core.info_message = {message} -acf-core.please_specify_one_of = Feil: Vennligst oppgi en av ({valid}). -acf-core.must_be_a_number = Feil: {num} må være et tall. -acf-core.must_be_min_length = Feil: Må være minst {min} tegn langt. -acf-core.must_be_max_length = Feil: Må være maksimum {max} tegn langt. -acf-core.please_specify_at_most = Feil: Vennligst oppgi en verdi på maksimum {max}. -acf-core.please_specify_at_least = Feil: Vennligst oppgi en verdi på minst {min}. -acf-core.not_allowed_on_console = Feil: Konsollen kan ikke utføre denne kommandoen. -acf-core.could_not_find_player = Feil: Kunne ikke finne en spiller med navnet: {search} -acf-core.no_command_matched_search = Ingen kommando matchet {search}. -acf-core.help_page_information = - Viser side {page} av {totalpages} ({results} resultater). -acf-core.help_no_results = Feil: Ingen flere resultater. -acf-core.help_header = === Viser hjelp for {commandprefix}{command} === -acf-core.help_format = {command} {parameters} {separator} {description} -acf-core.help_detailed_header = === Viser detaljert hjelp for {commandprefix}{command} === -acf-core.help_detailed_command_format = {command} {parameters} {separator} {description} -acf-core.help_detailed_parameter_format = {name}: {description} -acf-core.help_search_header = === Søkeresultater for {commandprefix}{command} {search} === +acf-core.permission_denied=Beklager, du har ikke tilgang til denne kommandoen. +acf-core.error_generic_logged=En feil har oppstått. Problemet har blitt logget. Beklager for all besvær dette har skapt. +acf-core.unknown_command=Ukjent kommando, vennligst skriv /help. +acf-core.invalid_syntax=Syntaks: {command} {syntax} +acf-core.error_prefix=Feil: {message} +acf-core.error_performing_command=Beklager, det oppsto en feil under kommandoen. +acf-core.info_message={message} +acf-core.please_specify_one_of=Feil: Vennligst oppgi en av ({valid}). +acf-core.must_be_a_number=Feil: {num} må være et tall. +acf-core.must_be_min_length=Feil: Må være minst {min} tegn langt. +acf-core.must_be_max_length=Feil: Må være maksimum {max} tegn langt. +acf-core.please_specify_at_most=Feil: Vennligst oppgi en verdi på maksimum {max}. +acf-core.please_specify_at_least=Feil: Vennligst oppgi en verdi på minst {min}. +acf-core.not_allowed_on_console=Feil: Konsollen kan ikke utføre denne kommandoen. +acf-core.could_not_find_player=Feil: Kunne ikke finne en spiller med navnet: {search} +acf-core.no_command_matched_search=Ingen kommando matchet {search}. +acf-core.help_page_information=- Viser side {page} av {totalpages} ({results} resultater). +acf-core.help_no_results=Feil: Ingen flere resultater. +acf-core.help_header==== Viser hjelp for {commandprefix}{command} === +acf-core.help_format={command} {parameters} {separator} {description} +acf-core.help_detailed_header==== Viser detaljert hjelp for {commandprefix}{command} === +acf-core.help_detailed_command_format={command} {parameters} {separator} {description} +acf-core.help_detailed_parameter_format={syntaxorname}: {description} +acf-core.help_search_header==== Søkeresultater for {commandprefix}{command} {search} === diff --git a/languages/core/acf-core_nn.properties b/languages/core/acf-core_nn.properties index 9937113c..dba4998d 100644 --- a/languages/core/acf-core_nn.properties +++ b/languages/core/acf-core_nn.properties @@ -19,28 +19,27 @@ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # - -acf-core.permission_denied = Beklager, du har ikkje tilgang til denne kommandoen. -acf-core.error_generic_logged = Ein feil oppstod. Problemet har varta logga. Beklager for all bry dette har skapa. -acf-core.unknown_command = Ukjend kommando, skriv /help for meir informasjon. -acf-core.invalid_syntax = Syntaks: {command} {syntax} -acf-core.error_prefix = Feil: {message} -acf-core.error_performing_command = Beklager, det oppstod ein feil under kommandoen sin køyretid. -acf-core.info_message = {message} -acf-core.please_specify_one_of = Feil: Gjev opp ein av ({valid}). -acf-core.must_be_a_number = Feil: {num} må vere eit tal. -acf-core.must_be_min_length = Feil: Må vere minst {min} teikn langt. -acf-core.must_be_max_length = Feil: Må vere maksimum {max} teikn langt. -acf-core.please_specify_at_most = Feil: Gjev opp ein verdi på maksimum {max}. -acf-core.please_specify_at_least = Feil: Gjev opp ein verdi på minst {min}. -acf-core.not_allowed_on_console = Feil: Konsollen kan ikkje føre ut denne kommandoen. -acf-core.could_not_find_player = Feil: Kunne ikkje finne ein spelar med namnet: {search} -acf-core.no_command_matched_search = Ingen kommando passa til {search}. -acf-core.help_page_information = - Viser side {page} i {totalpages} ({results} utfall). -acf-core.help_no_results = Feil: Ingen fleire utfall. -acf-core.help_header = === Viser hjelp for {commandprefix}{command} === -acf-core.help_format = {command} {parameters} {separator} {description} -acf-core.help_detailed_header = === Viser detaljert hjelp for {commandprefix}{command} === -acf-core.help_detailed_command_format = {command} {parameters} {separator} {description} -acf-core.help_detailed_parameter_format = {name}: {description} -acf-core.help_search_header = === Søkjeutfall for {commandprefix}{command} {search} === +acf-core.permission_denied=Beklager, du har ikkje tilgang til denne kommandoen. +acf-core.error_generic_logged=Ein feil oppstod. Problemet har varta logga. Beklager for all bry dette har skapa. +acf-core.unknown_command=Ukjend kommando, skriv /help for meir informasjon. +acf-core.invalid_syntax=Syntaks: {command} {syntax} +acf-core.error_prefix=Feil: {message} +acf-core.error_performing_command=Beklager, det oppstod ein feil under kommandoen sin køyretid. +acf-core.info_message={message} +acf-core.please_specify_one_of=Feil: Gjev opp ein av ({valid}). +acf-core.must_be_a_number=Feil: {num} må vere eit tal. +acf-core.must_be_min_length=Feil: Må vere minst {min} teikn langt. +acf-core.must_be_max_length=Feil: Må vere maksimum {max} teikn langt. +acf-core.please_specify_at_most=Feil: Gjev opp ein verdi på maksimum {max}. +acf-core.please_specify_at_least=Feil: Gjev opp ein verdi på minst {min}. +acf-core.not_allowed_on_console=Feil: Konsollen kan ikkje føre ut denne kommandoen. +acf-core.could_not_find_player=Feil: Kunne ikkje finne ein spelar med namnet: {search} +acf-core.no_command_matched_search=Ingen kommando passa til {search}. +acf-core.help_page_information=- Viser side {page} i {totalpages} ({results} utfall). +acf-core.help_no_results=Feil: Ingen fleire utfall. +acf-core.help_header==== Viser hjelp for {commandprefix}{command} === +acf-core.help_format={command} {parameters} {separator} {description} +acf-core.help_detailed_header==== Viser detaljert hjelp for {commandprefix}{command} === +acf-core.help_detailed_command_format={command} {parameters} {separator} {description} +acf-core.help_detailed_parameter_format={syntaxorname}: {description} +acf-core.help_search_header==== Søkjeutfall for {commandprefix}{command} {search} === diff --git a/languages/core/acf-core_ru.properties b/languages/core/acf-core_ru.properties index 2089339e..9cb93706 100644 --- a/languages/core/acf-core_ru.properties +++ b/languages/core/acf-core_ru.properties @@ -19,28 +19,27 @@ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # - -acf-core.permission_denied = Извините, но у вас недостаточно прав для выполнения данной команды. -acf-core.error_generic_logged = Произошла ошибка. Проблема была зарегистрирована. Извините за неудобства. -acf-core.unknown_command = Неизвестная команда, пожалуйста напишите /help -acf-core.invalid_syntax = Использование: {command} {syntax} -acf-core.error_prefix = Ошибка: {message} -acf-core.error_performing_command = Извините, но при выполнении команды произошла ошибка. -acf-core.info_message = {message} -acf-core.please_specify_one_of = Ошибка: Пожалуйста, укажите одно из разрешенных значений ({valid}). -acf-core.must_be_a_number = Ошибка: Аргумент {num} должен быть числом. -acf-core.must_be_min_length = Ошибка: Должно быть не менее {min} символа(ов). -acf-core.must_be_max_length = Ошибка: Должно быть не более {max} символа(ов). -acf-core.please_specify_at_most = Ошибка: Пожалуйста, укажите значение не более {max}. -acf-core.please_specify_at_least = Ошибка: Пожалуйста, укажите значение не менее {min}. -acf-core.not_allowed_on_console = Ошибка: Данная команда не может быть выполнена из консоли. -acf-core.could_not_find_player = Ошибка: Не удаётся найти игрока: {search} -acf-core.no_command_matched_search = Ни одна команда не соответствует {search}. -acf-core.help_page_information = - Страница {page} из {totalpages} (всего результатов: {results}). -acf-core.help_no_results = Ошибка: Больше нет результатов. -acf-core.help_header = === Помощь: {commandprefix}{command} === -acf-core.help_format = {command} {parameters} {separator} {description} -acf-core.help_detailed_header = === Помощь: {commandprefix}{command} === -acf-core.help_detailed_command_format = {command} {parameters} {separator} {description} -acf-core.help_detailed_parameter_format = {name}: {description} -acf-core.help_search_header = === Результаты поиска: {commandprefix}{command} {search} === +acf-core.permission_denied=Извините, но у вас недостаточно прав для выполнения данной команды. +acf-core.error_generic_logged=Произошла ошибка. Проблема была зарегистрирована. Извините за неудобства. +acf-core.unknown_command=Неизвестная команда, пожалуйста напишите /help +acf-core.invalid_syntax=Использование: {command} {syntax} +acf-core.error_prefix=Ошибка: {message} +acf-core.error_performing_command=Извините, но при выполнении команды произошла ошибка. +acf-core.info_message={message} +acf-core.please_specify_one_of=Ошибка: Пожалуйста, укажите одно из разрешенных значений ({valid}). +acf-core.must_be_a_number=Ошибка: Аргумент {num} должен быть числом. +acf-core.must_be_min_length=Ошибка: Должно быть не менее {min} символа(ов). +acf-core.must_be_max_length=Ошибка: Должно быть не более {max} символа(ов). +acf-core.please_specify_at_most=Ошибка: Пожалуйста, укажите значение не более {max}. +acf-core.please_specify_at_least=Ошибка: Пожалуйста, укажите значение не менее {min}. +acf-core.not_allowed_on_console=Ошибка: Данная команда не может быть выполнена из консоли. +acf-core.could_not_find_player=Ошибка: Не удаётся найти игрока: {search} +acf-core.no_command_matched_search=Ни одна команда не соответствует {search}. +acf-core.help_page_information=- Страница {page} из {totalpages} (всего результатов: {results}). +acf-core.help_no_results=Ошибка: Больше нет результатов. +acf-core.help_header==== Помощь: {commandprefix}{command} === +acf-core.help_format={command} {parameters} {separator} {description} +acf-core.help_detailed_header==== Помощь: {commandprefix}{command} === +acf-core.help_detailed_command_format={command} {parameters} {separator} {description} +acf-core.help_detailed_parameter_format={syntaxorname}: {description} +acf-core.help_search_header==== Результаты поиска: {commandprefix}{command} {search} ===