From 1fe8748b6494d5066d3ade60057cf49a7ef80996 Mon Sep 17 00:00:00 2001 From: Kichiyaki Date: Thu, 6 May 2021 15:50:21 +0200 Subject: [PATCH] update pl/en translations --- discord/observations.go | 14 +++++++------- discord/public_commands.go | 6 +++--- message/translations/active.en.json | 14 +++++++------- message/translations/active.pl.json | 14 +++++++------- 4 files changed, 24 insertions(+), 24 deletions(-) diff --git a/discord/observations.go b/discord/observations.go index 0381fe0..6fe24ea 100644 --- a/discord/observations.go +++ b/discord/observations.go @@ -181,7 +181,7 @@ func (s *Session) handleConqueredVillagesCommand(ctx *commandCtx, m *discordgo.M m.Author.Mention()+" "+ctx.localizer.MustLocalize(&i18n.LocalizeConfig{ MessageID: message.HelpConqueredVillages, DefaultMessage: message.FallbackMsg(message.HelpConqueredVillages, - "**{{.Command}}** [group id from {{.GroupsCommand}}] - changes the channel on which notifications about conquered village will show. **IMPORTANT!** Run this command on the channel you want to display these notifications."), + "**{{.Command}}** [group id from {{.GroupsCommand}}] - sets the channel on which notifications about conquered village will be displayed. **IMPORTANT!** Run this command on the channel you want to display these notifications."), TemplateData: map[string]interface{}{ "Command": ConqueredVillagesCommand.WithPrefix(s.cfg.CommandPrefix), "GroupsCommand": GroupsCommand.WithPrefix(s.cfg.CommandPrefix), @@ -227,7 +227,7 @@ func (s *Session) handleConqueredVillagesCommand(ctx *commandCtx, m *discordgo.M ctx.localizer.MustLocalize(&i18n.LocalizeConfig{ MessageID: message.ConqueredVillagesSuccess, DefaultMessage: message.FallbackMsg(message.ConqueredVillagesSuccess, - "{{.Mention}} Channel changed successfully."), + "{{.Mention}} The channel has been successfully set."), TemplateData: map[string]interface{}{ "Mention": m.Author.Mention(), }, @@ -303,7 +303,7 @@ func (s *Session) handleLostVillagesCommand(ctx *commandCtx, m *discordgo.Messag m.Author.Mention()+" "+ctx.localizer.MustLocalize(&i18n.LocalizeConfig{ MessageID: message.HelpLostVillages, DefaultMessage: message.FallbackMsg(message.HelpLostVillages, - "**{{.Command}}** [group id from {{.GroupsCommand}}] changes the channel on which notifications about lost village will show. **IMPORTANT!** Run this command on the channel you want to display these notifications."), + "**{{.Command}}** [group id from {{.GroupsCommand}}] sets the channel on which notifications about lost village will be displayed. **IMPORTANT!** Run this command on the channel you want to display these notifications."), TemplateData: map[string]interface{}{ "Command": LostVillagesCommand.WithPrefix(s.cfg.CommandPrefix), "GroupsCommand": GroupsCommand.WithPrefix(s.cfg.CommandPrefix), @@ -350,7 +350,7 @@ func (s *Session) handleLostVillagesCommand(ctx *commandCtx, m *discordgo.Messag ctx.localizer.MustLocalize(&i18n.LocalizeConfig{ MessageID: message.LostVillagesSuccess, DefaultMessage: message.FallbackMsg(message.LostVillagesSuccess, - "{{.Mention}} Channel changed successfully."), + "{{.Mention}} The channel has been successfully set."), TemplateData: map[string]interface{}{ "Mention": m.Author.Mention(), }, @@ -549,7 +549,7 @@ func (s *Session) handleObserveCommand(ctx *commandCtx, m *discordgo.MessageCrea s.SendMessage(m.ChannelID, ctx.localizer.MustLocalize(&i18n.LocalizeConfig{ MessageID: message.ObserveSuccess, - DefaultMessage: message.FallbackMsg(message.ObserveSuccess, "{{.Mention}} Added."), + DefaultMessage: message.FallbackMsg(message.ObserveSuccess, "{{.Mention}} The tribe has been added to the group."), TemplateData: map[string]interface{}{ "Mention": m.Author.Mention(), }, @@ -620,7 +620,7 @@ func (s *Session) handleDeleteObservationCommand(ctx *commandCtx, m *discordgo.M s.SendMessage(m.ChannelID, ctx.localizer.MustLocalize(&i18n.LocalizeConfig{ MessageID: message.DeleteObservationSuccess, - DefaultMessage: message.FallbackMsg(message.DeleteObservationSuccess, "{{.Mention}} Deleted."), + DefaultMessage: message.FallbackMsg(message.DeleteObservationSuccess, "{{.Mention}} The tribe has been removed from the group."), TemplateData: map[string]interface{}{ "Mention": m.Author.Mention(), }, @@ -970,7 +970,7 @@ func (s *Session) handleShowInternalsCommand(ctx *commandCtx, m *discordgo.Messa ctx.localizer.MustLocalize(&i18n.LocalizeConfig{ MessageID: message.ShowInternalsSuccess2, DefaultMessage: message.FallbackMsg(message.ShowInternalsSuccess2, - "{{.Mention}} Enabled notifications about internals."), + "{{.Mention}} Notifications about internals have been enabled."), TemplateData: map[string]interface{}{ "Mention": m.Author.Mention(), }, diff --git a/discord/public_commands.go b/discord/public_commands.go index 9ba2473..825dea7 100644 --- a/discord/public_commands.go +++ b/discord/public_commands.go @@ -163,7 +163,7 @@ func (s *Session) handleHelpCommand(ctx *commandCtx, m *discordgo.MessageCreate, ctx.localizer.MustLocalize(&i18n.LocalizeConfig{ MessageID: message.HelpConqueredVillages, DefaultMessage: message.FallbackMsg(message.HelpConqueredVillages, - "**{{.Command}}** [group id from {{.GroupsCommand}}] - changes the channel on which notifications about conquered village will show. IMPORTANT! Call this command on the channel you want to display these notifications."), + "**{{.Command}}** [group id from {{.GroupsCommand}}] - sets the channel on which notifications about conquered village will be displayed. IMPORTANT! Call this command on the channel you want to display these notifications."), TemplateData: map[string]interface{}{ "Command": ConqueredVillagesCommand.WithPrefix(s.cfg.CommandPrefix), "GroupsCommand": GroupsCommand.WithPrefix(s.cfg.CommandPrefix), @@ -191,7 +191,7 @@ func (s *Session) handleHelpCommand(ctx *commandCtx, m *discordgo.MessageCreate, ctx.localizer.MustLocalize(&i18n.LocalizeConfig{ MessageID: message.HelpLostVillages, DefaultMessage: message.FallbackMsg(message.HelpLostVillages, - "**{{.Command}}** [group id from {{.GroupsCommand}}] - changes the channel on which notifications about lost village will show. IMPORTANT! Call this command on the channel you want to display these notifications."), + "**{{.Command}}** [group id from {{.GroupsCommand}}] - sets the channel on which notifications about lost village will be displayed. IMPORTANT! Call this command on the channel you want to display these notifications."), TemplateData: map[string]interface{}{ "Command": LostVillagesCommand.WithPrefix(s.cfg.CommandPrefix), "GroupsCommand": GroupsCommand.WithPrefix(s.cfg.CommandPrefix), @@ -200,7 +200,7 @@ func (s *Session) handleHelpCommand(ctx *commandCtx, m *discordgo.MessageCreate, ctx.localizer.MustLocalize(&i18n.LocalizeConfig{ MessageID: message.HelpDisableLostVillages, DefaultMessage: message.FallbackMsg(message.HelpDisableLostVillages, - "**{{.Command}}** [group id from {{.GroupsCommand}}] - changes the channel on which notifications about lost village will show. IMPORTANT! Call this command on the channel you want to display these notifications."), + "**{{.Command}}** [group id from {{.GroupsCommand}}] - sets the channel on which notifications about lost village will be displayed. IMPORTANT! Call this command on the channel you want to display these notifications."), TemplateData: map[string]interface{}{ "Command": DisableLostVillagesCommand.WithPrefix(s.cfg.CommandPrefix), "GroupsCommand": GroupsCommand.WithPrefix(s.cfg.CommandPrefix), diff --git a/message/translations/active.en.json b/message/translations/active.en.json index 1700518..b5e36c1 100644 --- a/message/translations/active.en.json +++ b/message/translations/active.en.json @@ -17,9 +17,9 @@ "help.observe": "**{{.Command}}** [group id from {{.GroupsCommand}}] [server] [tribe id or tribe tag] - adds a tribe to the observation group.", "help.observations": "**{{.Command}}** [group id from {{.GroupsCommand}}] - shows a list of monitored tribes added to this group.", "help.deleteobservation": "**{{.Command}}** [group id from {{.GroupsCommand}}] [id from {{.ObservationsCommand}}] - removes a tribe from the observation group.", - "help.conqueredvillages": "**{{.Command}}** [group id from {{.GroupsCommand}}] - changes the channel on which notifications about conquered village will show. **IMPORTANT!** Run this command on the channel you want to display these notifications.", + "help.conqueredvillages": "**{{.Command}}** [group id from {{.GroupsCommand}}] - sets the channel on which notifications about conquered village will be displayed. **IMPORTANT!** Run this command on the channel you want to display these notifications.", "help.disableconqueredvillages": "**{{.Command}}** [group id from {{.GroupsCommand}}] - disables notifications about conquered villages.", - "help.lostvillages": "**{{.Command}}** [group id from {{.GroupsCommand}}] - changes the channel on which notifications about lost village will show. **IMPORTANT!** Run this command on the channel you want to display these notifications.", + "help.lostvillages": "**{{.Command}}** [group id from {{.GroupsCommand}}] - sets the channel on which notifications about lost village will be displayed. **IMPORTANT!** Run this command on the channel you want to display these notifications.", "help.disablelostvillages": "**{{.Command}}** [group id from {{.GroupsCommand}}] - disables notifications about lost villages.", "help.changelanguage": "**{{.Command}}** [{{.Languages}}] - changes language.", "help.showinternals": "**{{.Command}}** [group id from {{.GroupsCommand}}] - enables/disables notifications about in-group/in-tribe conquering.", @@ -49,7 +49,7 @@ "conqueredVillages.invalidID": "{{.Mention}} The group ID must be a number greater than 0.", "conqueredVillages.groupNotFound": "{{.Mention}} Group not found.", - "conqueredVillages.success": "{{.Mention}} Channel changed successfully.", + "conqueredVillages.success": "{{.Mention}} The channel has been successfully set.", "disableConqueredVillages.invalidID": "{{.Mention}} The group ID must be a number greater than 0.", "disableConqueredVillages.groupNotFound": "{{.Mention}} Group not found.", @@ -57,7 +57,7 @@ "lostVillages.invalidID": "{{.Mention}} The group ID must be a number greater than 0.", "lostVillages.groupNotFound": "{{.Mention}} Group not found.", - "lostVillages.success": "{{.Mention}} Channel changed successfully.", + "lostVillages.success": "{{.Mention}} The channel has been successfully set.", "disableLostVillages.invalidID": "{{.Mention}} The group ID must be a number greater than 0.", "disableLostVillages.groupNotFound": "{{.Mention}} Group not found.", @@ -70,12 +70,12 @@ "observe.groupNotFound": "{{.Mention}} Group not found.", "observe.tribeNotFound": "{{.Mention}} Tribe not found.", "observe.observationLimitHasBeenReached": "{{.Mention}} The observation limit for this group has been reached ({{.Total}}/{{.Limit}}).", - "observe.success": "{{.Mention}} Added.", + "observe.success": "{{.Mention}} The tribe has been added to the group.", "deleteObservation.invalidGroupID": "{{.Mention}} The group ID must be a number greater than 0.", "deleteObservation.invalidObservationID": "{{.Mention}} The observation ID must be a number greater than 0.", "deleteObservation.groupNotFound": "{{.Mention}} Group not found.", - "deleteObservation.success": "{{.Mention}} Deleted.", + "deleteObservation.success": "{{.Mention}} The tribe has been removed from the group.", "observations.invalidGroupID": "{{.Mention}} The group ID must be a number greater than 0.", "observations.groupNotFound": "{{.Mention}} Group not found.", @@ -92,7 +92,7 @@ "showInternals.invalidGroupID": "{{.Mention}} The group ID must be a number greater than 0.", "showInternals.groupNotFound": "{{.Mention}} Group not found.", "showInternals.success_1": "{{.Mention}} Notifications about internals will no longer show up.", - "showInternals.success_2": "{{.Mention}} Enabled notifications about internals.", + "showInternals.success_2": "{{.Mention}} Notifications about internals have been enabled.", "coordsTranslation.title": "Villages", "coordsTranslation.message": "{{.Village}} owned by {{.Player}} (Tribe: {{.Tribe}}).", diff --git a/message/translations/active.pl.json b/message/translations/active.pl.json index 84e13ab..0f341de 100644 --- a/message/translations/active.pl.json +++ b/message/translations/active.pl.json @@ -17,9 +17,9 @@ "help.observe": "**{{.Command}}** [id grupy z {{.GroupsCommand}}] [serwer] [id lub skrót plemienia] - dodaje plemię do grupy.", "help.observations": "**{{.Command}}** [id grupy z {{.GroupsCommand}}] - pokazuje plemiona należące do wybranej grupy.", "help.deleteobservation": "**{{.Command}}** [id grupy z {{.GroupsCommand}}] [id from {{.ObservationsCommand}}] - usuwa plemię z grupy.", - "help.conqueredvillages": "**{{.Command}}** [id grupy z {{.GroupsCommand}}] - zmienia kanał na którym będą się pojawiać informację o podbitych wioskach w danej grupie. **WAŻNE!** Wywołaj tę komendę na kanale na którym chcesz dostawać te powiadomienia.", + "help.conqueredvillages": "**{{.Command}}** [id grupy z {{.GroupsCommand}}] - ustawia kanał na którym będą się pojawiać informację o podbitych wioskach w danej grupie. **WAŻNE!** Wywołaj tę komendę na kanale na którym chcesz dostawać te powiadomienia.", "help.disableconqueredvillages": "**{{.Command}}** [id grupy z {{.GroupsCommand}}] - wyłącza powiadomienia o podbitych wioskach w danej grupie.", - "help.lostvillages": "**{{.Command}}** [id grupy z {{.GroupsCommand}}] - zmienia kanał na którym będą się pojawiać informację o straconych wioskach w danej grupie. **WAŻNE!** Wywołaj tę komendę na kanale na którym chcesz dostawać te powiadomienia.", + "help.lostvillages": "**{{.Command}}** [id grupy z {{.GroupsCommand}}] - ustawia kanał na którym będą się pojawiać informację o straconych wioskach w danej grupie. **WAŻNE!** Wywołaj tę komendę na kanale na którym chcesz dostawać te powiadomienia.", "help.disablelostvillages": "**{{.Command}}** [id grupy z {{.GroupsCommand}}] - wyłącza powiadomienia o straconych wioskach w danej grupie.", "help.changelanguage": "**{{.Command}}** [{{.Languages}}] - zmień język bota.", "help.showinternals": "**{{.Command}}** [id grupy z {{.GroupsCommand}}] - włącza/wyłącza notyfikacje o podbiciach plemion należących do jednej grupy.", @@ -49,7 +49,7 @@ "conqueredVillages.invalidID": "{{.Mention}} ID grupy musi być liczbą większą od 0.", "conqueredVillages.groupNotFound": "{{.Mention}} Grupa nie została znaleziona.", - "conqueredVillages.success": "{{.Mention}} Kanał został pomyślnie zmieniony.", + "conqueredVillages.success": "{{.Mention}} Kanał został pomyślnie ustawiony.", "disableConqueredVillages.invalidID": "{{.Mention}} ID grupy musi być liczbą większą od 0.", "disableConqueredVillages.groupNotFound": "{{.Mention}} Grupa nie została znaleziona.", @@ -57,7 +57,7 @@ "lostVillages.invalidID": "{{.Mention}} ID grupy musi być liczbą większą od 0.", "lostVillages.groupNotFound": "{{.Mention}} Grupa nie została znaleziona.", - "lostVillages.success": "{{.Mention}} Kanał został pomyślnie zmieniony.", + "lostVillages.success": "{{.Mention}} Kanał został pomyślnie ustawiony.", "disableLostVillages.invalidID": "{{.Mention}} ID grupy musi być liczbą większą od 0.", "disableLostVillages.groupNotFound": "{{.Mention}} Grupa nie została znaleziona.", @@ -70,12 +70,12 @@ "observe.groupNotFound": "{{.Mention}} Grupa nie została znaleziona.", "observe.tribeNotFound": "{{.Mention}} Plemię nie zostało znalezione.", "observe.observationLimitHasBeenReached": "{{.Mention}} Limit obserwacji dla grupy został osiągnięty ({{.Total}}/{{.Limit}}).", - "observe.success": "{{.Mention}} Dodano.", + "observe.success": "{{.Mention}} Dodano plemię do obserwowanych.", "deleteObservation.invalidGroupID": "{{.Mention}} ID grupy musi być liczbą większą od 0.", "deleteObservation.invalidObservationID": "{{.Mention}} ID obserwacji musi być liczbą większą od 0.", "deleteObservation.groupNotFound": "{{.Mention}} Grupa nie została znaleziona.", - "deleteObservation.success": "{{.Mention}} Usunięto.", + "deleteObservation.success": "{{.Mention}} Usunięto plemię z grupy.", "observations.invalidGroupID": "{{.Mention}} ID grupy musi być liczbą większą od 0.", "observations.groupNotFound": "{{.Mention}} Grupa nie została znaleziona.", @@ -109,5 +109,5 @@ "pagination.labelDisplayedPage": "Strona: {{.Page}} z {{.MaxPage}}", - "internalServerError": "{{.Mention}} Wewnętrzny błąd serwera, prosimy spróbować później." + "internalServerError": "{{.Mention}} Wewnętrzny błąd serwera, prosimy spróbować później." }