mirror of
https://github.com/aikar/commands.git
synced 2026-05-31 06:11:55 +00:00
turkish language support
This commit is contained in:
@@ -76,7 +76,7 @@ public abstract class CommandManager<
|
||||
|
||||
protected boolean usePerIssuerLocale = false;
|
||||
protected List<IssuerLocaleChangedCallback<I>> localeChangedCallbacks = new ArrayList<>();
|
||||
protected Set<Locale> supportedLanguages = new HashSet<>(Arrays.asList(Locales.ENGLISH, Locales.GERMAN, Locales.SPANISH, Locales.FRENCH, Locales.CZECH, Locales.PORTUGUESE, Locales.SWEDISH, Locales.NORWEGIAN_BOKMAAL, Locales.NORWEGIAN_NYNORSK, Locales.RUSSIAN, Locales.BULGARIAN, Locales.HUNGARIAN));
|
||||
protected Set<Locale> supportedLanguages = new HashSet<>(Arrays.asList(Locales.ENGLISH, Locales.GERMAN, Locales.SPANISH, Locales.FRENCH, Locales.CZECH, Locales.PORTUGUESE, Locales.SWEDISH, Locales.NORWEGIAN_BOKMAAL, Locales.NORWEGIAN_NYNORSK, Locales.RUSSIAN, Locales.BULGARIAN, Locales.HUNGARIAN, Locales.TURKISH));
|
||||
protected Map<MessageType, MF> formatters = new IdentityHashMap<>();
|
||||
protected MF defaultFormatter;
|
||||
protected int defaultHelpPerPage = 10;
|
||||
|
||||
@@ -0,0 +1,46 @@
|
||||
# Copyright (c) 2016-2017 Daniel Ennis (Aikar) - MIT License
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining
|
||||
# a copy of this software and associated documentation files (the
|
||||
# "Software"), to deal in the Software without restriction, including
|
||||
# without limitation the rights to use, copy, modify, merge, publish,
|
||||
# distribute, sublicense, and/or sell copies of the Software, and to
|
||||
# permit persons to whom the Software is furnished to do so, subject to
|
||||
# the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be
|
||||
# included in all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
# 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=Üzgünüm, ama bu komutu kullanmak için yeterli yetkin yok.
|
||||
acf-core.permission_denied_parameter=Üzgünüm, ama bu komutu kullanmak için yetkin yok.
|
||||
acf-core.error_generic_logged=Bir hata meydana geldi. Bu hata kaydedildi. Bu rahatsızlık için özür dileriz.
|
||||
acf-core.unknown_command=Bilinmeyen komut, lütfen <c2>/help</c2> komutunu girin.
|
||||
acf-core.invalid_syntax=Kullanımı: <c2>{command}</c2> <c3>{syntax}</c3>
|
||||
acf-core.error_prefix=Hata: {message}
|
||||
acf-core.error_performing_command=Üzgünüm, ama bu komut çalışırken bir hata oluştu.
|
||||
acf-core.info_message={message}
|
||||
acf-core.please_specify_one_of=Hata: Lütfen bir tanesini belirtin (<c2>{valid}</c2>).
|
||||
acf-core.must_be_a_number=Hata: {num} sayı olmak zorunda.
|
||||
acf-core.must_be_min_length=Hata: Karakter uzunluğu minimum {min} olmak zorunda.
|
||||
acf-core.must_be_max_length=Hata: Karakter uzunluğu maksimum {max} olmak zorunda.
|
||||
acf-core.please_specify_at_most=Hata: Lütfen en fazla {max} değerini belirleyin.
|
||||
acf-core.please_specify_at_least=Hata: Lütfen en az {min} değerini belirleyin.
|
||||
acf-core.not_allowed_on_console=Hata: Bu komut consoledan kullanılamaz.
|
||||
acf-core.could_not_find_player=Hata: Böyle bir oyuncu bulunamadı: <c2>{search}</c2>
|
||||
acf-core.no_command_matched_search=<c> {search} </c2> ile eşleşen komut yok.
|
||||
acf-core.help_page_information=- <c2>{totalpages}</c2> sayfasının <c2>{page}</c2> sayfası gösteriliyor (<c3>{results}</c3> results).
|
||||
acf-core.help_no_results=Hata: Başka sonuç yok.
|
||||
acf-core.help_header=<c3>=== </c3><c2>{commandprefix}{command}</c2> <cl>için yardım görüntüleniyor</cl><c3> ===</c3>
|
||||
acf-core.help_format=<c1>{command}</c1> <c2>{parameters}</c2> <c3>{separator} {description}</c3>
|
||||
acf-core.help_detailed_header=<c3>=== </c3><c2>{commandprefix}{command}</c2> <c1>için ayrıntılar görüntüleniyor</c1><c3> ===</c3>
|
||||
acf-core.help_detailed_command_format=<c1>{command}</c1> <c2>{parameters}</c2> <c3>{separator} {description}</c3>
|
||||
acf-core.help_detailed_parameter_format=<c2>{syntaxorname}</c2>: <c3>{description}</c3>
|
||||
acf-core.help_search_header=<c3>=== </c3><c2>{commandprefix}{command} {search}</c2> <c1>için arama sonuçları</c1><c3> ===</c3>
|
||||
@@ -0,0 +1,38 @@
|
||||
#
|
||||
# Copyright (c) 2016-2017 Daniel Ennis (Aikar) - MIT License
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining
|
||||
# a copy of this software and associated documentation files (the
|
||||
# "Software"), to deal in the Software without restriction, including
|
||||
# without limitation the rights to use, copy, modify, merge, publish,
|
||||
# distribute, sublicense, and/or sell copies of the Software, and to
|
||||
# permit persons to whom the Software is furnished to do so, subject to
|
||||
# the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be
|
||||
# included in all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
# 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-minecraft.invalid_world = Hata: Böyle bir dünya yok.
|
||||
acf-minecraft.you_must_be_holding_item = Hata: Bir öğeyi ana elinizde tutuyor olmalısınız.
|
||||
acf-minecraft.player_is_vanished_confirm = \
|
||||
Uyarı: <c2{vanished}</c2> kayboldu.\n\
|
||||
İşleminizi onaylamak için isimlerinin önüne <c2>:confirm</c2> ekleyin.\n\
|
||||
Eski: <c2>{vanished}:confirm</c2>
|
||||
acf-minecraft.username_too_short = Hata: Kullanıcı adı çok kısa en az üç karakter olmalıdır.
|
||||
acf-minecraft.is_not_a_valid_name = Hata: <c2>{name}</c2> geçerli bir kullanıcı adı değil.
|
||||
acf-minecraft.multiple_players_match = Hata: <c2>{search}</c2> <c3>({all})</c3> ile eşleşen birden fazla oyuncu, lütfen daha açık konuşun.
|
||||
acf-minecraft.no_player_found_server = Bu sunucuya <c2>{search}</c2> ile eşleşen bir oyuncu bağlı değil.
|
||||
acf-minecraft.no_player_found_offline = <c2>{search}</c2> ile eşleşen oyuncu bulunamadı.
|
||||
acf-minecraft.no_player_found = <c2>{search}</c2> ile eşleşen oyuncu bulunamadı.
|
||||
acf-minecraft.location_please_specify_world = Hata: Lütfen dünyayı belirtin. Örnek: <c2>world:x,y,z</c2>.
|
||||
acf-minecraft.location_please_specify_xyz = Hata: Lütfen x, y ve z koordinatlarını belirtin. Örnek: <c2>world:x,y,z</c2>.
|
||||
acf-minecraft.location_console_not_relative = Hata: Konsol konum için göreceli koordinatları kullanamaz.
|
||||
Reference in New Issue
Block a user